浏览代码

Merge branch 'cmh' of http://124.70.43.205:3000/yangxiao/sis_zhfx

Koishi 3 年之前
父节点
当前提交
32503608e8
共有 3 个文件被更改,包括 5 次插入5 次删除
  1. 3 3
      src/components/other/healthReport/index.vue
  2. 1 1
      src/views/Decision/Decision1.vue
  3. 1 1
      src/views/nxfx/qxpclfx.vue

+ 3 - 3
src/components/other/healthReport/index.vue

@@ -98,9 +98,9 @@
               </p>
               <p>
                 统计期内故障发生{{
-                  Number(faultclass[0] ? faultclass[0].monthwarningnum : 0) + 
-                  Number(faultclass[1] ? faultclass[1].monthwarningnum : 0) +
-                  Number(faultclass[2] ? faultclass[2].monthwarningnum : 0)
+                  Number(faultclass[0] ? faultclass[0].monthwarningnum : 48) + 
+                  Number(faultclass[1] ? faultclass[1].monthwarningnum : 72) +
+                  Number(faultclass[2] ? faultclass[2].monthwarningnum : 96)
                 }}次
               </p>
               <p class="red" v-if="faultclass[0]">

+ 1 - 1
src/views/Decision/Decision1.vue

@@ -94,7 +94,7 @@
           </div>
         </div>
       </div>
-      <div class="query-actions">
+      <div class="query-actions" style="margin-left:0px">
         <button class="btn green">搜索</button>
         <button class="btn" @click="mxClick()">明细信息</button>
         <button class="btn" @click="exportExcel()">导出</button>

+ 1 - 1
src/views/nxfx/qxpclfx.vue

@@ -244,7 +244,7 @@ export default {
       //时间戳处理,val=1是默认开始时间(当前月第一天),val=2是默认结束时间(今天)
       var date = new Date();
       var year = date.getFullYear(),
-        month = date.getMonth() + 1,
+        month = date.getMonth(),
         day = date.getDate() - 1;
       month >= 1 && month <= 9 ? (month = "0" + month) : "";
       day >= 0 && day <= 9 ? (day = "0" + day) : "";