// 日期模式
export const DATE_TYPES = {
// 年月日
YMD: 1,
// 年月
YM: 2,
// 年份
Y: 3,
// 年月日时分秒
'YMD-HMS': 4,
// 时分秒
HMS: 5,
// 时分
HM: 6
};