Procházet zdrojové kódy

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

临城职教中职
ndbs před 2 roky
rodič
revize
a8b363613d
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  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 Zobrazit soubor

@@ -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;


Načítá se…
Zrušit
Uložit