@a2simcode/ui 0.0.307 → 0.0.310
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.
|
@@ -113,7 +113,7 @@ declare const JTablePanel: {
|
|
|
113
113
|
} | null | undefined>;
|
|
114
114
|
default: null;
|
|
115
115
|
};
|
|
116
|
-
loadData: import('vue').PropType<(params: Record<string, any
|
|
116
|
+
loadData: import('vue').PropType<(params: Record<string, any>, isRefreshBtn?: boolean) => Promise<any>>;
|
|
117
117
|
remoteSelection: {
|
|
118
118
|
type: BooleanConstructor;
|
|
119
119
|
default: boolean;
|
|
@@ -190,7 +190,7 @@ declare const JTablePanel: {
|
|
|
190
190
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
191
191
|
}>, {
|
|
192
192
|
refreshData: (queryParam?: Record<string, any>) => Promise<void>;
|
|
193
|
-
resetData: () => Promise<void>;
|
|
193
|
+
resetData: (isRefreshBtn?: boolean) => Promise<void>;
|
|
194
194
|
getSelection: () => any;
|
|
195
195
|
setSelection: (records: any[]) => void;
|
|
196
196
|
setSelectionById: (ids: (string | number)[]) => void;
|
|
@@ -577,7 +577,7 @@ declare const JTablePanel: {
|
|
|
577
577
|
} | null | undefined>;
|
|
578
578
|
default: null;
|
|
579
579
|
};
|
|
580
|
-
loadData: import('vue').PropType<(params: Record<string, any
|
|
580
|
+
loadData: import('vue').PropType<(params: Record<string, any>, isRefreshBtn?: boolean) => Promise<any>>;
|
|
581
581
|
remoteSelection: {
|
|
582
582
|
type: BooleanConstructor;
|
|
583
583
|
default: boolean;
|
|
@@ -654,7 +654,7 @@ declare const JTablePanel: {
|
|
|
654
654
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
655
655
|
}>, {
|
|
656
656
|
refreshData: (queryParam?: Record<string, any>) => Promise<void>;
|
|
657
|
-
resetData: () => Promise<void>;
|
|
657
|
+
resetData: (isRefreshBtn?: boolean) => Promise<void>;
|
|
658
658
|
getSelection: () => any;
|
|
659
659
|
setSelection: (records: any[]) => void;
|
|
660
660
|
setSelectionById: (ids: (string | number)[]) => void;
|
|
@@ -832,7 +832,7 @@ declare const JTablePanel: {
|
|
|
832
832
|
} | null | undefined>;
|
|
833
833
|
default: null;
|
|
834
834
|
};
|
|
835
|
-
loadData: import('vue').PropType<(params: Record<string, any
|
|
835
|
+
loadData: import('vue').PropType<(params: Record<string, any>, isRefreshBtn?: boolean) => Promise<any>>;
|
|
836
836
|
remoteSelection: {
|
|
837
837
|
type: BooleanConstructor;
|
|
838
838
|
default: boolean;
|
|
@@ -909,7 +909,7 @@ declare const JTablePanel: {
|
|
|
909
909
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
910
910
|
}>, {
|
|
911
911
|
refreshData: (queryParam?: Record<string, any>) => Promise<void>;
|
|
912
|
-
resetData: () => Promise<void>;
|
|
912
|
+
resetData: (isRefreshBtn?: boolean) => Promise<void>;
|
|
913
913
|
getSelection: () => any;
|
|
914
914
|
setSelection: (records: any[]) => void;
|
|
915
915
|
setSelectionById: (ids: (string | number)[]) => void;
|
|
@@ -201,7 +201,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
201
201
|
/**
|
|
202
202
|
* @zh 加载数据方法
|
|
203
203
|
*/
|
|
204
|
-
loadData: PropType<(params: Record<string, any
|
|
204
|
+
loadData: PropType<(params: Record<string, any>, isRefreshBtn?: boolean) => Promise<any>>;
|
|
205
205
|
/**
|
|
206
206
|
* @zh 选中数据是否远程拉取,开启后「仅显示选中」会按选中 ID 调用 loadData(参数含 ids 与 field)从接口拉取完整选中数据
|
|
207
207
|
*/
|
|
@@ -335,7 +335,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
335
335
|
};
|
|
336
336
|
}>, {
|
|
337
337
|
refreshData: (queryParam?: Record<string, any>) => Promise<void>;
|
|
338
|
-
resetData: () => Promise<void>;
|
|
338
|
+
resetData: (isRefreshBtn?: boolean) => Promise<void>;
|
|
339
339
|
getSelection: () => any;
|
|
340
340
|
setSelection: (records: any[]) => void;
|
|
341
341
|
setSelectionById: (ids: (string | number)[]) => void;
|
|
@@ -543,7 +543,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
543
543
|
/**
|
|
544
544
|
* @zh 加载数据方法
|
|
545
545
|
*/
|
|
546
|
-
loadData: PropType<(params: Record<string, any
|
|
546
|
+
loadData: PropType<(params: Record<string, any>, isRefreshBtn?: boolean) => Promise<any>>;
|
|
547
547
|
/**
|
|
548
548
|
* @zh 选中数据是否远程拉取,开启后「仅显示选中」会按选中 ID 调用 loadData(参数含 ids 与 field)从接口拉取完整选中数据
|
|
549
549
|
*/
|