Explorar el Código

个人信息维护 部分时间显示 Invalid Date

临城职教中职
ndbs hace 2 años
padre
commit
a8b363613d
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Views/UserCenter/IndexInTeacher.cshtml

+ 5
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Views/UserCenter/IndexInTeacher.cshtml Ver fichero

@@ -497,7 +497,11 @@
},
date: function (value) {
var date = new Date(value);
return date.toLocaleDateString();
if (date instanceof Date && !isNaN(date.getTime())) {
return date.toLocaleDateString();
} else {
return '';
}
},
company: function (value) {
var result;


Cargando…
Cancelar
Guardar