|
@@ -52,8 +52,21 @@
|
|
|
<span slot-scope="scope">{{ scope.row.id }}</span>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="标题"
|
|
|
- ><span slot-scope="scope"
|
|
|
- ><router-link
|
|
|
+ ><span slot-scope="scope">
|
|
|
+ <router-link
|
|
|
+ v-if="scope.row.hasRecalled == true"
|
|
|
+ style="display: flex"
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ :class="
|
|
|
+ scope.row.hasRead
|
|
|
+ ? 'mhome-message-read'
|
|
|
+ : 'mhome-message-unread'
|
|
|
+ "
|
|
|
+ />
|
|
|
+ <span class="mhome-message-title">{{ scope.row.title }}</span>
|
|
|
+ </router-link>
|
|
|
+ <router-link
|
|
|
v-if="
|
|
|
scope.row.hasRecalled == null ||
|
|
|
scope.row.hasRecalled === false
|
|
@@ -69,8 +82,8 @@
|
|
|
"
|
|
|
/>
|
|
|
<span class="mhome-message-title">{{ scope.row.title }}</span>
|
|
|
- </router-link></span
|
|
|
- ></el-table-column
|
|
|
+ </router-link>
|
|
|
+ </span></el-table-column
|
|
|
>
|
|
|
<el-table-column width="180" prop="publishTime" label="发送时间">
|
|
|
</el-table-column>
|