瀏覽代碼

step1.帮助添加下拉和下载,step2.高级查询添加值机方式,step3.行李流程图判断CLR和ULR

zhaoke 11 月之前
父節點
當前提交
972c9060cb

二進制
public/国航行李全流程跟踪数据系统-用户使用手册V2.1.pdf


二進制
public/航站三字码对应表.xlsx


二進制
public/行李全流程跟踪数据系统管理规程.pdf


二進制
public/行李全流程跟踪数据系统账号申请.docx


二進制
public/行李跟踪航站清单(2023年4月).xlsx


+ 23 - 4
src/layout/components/Navbar.vue

@@ -28,7 +28,26 @@
             </el-dropdown-item>
           </el-dropdown-menu>
         </el-dropdown>
-        <el-button class="btn-help" plain @click="downFile">帮助</el-button>
+        <el-dropdown>
+          <el-button class="btn-help" plain>帮助</el-button>
+          <el-dropdown-menu class="handleMsgMneu" slot="dropdown">
+            <el-dropdown-item>
+              <span class="editPwd" @click="downFile('行李全流程跟踪数据系统-用户使用手册V2.1.docx')">行李全流程跟踪数据系统-用户使用手册V2.1</span>
+            </el-dropdown-item>
+            <el-dropdown-item>
+              <span class="editPwd" @click="downFile('行李跟踪航站清单(2023年4月).xlsx')">行李跟踪航站清单</span>
+            </el-dropdown-item>
+            <el-dropdown-item>
+              <span class="editPwd" @click="downFile('行李全流程跟踪数据系统账号申请.docx')">行李全流程跟踪数据系统账号申请表</span>
+            </el-dropdown-item>
+            <el-dropdown-item>
+              <span class="editPwd" @click="downFile('行李全流程跟踪数据系统管理规程.pdf')">行李全流程跟踪数据系统管理规程</span>
+            </el-dropdown-item>
+            <el-dropdown-item>
+              <span class="editPwd" @click="downFile('航站三字码对应表.xlsx')">航站三字码对应表</span>
+            </el-dropdown-item>
+          </el-dropdown-menu>
+        </el-dropdown>
         <!-- <div class="seting">
           <span @click="toSystem" class="img-icon"></span>
         </div> -->
@@ -118,12 +137,12 @@ export default {
       this.$store.dispatch('app/toggleOutflag', true)
     },
     //下载
-    downFile () {
+    downFile (fileName) {
       const a = document.createElement('a')
       // 给a标签的href属性值加上地址,注意:这里是绝对路径,不用加 点.
-      a.href = './行李全流程跟踪数据系统-用户使用手册V2.1.docx'
+      a.href = './' + fileName
       // 设置下载文件文件名,这里加上.xlsx指定文件类型,pdf文件就指定.fpd即可
-      a.download = '行李全流程跟踪数据系统-用户使用手册V2.1.docx'
+      a.download = fileName
       // 障眼法藏起来a标签
       a.style.display = 'none'
       // 将a标签追加到文档对象中

+ 6 - 0
src/views/advancedQuery/views/advancedHome.vue

@@ -451,6 +451,12 @@ export default {
           prop: 'noBSM',
           label: '无BSM',
         },
+        {
+          prop: 'checkInLocation',
+          label: '值机方式',
+          hintText: 'CKIN',
+          hintVisible: false,
+        },
       ],
       statusList: [
         {

+ 18 - 7
src/views/newBagDetails/components/baggageView.vue

@@ -151,7 +151,7 @@ export default {
         }
         return classes
       }
-    },
+    }
   },
   watch: {
     tagObj: {
@@ -189,7 +189,7 @@ export default {
           returnData.forEach(item => {
             item.bagStatus = _.cloneDeep(this.stepNodes)
           })
-          this.tableDataCopy.push(...returnData);
+          this.tableDataCopy.push(...returnData)
           //this.tableDataCopy = _.uniqBy(this.tableDataCopy, 'carrierFlights')
           // this.tableDataCopy = this.tableDataCopy.sort((a, b) => Date.parse(a.carrierFlightsDate) - Date.parse(b.carrierFlightsDate))
           this.tableDataCopy.forEach(item => {
@@ -203,17 +203,24 @@ export default {
             })
           })
           this.getBagTime(this.tableDataCopy)
-          this.loading = false;
+          this.loading = false
         } else {
-          this.page--;
-          this.loading = false;
-          this.$message.error("获取表格数据失败");
+          this.page--
+          this.loading = false
+          this.$message.error("获取表格数据失败")
         }
       } catch (error) {
         this.loading = false;
         console.log(error)
       }
     },
+    statusSecurity (item) {
+      const { securityInspectionResults, security_location } = item
+      const securityNums = ['XSA001', 'XSA003', 'XSB001', 'XSB004']
+      if (securityInspectionResults == 'CLR') return securityInspectionResults
+      else if (securityNums.includes(security_location)) return 'ULR'
+      else return ''
+    },
     restTable () {
       this.loading = false
       this.noMore = false
@@ -232,7 +239,11 @@ export default {
       const newArr = [...arr]
       const reqUrls = []
       newArr.forEach(item => {
-        const { carrierFlights, carrierFlightsDate, outAirport, landAirport } = item
+        const { carrierFlights, carrierFlightsDate, outAirport, landAirport, bagStatus } = item
+        const index = bagStatus.findIndex(citem => citem.stateProp == 'securityInspectionResults')
+        if (index > -1) {
+          bagStatus[index]['stateValue'] = this.statusSecurity(item)
+        }
         const reqItem = this.getQueryList(SERVICE_ID.baggageTime, {
           carrierFlights,
           carrierFlightsDate,

+ 6 - 0
src/views/newQueryAdvance/index.vue

@@ -213,6 +213,12 @@ export default {
           prop: 'No_BSM',
           label: '无BSM状态',
         },
+        {
+          prop: 'checkInLocation',
+          label: '值机方式',
+          hintText: 'CKIN',
+          hintVisible: false,
+        },
       ],
       baggageTypeList: [],
       dataContent: [],

+ 1 - 1
src/views/newUserManagement/index.vue

@@ -340,7 +340,7 @@ export default {
   },
   methods: {
     async upgout () {
-      const { code, returnData } = await this.getQueryListAuth('2003115')
+      const { code, returnData } = await this.getQueryList('2003115')
       if (code == 0) {
         this.execList = returnData
       }