houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 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