1.所有搜索样式调整

2.统计分析调整
3.导出word格式调整
This commit is contained in:
pan
2024-09-03 16:15:48 +08:00
parent 522a40ae64
commit 8b01478e07
25 changed files with 610 additions and 478 deletions

View File

@@ -37,6 +37,7 @@
<el-button type="primary" @click="setAllMarkedRead">全部标记已读</el-button>
</div><!--operate 操作按钮-->
<el-table v-loading="loading" :data="tableList">
<el-table-column type="index" label="序号" width="50" />
<el-table-column label="消息内容" prop="content" min-width="120" />
<el-table-column label="接收时间" prop="createTime" :show-overflow-tooltip="true" min-width="120"/>
<el-table-column label="消息状态" prop="states" :show-overflow-tooltip="true" min-width="80" >
@@ -47,11 +48,12 @@
</template>
</template>
</el-table-column>
<el-table-column label="操作" align="center" min-width="100">
<el-table-column label="操作" align="center" min-width="100" fixed="right">
<template v-slot="{ row }">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
v-if="row.states == '1'"
@click="markRead(row)"
>标记已读</el-button>