浏览代码

高级查询-添加字段,行李视图-悬浮显示报文

zhongxiaoyu 2 年之前
父节点
当前提交
5960b4773d

+ 1 - 1
.gitignore

@@ -1,12 +1,12 @@
 .DS_Store
 node_modules/
 dist/
+dist.*
 npm-debug.log*
 yarn-debug.log*
 yarn-error.log*
 package-lock.json
 tests/**/coverage/
-dist.zip
 
 # Editor directories and files
 .idea

+ 10 - 3
src/store/modules/app.js

@@ -1,7 +1,7 @@
 /*
  * @Author: your name
  * @Date: 2021-10-14 17:17:53
- * @LastEditTime: 2022-02-14 17:19:26
+ * @LastEditTime: 2022-05-18 15:25:20
  * @LastEditors: your name
  * @Description: In User Settings Edit
  * @FilePath: \Foshan4A\src\store\modules\app.js
@@ -14,12 +14,12 @@ const state = {
     withoutAnimation: false
   },
   device: 'desktop',
-  dialog: Cookies.get('dialogStatus') === 'true' ? true : false,
+  dialog: Cookies.get('dialogStatus') === 'true',
   pwdflag: false,
   outflag: false,
   outcheck: false,
   systemSet: Cookies.get('systemSet') != null ? Cookies.get('systemSet') : null,
-  queryForm:null
+  queryForm: JSON.parse(sessionStorage.getItem('queryForm')) ?? null
 }
 const mutations = {
   TOGGLE_SIDEBAR: state => {
@@ -55,6 +55,10 @@ const mutations = {
   SYSTEM_SET: (state, systemSet) => {
     state.systemSet = systemSet
     Cookies.set('systemSet', systemSet)
+  },
+  SET_QUERY_FORM(state, form) {
+    state.queryForm = form
+    sessionStorage.setItem('queryForm', JSON.stringify(form))
   }
 }
 
@@ -82,6 +86,9 @@ const actions = {
   },
   getSystemSet({ commit }, systemSet) {
     commit('SYSTEM_SET', systemSet)
+  },
+  setQueryForm({ commit }, form) {
+    commit('SET_QUERY_FORM', form)
   }
 }
 

+ 25 - 1
src/utils/table.js

@@ -1,12 +1,14 @@
 /*
  * @Author: Badguy
  * @Date: 2022-02-11 09:20:58
- * @LastEditTime: 2022-05-17 17:53:24
+ * @LastEditTime: 2022-05-18 17:11:35
  * @LastEditors: your name
  * @Description: 表格用
  * have a nice day!
  */
 
