Browse Source

龙门架下载问题和序号问题修改

zhaoke 1 năm trước cách đây
mục cha
commit
2e3c95d8ce

+ 61 - 53
src/hooks/useTableFilterAndSort.ts

@@ -1,14 +1,14 @@
-import { Ref } from 'vue'
-import _ from 'lodash'
-import { CommonData, CommonTableColumn, MaybeRef } from '~/common'
+import { Ref } from "vue";
+import _ from "lodash";
+import { CommonData, CommonTableColumn, MaybeRef } from "~/common";
 
 export interface Options {
-  defaultFilterValueMap?: { [x: string]: string[] } // 默认筛选条件
-  extraFilterValueMap?: MaybeRef<{ [x: string]: string[] }> // 表头之外的额外筛选条件
-  defaultSortRuleMap?: { [x: string]: string } // 默认排序条件
-  extraSortRuleMap?: MaybeRef<{ [x: string]: string }> // 表头之外的额外排序条件
-  defaultSortFunction?: (a: CommonData, b: CommonData) => number // 默认排序函数
-  sortMode?: 'single' | 'multiple'
+  defaultFilterValueMap?: { [x: string]: string[] }; // 默认筛选条件
+  extraFilterValueMap?: MaybeRef<{ [x: string]: string[] }>; // 表头之外的额外筛选条件
+  defaultSortRuleMap?: { [x: string]: string }; // 默认排序条件
+  extraSortRuleMap?: MaybeRef<{ [x: string]: string }>; // 表头之外的额外排序条件
+  defaultSortFunction?: (a: CommonData, b: CommonData) => number; // 默认排序函数
+  sortMode?: "single" | "multiple";
 }
 
 export function useTableFilterAndSort(
@@ -17,31 +17,31 @@ export function useTableFilterAndSort(
   options: Options = {}
 ) {
   if (!options.sortMode) {
-    options.sortMode = 'single'
+    options.sortMode = "single";
   }
 
   watch([tableColumns, tableData], ([columns, records]) => {
-    const tempSets = {}
-    columns.forEach(column => {
+    const tempSets = {};
+    columns.forEach((column) => {
       if (column.needFilters) {
-        tempSets[column.columnName] = new Set()
+        tempSets[column.columnName] = new Set();
       }
-    })
-    records.forEach(item => {
-      Object.keys(tempSets).forEach(key => {
-        '' !== (item[key] ?? '') && tempSets[key].add(String(item[key]))
-      })
-    })
-    Object.keys(tempSets).forEach(key => {
+    });
+    records.forEach((item) => {
+      Object.keys(tempSets).forEach((key) => {
+        "" !== (item[key] ?? "") && tempSets[key].add(String(item[key]));
+      });
+    });
+    Object.keys(tempSets).forEach((key) => {
       filterOptionMap[key] = _.orderBy(
-        [...tempSets[key]].map(value => ({
+        [...tempSets[key]].map((value) => ({
           label: value,
           value,
         })),
-        o => o.value
-      )
-    })
-  })
+        (o) => o.value
+      );
+    });
+  });
 
   const {
     defaultFilterValueMap = {},
@@ -49,61 +49,69 @@ export function useTableFilterAndSort(
     defaultSortRuleMap = {},
     extraSortRuleMap = {},
     defaultSortFunction,
-  } = options
+  } = options;
 
   const filterOptionMap = reactive<{
-    [x: string]: { label: string; value: string }[]
-  }>({})
-  const filterValueMap = reactive(defaultFilterValueMap)
+    [x: string]: { label: string; value: string }[];
+  }>({});
+  const filterValueMap = reactive(defaultFilterValueMap);
   const mergedFilterValueMap = computed(() => ({
     ...unref(extraFilterValueMap),
     ...filterValueMap,
-  }))
+  }));
 
-  const sortRuleMap = reactive(defaultSortRuleMap)
+  const sortRuleMap = reactive(defaultSortRuleMap);
   const mergedSortRuleMap = computed(() => ({
     ...unref(extraSortRuleMap),
     ...sortRuleMap,
-  }))
+  }));
 
   const dealedTableData = computed(() => {
-    const filtered = tableData.value.filter(item => {
-      let flag = true
+    const filtered = tableData.value.filter((item) => {
+      let flag = true;
       Object.entries(unref(mergedFilterValueMap)).forEach(([key, arr]) => {
         if (arr.length && !arr.includes(String(item[key]))) {
-          flag = false
+          flag = false;
         }
-      })
-      return flag
-    })
+      });
+      return flag;
+    });
     const sortRules = Object.entries(unref(mergedSortRuleMap)).reduce(
-      (pre: [string[], ('asc' | 'desc')[]], [key, value]) => {
+      (pre: [string[], ("asc" | "desc")[]], [key, value]) => {
         if (value) {
-          pre[0].push(key)
-          pre[1].push(value === 'ascending' ? 'asc' : 'desc')
+          pre[0].push(key);
+          pre[1].push(value === "ascending" ? "asc" : "desc");
         }
-        return pre
+        return pre;
       },
       [[], []]
-    )
+    );
     if (sortRules[1].length) {
-      return _.orderBy(filtered, sortRules[0], sortRules[1])
+      return _.orderBy(filtered, sortRules[0], sortRules[1]);
     }
     if (defaultSortFunction) {
-      return filtered.sort(defaultSortFunction)
+      return filtered.sort(defaultSortFunction);
     }
