提交消息修改

This commit is contained in:
daihh
2022-12-01 12:12:30 +08:00
parent 286a9a60af
commit 2a54fab649

View File

@@ -68,13 +68,13 @@
<span v-if="!item.isRead" style="font-size:12px;padding:5px 7px; border-radius: 2px;background: #FF6562;color: #fff;margin-right: 5px">未读</span> <span v-if="!item.isRead" style="font-size:12px;padding:5px 7px; border-radius: 2px;background: #FF6562;color: #fff;margin-right: 5px">未读</span>
<span v-else style="font-size:14px;padding:5px 7px; background: #eee; border-radius: 2px; color: #666666;margin-right: 5px">已读</span> <span v-else style="font-size:14px;padding:5px 7px; background: #eee; border-radius: 2px; color: #666666;margin-right: 5px">已读</span>
<!-- <a :href="returnRouter(item)"> --> <!-- <a :href="returnRouter(item)"> -->
<span @click="returnRouter(item)">{{ item.title }}</span> <span style="cursor: pointer;" @click="returnRouter(item)">{{ item.title }}</span>
</div> </div>
</div> </div>
<div class="msg-body"> <div class="msg-body">
<!-- <a :href="returnRouter(item)"> --> <!-- <a :href="returnRouter(item)"> -->
<div @click="returnRouter(item)" class="msg-body-content" v-if="item.content">{{item.tip}}-{{ item.content }}</div> <div style="cursor: pointer;" @click="returnRouter(item)" class="msg-body-content" v-if="item.content">{{item.tip}}-{{ item.content }}</div>
<div @click="returnRouter(item)" class="msg-body-content" v-else>{{item.tip}}</div> <div style="cursor: pointer;" @click="returnRouter(item)" class="msg-body-content" v-else>{{item.tip}}</div>
<!-- </a> --> <!-- </a> -->
<div class="msg-body-but"> <div class="msg-body-but">
<el-button type="danger" plain @click="delItem(item)">删除</el-button> <el-button type="danger" plain @click="delItem(item)">删除</el-button>