shawenguan 1 år sedan
förälder
incheckning
80bac2db81
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      Scripts/unicom/unicomHelper.js

+ 2 - 2
Scripts/unicom/unicomHelper.js

@@ -383,12 +383,12 @@ function handleFlowManagement() {
     let outputString = rspData;
     if (outputString.indexOf('timeType:"AM"') != -1) {
         let regex = /\(\{timeNum:-?\d+,timeType:"AM"\}\)/g;
-        let newValue = '({timeNum:120,timeType:"AM"})';
+        let newValue = '({timeNum:0,timeType:"AM"})';
         outputString = outputString.replace(regex, newValue);
         gRetBody = outputString;
     } else if (outputString.indexOf('timeType:"PM"') != -1) {
         let regex = /\(\{timeNum:-?\d+,timeType:"PM"\}\)/g;
-        let newValue = '({timeNum:120,timeType:"PM"})';
+        let newValue = '({timeNum:0,timeType:"PM"})';
         outputString = outputString.replace(regex, newValue);
         gRetBody = outputString;
     }