mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-23 17:55:39 +08:00
fix 路径图修改发布时间
This commit is contained in:
@@ -79,17 +79,17 @@
|
||||
}"
|
||||
>
|
||||
<template #bodyCell="{ column, record }">
|
||||
<template v-if="column.key === 'createTime'">
|
||||
<template v-if="column.key === 'publishTime'">
|
||||
<a-tooltip placement="topRight">
|
||||
<template #title>
|
||||
<span>{{
|
||||
record.createTime &&
|
||||
dayjs(record.createTime).format("YYYY-MM-DD HH:mm:ss")
|
||||
record.publishTime &&
|
||||
dayjs(record.publishTime).format("YYYY-MM-DD HH:mm:ss")
|
||||
}}</span>
|
||||
</template>
|
||||
<span>{{
|
||||
record.createTime &&
|
||||
dayjs(record.createTime).format("YYYY-MM-DD HH:mm:ss")
|
||||
record.publishTime &&
|
||||
dayjs(record.publishTime).format("YYYY-MM-DD HH:mm:ss")
|
||||
}}</span>
|
||||
</a-tooltip>
|
||||
</template>
|
||||
@@ -243,9 +243,9 @@ export default {
|
||||
},
|
||||
{
|
||||
title: "发布时间",
|
||||
dataIndex: "createTime",
|
||||
dataIndex: "publishTime",
|
||||
ellipsis: true,
|
||||
key: "createTime",
|
||||
key: "publishTime",
|
||||
align: "center",
|
||||
width: 120,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user