Ver código fonte

Merge branch 'dev-1.1.4' into 'dev-1.1.4'

时间区间修改

See merge request lihong/thmz_system!9
zheng 2 anos atrás
pai
commit
08cbe1a7cc
1 arquivos alterados com 2 adições e 1 exclusões
  1. 2 1
      src/main/resources/static/js/doctorIndex.js

+ 2 - 1
src/main/resources/static/js/doctorIndex.js

@@ -136,7 +136,8 @@ function getRecentMonth_Date(n) {
     let dyear = datenow.getFullYear();
     let dmonth = datenow.getMonth() + 1;
     dmonth = dmonth < 10 ? 0 + dmonth : dmonth;
-    let dday = datenow.getDate();
+    // let dday = datenow.getDate();
+    let dday = '01';
     const datestart =
         dyear.toString() + '-' + dmonth.toString() + '-' + dday.toString() + ' 00:00:00';
     result += datestart + ',';