Răsfoiți Sursa

修改筛选

zhaoke 1 an în urmă
părinte
comite
c094e4b2c0
1 a modificat fișierele cu 9 adăugiri și 18 ștergeri
  1. 9 18
      src/views/newFlightView/index.vue

+ 9 - 18
src/views/newFlightView/index.vue

@@ -362,26 +362,10 @@ export default {
     },
     // 获取行李列表后设置快捷筛选
     tableLoad (tableData) {
-      const query = this.$route.query
-      let tableKey = null
-      Object.keys(query).forEach((key) => {
-        const findKey = this.viewClassName.filter(item => item.value === key)
-        if (findKey?.length) {
-          tableKey = [...findKey]
-        }
-      })
-      if (tableKey?.length) {
-        this.fastFilterOptions = []
-        this.fastFilterOptions = [...this.viewClassName].map(item => ({
-          label: item.label,
-          value: item.value
-        }))
-      }
-      else {
-        this.setFastFilterOptions(tableData)
-      }
+      this.setFastFilterOptions(tableData)
     },
     setFastFilterOptions (tableData) {
+      const viewDatas = []
       const inFlightNOList = new Set()
       const transferFlightNOList = new Set()
       tableData.forEach(item => {
@@ -408,6 +392,13 @@ export default {
           }))
         }
       )
+      this.viewClassName.forEach(item => {
+        viewDatas.push({
+          label: item.label,
+          value: item.value
+        })
+      })
+      this.fastFilterOptions = this.fastFilterOptions.concat(viewDatas)
     }
   }
 }