瀏覽代碼

修改行李详情

zhaoke 1 年之前
父節點
當前提交
8aaf4c3d67

+ 0 - 1
src/views/bagDetailsPage/components/baggageList.vue

@@ -37,7 +37,6 @@ export default {
     }
   },
   mounted () {
-    console.log('d')
     this.getViewData()
   },
   methods: {

+ 11 - 5
src/views/bagDetailsPage/components/baggageView.vue

@@ -9,7 +9,7 @@
                 <div class="fightNo">{{ item.carrierFlights || item.inflightNo }}</div>
                 <div class="fightDate">{{ item.carrierFlightsDate || item.inflightDate }}</div>
                 <div class="fightLine">{{ item.outAirport }}{{ item.takeoff_terminal }} -- {{item.landAirport}}{{ item.target_terminal }}</div>
-                <div class="fightTime">{{ item.takeTime }} -- {{ item.landTime }}</div>
+                <div class="fightTime" v-if="item.takeTime || item.landTime">{{ item.takeTime }} -- {{ item.landTime }}</div>
               </div>
               <div class="baggage-track-chart">
                 <div class="step-line">
@@ -40,7 +40,7 @@ import { Query } from '@/api/webApi'
 import { formatBagParmas } from '@/utils/validate'
 export default {
   name: 'BaggageView',
-  props: ['queryItem'],
+  props: ['queryItem', 'queryParams'],
   data () {
     return {
       stepNodes: [
@@ -152,11 +152,17 @@ export default {
         }
       },
       deep: true
+    },
+    queryParams: {
+      handler (val) {
+        if (val) {
+          this.getViewData()
+        }
+      },
+      deep: true
     }
   },
-  mounted () {
-    this.getViewData()
-  },
+  mounted () { this.getViewData() },
   methods: {
     getViewData () {
       const bagQueryParams = JSON.parse(sessionStorage.getItem('bagQueryParams')) || ''

+ 7 - 6
src/views/bagDetailsPage/index.vue

@@ -42,7 +42,7 @@
         </div>
       </div>
       <div class="newBagDetails-contents-page">
-        <component ref="dataChild" :queryItem="queryItem" :tableDatas="tableDatas" :is="componentName"></component>
+        <component ref="dataChild" :queryParams="queryObj" :queryItem="queryItem" :tableDatas="tableDatas" :is="componentName"></component>
       </div>
     </div>
     <Dialog :flag="imgFlag" width="600px" class="dialog-check-img">
@@ -174,7 +174,7 @@ export default {
       sessionStorage.setItem(key, JSON.stringify(data))
     },
     //获取表头数据
-    async queryTableData (serviceid, dataParmas) {
+    async queryTableData (serviceid, dataParmas, Jump = false) {
       this.loading = true
       try {
         const datacontent = { filter: formatBagParmas(dataParmas) }
@@ -189,11 +189,11 @@ export default {
         if (code == 0) {
           if (returnData?.length) {
             const ndata = []
+            const nItem = { ...this.query }
             const bagInfo = [...returnData][0]
             this.passengerName = bagInfo['passengerName'] || ''
             this.PNRNO = bagInfo['PNRNO'] || ''
-            this.queryObj = { ...this.query }
-            this.queryObj['PNRNO'] = bagInfo['PNRNO'] || ''
+            nItem['PNRNO'] = bagInfo['PNRNO'] || ''
             const bagInfoArr = Object.entries(bagInfo)
             this.tableCols.map(({ pagecode, pagename }) => {
               bagInfoArr.map(item => {
@@ -208,7 +208,8 @@ export default {
               })
             })
             this.msgs1 = [...ndata]
-            this.setTableLocalData('bagQueryParams', this.queryObj)
+            this.queryObj = { ...nItem }
+            if (!Jump) this.setTableLocalData('bagQueryParams', this.queryObj)
             this.getLuggageNums()
             this.loading = false
           } else {
@@ -265,7 +266,7 @@ export default {
       this.activeIndex = index
       this.setTableLocalData('bagQueryParams', this.tagObj)
       this.queryItem = Math.random()
-      this.queryTableData(115, this.tagObj)
+      this.queryTableData(115, this.tagObj, true)
     },
     tabClick (item, index) {
       this.tabIndex = index