@lx-frontend/wrap-element-ui 1.0.19-beta.10 → 1.0.19-beta.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -618,18 +618,24 @@ const handleSelectionChange = (e) => {
|
|
|
618
618
|
};
|
|
619
619
|
|
|
620
620
|
const handleOpenFilter = (column: IColumnConfig) => {
|
|
621
|
-
handleHeaderPopoverShow(column)
|
|
622
621
|
emit('open-filter', column.prop);
|
|
622
|
+
nextTick(() => {
|
|
623
|
+
handleHeaderPopoverShow(column)
|
|
624
|
+
})
|
|
623
625
|
}
|
|
624
626
|
|
|
625
627
|
const handleResetFilter = (column: IColumnConfig) => {
|
|
626
|
-
handleHeaderOperationReset(column)
|
|
627
628
|
emit('reset-filter', column.prop);
|
|
629
|
+
nextTick(() => {
|
|
630
|
+
handleHeaderOperationReset(column)
|
|
631
|
+
})
|
|
628
632
|
}
|
|
629
633
|
|
|
630
634
|
const handleConfirmFilter = (column: IColumnConfig) => {
|
|
631
|
-
handleHeaderOperationConfirm(column)
|
|
632
635
|
emit('confirm-filter', column.prop);
|
|
636
|
+
nextTick(() => {
|
|
637
|
+
handleHeaderOperationConfirm(column)
|
|
638
|
+
})
|
|
633
639
|
}
|
|
634
640
|
|
|
635
641
|
const bizViewSettingDialogRef = ref(null as unknown as InstanceType<typeof BizViewSettingDialog>)
|
|
@@ -63,7 +63,7 @@ export interface IFilterColorRadio {
|
|
|
63
63
|
export interface IFilterSolt {
|
|
64
64
|
type: 'slot',
|
|
65
65
|
slotName: string,
|
|
66
|
-
active: boolean
|
|
66
|
+
active: () => boolean
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
export type FilterItem = IFilterInput | IFilterSelect | IFilterDoubleDatePicker | IFilterMonthDayPicker | IFilterColorRadio | IFilterSolt
|