chenrui  1 жил өмнө
parent
commit
bd069c80f3

+ 8 - 6
src/views/statisticalanalysis/components/echart/tableforms.vue

@@ -2008,6 +2008,7 @@
           <el-table-column
             prop="flight_all_no"
             label="航班号"
+            class-name="cell-clicks"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
           >
@@ -2015,6 +2016,7 @@
           <el-table-column
             prop="flight_date"
             label="航班日期"
+            class-name="cell-clicks"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
           >
@@ -2024,6 +2026,7 @@
           <el-table-column
             prop="index_class"
             label="指标分类"
+            class-name="cell-clicks"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
           >
@@ -2749,8 +2752,6 @@ export default {
       }
     },
     dellclick(row, column, cell) {
-      // console.log(row);
-      // console.log(this.copaform, "11111111");
       let arr = {};
       arr.fd1 = row.flight_date;
       arr.fd2 = row.flight_date;
@@ -2765,10 +2766,7 @@ export default {
       } else if (this.copaform.id === 52244) {
         arr.typeName = "国际进港";
       }
-      arr.nodeName = row.index_class
-      // arr.typeName = this.copaform.id
-      // arr.nodeName = row.flight_date;
-      // arr.fd1 = row.flight_date;
+      arr.nodeName = row.index_class;
       this.$router.push({
         path: "/statisticalanalysis/dataException/detailWay",
         query: arr,
@@ -2948,6 +2946,10 @@ export default {
       color: #2d67e3;
       cursor: pointer;
     }
+    &.cell-clicks {
+      color: #2d67e3;
+      cursor: pointer;
+    }
   }
   .elChgTbeClmn .cell {
     padding: 0px !important;

+ 4 - 0
src/views/statisticalanalysis/dataException/views/detail.vue

@@ -291,6 +291,10 @@ export default {
         this.listname =
           "航班节点明细统计" + "-" + typeName + "-" + fd1 + "-" + fd2;
         this.getQuery(fttpId, option, null);
+        this.copaform = {
+          id: fttpId,
+          dataContent: option,
+        };
       }
     }
   },