选煤厂生产管理平台前端代码
houzhongjian
2024-11-22 82c159b99ca114bc8189e681bde3b4491a81af1c
提交 | 用户 | 时间
82c159 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