zhaoke 1 年間 前
コミット
5915cc77ef

+ 2 - 2
src/views/newBagDetails/components/baggageList.vue

@@ -46,11 +46,11 @@ export default {
       handler (obj) {
         this.tableTag = obj
       },
-      deep: true
+      deep: true,
     }
   },
   mounted () {
-    this.tableTag = this.query
+    this.tableTag = this.tagObj
   },
   methods: {
     async queryDetails (auth_id) {

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

@@ -62,7 +62,7 @@ export default {
     }
   },
   created () {
-    this.dataContent = this.query
+    this.dataContent = this.tagObj
   },
   mounted () {
     this.queryDetails()

+ 23 - 2
src/views/newBagDetails/index.vue

@@ -203,8 +203,29 @@ export default {
       this.getLuggageInfo(this.tableDatas5Id)
     },
     tabClick (item, index) {
-      this.tabIndex = index
-      this.componentName = item.key
+      if (item.key == 'baggageList' || item.key == 'baggageMessage') {
+        let parmObj = null
+        const { carrierFlights, carrierFlightsDate, luggageNum } = this.query
+        if (this.PNRNO) {
+          parmObj = {
+            PNRNO: this.PNRNO,
+            passengerName: this.passengerName,
+            luggageNum
+          }
+        } else {
+          parmObj = {
+            carrierFlightsDate,
+            carrierFlights,
+            luggageNum
+          }
+        }
+        this.tagObj = parmObj
+        console.log(this.tagObj)
+      }
+      setTimeout(() => {
+        this.tabIndex = index
+        this.componentName = item.key
+      }, 10);
     }
   }
 }

+ 2 - 1
src/views/newRole/index.vue

@@ -19,7 +19,8 @@
                 <span class="custom-tree-node" slot-scope="{ node,data }">
                   <div class="flex">
                     <div :class="!data.user_id ? 'bigText':''">
-                      <span class="customTxt">{{ node.label }}</span>
+                      <span class="customTxt mr16">{{ node.label }}</span>
+                      <span style="margin-left: 10px;" class="customTxt" v-if="!data.user_id">({{ data.user_group_id }})</span>
                     </div>
                   </div>
                 </span>