yzf-date-format
v1.0.0
Published
日期格式化
Downloads
16
Maintainers
Readme
完整压缩版-欢迎使用(5.09 kB)
** 版权属于[email protected]
DFormat(value, format)日期Filter
// const aa = DFormat('2018-08-12', 'YYYY-MM-DD hh:mm:ss');
第三个参数默认是' '
// const aa = DFormat('2018-08-12', 'YYYY-MM-DD~hh:mm:ss', '~'); 2018-08-12 ~ 08:02:36
// const aa = DFormat('2018-08-12', ['YYYY-MM-DD', 'hh:mm:ss'], '~'); 2018-08-12 ~ 08:02:36
// DFormat('2018-08-12 12:35:24', 'YYYY~MM') => 2018~08
// DFormat('2018-08-12 12:35:24', 'MM-D') => 08-12
// DFormat('2018-08-12 12:35:24', 'YYYY~MM hh:mm') => 2018~08 12:35
// DFormat('2018-08-12 12:35:24', 'YYYY~MM/DD mm/ss', '<=>') => 2018~08/12<=>35/24
AddDate(value, length) 日期加length天
// const cc = AddDate(null, 61);
AddMonth(value, length) 日期加length月
// const dd = AddMonth(null, 2);