This commit is contained in:
hanjian
2024-09-04 22:22:40 +08:00
parent aca571fda1
commit e9c7b39f1b
5 changed files with 9 additions and 9 deletions

View File

@@ -34,7 +34,7 @@
<el-card class="lrtt">
<div class="rt">
<div class="operate">
<el-button type="primary" v-if="tableList && tableList.length > 0" @click="setAllMarkedRead">全部标记已读</el-button>
<el-button type="primary" v-if="tableList && tableList.length > 0" @click="setAllMarkedRead" icon="el-icon-check">全部标记已读</el-button>
</div><!--operate 操作按钮-->
<el-table v-loading="loading" :data="tableList">
<el-table-column type="index" label="序号" width="50" />
@@ -53,7 +53,7 @@
<el-button
size="mini"
type="text"
icon="el-icon-edit"
icon="el-icon-check"
v-if="row.states == '1'"
@click="markRead(row)"
>标记已读</el-button>