chenjun 4 сар өмнө
parent
commit
5bb967ec10

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 200 - 84
pnpm-lock.yaml


+ 16 - 0
src/views/newArrival/index.vue

@@ -44,6 +44,13 @@
           <!-- <el-form-item>
             <TimeZoneSelector />
           </el-form-item> -->
+          <el-form-item>
+            <el-switch
+              v-model="Totalvalue"
+              inactive-text="Total"
+              @change="Totalchange">
+            </el-switch>
+          </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>
@@ -71,6 +78,7 @@ export default {
   mixins: [formMixin, pf],
   data () {
     return {
+      Totalvalue:true,
       orderNum: ["0", "0", "0", "0", "0", "0"], // 默认总数
       popoverVisible: false,
       // 初始表头
@@ -91,6 +99,10 @@ export default {
     ...mapGetters(["timeZone"]),
   },
   created () {
+    let TotalvalueLocal = sessionStorage.getItem("Totalvalue");
+    if(TotalvalueLocal && TotalvalueLocal !=""){
+      this.Totalvalue = TotalvalueLocal
+    }
     this.getAirPortData()
   },
   mounted () {
@@ -103,6 +115,10 @@ export default {
     this.timer = null
   },
   methods: {
+    Totalchange(){
+      this.$refs["table"].setTableColsXT(this.Totalvalue)
+      sessionStorage.setItem("Totalvalue",this.Totalvalue)
+    },
     airPortChange (val) {
       this.formData.currentAirport = val
       this.getAirPortData(0)

+ 27 - 5
src/views/newBagDetails/components/baggageView.vue

@@ -20,7 +20,7 @@
                     <span class="step-name">{{ p.nodeName }}</span>
                   </div>
                   <div v-if="p.timeValue || p.stateValue || p.loclValue || p.fourSecurity || p.currentResult" class="step-info">
-                    <div :class="statusClasses(p.currentResult)">{{ p.currentResult }}</div>
+                    <div :class="statusClasses(p.dataState)">{{ p.dataState }}</div>
                     <div :class="statusClasses(p.stateValue)">{{ p.stateValue }}</div>
                     <span class="step-time">{{ p.timeValue }}</span>
                     <div class="step-location">{{ p.loclValue }}</div>
@@ -65,6 +65,16 @@ export default {
           stateProp: 'checkState',
           stateValue: '',
         },
+        {
+          nodeCode: 'B_SECURITY',
+          nodeName: '预检',
+          timeProp: 'B_security_check_time',
+          timeValue: '',
+          loclProp: 'B_security_location',
+          loclValue: '',
+          stateProp: 'B_SECURITYState',
+          stateValue: '',
+        },
         {
           nodeCode: 'SECURITY',
           nodeName: '安检',
@@ -92,7 +102,7 @@ export default {
           timeValue: '',
           loclProp: 'installationAddress',
           loclValue: '',
-          stateProp: 'loadState',
+          stateProp: 'abnormalType',
           stateValue: '',
         },
         {
@@ -157,7 +167,7 @@ export default {
           }
         }
         const arrs = item.bagStatus
-        const { stateProp, stateValue } = arrs[index]
+        const { stateProp, stateValue,dataState } = arrs[index]
         if (stateProp == 'securityInspectionResults' && stateValue == 'UCL') {
           if (arrs[index + 1].stateValue || arrs[index + 1].loclValue || arrs[index + 1].timeValue || arrs[index + 2].stateValue || arrs[index + 2].loclValue || arrs[index + 2].timeValue) {
             return 'step-circle-waring'
@@ -165,6 +175,12 @@ export default {
             return 'step-circle-danger'
           }
         }
+        if(stateProp == 'checkState'&& dataState =="DEL"){
+          return 'step-circle-danger'
+        }
+        if(stateProp == 'abnormalType'&& stateValue =="OFF"){
+          return 'step-circle-danger'
+        }
         // if (stateProp == 'securityInspectionResults' && !stateValue) {
         //   if (this.tableData.length >= 2 || arrs[index + 1].stateValue || arrs[index + 1].loclValue || arrs[index + 1].timeValue || arrs[index + 2].stateValue || arrs[index + 2].loclValue || arrs[index + 2].timeValue) {
         //     return 'step-circle-waring'
@@ -176,7 +192,7 @@ export default {
       return function (status) {
         const classes = ['step-status']
         if (typeof status === 'string') {
-          if (status.includes('不正常') || status.includes('不通过') || status.includes('取消')) {
+          if (status.includes('不正常') || status.includes('不通过') || status.includes('取消') || status.includes('DEL') || status.includes('OFF')) {
             classes.push('step-status-abnormal')
           }
           else if (status.includes('正常') || status.includes('通过')) {
@@ -282,12 +298,18 @@ export default {
         const { carrierFlights, carrierFlightsDate, outAirport, landAirport, bagStatus } = item
         const index = bagStatus.findIndex(citem => citem.stateProp == 'securityInspectionResults')
         const index2 = bagStatus.findIndex(citem => citem.stateProp == 'checkState')
+        const index3 = bagStatus.findIndex(citem => citem.stateProp == 'abnormalType')
         if (index > -1) {
           bagStatus[index]['stateValue'] = this.statusSecurity(item)
           bagStatus[index]['fourSecurity'] = item.fourSecurity
         }
         if(index2>-1){
-          bagStatus[index2]['currentResult'] = item.currentResult
+          bagStatus[index2]['dataState'] = item.dataState
+        }
+        if(index3>-1){
+          console.log(item)
+          console.log(123)
+          bagStatus[index3]['stateValue'] = item.abnormalType
         }
         const reqItem = this.getQueryList(SERVICE_ID.baggageTime, {
           carrierFlights,

+ 16 - 0
src/views/newDeparture/index.vue

@@ -49,6 +49,13 @@
           <!-- <el-form-item>
             <TimeZoneSelector />
           </el-form-item> -->
+          <el-form-item>
+            <el-switch
+              v-model="Totalvalue"
+              inactive-text="Total"
+              @change="Totalchange">
+            </el-switch>
+          </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>
@@ -76,6 +83,7 @@ export default {
   mixins: [formMixin, pf],
   data () {
     return {
+      Totalvalue:true,
       orderNum: ["0", "0", "0", "0", "0", "0"], // 默认总数
       popoverVisible: false,
       // 初始表头
@@ -96,6 +104,10 @@ export default {
     ...mapGetters(["timeZone"]),
   },
   created () {
+    let TotalvalueLocal = sessionStorage.getItem("Totalvalue");
+    if(TotalvalueLocal && TotalvalueLocal !=""){
+      this.Totalvalue = TotalvalueLocal
+    }
     this.getAirPortData()
   },
   mounted () {
@@ -108,6 +120,10 @@ export default {
     this.timer = null
   },
   methods: {
+    Totalchange(){
+      this.$refs["table"].setTableColsXT(this.Totalvalue)
+      sessionStorage.setItem("Totalvalue",this.Totalvalue)
+    },
     airPortChange (val) {
       this.formData.currentAirport = val
       this.getAirPortData(0)

+ 99 - 1
src/views/newFlightView/index.vue

@@ -109,7 +109,15 @@ export default {
       viewClassName: [
         {
           label: '值机',
-          value: 'check_in_baggage_number'
+          value: 'check_in_baggage_number',
+        },
+        {
+          label: '值机X',
+          value: 'check_in_L',
+        },
+        {
+          label: '值机T',
+          value: 'check_in_T',
         },
         {
           label: '未激活',
@@ -119,22 +127,66 @@ export default {
           label: '预计装载',
           value: 'estimated_load_number'
         },
+        {
+          label: '预检',
+          value: 'B_security_check_number'
+        },
+        {
+          label: '预检X',
+          value: 'B_security_check_number_L',
+        },
+        {
+          label: '预检T',
+          value: 'B_security_check_number_T',
+        },
         {
           label: '安检',
           value: 'screened_number'
         },
+        {
+          label: '安检X',
+          value: 'security_L',
+        },
+        {
+          label: '安检T',
+          value: 'security_T',
+        },
         {
           label: '分拣',
           value: 'sorted_number'
         },
+        {
+          label: '分拣X',
+          value: 'sort_L',
+        },
+        {
+          label: '分拣T',
+          value: 'sort_T',
+        },
         {
           label: '装车',
           value: 'loaded_number'
         },
+        {
+          label: '装车X',
+          value: 'load_L',
+        },
+        {
+          label: '装车T',
+          value: 'load_T',
+        },
         {
           label: '装机',
           value: 'onaiecraft_number'
         },
+        {
+          label: '装机X',
+          value: 'onaiecraft_L',
+        },
+        {
+          label: '装机T',
+          value: 'onaiecraft_T',
+        },
         {
           label: '待翻检',
           value: 'NO_check_number'
@@ -159,10 +211,26 @@ export default {
           label: '已装载',
           value: 'loaded_bag_number'
         },
+        {
+          label: '已装载X',
+          value: 'unload_X'
+        },
+        {
+          label: '已装载T',
+          value: 'unload_T'
+        },
         {
           label: '到达行李',
           value: 'arrive_number'
         },
+        {
+          label: '到达行李X',
+          value: 'arrive_X'
+        },
+        {
+          label: '到达行李T',
+          value: 'arrive_T'
+        },
         {
           label: '特殊行李',
           value: 'special_number'
@@ -207,18 +275,44 @@ export default {
             return value ? row[key] === value : (row[key] ?? '') !== ''
           case 'check_in_baggage_number':
             return row['No_BSM'] != 1
+          case 'check_in_L':
+            return row['No_BSM'] != 1 && (row['inflightNo'] == row['carrierFlights'] || row['inflightNo'] == null || row['inflightNo'] == "")
+          case 'check_in_T':
+            return row['No_BSM'] != 1 && (row['inflightNo'] != row['carrierFlights'] && row['inflightNo'] != null && row['inflightNo'] != "")
           case 'NO_activate_number':
             return row['activeState'] == 1
           case 'estimated_load_number':
             return row['dataState'] != 'DEL' && row['activeState'] != 1
           case 'screened_number':
             return row['securityInspectionResults']
+          case 'security_L':
+            return row['securityInspectionResults'] && (row['inflightNo'] == row['carrierFlights'] || row['inflightNo'] == null || row['inflightNo'] == "")
+          case 'security_T':
+            return row['securityInspectionResults'] && (row['inflightNo'] != row['carrierFlights'] && row['inflightNo'] != null && row['inflightNo'] != "")
+          case 'B_security_check_number':
+            return row['B_security_check_time']
+          case 'B_security_check_number_L':
+            return row['B_security_check_time'] && (row['inflightNo'] == row['carrierFlights'] || row['inflightNo'] == null || row['inflightNo'] == "")
+          case 'B_security_check_number_T':
+            return row['B_security_check_time'] && (row['inflightNo'] != row['carrierFlights'] && row['inflightNo'] != null && row['inflightNo'] != "")
           case 'sorted_number':
             return row['sorting_time']
+          case 'sort_L':
+            return row['sorting_time'] && (row['inflightNo'] == row['carrierFlights'] || row['inflightNo'] == null || row['inflightNo'] == "")
+          case 'sort_T':
+            return row['sorting_time'] && (row['inflightNo'] != row['carrierFlights'] && row['inflightNo'] != null && row['inflightNo'] != "")
           case 'loaded_number':
             return row['loading_time'] && (row['abnormalType'] == 'OFF' || !row['abnormalType'])
+          case 'load_L':
+            return row['loading_time'] && (row['inflightNo'] == row['carrierFlights'] || row['inflightNo'] == null || row['inflightNo'] == "")
+          case 'load_T':
+            return row['loading_time'] && (row['inflightNo'] != row['carrierFlights'] && row['inflightNo'] != null && row['inflightNo'] != "")
           case 'onaiecraft_number':
             return row['installation_time']
+          case 'onaiecraft_L':
+            return row['installation_time'] && (row['inflightNo'] == row['carrierFlights'] || row['inflightNo'] == null || row['inflightNo'] == "")
+          case 'onaiecraft_T':
+            return row['installation_time'] && (row['inflightNo'] != row['carrierFlights'] && row['inflightNo'] != null && row['inflightNo'] != "")
           case 'NO_check_number':
             return row['dataState'] == 'DEL' && row['loading_time'] && (row['abnormalType'] != 'OFF' || !row['abnormalType'])
           case 'checked_number':
@@ -233,6 +327,10 @@ export default {
             return row['No_BSM'] != 1
           case 'arrive_number':
             return row['dataState'] != 'DEL' && row['arrivedtime']
+          case 'arrive_X':
+            return row['dataState'] != 'DEL' && row['arrivedtime'] && (row['transferFlightNO'] == row['carrierFlights'] || row['transferFlightNO'] == null || row['transferFlightNO'] == "")
+          case 'arrive_L':
+            return row['dataState'] != 'DEL' && row['arrivedtime'] && (row['transferFlightNO'] != row['carrierFlights'] && row['transferFlightNO'] != null && row['transferFlightNO'] != "")
           case 'special_number':
             return row['specialType']
           case 'uninstalled_number':

+ 197 - 45
src/views/newQuery/components/table.vue

@@ -9,6 +9,59 @@
                 <TableHeaderCell :label="childCol.columnLabel" :filter-options="tableDataFilters[childCol.columnName]" :filter-values.sync="filterValues[childCol.columnName]" :sortable="childCol.needSort" :sort-rule.sync="tableDataSortRules[childCol.columnName]" />
               </el-tooltip>
             </template>
+            <template slot-scope="scope">
+                <template v-if="childCol.columnName == 'check_in_LT'">
+                  <div v-if="scope.row.check_in_L>0" class="is-click-btn" @click="cellClick2(scope.row,'check_in_L')"><span class="cell">{{ scope.row.check_in_L}}L</span></div>
+                  <div v-else>0L</div>
+                  <div v-if="scope.row.check_in_T>0" class="is-click-btn" @click="cellClick2(scope.row,'check_in_T')"><span class="cell">{{ scope.row.check_in_T}}T</span></div>
+                  <div v-else>0T</div>
+                </template>
+                <template v-else-if="childCol.columnName == 'security_LT'">
+                  <div v-if="scope.row.security_L>0" class="is-click-btn" @click="cellClick2(scope.row,'security_L')"><span class="cell">{{ scope.row.security_L}}L</span></div>
+                  <div v-else>0L</div>
+                  <div v-if="scope.row.security_T>0" class="is-click-btn" @click="cellClick2(scope.row,'security_T')"><span class="cell">{{ scope.row.security_T}}T</span></div>
+                  <div v-else>0T</div>
+                </template>
+                <template v-else-if="childCol.columnName == 'sort_LT'">
+                  <div v-if="scope.row.sort_L>0" class="is-click-btn" @click="cellClick2(scope.row,'sort_L')"><span class="cell">{{ scope.row.sort_L}}L</span></div>
+                  <div v-else>0L</div>
+                  <div v-if="scope.row.sort_T>0" class="is-click-btn" @click="cellClick2(scope.row,'sort_T')"><span class="cell">{{ scope.row.sort_T}}T</span></div>
+                  <div v-else>0T</div>
+                </template>
+                <template v-else-if="childCol.columnName == 'load_LT'">
+                  <div v-if="scope.row.load_L>0" class="is-click-btn" @click="cellClick2(scope.row,'load_L')"><span class="cell">{{ scope.row.load_L}}L</span></div>
+                  <div v-else>0L</div>
+                  <div v-if="scope.row.load_T>0" class="is-click-btn" @click="cellClick2(scope.row,'load_T')"><span class="cell">{{ scope.row.load_T}}T</span></div>
+                  <div v-else>0T</div>
+                </template>
+                <template v-else-if="childCol.columnName == 'onaiecraft_LT'">
+                  <div v-if="scope.row.onaiecraft_L>0" class="is-click-btn" @click="cellClick2(scope.row,'onaiecraft_L')"><span class="cell">{{ scope.row.onaiecraft_L}}L</span></div>
+                  <div v-else>0L</div>
+                  <div v-if="scope.row.onaiecraft_T>0" class="is-click-btn" @click="cellClick2(scope.row,'onaiecraft_T')"><span class="cell">{{ scope.row.onaiecraft_T}}T</span></div>
+                  <div v-else>0T</div>
+                </template>
+                <template v-else-if="childCol.columnName == 'unload_XT'">
+                  <div v-if="scope.row.unload_X>0" class="is-click-btn" @click="cellClick2(scope.row,'unload_X')"><span class="cell">{{ scope.row.unload_X}}X</span></div>
+                  <div v-else>0L</div>
+                  <div v-if="scope.row.unload_T>0" class="is-click-btn" @click="cellClick2(scope.row,'unload_T')"><span class="cell">{{ scope.row.unload_T}}T</span></div>
+                  <div v-else>0T</div>
+                </template>
+                <template v-else-if="childCol.columnName == 'arrive_XT'">
+                  <div v-if="scope.row.arrive_X>0" class="is-click-btn" @click="cellClick2(scope.row,'arrive_X')"><span class="cell">{{ scope.row.arrive_X}}X</span></div>
+                  <div v-else>0L</div>
+                  <div v-if="scope.row.arrive_T>0" class="is-click-btn" @click="cellClick2(scope.row,'arrive_T')"><span class="cell">{{ scope.row.arrive_T}}T</span></div>
+                  <div v-else>0T</div>
+                </template>
+                <template v-else-if="childCol.columnName == 'B_security_check_number_LT'">
+                  <div v-if="scope.row.B_security_check_number_L>0" class="is-click-btn" @click="cellClick2(scope.row,'B_security_check_number_L')"><span class="cell">{{ scope.row.B_security_check_number_L}}L</span></div>
+                  <div v-else>0L</div>
+                  <div v-if="scope.row.B_security_check_number_T>0" class="is-click-btn" @click="cellClick2(scope.row,'B_security_check_number_T')"><span class="cell">{{ scope.row.B_security_check_number_T}}T</span></div>
+                  <div v-else>0T</div>
+                </template>
+                <template v-else>
+                  {{ scope.row[childCol.columnName]}}
+                </template>
+            </template>
           </el-table-column>
         </el-table-column>
       </el-table>
@@ -21,6 +74,64 @@
               <TableHeaderCell :label="item.columnLabel" :filter-options="tableDataFilters[item.columnName]" :filter-values.sync="filterValues[item.columnName]" :sortable="item.needSort" :sort-rule.sync="tableDataSortRules[item.columnName]" />
             </el-tooltip>
           </template>
+          <!-- <template slot-scope="scope" v-if="item.columnName == 'check_in_LT'">
+              <p>{{ scope.row.check_in_L}}L</p>
+              <p>{{ scope.row.check_in_T}}T</p>
+          </template> -->
+          <template slot-scope="scope">
+              <template v-if="item.columnName == 'check_in_LT'">
+                <div v-if="scope.row.check_in_L>0" class="is-click-btn" @click="cellClick2(scope.row,'check_in_L')"><span class="cell">{{ scope.row.check_in_L}}L</span></div>
+                <div v-else>0L</div>
+                <div v-if="scope.row.check_in_T>0" class="is-click-btn" @click="cellClick2(scope.row,'check_in_T')"><span class="cell">{{ scope.row.check_in_T}}T</span></div>
+                <div v-else>0T</div>
+              </template>
+              <template v-else-if="item.columnName == 'security_LT'">
+                <div v-if="scope.row.security_L>0" class="is-click-btn" @click="cellClick2(scope.row,'security_L')"><span class="cell">{{ scope.row.security_L}}L</span></div>
+                <div v-else>0L</div>
+                <div v-if="scope.row.security_T>0" class="is-click-btn" @click="cellClick2(scope.row,'security_T')"><span class="cell">{{ scope.row.security_T}}T</span></div>
+                <div v-else>0T</div>
+              </template>
+              <template v-else-if="item.columnName == 'sort_LT'">
+                <div v-if="scope.row.sort_L>0" class="is-click-btn" @click="cellClick2(scope.row,'sort_L')"><span class="cell">{{ scope.row.sort_L}}L</span></div>
+                <div v-else>0L</div>
+                <div v-if="scope.row.sort_T>0" class="is-click-btn" @click="cellClick2(scope.row,'sort_T')"><span class="cell">{{ scope.row.sort_T}}T</span></div>
+                <div v-else>0T</div>
+              </template>
+              <template v-else-if="item.columnName == 'load_LT'">
+                <div v-if="scope.row.load_L>0" class="is-click-btn" @click="cellClick2(scope.row,'load_L')"><span class="cell">{{ scope.row.load_L}}L</span></div>
+                <div v-else>0L</div>
+                <div v-if="scope.row.load_T>0" class="is-click-btn" @click="cellClick2(scope.row,'load_T')"><span class="cell">{{ scope.row.load_T}}T</span></div>
+                <div v-else>0T</div>
+              </template>
+              <template v-else-if="item.columnName == 'onaiecraft_LT'">
+                <div v-if="scope.row.onaiecraft_L>0" class="is-click-btn" @click="cellClick2(scope.row,'onaiecraft_L')"><span class="cell">{{ scope.row.onaiecraft_L}}L</span></div>
+                <div v-else>0L</div>
+                <div v-if="scope.row.onaiecraft_T>0" class="is-click-btn" @click="cellClick2(scope.row,'onaiecraft_T')"><span class="cell">{{ scope.row.onaiecraft_T}}T</span></div>
+                <div v-else>0T</div>
+              </template>
+              <template v-else-if="item.columnName == 'unload_XT'">
+                <div v-if="scope.row.unload_X>0" class="is-click-btn" @click="cellClick2(scope.row,'unload_X')"><span class="cell">{{ scope.row.unload_X}}X</span></div>
+                <div v-else>0L</div>
+                <div v-if="scope.row.unload_T>0" class="is-click-btn" @click="cellClick2(scope.row,'unload_T')"><span class="cell">{{ scope.row.unload_T}}T</span></div>
+                <div v-else>0T</div>
+              </template>
+              <template v-else-if="item.columnName == 'arrive_XT'">
+                <div v-if="scope.row.arrive_X>0" class="is-click-btn" @click="cellClick2(scope.row,'arrive_X')"><span class="cell">{{ scope.row.arrive_X}}X</span></div>
+                <div v-else>0L</div>
+                <div v-if="scope.row.arrive_T>0" class="is-click-btn" @click="cellClick2(scope.row,'arrive_T')"><span class="cell">{{ scope.row.arrive_T}}T</span></div>
+                <div v-else>0T</div>
+              </template>
+              <template v-else-if="item.columnName == 'B_security_check_number_LT'">
+                <div v-if="scope.row.B_security_check_number_L>0" class="is-click-btn" @click="cellClick2(scope.row,'B_security_check_number_L')"><span class="cell">{{ scope.row.B_security_check_number_L}}L</span></div>
+                <div v-else>0L</div>
+                <div v-if="scope.row.B_security_check_number_T>0" class="is-click-btn" @click="cellClick2(scope.row,'B_security_check_number_T')"><span class="cell">{{ scope.row.B_security_check_number_T}}T</span></div>
+                <div v-else>0T</div>
+              </template>
+              <template v-else>
+                {{ scope.row[item.columnName]}}
+              </template>
+          </template>
+
         </el-table-column>
       </el-table>
     </template>
@@ -161,6 +272,7 @@ export default {
   },
   data () {
     return {
+      allColReturnData:[],
       page: 0,
       queryId: '',
       noMore: false,
@@ -287,50 +399,8 @@ export default {
               sessionStorage.setItem('tableColumns', JSON.stringify(returnData))
               this.$store.dispatch('auth/changeAuthMsg', returnData)
             }
-            const msgDatas = returnData.filter(item => item.needShow)
-            const msgCounts = msgDatas.filter(item => item.needCount)
-            if (msgCounts.length) {
-              this.showSummary = true
-            }
-            const msgDatasShows = formatOrder(msgDatas)
-            this.tableCath = msgDatasShows
-            if (this.istableChild) {
-              const datas = _.cloneDeep(msgDatasShows)
-              const cache = {}
-              const indices = []
-              const others = []
-              datas.forEach(item => {
-                if (!cache[item.groupName] && item.groupName) {
-                  cache[item.groupName] = item.groupName
-                  indices.push(item)
-                } else {
-                  const newItem = _.cloneDeep(item)
-                  others.push(newItem)
-                }
-              })
-              indices.map((item, index) => {
-                item.tabIndex = index
-              })
-              others.forEach(item => {
-                indices.forEach(p => {
-                  if (item.groupName == p.groupName && item.groupName) {
-                    item.tabIndex = p.tabIndex
-                  }
-                })
-              })
-              indices.forEach(item => {
-                item.children = [
-                  _.cloneDeep(item),
-                  ...this.formatCaps(item.tabIndex, others),
-                ]
-              })
-              this.tableCols = _.cloneDeep(indices)
-            } else {
-              this.tableCols = _.cloneDeep(msgDatasShows)
-            }
-            this.tableColsCopy = _.cloneDeep(this.tableCols)
-            this.initTableCols()
-            this.setTableCols()
+            this.allColReturnData = returnData;
+            this.setTableColsXT()
           }
         } else {
           this.$message.error('获取表头数据失败')
@@ -339,6 +409,73 @@ export default {
         console.log(error)
       }
     },
+    setTableColsXT(val = sessionStorage.getItem("Totalvalue")){
+      let returnData = this.allColReturnData;
+      if(val == true){
+        returnData.map(item =>{
+          if(item.columnName == "check_in_baggage_number"||item.columnName == "screened_number"||item.columnName == "sorted_number"||item.columnName == "loaded_number"||item.columnName == "onaiecraft_number"||item.columnName == "unloading_number"||item.columnName == "arrive_number"||item.columnName == "B_security_check_number"){
+              item.needShow = 1
+          }
+          if(item.columnName == "check_in_LT"||item.columnName == "security_LT"||item.columnName == "sort_LT"||item.columnName == "load_LT"||item.columnName == "onaiecraft_LT"||item.columnName == "unload_XT"||item.columnName == "arrive_XT"||item.columnName == "B_security_check_number_LT"){
+              item.needShow = 0
+          }
+        })
+      }
+      else{
+        returnData.map(item =>{
+          if(item.columnName == "check_in_baggage_number"||item.columnName == "screened_number"||item.columnName == "sorted_number"||item.columnName == "loaded_number"||item.columnName == "onaiecraft_number"||item.columnName == "unloading_number"||item.columnName == "arrive_number"||item.columnName == "B_security_check_number"){
+              item.needShow = 0
+          }
+          if(item.columnName == "check_in_LT"||item.columnName == "security_LT"||item.columnName == "sort_LT"||item.columnName == "load_LT"||item.columnName == "onaiecraft_LT"||item.columnName == "unload_XT"||item.columnName == "arrive_XT"||item.columnName == "B_security_check_number_LT"){
+              item.needShow = 1
+          }
+        })
+      }
+      const msgDatas = returnData.filter(item => item.needShow)
+      const msgCounts = msgDatas.filter(item => item.needCount)
+      if (msgCounts.length) {
+        this.showSummary = true
+      }
+      const msgDatasShows = formatOrder(msgDatas)
+      this.tableCath = msgDatasShows
+      if (this.istableChild) {
+        const datas = _.cloneDeep(msgDatasShows)
+        const cache = {}
+        const indices = []
+        const others = []
+        datas.forEach(item => {
+          if (!cache[item.groupName] && item.groupName) {
+            cache[item.groupName] = item.groupName
+            indices.push(item)
+          } else {
+            const newItem = _.cloneDeep(item)
+            others.push(newItem)
+          }
+        })
+        indices.map((item, index) => {
+          item.tabIndex = index
+        })
+        others.forEach(item => {
+          indices.forEach(p => {
+            if (item.groupName == p.groupName && item.groupName) {
+              item.tabIndex = p.tabIndex
+            }
+          })
+        })
+        indices.forEach(item => {
+          item.children = [
+            _.cloneDeep(item),
+            ...this.formatCaps(item.tabIndex, others),
+          ]
+        })
+        this.tableCols = _.cloneDeep(indices)
+      } else {
+        this.tableCols = _.cloneDeep(msgDatasShows)
+      }
+      this.tableColsCopy = _.cloneDeep(this.tableCols)
+      this.initTableCols()
+      this.setTableCols()
+    },
     setTableCols () {
       this.tableCath.forEach(({ columnName, needFilters, needSort }) => {
         if (needFilters) {
@@ -769,7 +906,7 @@ export default {
       }
       return classes.join(' ')
     },
-    // 表格-设置单元格样式
+    // 表格-设置单元格样式---
     cellClass ({ row, column, rowIndex, columnIndex }) {
       const classes = []
       if (this.authBtnColName.includes(column.property) && Number(row[column.property]) !== 0) {
@@ -869,6 +1006,7 @@ export default {
               query.forEach(key => {
                 obj[key] = row[key]
               })
+              http://localhost:9528/#/newFlightView?carrierFlights=TK89&carrierFlightsDate=2024-11-12&outAirport=PEK&landAirport=IST&NO_BSM_number=363
               if (['Inbound_flight_number'].includes(relation_data)) {
                 obj.outAirport = obj.inbound_flights_departure_airport
                 obj.landAirport = obj.current_airport
@@ -895,6 +1033,19 @@ export default {
         this.headerClick(row, column)
       }
     },
+    cellClick2(row,property){
+      let obj = {
+        "carrierFlights":row.carrierFlights,
+        "carrierFlightsDate":row.carrierFlightsDate,
+        "outAirport":row.outAirport,
+        "landAirport":row.landAirport,
+      }
+      obj[property] = row[property]
+      this.$router.push({
+        path: "/newFlightView",
+        query: obj,
+      })
+    },
     // 表格-备注-单元格点击
     headerClick (row, column) {
       const { property } = column
@@ -1027,6 +1178,7 @@ export default {
   height: 100%;
   position: relative;
   ::v-deep .table {
+    p{padding: 0;}
     .is-click-btn {
       .cell {
         color: #409eff;

+ 5 - 0
src/views/statisticsCharts/views/nodeStatisticsCharts.vue

@@ -130,6 +130,11 @@ export default {
           label: '值机',
           key: 'checkIn'
         },
+        {
+          name: '预检件数',
+          label: '预检',
+          key: 'B_security'
+        },
         {
           name: '安检件数',
           label: '安检',

Энэ ялгаанд хэт олон файл өөрчлөгдсөн тул зарим файлыг харуулаагүй болно