Эх сурвалжийг харах

Merge branch 'master' of http://120.26.64.82:10880/BFFE/CA3.0

zhaoke 1 жил өмнө
parent
commit
7aff297f3c

+ 3 - 1
src/views/baggageManagementTemp/components/transferArrival/index.vue

@@ -267,6 +267,7 @@
                   :label="childCol.label"
                   :filter-options="tableDataFilters[childCol.prop]"
                   :filter-values.sync="filterValues[childCol.prop]"
+                  :new-filters.sync="newFilters[col.prop]"
                   :sortable="childCol.sortable"
                   :sort-rule.sync="tableDataSortRules[childCol.prop]"
                 />
@@ -411,7 +412,8 @@ export default {
             {
               prop: 'inTransferBaggageCount',
               label: '中转行李数',
-              desc: '指航班在本航站预计需要中转至对应航班的行李数量'
+              desc: '指航班在本航站预计需要中转至对应航班的行李数量',
+              filterable: 2,
             }
           ]
         },

+ 3 - 2
src/views/baggageManagementTemp/components/transferDeparture/index.vue

@@ -114,7 +114,7 @@
           <el-table-column v-for="childCol in col.children" :key="childCol.prop" :prop="childCol.prop" :label="childCol.label" :width="childCol.width" :formatter="tableFormat">
             <template #header>
               <el-tooltip :content="childCol.desc || childCol.label" placement="top">
-                <TableHeaderCell :label="childCol.label" :filter-options="tableDataFilters[childCol.prop]" :filter-values.sync="filterValues[childCol.prop]" :sortable="childCol.sortable" :sort-rule.sync="tableDataSortRules[childCol.prop]" />
+                <TableHeaderCell :label="childCol.label" :filter-options="tableDataFilters[childCol.prop]" :filter-values.sync="filterValues[childCol.prop]" :new-filters.sync="newFilters[col.prop]" :sortable="childCol.sortable" :sort-rule.sync="tableDataSortRules[childCol.prop]" />
               </el-tooltip>
             </template>
           </el-table-column>
@@ -250,7 +250,8 @@ export default {
               prop: 'outTransferBaggageCount',
               label: '中转进行李数',
               desc: '指其它航班预计中转至本航班的行李数量',
-              width: 100
+              width: 100,
+              filterable: 2,
             },
             {
               prop: 'preFlightNO',