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