zhaoke 9 months ago
parent
commit
4b3d48d312

+ 1 - 1
src/views/newBagDetails/components/baggageView.vue

@@ -166,7 +166,7 @@ export default {
           // if ((nowdate == takedate.replace(' ', '')) && (!arrs[index + 1].stateValue && !arrs[index + 1].loclValue && !arrs[index + 1].timeValue)) {
           //   return 'step-circle-danger'
           // }
-          if (!arrs[index + 1].stateValue && !arrs[index + 1].loclValue && !arrs[index + 1].timeValue && !arrs[index + 2].stateValue && !arrs[index + 2].loclValue && !arrs[index + 2].timeValue) {
+          if (this.tableData.length < 2 && !arrs[index + 1].stateValue && !arrs[index + 1].loclValue && !arrs[index + 1].timeValue && !arrs[index + 2].stateValue && !arrs[index + 2].loclValue && !arrs[index + 2].timeValue) {
             return 'step-circle-danger'
           } else {
             return 'step-circle-waring'

+ 13 - 3
src/views/newBagDetails/index.vue

@@ -174,6 +174,18 @@ export default {
         console.log(error)
       }
     },
+    //设置行李信息弹框
+    setBagInfo () {
+      const bagColsMap = JSON.parse(localStorage.getItem('bagColsMap')) || {}
+      this.tableCols = [...this.orderColData([...this.msgs1]), ...this.hideData([...this.msgs1])]
+      if (!Object.keys(bagColsMap).length) {
+        this.tableColsCopy = this.orderColData([...this.msgs1])
+        this.checkedKeysTemp = this.orderColData([...this.msgs1]).map(item => item.queryTemplateColumnSetID)
+      } else {
+        this.tableColsCopy = [...bagColsMap.bagColsLists]
+        this.checkedKeysTemp = [...bagColsMap.bagColsKeys]
+      }
+    },
     //获取行李信息
     async getLuggageInfo (auth_id, checkParams) {
       try {
@@ -191,9 +203,7 @@ export default {
               }
             })
           }
-          this.tableCols = [...this.orderColData([...this.msgs1]), ...this.hideData([...this.msgs1])]
-          this.tableColsCopy = this.orderColData([...this.msgs1])
-          this.checkedKeysTemp = this.orderColData([...this.msgs1]).map(item => item.queryTemplateColumnSetID)
+          this.setBagInfo()
           if (!checkParams) {
             this.getLuggageNums()
           }

+ 4 - 0
src/views/newBagDetails/mix/tableCols.js

@@ -68,6 +68,10 @@ export default {
       const datas = this.colsFilter(this._.cloneDeep(this.tableCols))
       const newTableColsCopy = datas.filter((item) => item.needShow)
       this.tableColsCopy = _.cloneDeep(newTableColsCopy)
+      const bagColsMap = {}
+      bagColsMap.bagColsLists = _.cloneDeep(newTableColsCopy)
+      bagColsMap.bagColsKeys = [...this.checkedKeysTemp]
+      localStorage.setItem('bagColsMap', JSON.stringify(bagColsMap))
       setTimeout(() => {
         if (!this[tableDataName].length) {
           this[tableDataName] = tableDataTemp

+ 5 - 3
src/views/newFlightView/index.vue

@@ -346,11 +346,13 @@ export default {
         this.deArrsNum.push(obj)
         newMd.push({
           name: item,
-          value: this.deArrs[index].abnormalState
+          value: this.deArrs[index] ? this.deArrs[index].abnormalState : null
         })
       })
-      newMd[0].value = null
-      newMd[newMd.length - 1].value = null
+      if (newMd.length > 2) {
+        newMd[0].value = null
+        newMd[newMd.length - 1].value = null
+      }
       this.checkStates = newMd
       const [a1, a2] = [m[0], m[m.length - 1]]
       const { outAirport, landAirport } = this.infoObj