@qqt-product/ui 11.0.3 → 11.0.5
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/dist/index.es.js +21412 -20898
- package/dist/index.umd.js +81 -81
- package/dist/lib/components/detail-grid/index.d.ts +13 -6
- package/dist/lib/components/detail-grid/src/detail-grid.vue.d.ts +13 -6
- package/dist/lib/components/detail-page-layout/index.d.ts +2 -2
- package/dist/lib/components/detail-page-layout/src/detail-page-layout.vue.d.ts +2 -2
- package/dist/lib/components/edit-grid/index.d.ts +13 -6
- package/dist/lib/components/edit-grid/src/edit-grid-types.d.ts +4 -0
- package/dist/lib/components/edit-grid/src/edit-grid.vue.d.ts +13 -6
- package/dist/lib/components/edit-page-layout/index.d.ts +2 -2
- package/dist/lib/components/edit-page-layout/src/edit-page-layout-types.d.ts +65 -15
- package/dist/lib/components/edit-page-layout/src/edit-page-layout.vue.d.ts +2 -2
- package/dist/lib/components/edit-page-layout/src/types.d.ts +1 -1
- package/dist/lib/components/field-select-modal/index.d.ts +1 -0
- package/dist/lib/components/field-select-modal/src/field-select-modal.vue.d.ts +1 -0
- package/dist/lib/components/ladder-price/index.d.ts +9 -0
- package/dist/lib/components/ladder-price/src/ladder-price-types.d.ts +4 -0
- package/dist/lib/components/ladder-price/src/ladder-price.vue.d.ts +9 -0
- package/dist/lib/components/layout-pattern/index.d.ts +2 -2
- package/dist/lib/components/layout-pattern/src/layout-pattern.vue.d.ts +2 -2
- package/dist/lib/components/list-page-layout/index.d.ts +7 -0
- package/dist/lib/components/list-page-layout/src/components/list-content/list-content.vue.d.ts +6 -0
- package/dist/lib/components/list-page-layout/src/layout.vue.d.ts +7 -0
- package/dist/lib/components/list-page-layout/src/list-page-layout-types.d.ts +6 -0
- package/dist/lib/components/page-layout/src/constant/buttons.d.ts +1 -0
- package/dist/lib/components/page-layout/src/constant/symbol.d.ts +28 -2
- package/dist/lib/components/select-modal/index.d.ts +2 -0
- package/dist/lib/components/select-modal/src/select-modal.vue.d.ts +2 -0
- package/dist/lib/components/upload-file/index.d.ts +18 -13
- package/dist/lib/components/upload-file/src/upload-file-types.d.ts +2 -2
- package/dist/lib/components/upload-file/src/upload-file.vue.d.ts +19 -14
- package/dist/lib/index.d.ts +1 -1
- package/dist/lib/setting/vxe-table/config.d.ts +1 -0
- package/dist/lib/utils/event.d.ts +18 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { RecordString } from '../select-modal';
|
|
2
2
|
import type { SrmI18n } from '../../utils/type';
|
|
3
|
-
import type { VxeGridProps, VxeTableDataRow, VxeGridInstance, SizeType, VxeTablePropTypes, VxeColumnPropTypes, VxeTooltipPropTypes, VxeColumnSlotTypes, VxeTableDefines, SlotVNodeType, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxePagerPropTypes, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
|
|
4
|
-
import type { PageButton, ColumnItem, PageButtonWithGroupCode, PageDownLoadButton,
|
|
5
|
-
import type { DefineComponent, PropType, Ref, ComputedRef,
|
|
3
|
+
import type { VxeGridProps, VxeTableDataRow, VxeGridInstance, SizeType, VxeTablePropTypes, VxeColumnPropTypes, VxeTooltipPropTypes, VxeColumnSlotTypes, VxeTableDefines, SlotVNodeType, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxePagerPropTypes, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams, VxeGridListeners } from 'vxe-table';
|
|
4
|
+
import type { PageButton, ColumnItem, PageButtonWithGroupCode, PageDownLoadButton, PageButtonDeleteFileRow } from '../edit-page-layout';
|
|
5
|
+
import type { DefineComponent, PropType, Ref, ComputedRef, VNode, RendererNode, RendererElement, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
6
6
|
import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
|
|
7
7
|
import QDetailForm from './src/detail-grid.vue';
|
|
8
8
|
export { QDetailForm };
|
|
@@ -55,6 +55,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
55
55
|
readonly type: PropType<boolean>;
|
|
56
56
|
readonly default: false;
|
|
57
57
|
};
|
|
58
|
+
readonly useAllConfig: {
|
|
59
|
+
readonly type: PropType<boolean>;
|
|
60
|
+
readonly default: false;
|
|
61
|
+
};
|
|
58
62
|
}, {
|
|
59
63
|
groupName: Ref<string>;
|
|
60
64
|
groupNameI18nKey: Ref<string>;
|
|
@@ -66,7 +70,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
66
70
|
buttons: Ref<PageButton[]>;
|
|
67
71
|
wrapBoxHeight: ComputedRef<number>;
|
|
68
72
|
isVertical: ComputedRef<boolean>;
|
|
69
|
-
style: ComputedRef<CSSProperties>;
|
|
70
73
|
xGrid: Ref<VxeGridInstance<any> | undefined>;
|
|
71
74
|
gridOptions: {
|
|
72
75
|
size?: SizeType | undefined;
|
|
@@ -2635,9 +2638,8 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2635
2638
|
handleDownLoadAll: (btn: PageDownLoadButton) => void;
|
|
2636
2639
|
computedColumns: ComputedRef<VxeGridPropTypes.Columns<VxeTableDataRow>>;
|
|
2637
2640
|
shake: Ref<boolean>;
|
|
2638
|
-
handleCheckboxChange: (params: GridCheckboxChangeParams) => void;
|
|
2639
|
-
handleCheckboxAll: (params: GridCheckboxAllParams) => void;
|
|
2640
2641
|
handleRemoveAll: (btn: PageButtonDeleteFileRow) => void;
|
|
2642
|
+
gridEvents: VxeGridListeners<VxeTableDataRow>;
|
|
2641
2643
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2642
2644
|
readonly groupName: {
|
|
2643
2645
|
readonly type: PropType<string>;
|
|
@@ -2687,6 +2689,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2687
2689
|
readonly type: PropType<boolean>;
|
|
2688
2690
|
readonly default: false;
|
|
2689
2691
|
};
|
|
2692
|
+
readonly useAllConfig: {
|
|
2693
|
+
readonly type: PropType<boolean>;
|
|
2694
|
+
readonly default: false;
|
|
2695
|
+
};
|
|
2690
2696
|
}>>, {
|
|
2691
2697
|
readonly total: Record<string, any>;
|
|
2692
2698
|
readonly columns: ColumnItem[];
|
|
@@ -2700,5 +2706,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2700
2706
|
readonly shake: boolean;
|
|
2701
2707
|
readonly slot: boolean;
|
|
2702
2708
|
readonly vxeGridConfig: VxeGridProps<VxeTableDataRow>;
|
|
2709
|
+
readonly useAllConfig: boolean;
|
|
2703
2710
|
}, {}>>;
|
|
2704
2711
|
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { SrmI18n } from '../../../utils/type';
|
|
2
|
-
import type { DefineComponent, PropType, Ref, ComputedRef, VNode, RendererNode, RendererElement, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes
|
|
3
|
-
import type { ColumnItem, PageButton, PageButtonWithGroupCode, PageButtonDeleteFileRow, RecordString, PageDownLoadButton
|
|
4
|
-
import type {
|
|
2
|
+
import type { DefineComponent, PropType, Ref, ComputedRef, VNode, RendererNode, RendererElement, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
3
|
+
import type { ColumnItem, PageButton, PageButtonWithGroupCode, PageButtonDeleteFileRow, RecordString, PageDownLoadButton } from '../../edit-page-layout';
|
|
4
|
+
import type { SizeType, VxeTablePropTypes, VxeColumnPropTypes, VxeTooltipPropTypes, VxeColumnSlotTypes, VxeTableDefines, SlotVNodeType, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxePagerPropTypes, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams, VxeGridInstance, VxeGridProps, VxeGridListeners, VxeTableDataRow } from 'vxe-table';
|
|
5
5
|
declare const _sfc_main: DefineComponent<{
|
|
6
6
|
readonly groupName: {
|
|
7
7
|
readonly type: PropType<string>;
|
|
@@ -51,6 +51,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
51
51
|
readonly type: PropType<boolean>;
|
|
52
52
|
readonly default: false;
|
|
53
53
|
};
|
|
54
|
+
readonly useAllConfig: {
|
|
55
|
+
readonly type: PropType<boolean>;
|
|
56
|
+
readonly default: false;
|
|
57
|
+
};
|
|
54
58
|
}, {
|
|
55
59
|
groupName: Ref<string>;
|
|
56
60
|
groupNameI18nKey: Ref<string>;
|
|
@@ -62,7 +66,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
62
66
|
buttons: Ref<PageButton[]>;
|
|
63
67
|
wrapBoxHeight: ComputedRef<number>;
|
|
64
68
|
isVertical: ComputedRef<boolean>;
|
|
65
|
-
style: ComputedRef<CSSProperties>;
|
|
66
69
|
xGrid: Ref<VxeGridInstance<any> | undefined>;
|
|
67
70
|
gridOptions: {
|
|
68
71
|
size?: SizeType | undefined;
|
|
@@ -2631,9 +2634,8 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2631
2634
|
handleDownLoadAll: (btn: PageDownLoadButton) => void;
|
|
2632
2635
|
computedColumns: ComputedRef<VxeGridPropTypes.Columns<VxeTableDataRow>>;
|
|
2633
2636
|
shake: Ref<boolean>;
|
|
2634
|
-
handleCheckboxChange: (params: GridCheckboxChangeParams) => void;
|
|
2635
|
-
handleCheckboxAll: (params: GridCheckboxAllParams) => void;
|
|
2636
2637
|
handleRemoveAll: (btn: PageButtonDeleteFileRow) => void;
|
|
2638
|
+
gridEvents: VxeGridListeners<VxeTableDataRow>;
|
|
2637
2639
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2638
2640
|
readonly groupName: {
|
|
2639
2641
|
readonly type: PropType<string>;
|
|
@@ -2683,6 +2685,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2683
2685
|
readonly type: PropType<boolean>;
|
|
2684
2686
|
readonly default: false;
|
|
2685
2687
|
};
|
|
2688
|
+
readonly useAllConfig: {
|
|
2689
|
+
readonly type: PropType<boolean>;
|
|
2690
|
+
readonly default: false;
|
|
2691
|
+
};
|
|
2686
2692
|
}>>, {
|
|
2687
2693
|
readonly total: Record<string, any>;
|
|
2688
2694
|
readonly columns: ColumnItem[];
|
|
@@ -2696,5 +2702,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2696
2702
|
readonly shake: boolean;
|
|
2697
2703
|
readonly slot: boolean;
|
|
2698
2704
|
readonly vxeGridConfig: VxeGridProps<VxeTableDataRow>;
|
|
2705
|
+
readonly useAllConfig: boolean;
|
|
2699
2706
|
}, {}>;
|
|
2700
2707
|
export default _sfc_main;
|
|
@@ -218,12 +218,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
218
218
|
businessType: string;
|
|
219
219
|
token: string;
|
|
220
220
|
userInfo: UserInfo;
|
|
221
|
+
isUseLocalPattern: boolean;
|
|
222
|
+
isDetail: boolean;
|
|
221
223
|
showPageHeader: boolean;
|
|
222
224
|
showLayoutAnchor: boolean;
|
|
223
|
-
isDetail: boolean;
|
|
224
225
|
role: Role;
|
|
225
226
|
refreshMethods: (row?: CurrentRow | undefined) => void;
|
|
226
|
-
isUseLocalPattern: boolean;
|
|
227
227
|
localConfig: Partial<RemoteConfig>;
|
|
228
228
|
handleAfterRemoteConfig: <T>(args: T) => T | Promise<T>;
|
|
229
229
|
detailApi: string | DetailApiFunctionType;
|
|
@@ -214,12 +214,12 @@ declare const _sfc_main: DefineComponent<{
|
|
|
214
214
|
businessType: string;
|
|
215
215
|
token: string;
|
|
216
216
|
userInfo: UserInfo;
|
|
217
|
+
isUseLocalPattern: boolean;
|
|
218
|
+
isDetail: boolean;
|
|
217
219
|
showPageHeader: boolean;
|
|
218
220
|
showLayoutAnchor: boolean;
|
|
219
|
-
isDetail: boolean;
|
|
220
221
|
role: Role;
|
|
221
222
|
refreshMethods: (row?: CurrentRow | undefined) => void;
|
|
222
|
-
isUseLocalPattern: boolean;
|
|
223
223
|
localConfig: Partial<RemoteConfig>;
|
|
224
224
|
handleAfterRemoteConfig: <T>(args: T) => T | Promise<T>;
|
|
225
225
|
detailApi: string | DetailApiFunctionType;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { ruleItem } from './src/hook/use-grid-config-hook';
|
|
2
2
|
import type { RecordString } from '../select-modal';
|
|
3
3
|
import type { SrmI18n } from '../../utils/type';
|
|
4
|
-
import type { VxeGridProps, VxeTableDataRow, VxeGridInstance, SizeType, VxeTablePropTypes, VxeColumnPropTypes, VxeTooltipPropTypes, VxeColumnSlotTypes, VxeTableDefines, SlotVNodeType, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxePagerPropTypes, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams } from 'vxe-table';
|
|
5
|
-
import type { PageButton, ColumnItem, PageButtonWithGroupCode, PageDownLoadButton, PageButtonDeleteFileRow
|
|
6
|
-
import type { DefineComponent, PropType, Ref, ComputedRef,
|
|
4
|
+
import type { VxeGridProps, VxeTableDataRow, VxeGridInstance, SizeType, VxeTablePropTypes, VxeColumnPropTypes, VxeTooltipPropTypes, VxeColumnSlotTypes, VxeTableDefines, SlotVNodeType, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxePagerPropTypes, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams, VxeTableListeners, VxeGridListeners } from 'vxe-table';
|
|
5
|
+
import type { PageButton, ColumnItem, PageButtonWithGroupCode, PageDownLoadButton, PageButtonDeleteFileRow } from '../edit-page-layout';
|
|
6
|
+
import type { DefineComponent, PropType, Ref, ComputedRef, VNode, RendererNode, RendererElement, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
7
7
|
import type { SFCWithInstall } from '@qqt-product/utils/dist/modules/withInstall';
|
|
8
8
|
import QEditForm from './src/edit-grid.vue';
|
|
9
9
|
export * from './src/edit-grid-types';
|
|
@@ -57,6 +57,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
57
57
|
readonly type: PropType<boolean>;
|
|
58
58
|
readonly default: false;
|
|
59
59
|
};
|
|
60
|
+
readonly useAllConfig: {
|
|
61
|
+
readonly type: PropType<boolean>;
|
|
62
|
+
readonly default: false;
|
|
63
|
+
};
|
|
60
64
|
}, {
|
|
61
65
|
groupName: Ref<string>;
|
|
62
66
|
groupNameI18nKey: Ref<string>;
|
|
@@ -69,7 +73,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
69
73
|
total: Ref<Record<string, any>>;
|
|
70
74
|
wrapBoxHeight: ComputedRef<number>;
|
|
71
75
|
isVertical: ComputedRef<boolean>;
|
|
72
|
-
style: ComputedRef<CSSProperties>;
|
|
73
76
|
xGrid: Ref<VxeGridInstance<any> | undefined>;
|
|
74
77
|
gridOptions: {
|
|
75
78
|
size?: SizeType | undefined;
|
|
@@ -2640,8 +2643,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2640
2643
|
computedColumns: ComputedRef<VxeGridPropTypes.Columns<VxeTableDataRow>>;
|
|
2641
2644
|
editRules: ComputedRef<ruleItem>;
|
|
2642
2645
|
shake: Ref<boolean>;
|
|
2643
|
-
|
|
2644
|
-
handleCheckboxAll: (params: GridCheckboxAllParams) => void;
|
|
2646
|
+
gridEvents: VxeTableListeners<VxeTableDataRow> & VxeGridListeners<VxeTableDataRow>;
|
|
2645
2647
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2646
2648
|
readonly groupName: {
|
|
2647
2649
|
readonly type: PropType<string>;
|
|
@@ -2691,6 +2693,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2691
2693
|
readonly type: PropType<boolean>;
|
|
2692
2694
|
readonly default: false;
|
|
2693
2695
|
};
|
|
2696
|
+
readonly useAllConfig: {
|
|
2697
|
+
readonly type: PropType<boolean>;
|
|
2698
|
+
readonly default: false;
|
|
2699
|
+
};
|
|
2694
2700
|
}>>, {
|
|
2695
2701
|
readonly total: Record<string, any>;
|
|
2696
2702
|
readonly columns: ColumnItem[];
|
|
@@ -2704,5 +2710,6 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
2704
2710
|
readonly shake: boolean;
|
|
2705
2711
|
readonly slot: boolean;
|
|
2706
2712
|
readonly vxeGridConfig: VxeGridProps<VxeTableDataRow>;
|
|
2713
|
+
readonly useAllConfig: boolean;
|
|
2707
2714
|
}, {}>>;
|
|
2708
2715
|
export default _default;
|
|
@@ -50,6 +50,10 @@ export declare const editGridProps: {
|
|
|
50
50
|
readonly type: PropType<boolean>;
|
|
51
51
|
readonly default: false;
|
|
52
52
|
};
|
|
53
|
+
readonly useAllConfig: {
|
|
54
|
+
readonly type: PropType<boolean>;
|
|
55
|
+
readonly default: false;
|
|
56
|
+
};
|
|
53
57
|
};
|
|
54
58
|
export type EditGridProps = ExtractPropTypes<typeof editGridProps>;
|
|
55
59
|
export interface EditGridReturnType {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { ruleItem } from './hook/use-grid-config-hook';
|
|
2
2
|
import type { SrmI18n } from '../../../utils/type';
|
|
3
|
-
import type { DefineComponent, PropType, Ref, ComputedRef, VNode, RendererNode, RendererElement, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes
|
|
4
|
-
import type { ColumnItem, PageButton, PageButtonWithGroupCode, RecordString, PageDownLoadButton, PageButtonDeleteFileRow
|
|
5
|
-
import type {
|
|
3
|
+
import type { DefineComponent, PropType, Ref, ComputedRef, VNode, RendererNode, RendererElement, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
|
|
4
|
+
import type { ColumnItem, PageButton, PageButtonWithGroupCode, RecordString, PageDownLoadButton, PageButtonDeleteFileRow } from '../../edit-page-layout';
|
|
5
|
+
import type { SizeType, VxeTablePropTypes, VxeColumnPropTypes, VxeTooltipPropTypes, VxeColumnSlotTypes, SlotVNodeType, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeTableProDefines, VxePagerPropTypes, VxeGridPropTypes, VxeButtonPropTypes, VxeToolbarPropTypes, VxeFormPropTypes, VxeFormItemPropTypes, VxeFormItemProps, FormItemTitleRenderParams, FormItemContentRenderParams, VxeGridInstance, VxeGridProps, VxeTableListeners, VxeGridListeners, VxeTableDataRow, VxeTableDefines } from 'vxe-table';
|
|
6
6
|
declare const _sfc_main: DefineComponent<{
|
|
7
7
|
readonly groupName: {
|
|
8
8
|
readonly type: PropType<string>;
|
|
@@ -52,6 +52,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
52
52
|
readonly type: PropType<boolean>;
|
|
53
53
|
readonly default: false;
|
|
54
54
|
};
|
|
55
|
+
readonly useAllConfig: {
|
|
56
|
+
readonly type: PropType<boolean>;
|
|
57
|
+
readonly default: false;
|
|
58
|
+
};
|
|
55
59
|
}, {
|
|
56
60
|
groupName: Ref<string>;
|
|
57
61
|
groupNameI18nKey: Ref<string>;
|
|
@@ -64,7 +68,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
64
68
|
total: Ref<Record<string, any>>;
|
|
65
69
|
wrapBoxHeight: ComputedRef<number>;
|
|
66
70
|
isVertical: ComputedRef<boolean>;
|
|
67
|
-
style: ComputedRef<CSSProperties>;
|
|
68
71
|
xGrid: Ref<VxeGridInstance<any> | undefined>;
|
|
69
72
|
gridOptions: {
|
|
70
73
|
size?: SizeType | undefined;
|
|
@@ -2635,8 +2638,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2635
2638
|
computedColumns: ComputedRef<VxeGridPropTypes.Columns<VxeTableDataRow>>;
|
|
2636
2639
|
editRules: ComputedRef<ruleItem>;
|
|
2637
2640
|
shake: Ref<boolean>;
|
|
2638
|
-
|
|
2639
|
-
handleCheckboxAll: (params: GridCheckboxAllParams) => void;
|
|
2641
|
+
gridEvents: VxeTableListeners<VxeTableDataRow> & VxeGridListeners<VxeTableDataRow>;
|
|
2640
2642
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
2641
2643
|
readonly groupName: {
|
|
2642
2644
|
readonly type: PropType<string>;
|
|
@@ -2686,6 +2688,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2686
2688
|
readonly type: PropType<boolean>;
|
|
2687
2689
|
readonly default: false;
|
|
2688
2690
|
};
|
|
2691
|
+
readonly useAllConfig: {
|
|
2692
|
+
readonly type: PropType<boolean>;
|
|
2693
|
+
readonly default: false;
|
|
2694
|
+
};
|
|
2689
2695
|
}>>, {
|
|
2690
2696
|
readonly total: Record<string, any>;
|
|
2691
2697
|
readonly columns: ColumnItem[];
|
|
@@ -2699,5 +2705,6 @@ declare const _sfc_main: DefineComponent<{
|
|
|
2699
2705
|
readonly shake: boolean;
|
|
2700
2706
|
readonly slot: boolean;
|
|
2701
2707
|
readonly vxeGridConfig: VxeGridProps<VxeTableDataRow>;
|
|
2708
|
+
readonly useAllConfig: boolean;
|
|
2702
2709
|
}, {}>;
|
|
2703
2710
|
export default _sfc_main;
|
|
@@ -219,12 +219,12 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
219
219
|
businessType: string;
|
|
220
220
|
token: string;
|
|
221
221
|
userInfo: UserInfo;
|
|
222
|
+
isUseLocalPattern: boolean;
|
|
223
|
+
isDetail: boolean;
|
|
222
224
|
showPageHeader: boolean;
|
|
223
225
|
showLayoutAnchor: boolean;
|
|
224
|
-
isDetail: boolean;
|
|
225
226
|
role: Role;
|
|
226
227
|
refreshMethods: (row?: CurrentRow | undefined) => void;
|
|
227
|
-
isUseLocalPattern: boolean;
|
|
228
228
|
localConfig: Partial<RemoteConfig>;
|
|
229
229
|
handleAfterRemoteConfig: <T>(args: T) => T | Promise<T>;
|
|
230
230
|
detailApi: string | DetailApiFunctionType;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { AxiosRequestConfig } from '@qqt-product/api';
|
|
2
2
|
import type { Ref, ComputedRef, PropType, ExtractPropTypes, SetupContext, ComponentInternalInstance } from 'vue';
|
|
3
|
-
import type { VxeGridProps, VxeTablePropTypes, VxeTableDefines, VxeTableDataRow, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor } from 'vxe-table';
|
|
3
|
+
import type { VxeGridProps, VxeTablePropTypes, VxeTableDefines, VxeTableDataRow, VxeTableConstructor, VxeTablePrivateMethods, VxeGridConstructor, VxeGridDefines, VxeTableProDefines } from 'vxe-table';
|
|
4
4
|
import type { Decimal } from 'decimal.js';
|
|
5
5
|
import { FlowViewModalProps } from '../../flow-view/src/flow-view-modal-types';
|
|
6
6
|
import { Extend } from '../../select-modal';
|
|
@@ -156,26 +156,71 @@ export declare function pageButtonPositionValidator(mode: string): boolean;
|
|
|
156
156
|
export type RecordString = Record<string, any>;
|
|
157
157
|
export type OmitEditConfigVxeGridProps = Omit<VxeGridProps, 'editConfig'>;
|
|
158
158
|
export type OmitBeforeEditMethodEditConfig = Omit<VxeTablePropTypes.EditConfig, 'beforeEditMethod'>;
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
159
|
+
/**
|
|
160
|
+
* Vxe 表格事件类型
|
|
161
|
+
* start
|
|
162
|
+
*/
|
|
163
|
+
export interface KeydownEventParams extends VxeGridDefines.KeydownEventParams<VxeTableDataRow> {
|
|
164
|
+
groupCode: string;
|
|
165
|
+
}
|
|
166
|
+
export interface HeaderCellClickEventParams extends VxeGridDefines.HeaderCellClickEventParams<VxeTableDataRow> {
|
|
167
|
+
groupCode: string;
|
|
168
|
+
}
|
|
169
|
+
export interface HeaderCellDblclickEventParams extends VxeGridDefines.HeaderCellDblclickEventParams<VxeTableDataRow> {
|
|
170
|
+
groupCode: string;
|
|
171
|
+
}
|
|
172
|
+
export interface HeaderCellMenuEventParams extends VxeGridDefines.HeaderCellMenuEventParams<VxeTableDataRow> {
|
|
173
|
+
groupCode: string;
|
|
174
|
+
}
|
|
175
|
+
export interface CellClickEventParams extends VxeGridDefines.CellClickEventParams<VxeTableDataRow> {
|
|
176
|
+
groupCode: string;
|
|
177
|
+
}
|
|
178
|
+
export interface CellDblclickEventParams extends VxeGridDefines.CellDblclickEventParams<VxeTableDataRow> {
|
|
179
|
+
groupCode: string;
|
|
180
|
+
}
|
|
181
|
+
export interface CellMenuEventParams extends VxeGridDefines.CellMenuEventParams<VxeTableDataRow> {
|
|
182
|
+
groupCode: string;
|
|
183
|
+
}
|
|
184
|
+
export interface FooterCellClickEventParams extends VxeGridDefines.FooterCellClickEventParams<VxeTableDataRow> {
|
|
185
|
+
groupCode: string;
|
|
186
|
+
}
|
|
187
|
+
export interface FooterCellDblclickEventParams extends VxeGridDefines.FooterCellDblclickEventParams<VxeTableDataRow> {
|
|
188
|
+
groupCode: string;
|
|
189
|
+
}
|
|
190
|
+
export interface FooterCellMenuEventParams extends VxeGridDefines.FooterCellMenuEventParams<VxeTableDataRow> {
|
|
191
|
+
groupCode: string;
|
|
192
|
+
}
|
|
193
|
+
export interface RadioChangeEventParams extends VxeGridDefines.FooterCellMenuEventParams<VxeTableDataRow> {
|
|
194
|
+
groupCode: string;
|
|
195
|
+
}
|
|
196
|
+
export interface CheckboxChangeEventParams extends VxeGridDefines.CheckboxChangeEventParams<VxeTableDataRow> {
|
|
197
|
+
groupCode: string;
|
|
198
|
+
}
|
|
199
|
+
export interface CheckboxAllEventParams extends VxeGridDefines.CheckboxAllEventParams<VxeTableDataRow> {
|
|
200
|
+
groupCode: string;
|
|
201
|
+
}
|
|
202
|
+
export interface ScrollEventParams extends VxeGridDefines.ScrollEventParams<VxeTableDataRow> {
|
|
203
|
+
groupCode: string;
|
|
204
|
+
}
|
|
205
|
+
export interface ZoomEventParams extends VxeGridDefines.ZoomEventParams<VxeTableDataRow> {
|
|
206
|
+
groupCode: string;
|
|
168
207
|
}
|
|
169
|
-
export interface
|
|
208
|
+
export interface CustomEventParams extends VxeGridDefines.CustomEventParams<VxeTableDataRow> {
|
|
170
209
|
groupCode: string;
|
|
171
210
|
}
|
|
172
|
-
export interface
|
|
173
|
-
|
|
174
|
-
|
|
211
|
+
export interface CellAreaCutParams extends VxeTableProDefines.CellAreaCutParams<VxeTableDataRow> {
|
|
212
|
+
groupCode: string;
|
|
213
|
+
}
|
|
214
|
+
export interface CellAreaCopyParams extends VxeTableProDefines.CellAreaCopyParams<VxeTableDataRow> {
|
|
215
|
+
groupCode: string;
|
|
175
216
|
}
|
|
176
|
-
export interface
|
|
217
|
+
export interface CellAreaPasteParams extends VxeTableProDefines.CellAreaPasteParams<VxeTableDataRow> {
|
|
177
218
|
groupCode: string;
|
|
178
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* Vxe 表格事件类型
|
|
222
|
+
* end
|
|
223
|
+
*/
|
|
179
224
|
/**
|
|
180
225
|
* 参数扩展
|
|
181
226
|
* 该方法的返回值用来决定该单元格是否允许编辑
|
|
@@ -215,6 +260,7 @@ export interface Group {
|
|
|
215
260
|
shake?: boolean;
|
|
216
261
|
slot?: boolean;
|
|
217
262
|
master?: boolean;
|
|
263
|
+
useAllConfig?: boolean;
|
|
218
264
|
enableTile?: '0' | '1';
|
|
219
265
|
columns?: ColumnItem[];
|
|
220
266
|
formFields?: FormFieldsItem[];
|
|
@@ -259,6 +305,7 @@ export interface ValuePayload {
|
|
|
259
305
|
value: StringOrNumber;
|
|
260
306
|
label?: string | string[];
|
|
261
307
|
extra?: any;
|
|
308
|
+
_isFill?: boolean;
|
|
262
309
|
data?: RecordString[];
|
|
263
310
|
pageData: RecordString;
|
|
264
311
|
layoutConfig: LayoutConfig;
|
|
@@ -277,6 +324,7 @@ export type VxePayload = {
|
|
|
277
324
|
value?: StringOrNumber;
|
|
278
325
|
label?: string | string[];
|
|
279
326
|
extra?: any;
|
|
327
|
+
_isFill?: boolean;
|
|
280
328
|
data?: RecordString[];
|
|
281
329
|
pageData: RecordString;
|
|
282
330
|
layoutConfig: LayoutConfig;
|
|
@@ -340,12 +388,14 @@ export interface ColumnItemWithExtend extends ColumnItem {
|
|
|
340
388
|
export interface FormFieldsItemWithValue extends FormFieldsItem {
|
|
341
389
|
value: StringOrNumber;
|
|
342
390
|
data?: RecordString[];
|
|
391
|
+
_isFill?: boolean;
|
|
343
392
|
}
|
|
344
393
|
export interface ColumnItemWithValue extends ColumnItem {
|
|
345
394
|
value: StringOrNumber;
|
|
346
395
|
idx: number;
|
|
347
396
|
row: RecordString;
|
|
348
397
|
data?: RecordString[];
|
|
398
|
+
_isFill?: boolean;
|
|
349
399
|
}
|
|
350
400
|
export interface ImportPropsType {
|
|
351
401
|
button: PageButton;
|
|
@@ -214,12 +214,12 @@ declare const _sfc_main: DefineComponent<{
|
|
|
214
214
|
businessType: string;
|
|
215
215
|
token: string;
|
|
216
216
|
userInfo: UserInfo;
|
|
217
|
+
isUseLocalPattern: boolean;
|
|
218
|
+
isDetail: boolean;
|
|
217
219
|
showPageHeader: boolean;
|
|
218
220
|
showLayoutAnchor: boolean;
|
|
219
|
-
isDetail: boolean;
|
|
220
221
|
role: Role;
|
|
221
222
|
refreshMethods: (row?: CurrentRow | undefined) => void;
|
|
222
|
-
isUseLocalPattern: boolean;
|
|
223
223
|
localConfig: Partial<RemoteConfig>;
|
|
224
224
|
handleAfterRemoteConfig: <T>(args: T) => T | Promise<T>;
|
|
225
225
|
detailApi: string | DetailApiFunctionType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type { ResponseType, UserInfo, CurrentRow, DictCodeItem, Role, GroupType, Pattern, Icon, PageButtonPayload, PageButtonArgs, PageButtonArgsFunctionType, PageButton, PageUploadButton, PageButtonWithGroupCode, PageButtonDeleteRow, PageDownLoadButton, PageButtonDownLoad, ExposeWithPageDeleteFileRows, PageDeleteFileRowButton, PageButtonDeleteFileRow, ValidateStatus, ValidateResult, PageButtonPosition, RecordString, OmitEditConfigVxeGridProps, OmitBeforeEditMethodEditConfig,
|
|
1
|
+
export type { ResponseType, UserInfo, CurrentRow, DictCodeItem, Role, GroupType, Pattern, Icon, PageButtonPayload, PageButtonArgs, PageButtonArgsFunctionType, PageButton, PageUploadButton, PageButtonWithGroupCode, PageButtonDeleteRow, PageDownLoadButton, PageButtonDownLoad, ExposeWithPageDeleteFileRows, PageDeleteFileRowButton, PageButtonDeleteFileRow, ValidateStatus, ValidateResult, PageButtonPosition, RecordString, OmitEditConfigVxeGridProps, OmitBeforeEditMethodEditConfig, KeydownEventParams, HeaderCellClickEventParams, HeaderCellDblclickEventParams, HeaderCellMenuEventParams, CellClickEventParams, CellDblclickEventParams, CellMenuEventParams, FooterCellClickEventParams, FooterCellDblclickEventParams, FooterCellMenuEventParams, RadioChangeEventParams, CheckboxChangeEventParams, CheckboxAllEventParams, ScrollEventParams, ZoomEventParams, CustomEventParams, CellAreaCutParams, CellAreaCopyParams, CellAreaPasteParams, BeforeEditMethodParams, MixBeforeEditMethod, MixEditConfig, MixVxeGridProps, GroupExtend, Group, HeadGroupType, ItemGroupType, GroupItem, StringOrNumber, Expose, ExposeWithPageButtons, CustomFormatItem, SetItemRequired, SetItemDisabled, SetItemRequiredOrDisabled, ValuePayload, UsePromiseStepPayload, Payload, VxePayload, UploadExtend, FormFieldsItem, ColumnItem, FormFieldsItemSelectModal, ColumnItemWithSelectModal, FormFieldsItemUpload, ColumnItemWithExtend, FormFieldsItemWithValue, ColumnItemWithValue, ImportPropsType, FlowPropsType, ComputedFormFieldsItem, BindFunctionEvent, VxeBindFunctionEvent, RemoteConfig, LayoutConfig, LocalConfig, DetailApiFunctionType, EditPageLayoutProps, Extend, LadderPriceExtend, FormDataType, } from './edit-page-layout-types';
|
|
@@ -112,6 +112,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
112
112
|
beforeHideMethod: ({ type }: {
|
|
113
113
|
type: string;
|
|
114
114
|
}) => Promise<never> | undefined;
|
|
115
|
+
restParams: () => void;
|
|
115
116
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
116
117
|
modalTitle: {
|
|
117
118
|
type: StringConstructor;
|
|
@@ -108,6 +108,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
108
108
|
beforeHideMethod: ({ type }: {
|
|
109
109
|
type: string;
|
|
110
110
|
}) => Promise<never> | undefined;
|
|
111
|
+
restParams: () => void;
|
|
111
112
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
|
|
112
113
|
modalTitle: {
|
|
113
114
|
type: StringConstructor;
|
|
@@ -25,6 +25,10 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
25
25
|
type: BooleanConstructor;
|
|
26
26
|
default: boolean;
|
|
27
27
|
};
|
|
28
|
+
isShowEdit: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
28
32
|
}, {
|
|
29
33
|
classes: ComputedRef<{
|
|
30
34
|
[x: string]: boolean;
|
|
@@ -65,12 +69,17 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
65
69
|
type: BooleanConstructor;
|
|
66
70
|
default: boolean;
|
|
67
71
|
};
|
|
72
|
+
isShowEdit: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
default: boolean;
|
|
75
|
+
};
|
|
68
76
|
}>>, {
|
|
69
77
|
row: Row;
|
|
70
78
|
value: string;
|
|
71
79
|
disabled: boolean;
|
|
72
80
|
config: Config;
|
|
73
81
|
isRow: boolean;
|
|
82
|
+
isShowEdit: boolean;
|
|
74
83
|
}, {}>>;
|
|
75
84
|
export default _default;
|
|
76
85
|
export { QLadderPrice };
|
|
@@ -23,6 +23,10 @@ declare const _sfc_main: DefineComponent<{
|
|
|
23
23
|
type: BooleanConstructor;
|
|
24
24
|
default: boolean;
|
|
25
25
|
};
|
|
26
|
+
isShowEdit: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
26
30
|
}, {
|
|
27
31
|
classes: ComputedRef<{
|
|
28
32
|
[x: string]: boolean;
|
|
@@ -63,11 +67,16 @@ declare const _sfc_main: DefineComponent<{
|
|
|
63
67
|
type: BooleanConstructor;
|
|
64
68
|
default: boolean;
|
|
65
69
|
};
|
|
70
|
+
isShowEdit: {
|
|
71
|
+
type: BooleanConstructor;
|
|
72
|
+
default: boolean;
|
|
73
|
+
};
|
|
66
74
|
}>>, {
|
|
67
75
|
row: Row;
|
|
68
76
|
value: string;
|
|
69
77
|
disabled: boolean;
|
|
70
78
|
config: Config;
|
|
71
79
|
isRow: boolean;
|
|
80
|
+
isShowEdit: boolean;
|
|
72
81
|
}, {}>;
|
|
73
82
|
export default _sfc_main;
|
|
@@ -58,7 +58,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
58
58
|
readonly property?: string | undefined;
|
|
59
59
|
readonly defaultFileType?: string | undefined;
|
|
60
60
|
readonly requiredFileType?: boolean | undefined;
|
|
61
|
-
readonly
|
|
61
|
+
readonly defaultFileBelong?: string | undefined;
|
|
62
62
|
readonly limitSize?: number | undefined;
|
|
63
63
|
readonly acceptDictCode?: string | undefined;
|
|
64
64
|
readonly maxCount?: number | undefined;
|
|
@@ -66,7 +66,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
66
66
|
readonly isGridUpload?: boolean | undefined;
|
|
67
67
|
readonly itemNumberKey?: string | undefined;
|
|
68
68
|
readonly itemNumberLabel?: string | undefined;
|
|
69
|
-
readonly
|
|
69
|
+
readonly itemNumberValueProp?: string | undefined;
|
|
70
70
|
readonly itemNumberDefaultValue?: string | undefined;
|
|
71
71
|
readonly itemNumberSelectIndex?: boolean | undefined;
|
|
72
72
|
readonly disabledItemNumber?: boolean | undefined;
|
|
@@ -53,7 +53,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
53
53
|
readonly property?: string | undefined;
|
|
54
54
|
readonly defaultFileType?: string | undefined;
|
|
55
55
|
readonly requiredFileType?: boolean | undefined;
|
|
56
|
-
readonly
|
|
56
|
+
readonly defaultFileBelong?: string | undefined;
|
|
57
57
|
readonly limitSize?: number | undefined;
|
|
58
58
|
readonly acceptDictCode?: string | undefined;
|
|
59
59
|
readonly maxCount?: number | undefined;
|
|
@@ -61,7 +61,7 @@ declare const _sfc_main: DefineComponent<{
|
|
|
61
61
|
readonly isGridUpload?: boolean | undefined;
|
|
62
62
|
readonly itemNumberKey?: string | undefined;
|
|
63
63
|
readonly itemNumberLabel?: string | undefined;
|
|
64
|
-
readonly
|
|
64
|
+
readonly itemNumberValueProp?: string | undefined;
|
|
65
65
|
readonly itemNumberDefaultValue?: string | undefined;
|
|
66
66
|
readonly itemNumberSelectIndex?: boolean | undefined;
|
|
67
67
|
readonly disabledItemNumber?: boolean | undefined;
|
|
@@ -47,6 +47,9 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
47
47
|
afterHandleData: {
|
|
48
48
|
type: PropType<(tableData: ObjectMap[]) => void>;
|
|
49
49
|
};
|
|
50
|
+
handleAfterDataResponse: {
|
|
51
|
+
type: PropType<(dataSource: any) => any>;
|
|
52
|
+
};
|
|
50
53
|
localColumnGroup: {
|
|
51
54
|
type: PropType<(column: GridColumn[]) => GridColumn[]>;
|
|
52
55
|
};
|
|
@@ -290,6 +293,7 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
290
293
|
};
|
|
291
294
|
beforeHandleData?: ((column: GridColumn[]) => void) | undefined;
|
|
292
295
|
afterHandleData?: ((tableData: ObjectMap[]) => void) | undefined;
|
|
296
|
+
handleAfterDataResponse?: ((dataSource: any) => any) | undefined;
|
|
293
297
|
localColumnGroup?: ((column: GridColumn[]) => GridColumn[]) | undefined;
|
|
294
298
|
};
|
|
295
299
|
};
|
|
@@ -350,6 +354,9 @@ declare const _default: SFCWithInstall<DefineComponent<{
|
|
|
350
354
|
afterHandleData: {
|
|
351
355
|
type: PropType<(tableData: ObjectMap[]) => void>;
|
|
352
356
|
};
|
|
357
|
+
handleAfterDataResponse: {
|
|
358
|
+
type: PropType<(dataSource: any) => any>;
|
|
359
|
+
};
|
|
353
360
|
localColumnGroup: {
|
|
354
361
|
type: PropType<(column: GridColumn[]) => GridColumn[]>;
|
|
355
362
|
};
|
package/dist/lib/components/list-page-layout/src/components/list-content/list-content.vue.d.ts
CHANGED
|
@@ -31,6 +31,9 @@ declare const _sfc_main: DefineComponent<{
|
|
|
31
31
|
afterHandleData: {
|
|
32
32
|
type: PropType<(column: GridColumn[]) => void>;
|
|
33
33
|
};
|
|
34
|
+
handleAfterDataResponse: {
|
|
35
|
+
type: PropType<(dataSource: any) => any>;
|
|
36
|
+
};
|
|
34
37
|
filterList: never[];
|
|
35
38
|
}, {
|
|
36
39
|
ns: {
|
|
@@ -100,6 +103,9 @@ declare const _sfc_main: DefineComponent<{
|
|
|
100
103
|
afterHandleData: {
|
|
101
104
|
type: PropType<(column: GridColumn[]) => void>;
|
|
102
105
|
};
|
|
106
|
+
handleAfterDataResponse: {
|
|
107
|
+
type: PropType<(dataSource: any) => any>;
|
|
108
|
+
};
|
|
103
109
|
filterList: never[];
|
|
104
110
|
}>>, {
|
|
105
111
|
apiUrls: ApiUrls;
|