zhaoke 1 yıl önce
ebeveyn
işleme
667ba35be3

+ 1 - 0
src/views/newBagDetails/components/baggageView.vue

@@ -190,6 +190,7 @@ export default {
           })
           this.tableData.push(...returnData);
           this.tableData = _.uniqBy(this.tableData, 'carrierFlights')
+          this.tableData = this.tableData.sort((a, b) => Date.parse(a.carrierFlightsDate) - Date.parse(b.carrierFlightsDate))
           this.tableData.forEach(item => {
             item.bagStatus.map(p => {
               const { timeProp, loclProp, stateProp } = p

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

@@ -12,9 +12,9 @@
             </div>
           </el-col>
           <el-col :span="20">
-            <scroll-pane ref="scrollPane" class="tags-view-wrapper">
+            <el-scrollbar ref="scrollPane" class="tags-view-wrapper">
               <div v-for="(item,index) in detailsArr" class="tags-view-item" @click="tagClick(item,index)" :class="activeIndex == index ? 'active' : ''" :key="index">{{ item.luggageNum }}</div>
-            </scroll-pane>
+            </el-scrollbar>
           </el-col>
         </el-row>
       </div>

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

@@ -97,6 +97,7 @@ export default {
     }
   },
   async created () {
+    const checkDatas = []
     const query = this.$route.query
     const { flightNo, flightDate } = query
     this.flightObj = query
@@ -117,6 +118,7 @@ export default {
     if (newDatas && newDatas.length) {
       const m = combine(newDatas, 'depStation_iataCd', 'arrStation_iataCd')
       m.forEach((item, index) => {
+        checkDatas.push(`${m[index]}-${m[index + 1]}`)
         const obj = {
           item,
           index
@@ -124,6 +126,7 @@ export default {
         this.deArrsNum.push(obj)
       })
       this.checkStates = m
+      this.checkList = checkDatas.splice(0, m.length - 1)
     }
   },
   mounted () {