// 时间转换
function convertTime(dateValue) {
if (!dateValue) {
return '';
}
return new Date(dateValue).pattern('yyyy-MM-dd HH:mm:ss');
}
将查询出的时间戳字段改为正常日期格式
// 时间转换
function convertTime(dateValue) {
if (!dateValue) {
return '';
}
return new Date(dateValue).pattern('yyyy-MM-dd HH:mm:ss');
}
将查询出的时间戳字段改为正常日期格式