You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
492 B
21 lines
492 B
6 months ago
|
/**
|
||
|
* 时间格式函数, Day.js
|
||
|
*/
|
||
|
import 'dayjs/locale/zh-cn';
|
||
|
import dayjs from 'dayjs';
|
||
|
|
||
|
dayjs.locale('zh-cn');
|
||
|
|
||
|
const DATE_TIME_FORMAT = 'YYYY-MM-DD HH:mm';
|
||
|
const DATE_FORMAT = 'YYYY-MM-DD ';
|
||
|
|
||
|
export function formatToDateTime(date: dayjs.ConfigType, format = DATE_TIME_FORMAT): string {
|
||
|
return dayjs(date).format(format);
|
||
|
}
|
||
|
|
||
|
export function formatToDate(date: dayjs.ConfigType, format = DATE_FORMAT): string {
|
||
|
return dayjs(date).format(format);
|
||
|
}
|
||
|
|
||
|
export const dateUtil = dayjs;
|