修改:1、qtask.call 服务

2、其他界面样式优化
This commit is contained in:
2024-04-01 01:06:06 +08:00
parent 4dcebf32de
commit 7bbbd29931
18 changed files with 170 additions and 104 deletions

View File

@@ -231,6 +231,9 @@ var red = {
},
timeFmt: function (date,fmt){
if (!this.isValidDate(date)) {
return "";
}
fmt = fmt || "yyyy-MM-dd HH:mm:ss";
var o = {
"M+" : date.getMonth()+1, //月份
@@ -286,6 +289,9 @@ var red = {
}
}
return cloneObj;
},
isValidDate: function (date) {
return date instanceof Date && !isNaN(date.getTime());
}
}