wangchuanjin 9 years ago
parent
commit
97ba826098
1 changed files with 7 additions and 0 deletions
  1. 7 0
      core/src/web/staticres/js/qfw.js

+ 7 - 0
core/src/web/staticres/js/qfw.js

@@ -751,6 +751,13 @@ function processAlterInfo(alterInfo){
 			altDate = $.trim(altDate);
 			if(altDate == "" || altDate == "null" || altDate == "空"){
 				altDate = null;
+			}else{
+				var altDateTmp = altDate;
+				try{
+					altDate = new Date(altDate).FormatEnhance("yyyy-mm-dd HH:MM:ss");
+				 }catch(e){
+					altDate = altDateTmp;
+				 }
 			}
 		}
 		object.AltDate = altDate;