|
@@ -52,13 +52,24 @@
|
|
<span slot-scope="scope">{{ scope.row.id }}</span>
|
|
<span slot-scope="scope">{{ scope.row.id }}</span>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="标题">
|
|
<el-table-column label="标题">
|
|
- <el-button
|
|
|
|
- v-show="
|
|
|
|
|
|
+ <span
|
|
|
|
+ v-if="
|
|
scope.row.hasRecalled == null || scope.row.hasRecalled == false
|
|
scope.row.hasRecalled == null || scope.row.hasRecalled == false
|
|
"
|
|
"
|
|
- type="text"
|
|
|
|
- @click="detail(scope.row.id)"
|
|
|
|
|
|
+ slot-scope="scope"
|
|
>
|
|
>
|
|
|
|
+ <el-button type="text" @click="detail(scope.row.id)">
|
|
|
|
+ <img
|
|
|
|
+ :class="
|
|
|
|
+ scope.row.hasRead
|
|
|
|
+ ? 'mhome-message-read'
|
|
|
|
+ : 'mhome-message-unread'
|
|
|
|
+ "
|
|
|
|
+ />
|
|
|
|
+ <span class="mhome-message-title">{{ scope.row.title }}</span>
|
|
|
|
+ </el-button>
|
|
|
|
+ </span>
|
|
|
|
+ <span v-if="scope.row.hasRecalled == true" slot-scope="scope">
|
|
<img
|
|
<img
|
|
:class="
|
|
:class="
|
|
scope.row.hasRead
|
|
scope.row.hasRead
|
|
@@ -67,7 +78,7 @@
|
|
"
|
|
"
|
|
/>
|
|
/>
|
|
<span class="mhome-message-title">{{ scope.row.title }}</span>
|
|
<span class="mhome-message-title">{{ scope.row.title }}</span>
|
|
- </el-button>
|
|
|
|
|
|
+ </span>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column width="180" prop="publishTime" label="发送时间">
|
|
<el-table-column width="180" prop="publishTime" label="发送时间">
|
|
</el-table-column>
|
|
</el-table-column>
|