//日期时间转换 formData(New Date() ,'yyyy-MM-dd')
export function formData(dates,format) {
if(dates == ''||dates ==null){
return '';
}else{
let date = new Date(dates)
let time = {
'M+': date.getMonth() + 1,
'd+': date.getDate(),
'h+': date.getHours(),
'm+': date.getMinutes(),
's+': date.getSeconds(),
'q+': Math.floor((date.getMonth() + 3) / 3),
'S+': date.getMilliseconds(),
};
if (/(y+)/i.test(format)) {
format = format.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
}
for(let k in time){
if (new RegExp('(' + k + ')').test(format)) {
format = format. replace(RegExp.$1, RegExp.$1.length === 1 ? time[k] : ('00' + time[k]).substr(('' + time[k]) . length));
}
}
return format;
}
// }
}