|
@@ -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',
|