|
@@ -184,6 +184,7 @@ const rowClass: RowClassGetter = params => {
|
|
|
if (rowData.hasTakenOff === 'Y' || rowData.hasLanded === 'Y') {
|
|
|
classes.push('bg-gray')
|
|
|
if (
|
|
|
+ ['planDepartureTime', 'planLandingTime'].some(key => sortRuleMap[key] === 'ascending') &&
|
|
|
dealedCount.value < tableData.value.length &&
|
|
|
rowIndex === dealedCount.value - 1
|
|
|
) {
|
|
@@ -278,7 +279,7 @@ const {
|
|
|
} = useTableFilterAndSort(tableColumns, tableData, {
|
|
|
defaultFilterValueMap,
|
|
|
extraFilterValueMap: flightStateFilter,
|
|
|
- extraSortRuleMap: {
|
|
|
+ defaultSortRuleMap: {
|
|
|
[props.name.includes('Departure')
|
|
|
? 'planDepartureTime'
|
|
|
: 'planLandingTime']: 'ascending',
|
|
@@ -324,10 +325,10 @@ const getPermission = (type?: string) => {
|
|
|
}
|
|
|
|
|
|
const hasSetTableScroll = ref(false)
|
|
|
-watch(formData, (newData, oldData) => {
|
|
|
+watch([() => formData.startDate, () => formData.endDate], ([startDate, endDate], [preStartDate, preEndDate]) => {
|
|
|
if (
|
|
|
- newData.startDate !== oldData.startDate ||
|
|
|
- newData.endDate !== oldData.endDate
|
|
|
+ startDate !== preStartDate ||
|
|
|
+ endDate !== preEndDate
|
|
|
) {
|
|
|
hasSetTableScroll.value = false
|
|
|
}
|