+import _ from 'lodash'
+
 /**
  * @description: 表格行合并
  * @param {Object} config
@@ -93,3 +95,25 @@ export function timeInZone(date, timeZone = 0, local = 8) {
   const second = formatDate(date.getSeconds())
   return `${year}-${month}-${day} ${hour}:${minute}:${second}`
 }
+
+// 表格添加过滤条件
+export function setTableFilters(tableData, filters) {
+  const tempSets = {}
+  Object.keys(filters).forEach(key => {
+    tempSets[key] = new Set()
+  })
+  tableData.forEach(item => {
+    Object.keys(tempSets).forEach(key => {
+      (item[key] ?? '') !== '' && tempSets[key].add(item[key])
+    })
+  })
+  Object.keys(tempSets).forEach(key => {
+    filters[key] = _.orderBy(
+      [...tempSets[key]].map(value => ({
+        text: value,
+        value
+      })),
+      o => o.value
+    )
+  })
+}

+ 181 - 177
src/views/advancedQuery/views/advancedHome.vue

@@ -157,15 +157,13 @@
                   />
                 </el-form-item>
               </el-col>
-            </el-row>
-            <el-row :gutter="20">
               <el-col :span="8">
                 <el-form-item
                   label="航班号"
-                  prop="flightNumber"
+                  prop="FlightNO"
                 >
                   <el-input
-                    v-model="form.flightNumber"
+                    v-model="form.FlightNO"
                     size="small"
                   />
                 </el-form-item>
@@ -186,8 +184,6 @@
                   />
                 </el-form-item>
               </el-col>
-            </el-row>
-            <el-row :gutter="20">
               <el-col :span="8">
                 <el-form-item label="行李牌号">
                   <el-input
@@ -200,6 +196,7 @@
                 <el-form-item label="特殊行李类型">
                   <el-select
                     v-model="form.type"
+                    size="small"
                     filterable
                     allow-create
                     default-first-option
@@ -222,8 +219,6 @@
                   />
                 </el-form-item>
               </el-col>
-            </el-row>
-            <el-row :gutter="20">
               <el-col :span="8">
                 <el-form-item label="旅客姓名">
                   <el-input
@@ -243,7 +238,7 @@
               <el-col :span="8">
                 <el-form-item label="值机序号">
                   <el-input
-                    v-model="form.check"
+                    v-model="form.checkInSequence"
                     size="small"
                   />
                 </el-form-item>
@@ -266,17 +261,90 @@
               </el-col>
               <el-col :span="8">
                 <el-form-item label="已翻减">
-                  <!-- <el-input
-                    v-model="form.DealResult"
+                  <el-select
+                    v-model="form.unLoad"
                     size="small"
-                  /> -->
+                    clearable
+                  >
+                    <el-option
+                      label="是"
+                      :value="1"
+                    />
+                    <el-option
+                      label="否"
+                      :value="0"
+                    />
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="已值机">
                   <el-select
-                    v-model="form.DealResult"
+                    v-model="form.checkIn"
+                    size="small"
                     clearable
                   >
                     <el-option
-                      label="OFF"
-                      value="OFF"
+                      label="是"
+                      :value="1"
+                    />
+                    <el-option
+                      label="否"
+                      :value="0"
+                    />
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="已激活">
+                  <el-select
+                    v-model="form.active"
+                    size="small"
+                    clearable
+                  >
+                    <el-option
+                      label="是"
+                      :value="1"
+                    />
+                    <el-option
+                      label="否"
+                      :value="0"
+                    />
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="中转行李">
+                  <el-select
+                    v-model="form.transferIn"
+                    size="small"
+                    clearable
+                  >
+                    <el-option
+                      label="是"
+                      value="1"
+                    />
+                    <el-option
+                      label="否"
+                      value="0"
+                    />
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="已取消">
+                  <el-select
+                    v-model="form.canceled"
+                    size="small"
+                    clearable
+                  >
+                    <el-option
+                      label="是"
+                      value="1"
+                    />
+                    <el-option
+                      label="否"
+                      value="0"
                     />
                   </el-select>
                 </el-form-item>
@@ -307,6 +375,8 @@ import Dialog from '@/layout/components/Dialog'
 import { parseTime } from '@/utils/index'
 import { queryMap, myQuery } from '@/api/dataIntegration'
 import { mapGetters } from 'vuex'
+import { setTableFilters } from '@/utils/table'
+
 export default {
   name: 'Advance',
   components: { Search, Dialog },
@@ -405,7 +475,7 @@ export default {
       time: [parseTime(new Date(), '{y}-{m}-{d}'), parseTime(new Date(), '{y}-{m}-{d}')],
       form: {
         status: '',
-        flightNumber: '',
+        FlightNO: '',
         destination: '',
         station: '',
         grade: '',
@@ -413,16 +483,20 @@ export default {
         U_Device_ID: '',
         name: '',
         pnr: '',
-        check: '',
+        checkInSequence: '',
         transferArrival: '',
         transferDeparture: '',
-        DealResult: ''
+        unLoad: '',
+        checkIn: '',
+        active: '',
+        transferIn: '',
+        canceled: ''
       },
       baggageTypeList: [],
       dataContent: [],
       rules: {
         // 机器信息表单验证
-        // flightNumber: [
+        // FlightNO: [
         //   { required: true, message: "请输入有效航班号", trigger: "blur" },
         // ],
       },
@@ -446,7 +520,7 @@ export default {
     }
   },
   computed: {
-    ...mapGetters(['clickedCells'])
+    ...mapGetters(['clickedCells', 'queryForm'])
   },
   created() {
     // console.log(this.$store.state.app.queryForm)
@@ -456,11 +530,6 @@ export default {
     //   dataContent.push(null)
     // }
     // this.statItemsQueryByStatMain(dataContent);
-    if (this.$store.state.app.queryForm) {
-      this.form = this.$store.state.app.queryForm
-      this.time = this.form.time
-      this.onCheckGj()
-    }
   },
   mounted() {
     this.baggageTypeQuery()
@@ -468,79 +537,27 @@ export default {
     document.querySelector('.interfaceLog_head_time_start .el-input__prefix').innerHTML = '开始:'
     document.querySelector('.interfaceLog_head_time_end .el-input__prefix i').remove()
     document.querySelector('.interfaceLog_head_time_end .el-input__prefix').innerHTML = '结束:'
-    const {
-      FlightNO,
-      FlightDate,
-      name,
-      grade,
-      startDate,
-      endDate,
-      station,
-      destination,
-      UDeviceID,
-      transferArrival,
-      transferDeparture
-    } = this.$route.query
-    if (FlightNO && FlightDate) {
-      this.$router.replace(this.$route.path)
-      const parsedTime = parseTime(new Date(FlightDate), '{y}-{m}-{d}')
-      this.time[0] = this.time[1] = parsedTime
-      this.$refs['search'].setSearch(FlightNO)
-      this.getSearchData(FlightNO)
-    }
-    if (startDate && endDate) {
-      this.time[0] = startDate
-      this.time[1] = endDate
-    }
 
-    if (name && station) {
-      this.form['name'] = name
-      this.form['station'] = station
-      this.onCheckGj()
-    }
-
-    if (grade && station) {
-      this.form['grade'] = grade
-      this.form['station'] = station
-      this.onCheckGj()
-    }
-
-    if (FlightNO && station) {
-      this.form['flightNumber'] = FlightNO
-      this.form['station'] = station
-      this.onCheckGj()
-    }
-
-    if (name && destination) {
-      this.form['name'] = name
-      this.form['destination'] = destination
-      this.onCheckGj()
-    }
-
-    if (grade && destination) {
-      this.form['grade'] = grade
-      this.form['destination'] = destination
-      this.onCheckGj()
-    }
-
-    if (FlightNO && destination) {
-      this.form['flightNumber'] = FlightNO
-      this.form['destination'] = destination
-      this.onCheckGj()
-    }
-    if (UDeviceID && FlightNO) {
-      this.form['flightNumber'] = FlightNO
-      this.form['U_Device_ID'] = UDeviceID
-      this.onCheckGj()
+    let flag = false
+    const query = this.$route.query
+    if (query) {
+      const { startDate, endDate } = query
+      Object.entries(query).forEach(([key, value]) => {
+        if (!['startDate', 'endDate'].includes(key) && (value ?? '') !== '') {
+          flag = true
+          this.form[key] = ['unLoad', 'checkIn', 'active', 'transferIn', 'canceled'].includes(key) ? Number(value) : value
+        }
+      })
+      startDate && (this.time[0] = startDate)
+      endDate && (this.time[1] = endDate)
     }
-    if (transferArrival && FlightNO) {
-      this.form['flightNumber'] = FlightNO
-      this.form['transferArrival'] = transferArrival
+    if (flag) {
       this.onCheckGj()
-    }
-    if (transferDeparture && FlightNO) {
-      this.form['flightNumber'] = FlightNO
-      this.form['transferDeparture'] = transferDeparture
+    } else if (this.queryForm) {
+      Object.keys(this.form).forEach(key => {
+        this.form[key] = this.queryForm[key]
+      })
+      this.time = this.queryForm.time
       this.onCheckGj()
     }
   },
@@ -552,11 +569,13 @@ export default {
   },
   beforeDestroy() {
     // console.log(this.$route.matched.filter(item => item.name && item.meta.title))
-    this.form.time = this.time
     if (this.$route.matched.filter(item => item.name && item.meta.title).length > 1) {
-      this.$store.state.app.queryForm = this.form
+      this.$store.dispatch('app/setQueryForm', {
+        ...this.form,
+        time: this.time
+      })
     } else {
-      this.$store.state.app.queryForm = null
+      this.$store.dispatch('app/setQueryForm', null)
     }
   },
   methods: {
@@ -633,6 +652,9 @@ export default {
       if (this.time[0] === '' || this.time[1] === '' || val === '') {
         this.$message.error('请先输入完整查询信息')
       } else {
+        // 点击搜索后清除跳转携带的查询信息
+        this.$route.query && this.$router.replace(this.$route.path)
+
         // let searchData = {dataContent:[this.time[0],this.time[1],val]}
         const az = /^[a-zA-Z]+$/
         const azNum = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]*$/
@@ -645,7 +667,7 @@ export default {
           this.onCheckGj()
         } else if (azNum.test(val) && top2.test(val)) {
           // 字母加数字且前两位为字母则为航班号
-          this.form['flightNumber'] = val
+          this.form['FlightNO'] = val
           this.onCheckGj()
         } else if (num.test(val) && val.length === 10) {
           // 纯数字且位数等于10则为行李牌号
@@ -663,58 +685,56 @@ export default {
     },
     // 高级查询-确定
     onCheckGj() {
-      // 参数顺序   【航班开始日期,航班结束日期,航班号,航班号,行李牌号,行李牌号,起飞站,起飞站,目的站,目的站,特殊行李类型,特殊 行李类型,旅客姓名大写拼音,旅客姓名大写拼音,pnr,pnr,值机号,值机号】
+      /* 参数顺序
+      【航班开始日期,航班结束日期,航班号,航班号,行李牌号,行李牌号,起飞站,起飞站,目的站,目的站,特殊行李类型,特殊行李类型,旅客姓名大写拼音,旅客姓名大写拼音,
+      pnr,pnr,值机号,值机号,中转进航班,中转进航班,中转出航班,中转出航班,容器编号,容器编号,
+      是否已翻减(null/OFF/其他),是否已翻减(null/OFF/其他),是否值机(null/0/1),是否值机(null/0/1),
+      是否激活(null/0/1),是否激活(null/0/1),是否中转(null/0/1),是否中转(null/0/1),是否取消行李(null/0/1),是否取消行李(null/0/1)】 */
       this.dataContent = []
       const time = this.time
