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:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user