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