鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 1 /**
H 2  * Independent time operation tool to facilitate subsequent switch to dayjs
3  */
4 // TODO 芋艿:【锁屏】可能后面删除掉
5 import dayjs from 'dayjs'
6
7 const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm:ss'
8 const DATE_FORMAT = 'YYYY-MM-DD'
9
10 export function formatToDateTime(date?: dayjs.ConfigType, format = DATE_TIME_FORMAT): string {
11   return dayjs(date).format(format)
12 }
13
14 export function formatToDate(date?: dayjs.ConfigType, format = DATE_FORMAT): string {
15   return dayjs(date).format(format)
16 }
17
18 export const dateUtil = dayjs