-      const {
-        status,
-        flightNumber,
-        destination,
-        station,
-        grade,
-        type,
-        U_Device_ID,
-        name,
-        pnr,
-        check,
-        transferArrival,
-        transferDeparture,
-        DealResult
-      } = this.form
       if (time && time.length) {
         this.dataContent.push(time[0])
         this.dataContent.push(time[1])
-        if (
-          status === '' &&
-          flightNumber === '' &&
-          destination === '' &&
-          station === '' &&
-          grade === '' &&
-          type === '' &&
-          U_Device_ID === '' &&
-          name === '' &&
-          pnr === '' &&
-          check === '' &&
-          transferArrival === '' &&
-          transferDeparture === '' &&
-          DealResult === ''
-        ) {
+        if (Object.values(this.form).every(value => value === '')) {
           this.$message.error('请先输入查询信息')
         } else {
+          const {
+            status,
+            FlightNO,
+            grade,
+            station,
+            destination,
+            type,
+            name,
+            pnr,
+            checkInSequence,
+            transferArrival,
+            transferDeparture,
+            U_Device_ID,
+            unLoad,
+            checkIn,
+            active,
+            transferIn,
+            canceled
+          } = this.form
           this.setDataContent(
             status,
-            flightNumber,
+            FlightNO,
             grade,
             station,
             destination,
             type,
             name,
             pnr,
-            check,
+            checkInSequence,
             transferArrival,
             transferDeparture,
             U_Device_ID,
-            DealResult
+            unLoad,
+            checkIn,
+            active,
+            transferIn,
+            canceled
           )
           this.statItemsQueryByStatMain(this.dataContent)
           this.gjFlag = false
@@ -729,8 +749,8 @@ export default {
     },
     setDataContent(...dataContent) {
       dataContent.forEach(target => {
-        if (target) {
-          target = target.trim()
+        target = typeof target === 'string' ? target.trim() : target
+        if ((target ?? '') !== '') {
           this.dataContent.push(target, target)
         } else {
           this.dataContent.push(null, null)
@@ -742,29 +762,34 @@ export default {
       this.loading = true
       try {
         const result = await myQuery(queryMap.advacedQuery, ...dataContent)
-        this.tableData = this._.sortBy(result, ['FlightNO', 'FlightDate'])
-        this.spanArr = []
-        let contactDot = this.contactDot
-        this.tableData.forEach((item, index) => {
-          item.index = index
-          item['deleted'] === 'DEL' || (item['deleted'] = '')
-          item['activated'] = item['activated'] === 'I' ? '未激活' : '激活'
-          if (index === 0) {
-            this.spanArr.push(1)
-          } else {
-            if (
-              item.FlightNO === this.tableData[index - 1].FlightNO &&
-              item.FlightDate === this.tableData[index - 1].FlightDate
-            ) {
-              this.spanArr[contactDot] += 1
-              this.spanArr.push(0)
-            } else {
+        if (result.length) {
+          const tableData = this._.sortBy(result, ['FlightNO', 'FlightDate'])
+          this.spanArr = []
+          let contactDot = this.contactDot
+          this.tableData = tableData.map((item, index, arr) => {
+            item.index = index
+            item['deleted'] === 'DEL' || (item['deleted'] = '')
+            item['activated'] = item['activated'] === 'I' ? '未激活' : '激活'
+            if (index === 0) {
               this.spanArr.push(1)
-              contactDot = index
+            } else {
+              if (
+                item.FlightNO === arr[index - 1].FlightNO &&
+                item.FlightDate === arr[index - 1].FlightDate
+              ) {
+                this.spanArr[contactDot] += 1
+                this.spanArr.push(0)
+              } else {
+                this.spanArr.push(1)
+                contactDot = index
+              }
             }
-          }
-        })
-        this.setTableFilters(this.tableData, this.tableDataFilters)
+            return item
+          })
+          setTableFilters(this.tableData, this.tableDataFilters)
+        } else {
+          this.$message.info('未查询到匹配结果')
+        }
       } catch (error) {
         console.log('出错了', error)
       }
@@ -795,27 +820,6 @@ export default {
     //     console.log('出错了', error)
     //   }
     // },
-    // 表格添加过滤条件
-    setTableFilters(tableData = this.tableData, filters = this.tableDataFilters) {
-      const tempSets = {}
-      Object.keys(filters).forEach(key => {
-        tempSets[key] = new Set()
-      })
-      tableData.forEach(item => {
-        Object.keys(tempSets).forEach(key => {
-          (item[key] ?? '') !== '' && tempSets[key].add(item[key])
-        })
-      })
-      Object.keys(tempSets).forEach(key => {
-        filters[key] = this._.orderBy(
-          [...tempSets[key]].map(value => ({
-            text: value,
-            value
-          })),
-          o => o.value
-        )
-      })
-    },
     filterHandler(value, row, column) {
       const property = column['property']
       return row[property] === value

+ 6 - 26
src/views/baggageManagement/components/arrival/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: zk
  * @Date: 2022-01-17 10:39:22
- * @LastEditTime: 2022-05-18 09:36:58
+ * @LastEditTime: 2022-05-18 17:06:25
  * @LastEditors: your name
  * @Description: 进港01
 -->
@@ -145,13 +145,14 @@
     >
       <el-table
         ref="table"
-        :data="tableData"
         class="table"
+        height="calc(100vh - 177px)"
+        :data="tableData"
         :header-cell-class-name="headerCellClassName"
         :row-class-name="tableRowClassName"
+        :cell-class-name="cellClass"
         show-summary
         :summary-method="summaryMethod"
-        :cell-class-name="cellClass"
         border
         stripe
         fit
@@ -228,6 +229,7 @@ import terminalMixin from '../../mixins/terminal'
 import formMixin from '../../mixins/form'
 import tableColsMixin from '../../mixins/tableCols'
 import { getQuery } from '@/api/flight'
+import { setTableFilters } from '@/utils/table'
 
 export default {
   name: 'DepartureTerminalView',
@@ -482,34 +484,13 @@ export default {
         this.baggageCount = this.baggageCount + item.projectedLoad
       })
       this.tableData = this._.sortBy(tableData, ['FlightDate', 'PlanDepartureTime'])
-      this.setTableFilters(this.tableData, this.tableDataFilters)
+      setTableFilters(this.tableData, this.tableDataFilters)
       this.toOrderNum(this.baggageCount)
       // setInterval(() => {
       //   this.baggageCount = this.baggageCount+1;
       //    // 这里输入数字即可调用
       // }, 2000);
     },
-    // 表格添加过滤条件
-    setTableFilters(tableData = this.tableData, filters = this.tableDataFilters) {
-      const tempSets = {}
-      Object.keys(filters).forEach(key => {
-        tempSets[key] = new Set()
-      })
-      tableData.forEach(item => {
-        Object.keys(tempSets).forEach(key => {
-          (item[key] ?? '') !== '' && tempSets[key].add(item[key])
-        })
-      })
-      Object.keys(tempSets).forEach(key => {
-        filters[key] = this._.orderBy(
-          [...tempSets[key]].map(value => ({
-            text: value,
-            value
-          })),
-          o => o.value
-        )
-      })
-    },
     filterHandler(value, row, column) {
       const property = column['property']
       return row[property] === value
@@ -667,7 +648,6 @@ export default {
   width: 100%;
   ::v-deep .table {
     width: 100%;
-    height: calc(100vh - 177px);
     .cell {
       padding: 0;
       text-align: center;

+ 27 - 3
src/views/baggageManagement/components/baggage/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2022-01-17 10:39:22
- * @LastEditTime: 2022-05-16 15:33:46
+ * @LastEditTime: 2022-05-18 19:46:07
  * @LastEditors: your name
  * @Description: 行李视图
 -->
@@ -114,8 +114,16 @@
           :label="item.name"
           :align="item.align"
           :width="item.width + 'px'"
-          :show-overflow-tooltip="true"
-        />
+        >
+          <template slot-scope="scope">
+            <el-tooltip
+              :content="messageTooltip(item.resourceFile)"
+              placement="top"
+            >
+              <span @mouseenter="checkBaggageMessage(item)">{{ scope.row[item.prop] }}</span>
+            </el-tooltip>
+          </template>
+        </el-table-column>
       </el-table>
     </div>
 
@@ -351,6 +359,7 @@ export default {
         //   date: '2022-04-25 12:42:38:00'
         // }
       ],
+      messageTooltipList: [],
       checkList: [],
       stepData: new Array(9).fill({}),
       tableCols: [
@@ -406,6 +415,12 @@ export default {
         }
       }
       return 0
+    },
+    messageTooltip() {
+      return function (resourceFile) {
+        const message = this.messageTooltipList.find(message => message.resourceFile === resourceFile)
+        return message ? `${message.date}\n${message.dataContent.replaceAll(/[\r\n]{2,}/g, '\n')}` : ''
+      }
     }
   },
   watch: {
@@ -493,6 +508,15 @@ export default {
         }
       }
     },
+    async checkBaggageMessage({ resourceFile }) {
+      if (!this.messageTooltipList.find(message => message.resourceFile === resourceFile)) {
+        const result = await this.queryMessage(resourceFile)
+        this.messageTooltipList.push({
+          ...result,
+          resourceFile
+        })
+      }
+    },
     // 行李详情基础信息
     queryBaggageBasicInfo(dataContent) {
       return myQuery(queryMap.baggageBasicInfoByID, ...dataContent)

+ 11 - 27
src/views/baggageManagement/components/departure/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: zk
  * @Date: 2022-01-17 10:39:22
- * @LastEditTime: 2022-05-18 09:37:04
+ * @LastEditTime: 2022-05-18 17:53:37
  * @LastEditors: your name
  * @Description: 离港01
 -->
@@ -122,7 +122,6 @@
               src="../../../../assets/baggage/ic_setting.png"
               @click="show"
             >
-
           </el-form-item>
           <!-- <el-form-item>
             <el-button
@@ -147,8 +146,9 @@
     >
       <el-table
         ref="table"
-        :data="tableData"
         class="table"
+        height="calc(100vh - 177px)"
+        :data="tableData"
         :header-cell-class-name="headerCellClassName"
         :row-class-name="tableRowClassName"
         show-summary
@@ -222,6 +222,7 @@ import formMixin from '../../mixins/form'
 import tableColsMixin from '../../mixins/tableCols'
 import timeZoneMixin from '../../mixins/timeZone'
 import { getQuery } from '@/api/flight'
+import { setTableFilters } from '@/utils/table'
 
 export default {
   name: 'DepartureTerminalView',
@@ -373,6 +374,9 @@ export default {
       }
     },
     tableRowClassName({ row, rowIndex }) {
+      if (row.flightStatus === 'DLY') {
+        return 'bgl-orange'
+      }
       if (row.hasTakenOff === 0) {
         if (rowIndex === this.leaveCount - 1) {
           return 'bgl-hui redBorder'
@@ -428,34 +432,13 @@ export default {
         this.baggageCount = this.baggageCount + item.preLoad
       })
       this.tableData = this._.sortBy(tableData, ['hasTakenOff', 'PlanDepartureTime'])
-      this.setTableFilters(this.tableData, this.tableDataFilters)
+      setTableFilters(this.tableData, this.tableDataFilters)
       this.toOrderNum(this.baggageCount)
       // setInterval(() => {
       //   this.baggageCount = this.baggageCount+1;
       //    // 这里输入数字即可调用
       // }, 2000);
     },
-    // 表格添加过滤条件
-    setTableFilters(tableData = this.tableData, filters = this.tableDataFilters) {
-      const tempSets = {}
-      Object.keys(filters).forEach(key => {
-        tempSets[key] = new Set()
-      })
-      tableData.forEach(item => {
-        Object.keys(tempSets).forEach(key => {
-          (item[key] ?? '') !== '' && tempSets[key].add(item[key])
-        })
-      })
-      Object.keys(tempSets).forEach(key => {
-        filters[key] = this._.orderBy(
-          [...tempSets[key]].map(value => ({
-            text: value,
-            value
-          })),
-          o => o.value
-        )
-      })
-    },
     filterHandler(value, row, column) {
       const property = column['property']
       return row[property] === value
@@ -613,7 +596,6 @@ export default {
   width: 100%;
   ::v-deep .table {
     width: 100%;
-    height: calc(100vh - 177px);
     .cell {
       padding: 0;
       text-align: center;
@@ -643,7 +625,6 @@ export default {
     }
     .el-table__body-wrapper {
       tr.bgl-hui {
-        background: #d2d6df;
         td {
           background: #d2d6df;
         }
@@ -660,6 +641,9 @@ export default {
           }
         }
       }
+      tr.bgl-orange td {
+        background: orange;
+      }
     }
   }
 }

+ 4 - 24
src/views/baggageManagement/components/flight/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2022-01-17 10:39:22
- * @LastEditTime: 2022-05-18 10:03:49
+ * @LastEditTime: 2022-05-18 17:07:25
  * @LastEditors: your name
  * @Description: 航班视图
 -->
@@ -353,6 +353,7 @@ import TimeZoneSelector from '@/components/TimeZoneSelector'
 import { queryMap, myQuery } from '@/api/dataIntegration'
 import tableColsMixin from '../../mixins/tableCols'
 import timeZoneMixin from '../../mixins/timeZone'
+import { setTableFilters } from '@/utils/table'
 
 // const arrivalBaggageTableColumn = [
 //   { name: '序号', prop: 'index' },
@@ -515,27 +516,6 @@ export default {
         return ['合计', `共${num}件`]
       }
     },
-    // 表格添加过滤条件
-    setTableFilters(tableData = this.tableData, filters = this.tableDataFilters) {
-      const tempSets = {}
-      Object.keys(filters).forEach(key => {
-        tempSets[key] = new Set()
-      })
-      tableData.forEach(item => {
-        Object.keys(tempSets).forEach(key => {
-          (item[key] ?? '') !== '' && tempSets[key].add(item[key])
-        })
-      })
-      Object.keys(tempSets).forEach(key => {
-        filters[key] = this._.orderBy(
-          [...tempSets[key]].map(value => ({
-            text: value,
-            value
-          })),
-          o => o.value
-        )
-      })
-    },
     filterHandler(value, row, column) {
       const property = column['property']
       return row[property] === value
@@ -547,7 +527,7 @@ export default {
           FlightNO: this.queryData.FlightNO,
           startDate: this.queryData.FlightDate,
           endDate: this.queryData.FlightDate,
-          UDeviceID: row.containerNumber
+          U_Device_ID: row.containerNumber
         }
       })
     },
@@ -634,7 +614,7 @@ export default {
           return item
         })
 
-        this.setTableFilters(this.flightBaggageTableData, this.flightBaggageTableFilters)
+        setTableFilters(this.flightBaggageTableData, this.flightBaggageTableFilters)
       } catch (error) {
         console.log('错误', error)
       }

+ 3 - 69
src/views/baggageManagement/components/transferArrival/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: zk
  * @Date: 2022-01-17 10:39:22
- * @LastEditTime: 2022-05-18 11:30:27
+ * @LastEditTime: 2022-05-18 17:08:25
  * @LastEditors: your name
  * @Description: 离港01
 -->
@@ -177,9 +177,9 @@
     >
       <el-table
         ref="table"
-        :data="tableData"
         class="table"
-        max-height="100%"
+        :data="tableData"
+        height="calc(100vh - 177px)"
         show-summary
         :summary-method="summaryMethod"
         :span-method="arraySpanMethod"
@@ -421,49 +421,6 @@ export default {
   //   },
   // },
   methods: {
-    // cellClass({ row, column, rowIndex, columnIndex }) {
-    //   let classString = commonTableCellClass({ row, column, rowIndex, columnIndex })
-    //   if (['FlightNO', 'PreFlightNO', 'inTransferBaggageCount'].includes(column.property)) {
-    //     classString += '' + 'cell-click'
-    //     if (this.clickedCells.some(cell => cell.pageName === this.$route.name && cell.cellValue === row[column.property])) {
-    //       classString += ' cell-clicked'
-    //     }
-    //   }
-    //   return classString
-    // },
-    // cellClick(row, column, cell, event) {
-    //   if (['FlightNO'].includes(column.property)) {
-    //     this.$store.dispatch('keepAlive/addClickedCell', {
-    //       cellValue: row[column.property],
-    //       columnProp: column.property,
-    //       pageName: this.$route.name
-    //     })
-    //   }
-    //   switch (column.property) {
-    //     case 'FlightNO':
-    //       this.$router.push({ path: '/transfer/arrival/flightView', query: row })
-    //       break
-    //     case 'PreFlightNO': {
-    //       const row2 = this._.cloneDeep(row)
-    //       row2.FlightNO = row2.PreFlightNO
-    //       this.$router.push({ path: '/transfer/arrival/flightView', query: row2 })
-    //       break
-    //     }
-    //     case 'inTransferBaggageCount':
-    //       this.$router.push({
-    //         path: '/advance',
-    //         query: {
-    //           FlightNO: row.FlightNO,
-    //           transferArrival: row.PreFlightNO,
-    //           startDate: row.FlightDate,
-    //           endDate: row.FlightDate
-    //         }
-    //       })
-    //       break
-    //     default:
-    //       break
-    //   }
-    // },
     changeView() {
       this.$router.replace({
         path: '/transfer/departure'
@@ -625,34 +582,12 @@ export default {
         this.baggageCount = this.baggageCount + item.preLoad
       })
       this.tableData = this._.sortBy(tableData, ['PreFlightNO', 'PreFlightDate'])
-      // this.setTableFilters();
       // this.toOrderNum(this.baggageCount);
       // setInterval(() => {
       //   this.baggageCount = this.baggageCount+1;
       //    // 这里输入数字即可调用
       // }, 2000);
     },
-    // 表格添加过滤条件
-    setTableFilters(tableData = this.tableData, filters = this.tableDataFilters) {
-      const tempSets = {}
-      Object.keys(filters).forEach(key => {
-        tempSets[key] = new Set()
-      })
-      tableData.forEach(item => {
-        Object.keys(tempSets).forEach(key => {
-          (item[key] ?? '') !== '' && tempSets[key].add(item[key])
-        })
-      })
-      Object.keys(tempSets).forEach(key => {
-        filters[key] = this._.orderBy(
-          [...tempSets[key]].map(value => ({
-            text: value,
-            value
-          })),
-          o => o.value
-        )
-      })
-    },
     filterHandler(value, row, column) {
       const property = column['property']
       return row[property] === value
@@ -869,7 +804,6 @@ export default {
   width: 100%;
   ::v-deep .table {
     width: 100%;
-    height: calc(100vh - 177px);
     .cell {
       padding: 0;
       text-align: center;

+ 3 - 69
src/views/baggageManagement/components/transferDeparture/index.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: zk
  * @Date: 2022-01-17 10:39:22
- * @LastEditTime: 2022-05-18 11:30:20
+ * @LastEditTime: 2022-05-18 17:08:24
  * @LastEditors: your name
  * @Description: 离港01
 -->
@@ -177,9 +177,9 @@
     >
       <el-table
         ref="table"
-        :data="tableData"
         class="table"
-        max-height="100%"
+        height="calc(100vh - 177px)"
+        :data="tableData"
         show-summary
         :summary-method="summaryMethod"
         :span-method="arraySpanMethod"
@@ -409,49 +409,6 @@ export default {
     clearInterval(this.loopEvent)
   },
   methods: {
-    // cellClass({ row, column, rowIndex, columnIndex }) {
-    //   let classString = commonTableCellClass({ row, column, rowIndex, columnIndex })
-    //   if (['FlightNO', 'PreFlightNO', 'inTransferBaggageCount'].includes(column.property)) {
-    //     classString += '' + 'cell-click'
-    //     if (this.clickedCells.some(cell => cell.pageName === this.$route.name && cell.cellValue === row[column.property])) {
-    //       classString += ' cell-clicked'
-    //     }
-    //   }
-    //   return classString
-    // },
-    // cellClick(row, column, cell, event) {
-    //   if (['FlightNO'].includes(column.property)) {
-    //     this.$store.dispatch('keepAlive/addClickedCell', {
-    //       cellValue: row[column.property],
-    //       columnProp: column.property,
-    //       pageName: this.$route.name
-    //     })
-    //   }
-    //   switch (column.property) {
-    //     case 'FlightNO':
-    //       this.$router.push({ path: '/transfer/departure/flightView', query: row })
-    //       break
-    //     case 'PreFlightNO': {
-    //       const row2 = this._.cloneDeep(row)
-    //       row2.FlightNO = row2.PreFlightNO
-    //       this.$router.push({ path: '/transfer/departure/flightView', query: row2 })
-    //       break
-    //     }
-    //     case 'inTransferBaggageCount':
-    //       this.$router.push({
-    //         path: '/advance',
-    //         query: {
-    //           FlightNO: row.FlightNO,
-    //           transferArrival: row.PreFlightNO,
-    //           startDate: row.FlightDate,
-    //           endDate: row.FlightDate
-    //         }
-    //       })
-    //       break
-    //     default:
-    //       break
-    //   }
-    // },
     changeView() {
       this.$router.replace({
         path: '/transfer/arrival'
@@ -613,34 +570,12 @@ export default {
         this.baggageCount = this.baggageCount + item.preLoad
       })
       this.tableData = this._.sortBy(tableData, ['FlightDate', 'PlanDepartureTime'])
-      // this.setTableFilters();
       // this.toOrderNum(this.baggageCount);
       // setInterval(() => {
       //   this.baggageCount = this.baggageCount+1;
       //    // 这里输入数字即可调用
       // }, 2000);
     },
-    // 表格添加过滤条件
-    setTableFilters(tableData = this.tableData, filters = this.tableDataFilters) {
-      const tempSets = {}
-      Object.keys(filters).forEach(key => {
-        tempSets[key] = new Set()
-      })
-      tableData.forEach(item => {
-        Object.keys(tempSets).forEach(key => {
-          (item[key] ?? '') !== '' && tempSets[key].add(item[key])
-        })
-      })
-      Object.keys(tempSets).forEach(key => {
-        filters[key] = this._.orderBy(
-          [...tempSets[key]].map(value => ({
-            text: value,
-            value
-          })),
-          o => o.value
-        )
-      })
-    },
     filterHandler(value, row, column) {
       const property = column['property']
       return row[property] === value
@@ -835,7 +770,6 @@ export default {
   width: 100%;
   ::v-deep .table {
     width: 100%;
-    height: calc(100vh - 177px);
     .cell {
       padding: 0;
       text-align: center;

+ 249 - 157
src/views/baggageManagement/mixins/terminal.js

@@ -1,22 +1,22 @@
 /*
  * @Author: Badguy
  * @Date: 2022-03-04 11:41:55
- * @LastEditTime: 2022-05-18 09:45:14
+ * @LastEditTime: 2022-05-18 18:03:17
  * @LastEditors: your name
  * @Description: 航站视图通用部分
  * have a nice day!
  */
 
 import { queryMap, myQuery } from '@/api/dataIntegration'
-import {
-  CurrentAirportQuery,
-  RelatedAirportQuery,
-  AirCompanyQuery,
-  CraftTypeQuery,
-  FlightAttrQuery,
-  IntegratedQuery,
-  IntegratedQueryTransfer
-} from '@/api/flight'
+// import {
+//   CurrentAirportQuery,
+//   RelatedAirportQuery,
+//   AirCompanyQuery,
+//   CraftTypeQuery,
+//   FlightAttrQuery,
+//   IntegratedQuery,
+//   IntegratedQueryTransfer
+// } from '@/api/flight'
 import { mapGetters } from 'vuex'
 import { commonTableCellClass } from '@/utils/table'
 
@@ -154,16 +154,43 @@ export default {
     },
     cellClass({ row, column, rowIndex, columnIndex }) {
       let classString = commonTableCellClass({ row, column, rowIndex, columnIndex })
-      if (['FlightNO'].includes(column.property)) {
+      if (
+        [
+          'FlightNO',
+          'PreFlightNO',
+          'inTransferBaggageCount',
+          'tounLoad',
+          'unLoad',
+          'checkNumber',
+          'unActive',
+          'midIn',
+          'noCheckInNumber'
+        ].includes(column.property) &&
+        row[column.property]
+      ) {
         classString += 'cell-click'
-        if (this.clickedCells.some(cell => cell.pageName === this.$route.name && cell.cellValue === row[column.property])) {
+        if (
+          this.clickedCells.some(cell => cell.pageName === this.$route.name && cell.cellValue === row[column.property])
+        ) {
           classString += ' cell-clicked'
         }
       }
       return classString
     },
     cellClick(row, column, cell, event) {
-      if (['FlightNO'].includes(column.property)) {
+      if (
+        [
+          'FlightNO',
+          'PreFlightNO',
+          'inTransferBaggageCount',
+          'tounLoad',
+          'unLoad',
+          'checkNumber',
+          'unActive',
+          'midIn',
+          'noCheckInNumber'
+        ].includes(column.property)
+      ) {
         this.$store.dispatch('keepAlive/addClickedCell', {
           cellValue: row[column.property],
           columnProp: column.property,
@@ -180,7 +207,7 @@ export default {
             }
           })
           break
-        case 'PreFlightNO': {
+        case 'PreFlightNO':
           this.$router.push({
             path: '/transfer/arrival/flightView',
             query: {
@@ -189,7 +216,6 @@ export default {
             }
           })
           break
-        }
         case 'inTransferBaggageCount':
           this.$router.push({
             path: '/advance',
@@ -201,152 +227,218 @@ export default {
             }
           })
           break
+        case 'tounLoad':
+          this.$router.push({
+            path: '/advance',
+            query: {
+              FlightNO: row.FlightNO,
+              startDate: row.FlightDate,
+              endDate: row.FlightDate,
+              unLoad: 0
+            }
+          })
+          break
+        case 'unLoad':
+          this.$router.push({
+            path: '/advance',
+            query: {
+              FlightNO: row.FlightNO,
+              startDate: row.FlightDate,
+              endDate: row.FlightDate,
+              unLoad: 1
+            }
+          })
+          break
+        case 'checkNumber':
+          this.$router.push({
+            path: '/advance',
+            query: {
+              FlightNO: row.FlightNO,
+              startDate: row.FlightDate,
+              endDate: row.FlightDate,
+              checkIn: 1
+            }
+          })
+          break
+        case 'unActive':
+          this.$router.push({
+            path: '/advance',
+            query: {
+              FlightNO: row.FlightNO,
+              startDate: row.FlightDate,
+              endDate: row.FlightDate,
+              active: 0
+            }
+          })
+          break
+        case 'midIn':
+          this.$router.push({
+            path: '/advance',
+            query: {
+              FlightNO: row.FlightNO,
+              startDate: row.FlightDate,
+              endDate: row.FlightDate,
+              transferIn: 1
+            }
+          })
+          break
+        case 'noCheckInNumber':
+          this.$router.push({
+            path: '/advance',
+            query: {
+              FlightNO: row.FlightNO,
+              startDate: row.FlightDate,
+              endDate: row.FlightDate,
+              canceled: 1
+            }
+          })
+          break
         default:
           break
       }
     },
-    // 全部机场查询
-    async currentAirportQuery() {
-      const params = {
-        startDate: this.startDate,
-        endDate: this.endDate
-      }
-      try {
-        const res = await CurrentAirportQuery(params)
-        if (res.code === 0) {
-          if (res.returnData.length) {
-            const datas = this.formatData(res.returnData)
-            const datasCopy = this._.cloneDeep(datas)
-            this.currentAirportList = datas
-            const defaultData = datasCopy[0]
-            // this.formData.currentAirport = [[defaultData.code3, defaultData.builds[0].code3]]
-            // this.formData.currentAirport = [[defaultData.code3]]
-            this.formData.currentAirport = [defaultData.code3]
-            params.currentAirport = this.currentAirport
-            this.getFormData(params)
-            this.getTableData({
-              ...params,
-              world: this.formData.search
-            })
-          }
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    },
-    // 目的站/始飞站查询
-    async relatedAirportQuery(params = {}) {
-      try {
-        const res = await RelatedAirportQuery(params)
-        if (res.code === 0) {
-          const datas = this.formatData(res.returnData)
-          this.relatedAirportList = datas
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    },
-    // 航司查询
-    async inboundCarrierQuery(params = {}) {
-      try {
-        const res = await AirCompanyQuery({
-          ...params,
-          type: 'IN'
-        })
-        if (res.code === 0) {
-          this.carrierList = res.returnData
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    },
-    // 航司查询
-    async outgoingAirlineQuery(params = {}) {
-      try {
-        const res = await AirCompanyQuery({
-          ...params,
-          type: 'OUT'
-        })
-        if (res.code === 0) {
-          this.carrierList = res.returnData
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    },
-    // 机型查询
-    async craftTypeQuery(params = {}) {
-      try {
-        const res = await CraftTypeQuery(params)
-        if (res.code === 0) {
-          this.craftTypeList = res.returnData.map(item => ({
-            code3: item,
-            name: item
-          }))
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    },
-    // 航线查询
-    async flightAttrQuery(params = {}) {
-      try {
-        const res = await FlightAttrQuery(params)
-        if (res.code === 0) {
-          this.flightAttrList = res.returnData
-        } else {
-          this.$message.error(res.message)
-        }
-      } catch (error) {
-        console.log('出错了', error)
-      }
-    },
-    // 综合查询
-    async integratedQuery(params = {}) {
-      try {
-        this.loading = true
-        const res = await IntegratedQuery(params)
-        if (res.code === 0) {
-          const tableData = res.returnData
-          this.initTableData(tableData)
-          this.loading = false
-        } else {
-          this.$message.error(res.message)
-          this.loading = false
-        }
-      } catch (error) {
-        console.log('出错了', error)
-        this.loading = false
-      }
-    },
-    // 中转综合查询
-    async integratedQueryTransfer(params = {}) {
-      try {
-        this.loading = true
-        const res = await IntegratedQueryTransfer(params)
-        if (res.code === 0) {
-          const tableData = res.returnData
-          this.initTableData(tableData)
-          this.loading = false
-        } else {
-          this.$message.error(res.message)
-          this.loading = false
-        }
-      } catch (error) {
-        console.log('出错了', error)
-        this.loading = false
-      }
-    },
+    // // 全部机场查询
+    // async currentAirportQuery() {
+    //   const params = {
+    //     startDate: this.startDate,
+    //     endDate: this.endDate
+    //   }
+    //   try {
+    //     const res = await CurrentAirportQuery(params)
+    //     if (res.code === 0) {
+    //       if (res.returnData.length) {
+    //         const datas = this.formatData(res.returnData)
+    //         const datasCopy = this._.cloneDeep(datas)
+    //         this.currentAirportList = datas
+    //         const defaultData = datasCopy[0]
+    //         // this.formData.currentAirport = [[defaultData.code3, defaultData.builds[0].code3]]
+    //         // this.formData.currentAirport = [[defaultData.code3]]
+    //         this.formData.currentAirport = [defaultData.code3]
+    //         params.currentAirport = this.currentAirport
+    //         this.getFormData(params)
+    //         this.getTableData({
+    //           ...params,
+    //           world: this.formData.search
+    //         })
+    //       }
+    //     } else {
+    //       this.$message.error(res.message)
+    //     }
+    //   } catch (error) {
+    //     console.log('出错了', error)
+    //   }
+    // },
+    // // 目的站/始飞站查询
+    // async relatedAirportQuery(params = {}) {
+    //   try {
+    //     const res = await RelatedAirportQuery(params)
+    //     if (res.code === 0) {
+    //       const datas = this.formatData(res.returnData)
+    //       this.relatedAirportList = datas
+    //     } else {
+    //       this.$message.error(res.message)
+    //     }
+    //   } catch (error) {
+    //     console.log('出错了', error)
+    //   }
+    // },
+    // // 航司查询
+    // async inboundCarrierQuery(params = {}) {
+    //   try {
+    //     const res = await AirCompanyQuery({
+    //       ...params,
+    //       type: 'IN'
+    //     })
+    //     if (res.code === 0) {
+    //       this.carrierList = res.returnData
+    //     } else {
+    //       this.$message.error(res.message)
+    //     }
+    //   } catch (error) {
+    //     console.log('出错了', error)
+    //   }
+    // },
+    // // 航司查询
+    // async outgoingAirlineQuery(params = {}) {
+    //   try {
+    //     const res = await AirCompanyQuery({
+    //       ...params,
+    //       type: 'OUT'
+    //     })
+    //     if (res.code === 0) {
+    //       this.carrierList = res.returnData
+    //     } else {
+    //       this.$message.error(res.message)
+    //     }
+    //   } catch (error) {
+    //     console.log('出错了', error)
+    //   }
+    // },
+    // // 机型查询
+    // async craftTypeQuery(params = {}) {
+    //   try {
+    //     const res = await CraftTypeQuery(params)
+    //     if (res.code === 0) {
+    //       this.craftTypeList = res.returnData.map(item => ({
+    //         code3: item,
+    //         name: item
+    //       }))
+    //     } else {
+    //       this.$message.error(res.message)
+    //     }
+    //   } catch (error) {
+    //     console.log('出错了', error)
+    //   }
+    // },
+    // // 航线查询
+    // async flightAttrQuery(params = {}) {
+    //   try {
+    //     const res = await FlightAttrQuery(params)
+    //     if (res.code === 0) {
+    //       this.flightAttrList = res.returnData
+    //     } else {
+    //       this.$message.error(res.message)
+    //     }
+    //   } catch (error) {
+    //     console.log('出错了', error)
+    //   }
+    // },
+    // // 综合查询
+    // async integratedQuery(params = {}) {
+    //   try {
+    //     this.loading = true
+    //     const res = await IntegratedQuery(params)
+    //     if (res.code === 0) {
+    //       const tableData = res.returnData
+    //       this.initTableData(tableData)
+    //       this.loading = false
+    //     } else {
+    //       this.$message.error(res.message)
+    //       this.loading = false
+    //     }
+    //   } catch (error) {
+    //     console.log('出错了', error)
+    //     this.loading = false
+    //   }
+    // },
+    // // 中转综合查询
+    // async integratedQueryTransfer(params = {}) {
+    //   try {
+    //     this.loading = true
+    //     const res = await IntegratedQueryTransfer(params)
+    //     if (res.code === 0) {
+    //       const tableData = res.returnData
+    //       this.initTableData(tableData)
+    //       this.loading = false
+    //     } else {
+    //       this.$message.error(res.message)
+    //       this.loading = false
+    //     }
+    //   } catch (error) {
+    //     console.log('出错了', error)
+    //     this.loading = false
+    //   }
+    // },
     // 查询起飞机场 id: 31
     queryDepartureAirport() {
       return myQuery(queryMap.departureAirPort, ...this.dates)