Browse Source

Merge branch 'busi-timeout' into 'master'

debug

See merge request spfm-group/spfm-market-front!21
侯利飞 3 years ago
parent
commit
3753f7995e
1 changed files with 4 additions and 3 deletions
  1. 4 3
      src/pages/main/busitime/busiTimeout.vue

+ 4 - 3
src/pages/main/busitime/busiTimeout.vue

@@ -37,8 +37,8 @@
             </div>
         </fullscreen>
         <el-dialog title="异常数据监控(超时业务笔数达到或超过10%)" :visible.sync="dialogStatus" width="50%" :destroy-on-close="true"
-                   :modal-append-to-body="false" :close-on-click-modal="true" :before-close="closedia">
-            <div v-loading="loadinged">
+                   :modal-append-to-body="false" :close-on-click-modal="true" >
+            <div>
                 <el-table
                     height="400px"
                     v-loading="loadingDialog"
@@ -199,6 +199,7 @@ export default {
           v[0] && v[0] !=='-' ? this.params.region = v[0] : '';
           v[1] ? this.params.channelType = v[1] : '';
           v[2] && v[2] !=='-' ? this.params.opName= v[2] : '';
+          console.log("11111111111111111111111"+v[3]);
           if(v[3]){
               var date = new Date(v[3]);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
               var Y = date.getFullYear() ;
@@ -329,7 +330,7 @@ export default {
 
   created() {
 
-      var date = new Date(this.searchList[2].value);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
+      var date = new Date(this.searchList[3].value);//时间戳为10位需*1000,时间戳为13位的话不需乘1000
       var Y = date.getFullYear();
       var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1);
       var D = (date.getDate()+1 < 10 ? '0'+(date.getDate()) : date.getDate())