45
This commit is contained in:
parent
307cfcb79b
commit
802fa15268
@ -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 }}
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user