This commit is contained in:
zmj 2024-05-30 09:26:07 +08:00
parent 307cfcb79b
commit 802fa15268
2 changed files with 7 additions and 9 deletions

View File

@ -12,7 +12,7 @@
{{ formData.to_user_name }}
</el-descriptions-item>
<el-descriptions-item label="阅读时间" label-align="left" align="left">
{{ formData.read_time }}
{{ timeFormat(formData.read_time, 'yyyy-mm-dd hh:MM') }}
</el-descriptions-item>
<el-descriptions-item label="创建时间" label-align="left" align="left">
{{ formData.create_time }}

View File

@ -17,22 +17,20 @@
<el-table-column label="消息主题" prop="title" show-overflow-tooltip />
<el-table-column label="消息内容" prop="content" show-overflow-tooltip />
<el-table-column label="是否已读" prop="is_read" show-overflow-tooltip />
<el-table-column label="阅读时间" prop="read_time" show-overflow-tooltip >
<el-table-column label="阅读时间" prop="read_time" show-overflow-tooltip>
<template #default="{ row }">
{{ timeFormat(row.read_time, 'yyyy-mm-dd hh:MM') }}
</template>
{{timeFormat(row.read_time,'yyyy-mm-dd hh:MM')}}
</template>
</el-table-column>
</el-table-column>
<el-table-column label="创建时间" prop="create_time" show-overflow-tooltip />
<el-table-column label="操作" width="120" fixed="right">
<template #default="{ row }">
<el-button type="primary" link @click="handleEdit(row)">
<el-button type="primary" link @click="handleEdit(row)">
详情
</el-button>
<el-button type="danger" link
@click="handleDelete(row.id)">
<el-button type="danger" link @click="handleDelete(row.id)">
删除
</el-button>
</template>