Browse Source

同步更新

zhongxiaoyu 1 year ago
parent
commit
ad48b92797

+ 4 - 4
src/views/newArrival/index.vue

@@ -41,9 +41,9 @@
           <el-form-item>
             <el-button class="btn-shadow" size="mini" type="primary" @click="onSubmit(0)">搜索</el-button>
           </el-form-item>
-          <el-form-item>
+          <!-- <el-form-item>
             <TimeZoneSelector />
-          </el-form-item>
+          </el-form-item> -->
           <el-form-item>
             <img class="btn-img btn-shadow" src="@/assets/baggage/ic_export.png" title="导出" @click="exportHandler('table', '航站离港列表')" />
           </el-form-item>
@@ -138,10 +138,10 @@ export default {
     async getAirPortData (type = 1) {
       try {
         let res = null
-        res = this.TauthId ? await this.getQueryListAuth(this.TqueryId || SERVICE_ID.getAirpotId, {}, 1, 999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId)
+        res = this.TauthId ? await this.getQueryListAuth(this.TqueryId || SERVICE_ID.getAirpotId, {}, 1, 9999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId, {}, 1, 9999)
         if (Number(res.code) === 0) {
           this.AirportList = res.returnData;
-          if (type) {
+          if (type && !this.formData.currentAirport) {
             const flag = res.returnData.filter(item => item.IATACode == 'PEK');
             this.formData.currentAirport = this.TauthId && flag.length ? 'PEK' : res.returnData[0].IATACode;
           }

+ 18 - 3
src/views/newBagDetails/components/baggageMessage.vue

@@ -73,7 +73,21 @@ export default {
         this.loading = true
         const { code, returnData } = await this.getQueryList(SERVICE_ID.bagDetailId, this.dataContent)
         if (code == 0 && returnData && returnData.length) {
-          this.messageList = [...returnData]
+          // this.messageList = [...returnData]
+          const messageDatas = [...returnData]
+          messageDatas.map(item => {
+            const { dataObjectId } = item
+            const len = dataObjectId.length
+            const popNums = [206, 207, 208, 209, 210, 211, 212, 213, 214].map(item => item.toString())
+            const target = dataObjectId.substring(len - 3, len)
+            const place = popNums.includes(target) ? '(广州)' : '(国航)'
+            item.readTime = item.readTime.replace('T', ' ') + place
+          })
+          this.messageList = messageDatas
+          // this.messageList = returnData.map(message => ({
+          //   ...message,
+          //   readTime: message.readTime ? `${message.readTime.replace('T', ' ')}(广州)` : '(北京)'
+          // }))
           this.loading = false
         } else {
           this.loading = false
@@ -88,7 +102,7 @@ export default {
       const xlsxDatas = [['Date & Time', 'Message']]
       xlsxDatas.push(
         ...this.messageList.map(message => [
-          message.flightDate,
+          message.readTime,
           message.sourceData.replaceAll(/[\\r\\n]{2,}/g, '\n').replaceAll('\\', '')
         ])
       )
@@ -198,7 +212,8 @@ export default {
     box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.29);
     margin-bottom: 12px;
     > .message-date {
-      width: 180px;
+      // width: 180px;
+      width: 200px;
       height: 26px;
       line-height: 14px;
       font-size: 14px;

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

@@ -112,6 +112,9 @@ export default {
         this.getColumnData(auth_id)
       }
     }
+    if (arrs.every(item => item.auth_ident !== 'baggage_message')) {
+      this.tabMenu = this.tabMenu.filter(tab => tab.key !== 'baggageMessage')
+    }
     this.query = query
   },
   methods: {

+ 4 - 4
src/views/newDeparture/index.vue

@@ -46,9 +46,9 @@
           <el-form-item>
             <el-button class="btn-shadow" size="mini" type="primary" @click="onSubmit(0)">搜索</el-button>
           </el-form-item>
-          <el-form-item>
+          <!-- <el-form-item>
             <TimeZoneSelector />
-          </el-form-item>
+          </el-form-item> -->
           <el-form-item>
             <img class="btn-img btn-shadow" src="@/assets/baggage/ic_export.png" title="导出" @click="exportHandler('table', '航站离港列表')" />
           </el-form-item>
@@ -143,10 +143,10 @@ export default {
     async getAirPortData (type = 1) {
       try {
         let res = null
-        res = this.TauthId ? await this.getQueryListAuth(this.TqueryId || SERVICE_ID.getAirpotId, {}, 1, 999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId)
+        res = this.TauthId ? await this.getQueryListAuth(this.TqueryId || SERVICE_ID.getAirpotId, {}, 1, 9999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId, {}, 1, 9999)
         if (Number(res.code) === 0) {
           this.AirportList = res.returnData;
-          if (type) {
+          if (type && !this.formData.currentAirport) {
             const flag = res.returnData.filter(item => item.IATACode == 'PEK');
             this.formData.currentAirport = this.TauthId && flag.length ? 'PEK' : res.returnData[0].IATACode;
           }

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

@@ -57,7 +57,7 @@
           </div>
         </div>
         <div class="newFlightView-right-top-right">
-          <TimeZoneSelector />
+          <!-- <TimeZoneSelector /> -->
           <img class="btn-img btn-shadow" src="@/assets/baggage/ic_export.png" title="导出" @click="exportHandler('table', '航班行李列表')" />
         </div>
       </div>
@@ -161,6 +161,7 @@ export default {
   computed: {
     fastFilter () {
       const [key, value] = this.selectedFilter
+      // console.log(this.selectedFilter)
       if (!key) {
         return () => true
       }
@@ -170,7 +171,7 @@ export default {
           case 'transferFlightNO':
             return value ? row[key] === value : (row[key] ?? '') !== ''
           case 'check_in_baggage_number':
-            return row['No_BSM'] == 0
+            return row['No_BSM'] != 1
           case 'NO_activate_number':
             return row['activeState'] == 1
           case 'estimated_load_number':
@@ -480,4 +481,4 @@ export default {
     }
   }
 }
-</style>
+</style>

+ 14 - 16
src/views/newQuery/components/search.vue

@@ -97,18 +97,18 @@ const comparisonOperatorOptions = [
     label: '不等于',
     value: '!=',
   },
-  {
-    label: '为空',
-    value: 'is Null',
-  },
-  {
-    label: '不为空',
-    value: 'is not Null',
-  },
-  {
-    label: '包含',
-    value: 'like',
-  },
+  // {
+  //   label: '为空',
+  //   value: 'is Null',
+  // },
+  // {
+  //   label: '不为空',
+  //   value: 'is not Null',
+  // },
+  // {
+  //   label: '包含',
+  //   value: 'like',
+  // },
 ]
 
 export default {
@@ -269,10 +269,8 @@ export default {
         // const datas = this.tableColMunt.filter(item => item.columnName == value)
         const { dataType, options } = this.columnSet[value]
         // const { dataType, options } = datas[0]
-        //下拉框发生改变清空之前的数据
-        this.paramsForm.params.forEach(item => {
-          item.paramValue = ''
-        })
+        // 下拉框发生改变清空之前的数据
+        this.paramsForm.params[rowIndex].paramValue = ''
         if (dataType === 'date') {
           this.paramsTableCols[1].options[rowIndex] = comparisonOperatorOptions
             .slice(0, 5)

+ 56 - 44
src/views/newQuery/components/table.vue

@@ -144,7 +144,8 @@ export default {
       tableCath: [],
       leaveCount: 0,
       arriveCount: 0,
-      checkPath: ['/newDeparture', '/newTransfer/in', '/newTransfer/out', '/newArrival']
+      checkPath: ['/newDeparture', '/newTransfer/in', '/newTransfer/out', '/newArrival'],
+      hasSetTableScroll: false,
     }
   },
   computed: {
@@ -195,6 +196,7 @@ export default {
         if (val.shouldReset) {
           this.$emit('update:shouldReset', true)
           await this.$nextTick()
+          this.hasSetTableScroll = false
         }
         this.load()
       },
@@ -340,10 +342,10 @@ export default {
             this.noMore = true
           }
           this.$emit('tableLoad', [...tableData])
-          setTimeout(() => {
-            this.initTableData(tableData)
-            this.loading = false
-          }, 100)
+          this.initTableData(tableData)
+          await this.$nextTick()
+          this.setTableScroll()
+          this.loading = false
         } else {
           throw new Error('获取表格数据失败')
         }
@@ -422,59 +424,53 @@ export default {
     },
     // 初始化表格
     initTableData (tableData) {
-      this.tableDataCopy = _.cloneDeep(tableData)
-      const datas = _.cloneDeep(this.tableColsCopy)
-      // const reqUts = [];
-      datas.forEach(async item => {
-        if (item.needGroup) {
-          this.tableGroups.push(item.columnName)
+      tableData.forEach(async row => {
+        if (row.needGroup) {
+          this.tableGroups.push(row.columnName)
         }
-        // if (item.listqueryTemplateID || item.listqueryTemplateID == 0) {
-        //   this.tableArrs.push(item.columnName);
-        //   if (!this.tableOptions[item.columnName]) {
-        //     this.tableOptions[item.columnName] = await this.getSelectData(item.listqueryTemplateID);
-        //   }
-        // }
       })
       const now = new Date()
       if (this.$route.path == '/newDeparture') {
         this.leaveCount = 0
         const nTableData = [...tableData]
-        const cData = nTableData.filter(item => Number(item['NO_BSM_number']) + Number(item['check_in_baggage_number']) > 0)
-        cData.forEach(item => {
-          const takeOffTime = item.actualTakeOffTime || item.scheduleTakeOffTime
-          if (takeOffTime && new Date(takeOffTime) < now) {
-            item.hasTakenOff = 'Y'
+        const cData = nTableData.filter(row => Number(row['NO_BSM_number']) + Number(row['check_in_baggage_number']) > 0)
+        cData.forEach(row => {
+          if (row.abnormalState === 'CAN') {
+            row.canceled = 'Y'
+          } else if (row.normalState === 'DEP' || row.actualTakeOffTime) {
+            row.hasTakenOff = 'Y'
             this.leaveCount++
           }
         })
-        this.tableData = _.orderBy([...cData], ["scheduleTakeOffTime", "normalState"], ["asc", "desc"]);
+        this.tableData = _.orderBy(cData, ['canceled', 'hasTakenOff', 'scheduleTakeOffTime'], ['desc', 'asc', 'asc']);
       }
       if (this.$route.path == '/newArrival') {
         this.arriveCount = 0
         const nTableData = [...tableData]
-        nTableData.forEach(item => {
-          const landingTime = item.actualLandInTime
-          if (landingTime && new Date(landingTime) < now) {
-            item.hasLanded = 'Y'
+        const cData = nTableData.filter(row => Number(row['NO_BSM_number']) + Number(row['check_in_baggage_number']) > 0)
+        cData.forEach(row => {
+          if (row.abnormalState === 'CAN') {
+            row.canceled = 'Y'
+          } else if (row.normalState === 'ARR' || row.actualLandInTime) {
+            row.hasLanded = 'Y'
             this.arriveCount++
           }
         })
-        this.tableData = _.orderBy(nTableData, ['actualLandInTime', 'normalState'], ['asc', 'desc'])
+        this.tableData = _.orderBy(cData, ['canceled', 'hasLanded', 'actualLandInTime'], ['desc', 'asc', 'asc'])
       }
       if (this.$route.path.startsWith('/newTransfer')) {
         this.leaveCount = 0
         const nTableData = [...tableData]
-        nTableData.forEach(item => {
-          if (item.departure_flights_leave_date && new Date(item.departure_flights_leave_date) < now) {
-            item.hasTakenOff = 'Y'
+        nTableData.forEach(row => {
+          if (row.departure_flights_leave_date && new Date(row.departure_flights_leave_date) < now) {
+            row.hasTakenOff = 'Y'
             this.leaveCount++
           }
         })
         this.tableData = _.orderBy(nTableData, ['departure_flights_leave_date', 'normalState'], ['asc', 'desc'])
       }
-      const dats = this.setTableFilters(this.tableData, this.tableDataFilters)
-      this.tableDataFilters = _.cloneDeep(dats)
+      const filters = this.setTableFilters(this.tableData, this.tableDataFilters)
+      this.tableDataFilters = _.cloneDeep(filters)
       this.tableGroup(this.tableData)
     },
     setTableFilters (tableData, filters) {
@@ -519,6 +515,27 @@ export default {
       this.spanArr = spanArr
       this.pos = pos
     },
+    setTableScroll() {
+      const count = Math.max(this.leaveCount, this.arriveCount)
+      if ( this.hasSetTableScroll || count === 0) {
+        return
+      }
+      const table = this.$refs['table'].$el
+      const scrollParent = table.querySelector('.el-table__body-wrapper')
+      if (scrollParent.scrollHeight <= scrollParent.offsetHeight) {
+        return
+      }
+      const lastRow = table.querySelectorAll('.el-table__body tr')[count - 1]
+      setTimeout(() => {
+        const scrollMid = lastRow.offsetTop + lastRow.offsetHeight - scrollParent.offsetHeight / 2
+        const scrollMax = scrollParent.scrollHeight - scrollParent.offsetHeight
+        if (scrollMid > 0) {
+          const scrollHeight = Math.min(scrollMid, scrollMax)
+          scrollParent.scrollTo(0, scrollHeight)
+        }
+      }, 0)
+      this.hasSetTableScroll = true
+    },
     popoverShowHandler (prop) {
       this.colShowFilter = prop
     },
@@ -615,7 +632,7 @@ export default {
     rowClass ({ row, rowIndex }) {
       const classes = []
       if (this.checkPath.includes(this.$route.path)) {
-        const { abnormalState, normalState } = row
+        const { abnormalState } = row
         if (abnormalState) {
           if (abnormalState == 'DLY') {
             classes.push('bgl-delayed')
@@ -624,11 +641,6 @@ export default {
             classes.push('bgl-canceled')
           }
         }
-        // if (normalState) {
-        //   if (normalState == 'DEP' || normalState == 'ARR') {
-        //     classes.push('bgl-hui')
-        //   }
-        // }
         if (row.hasTakenOff === 'Y' || row.hasLanded === 'Y') {
           classes.push('bgl-hui')
         }
@@ -697,7 +709,7 @@ export default {
         }
       })
       if (sameColumn && this.fromDataType(sameColumn.dataType) === 'datetime') {
-        return (cellValue ?? '').replace('T', ' ')
+        return (cellValue ?? '').replace('T', '\n')
       }
       return cellValue
     },
@@ -720,7 +732,7 @@ export default {
     .cell {
       color: #000;
       text-align: center;
-      white-space: nowrap;
+      white-space: pre-line;
       padding: 0;
       .el-tooltip {
         white-space: nowrap;
@@ -729,15 +741,15 @@ export default {
         line-height: 34px;
       }
     }
+    tr.bgl-hui td {
+      background: #d2d6df;
+    }
     tr.bgl-delayed td {
       background: #fcf0b1;
     }
     tr.bgl-canceled td {
       background: #f7babe;
     }
-    tr.bgl-hui td {
-      background: #d2d6df;
-    }
     .redBorder {
       position: relative;
       &::after {

+ 2 - 0
src/views/newRole/css/index.scss

@@ -154,7 +154,9 @@
           margin-right: 16px;
         }
         .contents2{
+          width: 0;
           .newRole-content-left-bottom{
+            width: 100%;
             padding: 0 24px;
             ::v-deep .multipleTable {
               .DisabledSelection .cell {

+ 4 - 4
src/views/newScene/components/advanceQuery.vue

@@ -108,10 +108,10 @@ const comparisonOperatorOptions = [
     label: '不为空',
     value: 'is not Null'
   },
-  {
-    label: '包含',
-    value: 'like'
-  }
+  // {
+  //   label: '包含',
+  //   value: 'like'
+  // }
 ]
 
 export default {

+ 6 - 6
src/views/newScene/index.vue

@@ -2,11 +2,11 @@
   <div class="newScene">
     <div class="newScene-head flex">
       <div class="manageTitle">预警报警场景</div>
-      <el-button type="primary" plain @click="handleAdd" size="small">新增</el-button>
+      <el-button plain type="primary" @click="handleAdd" size="small">新增</el-button>
     </div>
     <div v-loading="loading" element-loading-text="拼命加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" class="newScene-content">
       <el-table v-el-table-infinite-scroll="load" :data="tableData" border height="100%" style="width: 100%">
-        <!-- <el-table-column prop="alarmsceneID" label="场景ID">
+        <!-- <el-table-column prop="alarmSceneId" label="场景ID">
         </el-table-column> -->
         <el-table-column prop="alarmsceneName" label="场景描述">
         </el-table-column>
@@ -125,7 +125,7 @@ export default {
       newObj.Value = obj
       if (event == 2) {
         newObj.filter = {
-          alarmsceneID: this.remObj.alarmsceneID
+          alarmSceneId: this.remObj.alarmSceneId
         }
       }
       newVal.push(newObj)
@@ -163,7 +163,7 @@ export default {
       this.$router.push({
         path: 'alarmstrategySetting',
         query: {
-          alarmsceneID: row.alarmsceneID
+          alarmSceneId: row.alarmSceneId
         }
       })
     },
@@ -178,7 +178,7 @@ export default {
         serviceId: this.serviceId,
         dataContent: [
           {
-            alarmsceneID: this.remObj.alarmsceneID
+            alarmSceneId: this.remObj.alarmSceneId
           }
         ],
         event: '3'
@@ -230,7 +230,7 @@ export default {
       this.tableData = [];
     },
     async getRule () {
-      const { code, returnData } = await this.getQueryList(200252)
+      const { code, returnData } = await this.getQueryList(200256)
       if (code == 0 && returnData && returnData.length) {
         const arrData = []
         const arrObj = [...returnData][0]

+ 3 - 3
src/views/newTransfer/index.vue

@@ -44,9 +44,9 @@
           <el-form-item>
             <el-button class="btn-shadow" size="mini" type="primary" @click="changeView">切换视角</el-button>
           </el-form-item>
-          <el-form-item>
+          <!-- <el-form-item>
             <TimeZoneSelector />
-          </el-form-item>
+          </el-form-item> -->
           <el-form-item>
             <img class="btn-img btn-shadow" src="@/assets/baggage/ic_export.png" title="导出" @click="exportHandler('table', '航站离港列表')" />
           </el-form-item>
@@ -146,7 +146,7 @@ export default {
     async getAirPortData (type = 1) {
       try {
         let res = null
-        res = this.TauthId ? await this.getQueryListAuth(this.TqueryId || SERVICE_ID.getAirpotId, {}, 1, 999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId)
+        res = this.TauthId ? await this.getQueryListAuth(this.TqueryId || SERVICE_ID.getAirpotId, {}, 1, 9999, this.TauthId) : await this.getQueryList(SERVICE_ID.getAirpotId, {}, 1, 9999)
         if (Number(res.code) === 0) {
           this.AirportList = res.returnData;
           if (type && !this.formData.currentAirport) {