-    return filtered
-  })
+    if (filtered.length) {
+      const list0 = filtered[0];
+      if (list0["indexs"] != undefined) {
+        filtered.map((item, index) => {
+          item["indexs"] = index + 1;
+        });
+      }
+    }
+    return filtered;
+  });
 
   const sortChangeHandler = (currentKey: string, sortRule: string) => {
-    if (options.sortMode === 'single' && sortRule) {
-      Object.keys(sortRuleMap).forEach(key => {
+    if (options.sortMode === "single" && sortRule) {
+      Object.keys(sortRuleMap).forEach((key) => {
         if (currentKey !== key) {
-          delete sortRuleMap[key]
+          delete sortRuleMap[key];
         }
-      })
+      });
     }
-  }
+  };
 
   return {
     filterOptionMap,
@@ -111,5 +119,5 @@ export function useTableFilterAndSort(
     sortRuleMap,
     sortChangeHandler,
     dealedTableData,
-  }
+  };
 }

+ 24 - 24
src/views/statisticalanalysis/components/echart/tableforms.vue

@@ -24,7 +24,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -64,7 +64,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -104,7 +104,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -151,7 +151,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -192,7 +192,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -278,7 +278,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -375,7 +375,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -493,7 +493,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -583,7 +583,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -715,7 +715,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -812,7 +812,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -908,7 +908,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -1146,7 +1146,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -1209,7 +1209,7 @@
           :header-cell-style="{ background: '#F9FAFC' }"
         >
           <el-table-column
-            prop="indexs"
+            type="index"
             label="序号"
             :show-overflow-tooltip="tableColumnProperty.showOverflowTooltip"
             :align="tableColumnProperty.align"
@@ -1272,8 +1272,8 @@ export default {
     },
     totalNum: {
       type: Number,
-      default: 0
-    }
+      default: 0,
+    },
   },
   data() {
     return {
@@ -1458,20 +1458,20 @@ export default {
         if (index === 0) {
           sums[index] = "合计";
           if (this.totalNum) {
-            sums[index] += `:${this.totalNum}`
+            sums[index] += `:${this.totalNum}`;
           }
           // return;
         }
         const values = data.map((item) => Number(item[column.property]));
         if (
           ![
-            'stand',
-            'flightdate',
-            'indexs',
-            'flightNo',
-            'line',
-            'cargoCompany',
-            'dat',
+            "stand",
+            "flightdate",
+            "indexs",
+            "flightNo",
+            "line",
+            "cargoCompany",
+            "dat",
           ].includes(column.property)
         ) {
           sums[index] = values.reduce((prev, curr) => {

+ 18 - 10
src/views/statisticalanalysis/gantryframe/index.vue

@@ -145,6 +145,7 @@ export default {
       this.currentPage = val;
     },
     getFormData(data) {
+      const ppsName = data.pps == 1 ? "基于通道" : "基于代理人";
       this.listall.piclvall = 0;
       this.listall.acclvall = 0;
       this.listall.readlvall = 0;
@@ -157,7 +158,14 @@ export default {
       this.tableData.time = [];
       this.tableData.data1 = [];
       this.tableData.data2 = [];
-      this.listname = "龙门架统计" + data.dateTime[0] + "--" + data.dateTime[1];
+      this.listname =
+        "龙门架统计" +
+        "--" +
+        ppsName +
+        "--" +
+        data.dateTime[0] +
+        "--" +
+        data.dateTime[1];
       this.uppps = data.pps;
       if (data.pps === 1) {
         (this.listqueryTemplateID = DATACONTENT_ID.modeChannelbased),
@@ -365,7 +373,7 @@ export default {
         /**
          * 源数据导入到excel的数据每一条重新拼成一个数组,数组里的每个元素就是filterVal里的每个字段
          */
-        const data = this.tableListcop.map((item, index) => {
+        const data = this.tableList.map((item, index) => {
           if (this.uppps === 1) {
             return [
               item.indexs,
@@ -376,10 +384,10 @@ export default {
               item.accNum,
               item.reAccNum,
               item.pcs,
-              item.piclv,
-              item.acclv,
-              item.readlv,
-              item.oklv,
+              item.piclvs,
+              item.acclvs,
+              item.readlvs,
+              item.oklvs,
             ];
           } else if (this.uppps === 2) {
             return [
@@ -392,10 +400,10 @@ export default {
               item.accNum,
               item.reAccNum,
               item.pcs,
-              item.piclv,
-              item.acclv,
-              item.readlv,
-              item.oklv,
+              item.piclvs,
+              item.acclvs,
+              item.readlvs,
+              item.oklvs,
             ];
           }
         });