Browse Source

1.0航站视图-默认航站从PEK改为航站列表第一个

zhongxiaoyu 1 year ago
parent
commit
648fecd528

+ 7 - 3
src/views/baggageManagementTemp/components/arrival/index.vue

@@ -393,9 +393,13 @@ export default {
         // })
         const res = await this.getQueryListAuth(SERVICE_ID.arrivalAirId, {}, 1, 9999, 278)
         if (Number(res.code) === 0) {
-          this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planLandingApt)
-          this.formData.currentAirport = 'PEK'
-          this.resetLoopEvent()
+          if (res.returnData?.listValues?.length) {
+            this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planLandingApt)
+            this.formData.currentAirport = res.returnData.listValues[0].planLandingApt
+            this.resetLoopEvent()
+          } else {
+            this.$message.warning('无航站数据权限')
+          }
         } else {
           this.$message.error(res.message)
         }

+ 7 - 3
src/views/baggageManagementTemp/components/departure/index.vue

@@ -351,9 +351,13 @@ export default {
         // })
         const res = await this.getQueryListAuth(SERVICE_ID.departureAirMainId, {}, 1, 9999, 276)
         if (Number(res.code) == 0) {
-          this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
-          this.formData.currentAirport = 'PEK'
-          this.resetLoopEvent()
+          if (res.returnData?.listValues?.length) {
+            this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
+            this.formData.currentAirport = res.returnData.listValues[0].planDepartureApt
+            this.resetLoopEvent()
+          } else {
+            this.$message.warning('无航站数据权限')
+          }
         } else {
           this.$message.error(res.message)
         }

+ 9 - 5
src/views/baggageManagementTemp/components/transferArrival/index.vue

@@ -659,11 +659,15 @@ export default {
         // })
         const res = await this.getQueryListAuth(SERVICE_ID.departureAirId, {}, 1, 9999, 280)
         if (Number(res.code) === 0) {
-          this.AirportList = res.returnData.listValues
-          this.formData.currentAirport = 'PEK'
-          this.getAviationData()
-          this.upAviationData()
-          this.resetLoopEvent()
+          if (res.returnData?.listValues?.length) {
+            this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
+            this.formData.currentAirport = res.returnData.listValues[0].planDepartureApt
+            this.getAviationData()
+            this.upAviationData()
+            this.resetLoopEvent()
+          } else {
+            this.$message.warning('无航站数据权限')
+          }
         } else {
           this.$message.error(res.message)
         }

+ 9 - 5
src/views/baggageManagementTemp/components/transferDeparture/index.vue

@@ -456,11 +456,15 @@ export default {
         // })
         const res = await this.getQueryListAuth(SERVICE_ID.departureAirLtId, {}, 1, 9999, 280)
         if (Number(res.code) === 0) {
-          this.AirportList = res.returnData.listValues
-          this.formData.currentAirport = 'PEK'
-          this.getAviationData()
-          this.upAviationData()
-          this.resetLoopEvent()
+          if (res.returnData?.listValues?.length) {
+            this.AirportList = this._.orderBy(res.returnData.listValues, o => o.planDepartureApt)
+            this.formData.currentAirport = res.returnData.listValues[0].planDepartureApt
+            this.getAviationData()
+            this.upAviationData()
+            this.resetLoopEvent()
+          } else {
+            this.$message.warning('无航站数据权限')
+          }
         } else {
           this.$message.error(res.message)
         }

+ 4 - 2
src/views/baggageManagementTemp/mixins/terminal.js

@@ -246,7 +246,8 @@ export default {
           'numberOfBulk',
           'noBSM'
         ].includes(column.property) &&
-        row[column.property]
+        row[column.property] &&
+        row[column.property] !== '0'
       ) {
         classes.push('cell-click')
         if (
@@ -320,7 +321,8 @@ export default {
           'numberOfBulk',
           'noBSM'
         ].includes(column.property) &&
-        row[column.property]
+        row[column.property] &&
+        row[column.property] !== '0'
       ) {
         this.$store.dispatch('keepAlive/addClickedCell', {
           row,