fix: 时间修改

This commit is contained in:
mx00085@163.com
2023-02-28 09:25:01 +08:00
parent 87094d3f77
commit 164724d8ad

View File

@@ -150,11 +150,11 @@
<a-tooltip placement="topRight">
<template #title>
<span>{{
dayjs(record.publishTime).format("YYYY-MM-DD HH:mm:ss")
record.publishTime&&dayjs(record.publishTime).format("YYYY-MM-DD HH:mm:ss")
}}</span>
</template>
<span>{{
dayjs(record.publishTime).format("YYYY-MM-DD HH:mm:ss")
record.publishTime&&dayjs(record.publishTime).format("YYYY-MM-DD HH:mm:ss")
}}</span>
</a-tooltip>
</template>
@@ -163,15 +163,15 @@
<template #title>
<span
>{{
dayjs(record.beginTime).format("YYYY-MM-DD HH:mm:ss")
record.beginTime&& dayjs(record.beginTime).format("YYYY-MM-DD HH:mm:ss")
}}~{{
dayjs(record.endTime).format("YYYY-MM-DD HH:mm:ss")
record.endTime&& dayjs(record.endTime).format("YYYY-MM-DD HH:mm:ss")
}}</span
>
</template>
<span
>{{ dayjs(record.beginTime).format("YYYY-MM-DD HH:mm:ss") }}~{{
dayjs(record.endTime).format("YYYY-MM-DD HH:mm:ss")
>{{ record.beginTime&& dayjs(record.beginTime).format("YYYY-MM-DD HH:mm:ss") }}~{{
record.endTime&& dayjs(record.endTime).format("YYYY-MM-DD HH:mm:ss")
}}</span
>
</a-tooltip>
@@ -180,11 +180,11 @@
<a-tooltip placement="topRight">
<template #title>
<span>{{
dayjs(record.createTime).format("YYYY-MM-DD HH:mm:ss")
record.createTime&& dayjs(record.createTime).format("YYYY-MM-DD HH:mm:ss")
}}</span>
</template>
<span>{{
dayjs(record.createTime).format("YYYY-MM-DD HH:mm:ss")
record.createTime&& dayjs(record.createTime).format("YYYY-MM-DD HH:mm:ss")
}}</span>
</a-tooltip>
</template>