vft 0.0.439 → 0.0.441
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/attributes.json +1 -1
- package/dist/index.css +1 -1
- package/es/components/pagination/index.d.ts +3 -1
- package/es/components/pagination/pagination.vue.d.ts +3 -1
- package/es/components/pagination/pagination.vue2.js +47 -44
- package/es/components/table/constants.d.ts +2 -1
- package/es/components/table/constants.js +2 -2
- package/es/components/table/field.d.ts +60 -0
- package/es/components/table/index.d.ts +1271 -544
- package/es/components/table/table.vue.d.ts +291 -124
- package/es/components/table/table.vue2.js +143 -132
- package/es/components/table/types.d.ts +48 -43
- package/es/components/table/use/use-data-source.js +69 -69
- package/es/components/table/use/use-pagination.d.ts +11 -7
- package/es/components/table/use/use-pagination.js +36 -46
- package/es/components/table/utils.d.ts +24 -4
- package/es/index.js +2 -2
- package/es/package.json.d.ts +4 -3
- package/es/package.json.js +1 -1
- package/lib/components/pagination/index.d.ts +3 -1
- package/lib/components/pagination/pagination.vue.d.ts +3 -1
- package/lib/components/pagination/pagination.vue2.cjs +1 -1
- package/lib/components/table/constants.cjs +1 -1
- package/lib/components/table/constants.d.ts +2 -1
- package/lib/components/table/field.d.ts +60 -0
- package/lib/components/table/index.d.ts +1271 -544
- package/lib/components/table/table.vue.d.ts +291 -124
- package/lib/components/table/table.vue2.cjs +1 -1
- package/lib/components/table/types.d.ts +48 -43
- package/lib/components/table/use/use-data-source.cjs +1 -1
- package/lib/components/table/use/use-pagination.cjs +1 -1
- package/lib/components/table/use/use-pagination.d.ts +11 -7
- package/lib/components/table/utils.d.ts +24 -4
- package/lib/package.json.cjs +1 -1
- package/lib/package.json.d.ts +4 -3
- package/package.json +6 -5
- package/tags.json +1 -1
- package/theme-style/index.css +1 -1
- package/theme-style/src/table.scss +6 -1
- package/theme-style/vft-table.css +1 -1
- package/web-types.json +1 -1
|
@@ -1,73 +1,51 @@
|
|
|
1
1
|
export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
2
2
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
3
|
-
|
|
4
|
-
type: import("vue").PropType<import("
|
|
5
|
-
};
|
|
6
|
-
data: {
|
|
7
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<any>>;
|
|
8
|
-
};
|
|
9
|
-
height: {
|
|
10
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
11
|
-
};
|
|
12
|
-
maxHeight: {
|
|
13
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
14
|
-
};
|
|
15
|
-
minHeight: {
|
|
16
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MinHeight>;
|
|
17
|
-
default: number;
|
|
18
|
-
};
|
|
19
|
-
border: {
|
|
20
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Border>;
|
|
21
|
-
default: string;
|
|
3
|
+
sticky: {
|
|
4
|
+
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
22
5
|
};
|
|
23
|
-
|
|
24
|
-
type: import("vue").PropType<
|
|
6
|
+
api: {
|
|
7
|
+
type: import("vue").PropType<(params?: any) => Promise<any>>;
|
|
25
8
|
};
|
|
26
|
-
|
|
27
|
-
type: import("vue").PropType<
|
|
9
|
+
pageSize: {
|
|
10
|
+
type: import("vue").PropType<number>;
|
|
28
11
|
};
|
|
29
|
-
|
|
30
|
-
type: import("vue").PropType<
|
|
12
|
+
total: {
|
|
13
|
+
type: import("vue").PropType<number>;
|
|
31
14
|
};
|
|
32
|
-
|
|
33
|
-
type: import("vue").PropType<
|
|
15
|
+
rowkey: {
|
|
16
|
+
type: import("vue").PropType<string>;
|
|
34
17
|
};
|
|
35
18
|
immediate: {
|
|
36
19
|
type: import("vue").PropType<boolean>;
|
|
37
|
-
default: boolean;
|
|
38
20
|
};
|
|
39
|
-
|
|
40
|
-
type: import("vue").PropType<
|
|
41
|
-
default: boolean;
|
|
21
|
+
fetchSetting: {
|
|
22
|
+
type: import("vue").PropType<Partial<import("./types").FetchSetting>>;
|
|
42
23
|
};
|
|
43
|
-
|
|
24
|
+
watchApiFetch: {
|
|
44
25
|
type: import("vue").PropType<boolean>;
|
|
45
|
-
default: boolean;
|
|
46
26
|
};
|
|
47
|
-
|
|
48
|
-
type: import("vue").PropType<
|
|
27
|
+
beforeFetch: {
|
|
28
|
+
type: import("vue").PropType<(params?: any) => any>;
|
|
49
29
|
};
|
|
50
|
-
|
|
51
|
-
type: import("vue").PropType<boolean |
|
|
30
|
+
delEmptyParams: {
|
|
31
|
+
type: import("vue").PropType<boolean | "strict">;
|
|
52
32
|
};
|
|
53
|
-
|
|
54
|
-
type: import("vue").PropType<
|
|
55
|
-
default: boolean;
|
|
33
|
+
afterFetch: {
|
|
34
|
+
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
56
35
|
};
|
|
57
|
-
|
|
58
|
-
type: import("vue").PropType<
|
|
59
|
-
default: string;
|
|
36
|
+
transformParams: {
|
|
37
|
+
type: import("vue").PropType<boolean>;
|
|
60
38
|
};
|
|
61
|
-
|
|
62
|
-
type: import("vue").PropType<
|
|
39
|
+
extraParams: {
|
|
40
|
+
type: import("vue").PropType<any>;
|
|
63
41
|
};
|
|
64
|
-
|
|
65
|
-
type: import("vue").PropType<
|
|
42
|
+
extraSysHeight: {
|
|
43
|
+
type: import("vue").PropType<number>;
|
|
66
44
|
};
|
|
67
|
-
|
|
68
|
-
type: import("vue").PropType<
|
|
45
|
+
pageHeight: {
|
|
46
|
+
type: import("vue").PropType<number>;
|
|
69
47
|
};
|
|
70
|
-
|
|
48
|
+
showPager: {
|
|
71
49
|
type: import("vue").PropType<boolean>;
|
|
72
50
|
};
|
|
73
51
|
pagination: {
|
|
@@ -76,19 +54,24 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
76
54
|
pageIsZero?: boolean;
|
|
77
55
|
}>;
|
|
78
56
|
};
|
|
79
|
-
|
|
80
|
-
type: import("vue").PropType<
|
|
57
|
+
formOptions: {
|
|
58
|
+
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
59
|
+
showActionForm?: boolean;
|
|
60
|
+
addSearchAllSchema?: boolean;
|
|
61
|
+
}>;
|
|
81
62
|
};
|
|
82
|
-
|
|
83
|
-
type: import("vue").PropType<
|
|
63
|
+
onChange: {
|
|
64
|
+
type: import("vue").PropType<(...args: any[]) => void>;
|
|
84
65
|
};
|
|
85
|
-
|
|
86
|
-
type: import("vue").PropType<
|
|
87
|
-
default: number;
|
|
66
|
+
emptyCfg: {
|
|
67
|
+
type: import("vue").PropType<import("vft/es/vft").EmptyProps>;
|
|
88
68
|
};
|
|
89
69
|
layouts: {
|
|
90
70
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.Layouts>;
|
|
91
71
|
};
|
|
72
|
+
columns: {
|
|
73
|
+
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.Columns<any>>;
|
|
74
|
+
};
|
|
92
75
|
pagerConfig: {
|
|
93
76
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.PagerConfig>;
|
|
94
77
|
};
|
|
@@ -97,12 +80,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
97
80
|
};
|
|
98
81
|
toolbarConfig: {
|
|
99
82
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.ToolbarConfig>;
|
|
100
|
-
default: {
|
|
101
|
-
enabled: boolean;
|
|
102
|
-
slots: {
|
|
103
|
-
buttons: string;
|
|
104
|
-
};
|
|
105
|
-
};
|
|
106
83
|
};
|
|
107
84
|
formConfig: {
|
|
108
85
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.FormConfig>;
|
|
@@ -110,20 +87,50 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
110
87
|
zoomConfig: {
|
|
111
88
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.ZoomConfig>;
|
|
112
89
|
};
|
|
90
|
+
size: {
|
|
91
|
+
type: import("vue").PropType<import("vxe-table").VxeComponentSizeType>;
|
|
92
|
+
};
|
|
93
|
+
id: {
|
|
94
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ID<any>>;
|
|
95
|
+
};
|
|
96
|
+
data: {
|
|
97
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<any>>;
|
|
98
|
+
};
|
|
99
|
+
height: {
|
|
100
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
101
|
+
};
|
|
102
|
+
minHeight: {
|
|
103
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MinHeight>;
|
|
104
|
+
};
|
|
105
|
+
maxHeight: {
|
|
106
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
107
|
+
};
|
|
113
108
|
stripe: {
|
|
114
109
|
type: import("vue").PropType<boolean>;
|
|
115
|
-
|
|
110
|
+
};
|
|
111
|
+
padding: {
|
|
112
|
+
type: import("vue").PropType<boolean>;
|
|
113
|
+
};
|
|
114
|
+
round: {
|
|
115
|
+
type: import("vue").PropType<boolean>;
|
|
116
|
+
};
|
|
117
|
+
border: {
|
|
118
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Border>;
|
|
119
|
+
};
|
|
120
|
+
loading: {
|
|
121
|
+
type: import("vue").PropType<boolean>;
|
|
122
|
+
};
|
|
123
|
+
align: {
|
|
124
|
+
type: import("vue").PropType<import("vxe-table").VxeComponentAlignType>;
|
|
116
125
|
};
|
|
117
126
|
headerAlign: {
|
|
118
127
|
type: import("vue").PropType<import("vxe-table").VxeComponentAlignType>;
|
|
119
|
-
default: string;
|
|
120
128
|
};
|
|
121
129
|
footerAlign: {
|
|
122
130
|
type: import("vue").PropType<import("vxe-table").VxeComponentAlignType>;
|
|
123
131
|
};
|
|
124
132
|
showHeader: {
|
|
125
133
|
type: import("vue").PropType<boolean>;
|
|
126
|
-
default: boolean;
|
|
127
134
|
};
|
|
128
135
|
showFooter: {
|
|
129
136
|
type: import("vue").PropType<boolean>;
|
|
@@ -137,6 +144,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
137
144
|
rowClassName: {
|
|
138
145
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.RowClassName<any>>;
|
|
139
146
|
};
|
|
147
|
+
cellClassName: {
|
|
148
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.CellClassName<any>>;
|
|
149
|
+
};
|
|
140
150
|
headerRowClassName: {
|
|
141
151
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.HeaderRowClassName<any>>;
|
|
142
152
|
};
|
|
@@ -167,9 +177,18 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
167
177
|
footerCellStyle: {
|
|
168
178
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FooterCellStyle<any>>;
|
|
169
179
|
};
|
|
180
|
+
showCustomHeader: {
|
|
181
|
+
type: import("vue").PropType<boolean>;
|
|
182
|
+
};
|
|
183
|
+
mergeHeaderCells: {
|
|
184
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeHeaderCells>;
|
|
185
|
+
};
|
|
170
186
|
mergeCells: {
|
|
171
187
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeCells<any>>;
|
|
172
188
|
};
|
|
189
|
+
mergeFooterCells: {
|
|
190
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeFooterCells<any>>;
|
|
191
|
+
};
|
|
173
192
|
mergeFooterItems: {
|
|
174
193
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeFooterItems<any>>;
|
|
175
194
|
};
|
|
@@ -181,7 +200,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
181
200
|
};
|
|
182
201
|
showOverflow: {
|
|
183
202
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ShowOverflow>;
|
|
184
|
-
default: string;
|
|
185
203
|
};
|
|
186
204
|
showHeaderOverflow: {
|
|
187
205
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ShowOverflow>;
|
|
@@ -192,24 +210,17 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
192
210
|
keepSource: {
|
|
193
211
|
type: import("vue").PropType<boolean>;
|
|
194
212
|
};
|
|
213
|
+
autoResize: {
|
|
214
|
+
type: import("vue").PropType<boolean>;
|
|
215
|
+
};
|
|
195
216
|
syncResize: {
|
|
196
217
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.SyncResize>;
|
|
197
218
|
};
|
|
198
219
|
columnConfig: {
|
|
199
220
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ColumnConfig<any>>;
|
|
200
|
-
default: {
|
|
201
|
-
drag: boolean;
|
|
202
|
-
resizable: boolean;
|
|
203
|
-
minWidth: string;
|
|
204
|
-
};
|
|
205
221
|
};
|
|
206
222
|
rowConfig: {
|
|
207
223
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.RowConfig<any>>;
|
|
208
|
-
default: {
|
|
209
|
-
isHover: boolean;
|
|
210
|
-
isCurrent: boolean;
|
|
211
|
-
useKey: boolean;
|
|
212
|
-
};
|
|
213
224
|
};
|
|
214
225
|
cellConfig: {
|
|
215
226
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.CellConfig<any>>;
|
|
@@ -259,15 +270,24 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
259
270
|
filterConfig: {
|
|
260
271
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FilterConfig<any>>;
|
|
261
272
|
};
|
|
273
|
+
floatingFilterConfig: {
|
|
274
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FloatingFilterConfig<any>>;
|
|
275
|
+
};
|
|
262
276
|
radioConfig: {
|
|
263
277
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.RadioConfig<any>>;
|
|
264
278
|
};
|
|
265
279
|
checkboxConfig: {
|
|
266
280
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig<any>>;
|
|
267
281
|
};
|
|
282
|
+
headerTooltipConfig: {
|
|
283
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.HeaderTooltipConfig<any>>;
|
|
284
|
+
};
|
|
268
285
|
tooltipConfig: {
|
|
269
286
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<any>>;
|
|
270
287
|
};
|
|
288
|
+
footerTooltipConfig: {
|
|
289
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FooterTooltipConfig<any>>;
|
|
290
|
+
};
|
|
271
291
|
exportConfig: {
|
|
272
292
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ExportConfig>;
|
|
273
293
|
};
|
|
@@ -310,6 +330,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
310
330
|
editRules: {
|
|
311
331
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.EditRules<any>>;
|
|
312
332
|
};
|
|
333
|
+
emptyText: {
|
|
334
|
+
type: import("vue").PropType<string>;
|
|
335
|
+
};
|
|
313
336
|
emptyRender: {
|
|
314
337
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.EmptyRender>;
|
|
315
338
|
};
|
|
@@ -324,19 +347,19 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
324
347
|
};
|
|
325
348
|
virtualXConfig: {
|
|
326
349
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.VirtualXConfig>;
|
|
327
|
-
default: {
|
|
328
|
-
enabled: boolean;
|
|
329
|
-
};
|
|
330
350
|
};
|
|
331
351
|
virtualYConfig: {
|
|
332
352
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.VirtualYConfig>;
|
|
333
|
-
default: {
|
|
334
|
-
enabled: boolean;
|
|
335
|
-
};
|
|
336
353
|
};
|
|
337
354
|
scrollbarConfig: {
|
|
338
355
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ScrollbarConfig>;
|
|
339
356
|
};
|
|
357
|
+
params: {
|
|
358
|
+
type: import("vue").PropType<any>;
|
|
359
|
+
};
|
|
360
|
+
resizable: {
|
|
361
|
+
type: import("vue").PropType<boolean>;
|
|
362
|
+
};
|
|
340
363
|
highlightCurrentRow: {
|
|
341
364
|
type: import("vue").PropType<boolean>;
|
|
342
365
|
};
|
|
@@ -352,63 +375,23 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
352
375
|
highlightCell: {
|
|
353
376
|
type: import("vue").PropType<boolean>;
|
|
354
377
|
};
|
|
355
|
-
|
|
356
|
-
type: import("vue").PropType<string>;
|
|
357
|
-
};
|
|
358
|
-
animat: {
|
|
378
|
+
columnKey: {
|
|
359
379
|
type: import("vue").PropType<boolean>;
|
|
360
380
|
};
|
|
361
|
-
|
|
362
|
-
type: import("vue").PropType<
|
|
363
|
-
};
|
|
364
|
-
api: {
|
|
365
|
-
type: import("vue").PropType<(params?: any) => Promise<any>>;
|
|
381
|
+
rowKey: {
|
|
382
|
+
type: import("vue").PropType<boolean>;
|
|
366
383
|
};
|
|
367
|
-
|
|
384
|
+
rowId: {
|
|
368
385
|
type: import("vue").PropType<string>;
|
|
369
|
-
default: string;
|
|
370
|
-
};
|
|
371
|
-
fetchSetting: {
|
|
372
|
-
type: import("vue").PropType<Partial<import("./types").FetchSetting>>;
|
|
373
386
|
};
|
|
374
|
-
|
|
387
|
+
fit: {
|
|
375
388
|
type: import("vue").PropType<boolean>;
|
|
376
|
-
default: boolean;
|
|
377
|
-
};
|
|
378
|
-
beforeFetch: {
|
|
379
|
-
type: import("vue").PropType<(params?: any) => any>;
|
|
380
|
-
};
|
|
381
|
-
delEmptyParams: {
|
|
382
|
-
type: import("vue").PropType<boolean | "strict">;
|
|
383
|
-
default: boolean;
|
|
384
|
-
};
|
|
385
|
-
afterFetch: {
|
|
386
|
-
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
387
389
|
};
|
|
388
|
-
|
|
390
|
+
animat: {
|
|
389
391
|
type: import("vue").PropType<boolean>;
|
|
390
|
-
default: boolean;
|
|
391
|
-
};
|
|
392
|
-
extraParams: {
|
|
393
|
-
type: import("vue").PropType<any>;
|
|
394
|
-
};
|
|
395
|
-
extraSysHeight: {
|
|
396
|
-
type: import("vue").PropType<number>;
|
|
397
|
-
default: number;
|
|
398
392
|
};
|
|
399
|
-
|
|
393
|
+
delayHover: {
|
|
400
394
|
type: import("vue").PropType<number>;
|
|
401
|
-
default: number;
|
|
402
|
-
};
|
|
403
|
-
showPager: {
|
|
404
|
-
type: import("vue").PropType<boolean>;
|
|
405
|
-
default: boolean;
|
|
406
|
-
};
|
|
407
|
-
formOptions: {
|
|
408
|
-
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
409
|
-
showActionForm?: boolean;
|
|
410
|
-
addSearchAllSchema?: boolean;
|
|
411
|
-
}>;
|
|
412
395
|
};
|
|
413
396
|
}>> & Readonly<{
|
|
414
397
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -528,7 +511,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
528
511
|
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "update:page-size" | "current-change" | "register" | "fetch-success" | "update:data" | "keydown-start" | "keydown-end" | "current-row-change" | "current-row-disabled" | "current-column-change" | "current-column-disabled" | "radio-change" | "checkbox-change" | "checkbox-all" | "checkbox-range-start" | "checkbox-range-change" | "checkbox-range-end" | "checkbox-range-select" | "cell-click" | "cell-dblclick" | "cell-menu" | "cell-mouseenter" | "cell-mouseleave" | "cell-selected" | "cell-delete-value" | "cell-backspace-value" | "header-cell-click" | "header-cell-dblclick" | "header-cell-menu" | "footer-cell-click" | "footer-cell-dblclick" | "footer-cell-menu" | "clear-merge" | "sort-change" | "clear-sort" | "clear-all-sort" | "filter-change" | "filter-visible" | "clear-filter" | "clear-all-filter" | "resizable-change" | "column-resizable-change" | "row-resizable-change" | "toggle-row-group-expand" | "toggle-row-expand" | "toggle-tree-expand" | "menu-click" | "edit-closed" | "row-dragstart" | "row-dragover" | "row-dragend" | "column-dragstart" | "column-dragover" | "column-dragend" | "enter-append-row" | "edit-actived" | "edit-activated" | "edit-disabled" | "valid-error" | "scroll-boundary" | "custom" | "custom-visible-change" | "custom-visible-all" | "custom-fixed-change" | "change-fnr" | "open-fnr" | "show-fnr" | "hide-fnr" | "fnr-change" | "fnr-find" | "fnr-find-all" | "fnr-replace" | "fnr-replace-all" | "cell-area-copy" | "cell-area-cut" | "cell-area-paste" | "cell-area-merge" | "clear-cell-area-selection" | "clear-cell-area-merge" | "header-cell-area-selection" | "cell-area-selection-invalid" | "cell-area-selection-start" | "cell-area-selection-drag" | "cell-area-selection-end" | "cell-area-extension-start" | "cell-area-extension-drag" | "cell-area-extension-end" | "cell-area-selection-all-start" | "cell-area-selection-all-end" | "cell-area-arrows-start" | "cell-area-arrows-end" | "active-cell-change-start" | "active-cell-change-end" | "form-submit" | "form-reset" | "update:page-num" | "page-change" | "form-submit-invalid" | "form-collapse" | "form-toggle-collapse" | "proxy-query" | "proxy-delete" | "proxy-save" | "toolbar-button-click" | "toolbar-tool-click", ...args: any[]) => void;
|
|
529
512
|
setProps: (props: Partial<import("./types").TableProps>) => void;
|
|
530
513
|
reload: (opt?: any) => Promise<import("../types").Recordable[] | undefined>;
|
|
531
|
-
getShowPagination: () => boolean;
|
|
532
514
|
deleteTableDataRecord: (row: any, rowKey: any) => void;
|
|
533
515
|
insertTableDataRecord: (record: import("../types").Recordable | import("../types").Recordable[], index?: number) => import("../types").Recordable[] | undefined;
|
|
534
516
|
updateTableDataRecord: (rowKey: string | number, record: import("../types").Recordable) => import("../types").Recordable | undefined;
|
|
@@ -540,70 +522,355 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
540
522
|
getRawDataSource: () => import("../types").Recordable[];
|
|
541
523
|
tableSearch: (value: any) => void;
|
|
542
524
|
table: import("vue").Ref<import("./types").TableInstance | undefined, import("./types").TableInstance | undefined>;
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
525
|
+
pageRef: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
526
|
+
total: {
|
|
527
|
+
type: import("vue").PropType<number>;
|
|
528
|
+
};
|
|
529
|
+
pageSize: {
|
|
530
|
+
type: import("vue").PropType<number>;
|
|
531
|
+
};
|
|
532
|
+
defaultPageSize: {
|
|
533
|
+
type: import("vue").PropType<number>;
|
|
534
|
+
};
|
|
535
|
+
currentPage: {
|
|
536
|
+
type: import("vue").PropType<number>;
|
|
537
|
+
};
|
|
538
|
+
defaultCurrentPage: {
|
|
539
|
+
type: import("vue").PropType<number>;
|
|
540
|
+
};
|
|
541
|
+
pageCount: {
|
|
542
|
+
type: import("vue").PropType<number>;
|
|
543
|
+
};
|
|
544
|
+
pagerCount: {
|
|
545
|
+
type: import("vue").PropType<number>;
|
|
546
|
+
};
|
|
547
|
+
layout: {
|
|
548
|
+
type: import("vue").PropType<string>;
|
|
549
|
+
};
|
|
550
|
+
pageSizes: {
|
|
551
|
+
type: import("vue").PropType<number[]>;
|
|
552
|
+
};
|
|
553
|
+
popperClass: {
|
|
554
|
+
type: import("vue").PropType<string>;
|
|
555
|
+
};
|
|
556
|
+
prevText: {
|
|
557
|
+
type: import("vue").PropType<string>;
|
|
558
|
+
};
|
|
559
|
+
prevIcon: {
|
|
560
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
561
|
+
};
|
|
562
|
+
nextText: {
|
|
563
|
+
type: import("vue").PropType<string>;
|
|
564
|
+
};
|
|
565
|
+
nextIcon: {
|
|
566
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
567
|
+
};
|
|
568
|
+
small: {
|
|
569
|
+
type: import("vue").PropType<boolean>;
|
|
570
|
+
};
|
|
571
|
+
background: {
|
|
572
|
+
type: import("vue").PropType<boolean>;
|
|
573
|
+
};
|
|
574
|
+
disabled: {
|
|
575
|
+
type: import("vue").PropType<boolean>;
|
|
576
|
+
};
|
|
577
|
+
hideOnSinglePage: {
|
|
578
|
+
type: import("vue").PropType<boolean>;
|
|
579
|
+
};
|
|
580
|
+
}>> & Readonly<{
|
|
581
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
582
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
583
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
584
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
585
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
586
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
587
|
+
}>, {
|
|
588
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
589
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
590
|
+
"update:current-page": (val: number) => void;
|
|
591
|
+
"update:page-size": (val: number) => void;
|
|
592
|
+
"size-change": (val: number) => void;
|
|
593
|
+
"current-change": (val: number) => void;
|
|
594
|
+
"prev-click": (val: number) => void;
|
|
595
|
+
"next-click": (val: number) => void;
|
|
596
|
+
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
597
|
+
P: {};
|
|
598
|
+
B: {};
|
|
599
|
+
D: {};
|
|
600
|
+
C: {};
|
|
601
|
+
M: {};
|
|
602
|
+
Defaults: {};
|
|
603
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
604
|
+
total: {
|
|
605
|
+
type: import("vue").PropType<number>;
|
|
606
|
+
};
|
|
607
|
+
pageSize: {
|
|
608
|
+
type: import("vue").PropType<number>;
|
|
609
|
+
};
|
|
610
|
+
defaultPageSize: {
|
|
611
|
+
type: import("vue").PropType<number>;
|
|
612
|
+
};
|
|
613
|
+
currentPage: {
|
|
614
|
+
type: import("vue").PropType<number>;
|
|
615
|
+
};
|
|
616
|
+
defaultCurrentPage: {
|
|
617
|
+
type: import("vue").PropType<number>;
|
|
618
|
+
};
|
|
619
|
+
pageCount: {
|
|
620
|
+
type: import("vue").PropType<number>;
|
|
621
|
+
};
|
|
622
|
+
pagerCount: {
|
|
623
|
+
type: import("vue").PropType<number>;
|
|
624
|
+
};
|
|
625
|
+
layout: {
|
|
626
|
+
type: import("vue").PropType<string>;
|
|
627
|
+
};
|
|
628
|
+
pageSizes: {
|
|
629
|
+
type: import("vue").PropType<number[]>;
|
|
630
|
+
};
|
|
631
|
+
popperClass: {
|
|
632
|
+
type: import("vue").PropType<string>;
|
|
633
|
+
};
|
|
634
|
+
prevText: {
|
|
635
|
+
type: import("vue").PropType<string>;
|
|
636
|
+
};
|
|
637
|
+
prevIcon: {
|
|
638
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
639
|
+
};
|
|
640
|
+
nextText: {
|
|
641
|
+
type: import("vue").PropType<string>;
|
|
642
|
+
};
|
|
643
|
+
nextIcon: {
|
|
644
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
645
|
+
};
|
|
646
|
+
small: {
|
|
647
|
+
type: import("vue").PropType<boolean>;
|
|
648
|
+
};
|
|
649
|
+
background: {
|
|
650
|
+
type: import("vue").PropType<boolean>;
|
|
651
|
+
};
|
|
652
|
+
disabled: {
|
|
653
|
+
type: import("vue").PropType<boolean>;
|
|
654
|
+
};
|
|
655
|
+
hideOnSinglePage: {
|
|
656
|
+
type: import("vue").PropType<boolean>;
|
|
657
|
+
};
|
|
658
|
+
}>> & Readonly<{
|
|
659
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
660
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
661
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
662
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
663
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
664
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
665
|
+
}>, {
|
|
666
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
667
|
+
}, {}, {}, {}, {}> | undefined, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
668
|
+
total: {
|
|
669
|
+
type: import("vue").PropType<number>;
|
|
670
|
+
};
|
|
671
|
+
pageSize: {
|
|
672
|
+
type: import("vue").PropType<number>;
|
|
673
|
+
};
|
|
674
|
+
defaultPageSize: {
|
|
675
|
+
type: import("vue").PropType<number>;
|
|
676
|
+
};
|
|
677
|
+
currentPage: {
|
|
678
|
+
type: import("vue").PropType<number>;
|
|
679
|
+
};
|
|
680
|
+
defaultCurrentPage: {
|
|
681
|
+
type: import("vue").PropType<number>;
|
|
682
|
+
};
|
|
683
|
+
pageCount: {
|
|
684
|
+
type: import("vue").PropType<number>;
|
|
685
|
+
};
|
|
686
|
+
pagerCount: {
|
|
687
|
+
type: import("vue").PropType<number>;
|
|
688
|
+
};
|
|
689
|
+
layout: {
|
|
690
|
+
type: import("vue").PropType<string>;
|
|
691
|
+
};
|
|
692
|
+
pageSizes: {
|
|
693
|
+
type: import("vue").PropType<number[]>;
|
|
694
|
+
};
|
|
695
|
+
popperClass: {
|
|
696
|
+
type: import("vue").PropType<string>;
|
|
697
|
+
};
|
|
698
|
+
prevText: {
|
|
699
|
+
type: import("vue").PropType<string>;
|
|
700
|
+
};
|
|
701
|
+
prevIcon: {
|
|
702
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
703
|
+
};
|
|
704
|
+
nextText: {
|
|
705
|
+
type: import("vue").PropType<string>;
|
|
706
|
+
};
|
|
707
|
+
nextIcon: {
|
|
708
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
709
|
+
};
|
|
710
|
+
small: {
|
|
711
|
+
type: import("vue").PropType<boolean>;
|
|
712
|
+
};
|
|
713
|
+
background: {
|
|
714
|
+
type: import("vue").PropType<boolean>;
|
|
715
|
+
};
|
|
716
|
+
disabled: {
|
|
717
|
+
type: import("vue").PropType<boolean>;
|
|
718
|
+
};
|
|
719
|
+
hideOnSinglePage: {
|
|
720
|
+
type: import("vue").PropType<boolean>;
|
|
721
|
+
};
|
|
722
|
+
}>> & Readonly<{
|
|
723
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
724
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
725
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
726
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
727
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
728
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
729
|
+
}>, {
|
|
730
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
731
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
732
|
+
"update:current-page": (val: number) => void;
|
|
733
|
+
"update:page-size": (val: number) => void;
|
|
734
|
+
"size-change": (val: number) => void;
|
|
735
|
+
"current-change": (val: number) => void;
|
|
736
|
+
"prev-click": (val: number) => void;
|
|
737
|
+
"next-click": (val: number) => void;
|
|
738
|
+
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
739
|
+
P: {};
|
|
740
|
+
B: {};
|
|
741
|
+
D: {};
|
|
742
|
+
C: {};
|
|
743
|
+
M: {};
|
|
744
|
+
Defaults: {};
|
|
745
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
746
|
+
total: {
|
|
747
|
+
type: import("vue").PropType<number>;
|
|
748
|
+
};
|
|
749
|
+
pageSize: {
|
|
750
|
+
type: import("vue").PropType<number>;
|
|
751
|
+
};
|
|
752
|
+
defaultPageSize: {
|
|
753
|
+
type: import("vue").PropType<number>;
|
|
754
|
+
};
|
|
755
|
+
currentPage: {
|
|
756
|
+
type: import("vue").PropType<number>;
|
|
757
|
+
};
|
|
758
|
+
defaultCurrentPage: {
|
|
759
|
+
type: import("vue").PropType<number>;
|
|
760
|
+
};
|
|
761
|
+
pageCount: {
|
|
762
|
+
type: import("vue").PropType<number>;
|
|
763
|
+
};
|
|
764
|
+
pagerCount: {
|
|
765
|
+
type: import("vue").PropType<number>;
|
|
766
|
+
};
|
|
767
|
+
layout: {
|
|
768
|
+
type: import("vue").PropType<string>;
|
|
769
|
+
};
|
|
770
|
+
pageSizes: {
|
|
771
|
+
type: import("vue").PropType<number[]>;
|
|
772
|
+
};
|
|
773
|
+
popperClass: {
|
|
774
|
+
type: import("vue").PropType<string>;
|
|
775
|
+
};
|
|
776
|
+
prevText: {
|
|
777
|
+
type: import("vue").PropType<string>;
|
|
778
|
+
};
|
|
779
|
+
prevIcon: {
|
|
780
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
781
|
+
};
|
|
782
|
+
nextText: {
|
|
783
|
+
type: import("vue").PropType<string>;
|
|
784
|
+
};
|
|
785
|
+
nextIcon: {
|
|
786
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
787
|
+
};
|
|
788
|
+
small: {
|
|
789
|
+
type: import("vue").PropType<boolean>;
|
|
790
|
+
};
|
|
791
|
+
background: {
|
|
792
|
+
type: import("vue").PropType<boolean>;
|
|
793
|
+
};
|
|
794
|
+
disabled: {
|
|
795
|
+
type: import("vue").PropType<boolean>;
|
|
796
|
+
};
|
|
797
|
+
hideOnSinglePage: {
|
|
798
|
+
type: import("vue").PropType<boolean>;
|
|
799
|
+
};
|
|
800
|
+
}>> & Readonly<{
|
|
801
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
802
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
803
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
804
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
805
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
806
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
807
|
+
}>, {
|
|
808
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
809
|
+
}, {}, {}, {}, {}> | undefined>;
|
|
810
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
811
|
+
change: (...args: any[]) => void;
|
|
812
|
+
zoom: (...args: any[]) => void;
|
|
813
|
+
copy: (...args: any[]) => void;
|
|
814
|
+
cut: (...args: any[]) => void;
|
|
815
|
+
keydown: (...args: any[]) => void;
|
|
816
|
+
paste: (...args: any[]) => void;
|
|
817
|
+
scroll: (...args: any[]) => void;
|
|
818
|
+
"update:page-size": (...args: any[]) => void;
|
|
819
|
+
"current-change": (...args: any[]) => void;
|
|
820
|
+
register: (...args: any[]) => void;
|
|
821
|
+
"fetch-success": (...args: any[]) => void;
|
|
822
|
+
"update:data": (...args: any[]) => void;
|
|
823
|
+
"keydown-start": (...args: any[]) => void;
|
|
824
|
+
"keydown-end": (...args: any[]) => void;
|
|
825
|
+
"current-row-change": (...args: any[]) => void;
|
|
826
|
+
"current-row-disabled": (...args: any[]) => void;
|
|
827
|
+
"current-column-change": (...args: any[]) => void;
|
|
828
|
+
"current-column-disabled": (...args: any[]) => void;
|
|
829
|
+
"radio-change": (...args: any[]) => void;
|
|
830
|
+
"checkbox-change": (...args: any[]) => void;
|
|
831
|
+
"checkbox-all": (...args: any[]) => void;
|
|
832
|
+
"checkbox-range-start": (...args: any[]) => void;
|
|
833
|
+
"checkbox-range-change": (...args: any[]) => void;
|
|
834
|
+
"checkbox-range-end": (...args: any[]) => void;
|
|
835
|
+
"checkbox-range-select": (...args: any[]) => void;
|
|
836
|
+
"cell-click": (...args: any[]) => void;
|
|
837
|
+
"cell-dblclick": (...args: any[]) => void;
|
|
838
|
+
"cell-menu": (...args: any[]) => void;
|
|
839
|
+
"cell-mouseenter": (...args: any[]) => void;
|
|
840
|
+
"cell-mouseleave": (...args: any[]) => void;
|
|
841
|
+
"cell-selected": (...args: any[]) => void;
|
|
842
|
+
"cell-delete-value": (...args: any[]) => void;
|
|
843
|
+
"cell-backspace-value": (...args: any[]) => void;
|
|
844
|
+
"header-cell-click": (...args: any[]) => void;
|
|
845
|
+
"header-cell-dblclick": (...args: any[]) => void;
|
|
846
|
+
"header-cell-menu": (...args: any[]) => void;
|
|
847
|
+
"footer-cell-click": (...args: any[]) => void;
|
|
848
|
+
"footer-cell-dblclick": (...args: any[]) => void;
|
|
849
|
+
"footer-cell-menu": (...args: any[]) => void;
|
|
850
|
+
"clear-merge": (...args: any[]) => void;
|
|
851
|
+
"sort-change": (...args: any[]) => void;
|
|
852
|
+
"clear-sort": (...args: any[]) => void;
|
|
853
|
+
"clear-all-sort": (...args: any[]) => void;
|
|
854
|
+
"filter-change": (...args: any[]) => void;
|
|
855
|
+
"filter-visible": (...args: any[]) => void;
|
|
856
|
+
"clear-filter": (...args: any[]) => void;
|
|
857
|
+
"clear-all-filter": (...args: any[]) => void;
|
|
858
|
+
"resizable-change": (...args: any[]) => void;
|
|
859
|
+
"column-resizable-change": (...args: any[]) => void;
|
|
860
|
+
"row-resizable-change": (...args: any[]) => void;
|
|
861
|
+
"toggle-row-group-expand": (...args: any[]) => void;
|
|
862
|
+
"toggle-row-expand": (...args: any[]) => void;
|
|
863
|
+
"toggle-tree-expand": (...args: any[]) => void;
|
|
864
|
+
"menu-click": (...args: any[]) => void;
|
|
865
|
+
"edit-closed": (...args: any[]) => void;
|
|
866
|
+
"row-dragstart": (...args: any[]) => void;
|
|
867
|
+
"row-dragover": (...args: any[]) => void;
|
|
868
|
+
"row-dragend": (...args: any[]) => void;
|
|
869
|
+
"column-dragstart": (...args: any[]) => void;
|
|
870
|
+
"column-dragover": (...args: any[]) => void;
|
|
871
|
+
"column-dragend": (...args: any[]) => void;
|
|
872
|
+
"enter-append-row": (...args: any[]) => void;
|
|
873
|
+
"edit-actived": (...args: any[]) => void;
|
|
607
874
|
"edit-activated": (...args: any[]) => void;
|
|
608
875
|
"edit-disabled": (...args: any[]) => void;
|
|
609
876
|
"valid-error": (...args: any[]) => void;
|
|
@@ -653,32 +920,7 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
653
920
|
"proxy-save": (...args: any[]) => void;
|
|
654
921
|
"toolbar-button-click": (...args: any[]) => void;
|
|
655
922
|
"toolbar-tool-click": (...args: any[]) => void;
|
|
656
|
-
}, import("vue").PublicProps, {
|
|
657
|
-
minHeight: import("vxe-table").VxeTablePropTypes.MinHeight;
|
|
658
|
-
border: import("vxe-table").VxeTablePropTypes.Border;
|
|
659
|
-
immediate: boolean;
|
|
660
|
-
fit: import("vxe-table").VxeTablePropTypes.Fit;
|
|
661
|
-
loading: import("vxe-table").VxeTablePropTypes.Loading;
|
|
662
|
-
autoResize: import("vxe-table").VxeTablePropTypes.AutoResize;
|
|
663
|
-
align: import("vxe-table").VxeTablePropTypes.Align;
|
|
664
|
-
pageSize: number;
|
|
665
|
-
toolbarConfig: import("vxe-table").VxeGridPropTypes.ToolbarConfig;
|
|
666
|
-
stripe: import("vxe-table").VxeTablePropTypes.Stripe;
|
|
667
|
-
headerAlign: import("vxe-table").VxeTablePropTypes.HeaderAlign;
|
|
668
|
-
showHeader: import("vxe-table").VxeTablePropTypes.ShowHeader;
|
|
669
|
-
showOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow;
|
|
670
|
-
columnConfig: import("vxe-table").VxeTablePropTypes.ColumnConfig<any>;
|
|
671
|
-
rowConfig: import("vxe-table").VxeTablePropTypes.RowConfig<any>;
|
|
672
|
-
virtualXConfig: import("vxe-table").VxeTablePropTypes.VirtualXConfig;
|
|
673
|
-
virtualYConfig: import("vxe-table").VxeTablePropTypes.VirtualYConfig;
|
|
674
|
-
rowkey: string;
|
|
675
|
-
watchApiFetch: boolean;
|
|
676
|
-
delEmptyParams: boolean | "strict";
|
|
677
|
-
transformParams: boolean;
|
|
678
|
-
extraSysHeight: number;
|
|
679
|
-
pageHeight: number;
|
|
680
|
-
showPager: boolean;
|
|
681
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
923
|
+
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
682
924
|
P: {};
|
|
683
925
|
B: {};
|
|
684
926
|
D: {};
|
|
@@ -686,74 +928,52 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
686
928
|
M: {};
|
|
687
929
|
Defaults: {};
|
|
688
930
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
689
|
-
|
|
690
|
-
type: import("vue").PropType<import("
|
|
691
|
-
};
|
|
692
|
-
data: {
|
|
693
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<any>>;
|
|
694
|
-
};
|
|
695
|
-
height: {
|
|
696
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
697
|
-
};
|
|
698
|
-
maxHeight: {
|
|
699
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
700
|
-
};
|
|
701
|
-
minHeight: {
|
|
702
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MinHeight>;
|
|
703
|
-
default: number;
|
|
704
|
-
};
|
|
705
|
-
border: {
|
|
706
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Border>;
|
|
707
|
-
default: string;
|
|
931
|
+
sticky: {
|
|
932
|
+
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
708
933
|
};
|
|
709
|
-
|
|
710
|
-
type: import("vue").PropType<
|
|
934
|
+
api: {
|
|
935
|
+
type: import("vue").PropType<(params?: any) => Promise<any>>;
|
|
711
936
|
};
|
|
712
|
-
|
|
713
|
-
type: import("vue").PropType<
|
|
937
|
+
pageSize: {
|
|
938
|
+
type: import("vue").PropType<number>;
|
|
714
939
|
};
|
|
715
|
-
|
|
716
|
-
type: import("vue").PropType<
|
|
940
|
+
total: {
|
|
941
|
+
type: import("vue").PropType<number>;
|
|
717
942
|
};
|
|
718
|
-
|
|
719
|
-
type: import("vue").PropType<
|
|
943
|
+
rowkey: {
|
|
944
|
+
type: import("vue").PropType<string>;
|
|
720
945
|
};
|
|
721
946
|
immediate: {
|
|
722
947
|
type: import("vue").PropType<boolean>;
|
|
723
|
-
default: boolean;
|
|
724
948
|
};
|
|
725
|
-
|
|
726
|
-
type: import("vue").PropType<
|
|
727
|
-
default: boolean;
|
|
949
|
+
fetchSetting: {
|
|
950
|
+
type: import("vue").PropType<Partial<import("./types").FetchSetting>>;
|
|
728
951
|
};
|
|
729
|
-
|
|
952
|
+
watchApiFetch: {
|
|
730
953
|
type: import("vue").PropType<boolean>;
|
|
731
|
-
default: boolean;
|
|
732
954
|
};
|
|
733
|
-
|
|
734
|
-
type: import("vue").PropType<
|
|
955
|
+
beforeFetch: {
|
|
956
|
+
type: import("vue").PropType<(params?: any) => any>;
|
|
735
957
|
};
|
|
736
|
-
|
|
737
|
-
type: import("vue").PropType<boolean |
|
|
958
|
+
delEmptyParams: {
|
|
959
|
+
type: import("vue").PropType<boolean | "strict">;
|
|
738
960
|
};
|
|
739
|
-
|
|
740
|
-
type: import("vue").PropType<
|
|
741
|
-
default: boolean;
|
|
961
|
+
afterFetch: {
|
|
962
|
+
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
742
963
|
};
|
|
743
|
-
|
|
744
|
-
type: import("vue").PropType<
|
|
745
|
-
default: string;
|
|
964
|
+
transformParams: {
|
|
965
|
+
type: import("vue").PropType<boolean>;
|
|
746
966
|
};
|
|
747
|
-
|
|
748
|
-
type: import("vue").PropType<
|
|
967
|
+
extraParams: {
|
|
968
|
+
type: import("vue").PropType<any>;
|
|
749
969
|
};
|
|
750
|
-
|
|
751
|
-
type: import("vue").PropType<
|
|
970
|
+
extraSysHeight: {
|
|
971
|
+
type: import("vue").PropType<number>;
|
|
752
972
|
};
|
|
753
|
-
|
|
754
|
-
type: import("vue").PropType<
|
|
973
|
+
pageHeight: {
|
|
974
|
+
type: import("vue").PropType<number>;
|
|
755
975
|
};
|
|
756
|
-
|
|
976
|
+
showPager: {
|
|
757
977
|
type: import("vue").PropType<boolean>;
|
|
758
978
|
};
|
|
759
979
|
pagination: {
|
|
@@ -762,19 +982,24 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
762
982
|
pageIsZero?: boolean;
|
|
763
983
|
}>;
|
|
764
984
|
};
|
|
765
|
-
|
|
766
|
-
type: import("vue").PropType<
|
|
985
|
+
formOptions: {
|
|
986
|
+
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
987
|
+
showActionForm?: boolean;
|
|
988
|
+
addSearchAllSchema?: boolean;
|
|
989
|
+
}>;
|
|
767
990
|
};
|
|
768
|
-
|
|
769
|
-
type: import("vue").PropType<
|
|
991
|
+
onChange: {
|
|
992
|
+
type: import("vue").PropType<(...args: any[]) => void>;
|
|
770
993
|
};
|
|
771
|
-
|
|
772
|
-
type: import("vue").PropType<
|
|
773
|
-
default: number;
|
|
994
|
+
emptyCfg: {
|
|
995
|
+
type: import("vue").PropType<import("vft/es/vft").EmptyProps>;
|
|
774
996
|
};
|
|
775
997
|
layouts: {
|
|
776
998
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.Layouts>;
|
|
777
999
|
};
|
|
1000
|
+
columns: {
|
|
1001
|
+
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.Columns<any>>;
|
|
1002
|
+
};
|
|
778
1003
|
pagerConfig: {
|
|
779
1004
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.PagerConfig>;
|
|
780
1005
|
};
|
|
@@ -783,12 +1008,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
783
1008
|
};
|
|
784
1009
|
toolbarConfig: {
|
|
785
1010
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.ToolbarConfig>;
|
|
786
|
-
default: {
|
|
787
|
-
enabled: boolean;
|
|
788
|
-
slots: {
|
|
789
|
-
buttons: string;
|
|
790
|
-
};
|
|
791
|
-
};
|
|
792
1011
|
};
|
|
793
1012
|
formConfig: {
|
|
794
1013
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.FormConfig>;
|
|
@@ -796,20 +1015,50 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
796
1015
|
zoomConfig: {
|
|
797
1016
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.ZoomConfig>;
|
|
798
1017
|
};
|
|
1018
|
+
size: {
|
|
1019
|
+
type: import("vue").PropType<import("vxe-table").VxeComponentSizeType>;
|
|
1020
|
+
};
|
|
1021
|
+
id: {
|
|
1022
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ID<any>>;
|
|
1023
|
+
};
|
|
1024
|
+
data: {
|
|
1025
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<any>>;
|
|
1026
|
+
};
|
|
1027
|
+
height: {
|
|
1028
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
1029
|
+
};
|
|
1030
|
+
minHeight: {
|
|
1031
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MinHeight>;
|
|
1032
|
+
};
|
|
1033
|
+
maxHeight: {
|
|
1034
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
1035
|
+
};
|
|
799
1036
|
stripe: {
|
|
800
1037
|
type: import("vue").PropType<boolean>;
|
|
801
|
-
|
|
1038
|
+
};
|
|
1039
|
+
padding: {
|
|
1040
|
+
type: import("vue").PropType<boolean>;
|
|
1041
|
+
};
|
|
1042
|
+
round: {
|
|
1043
|
+
type: import("vue").PropType<boolean>;
|
|
1044
|
+
};
|
|
1045
|
+
border: {
|
|
1046
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Border>;
|
|
1047
|
+
};
|
|
1048
|
+
loading: {
|
|
1049
|
+
type: import("vue").PropType<boolean>;
|
|
1050
|
+
};
|
|
1051
|
+
align: {
|
|
1052
|
+
type: import("vue").PropType<import("vxe-table").VxeComponentAlignType>;
|
|
802
1053
|
};
|
|
803
1054
|
headerAlign: {
|
|
804
1055
|
type: import("vue").PropType<import("vxe-table").VxeComponentAlignType>;
|
|
805
|
-
default: string;
|
|
806
1056
|
};
|
|
807
1057
|
footerAlign: {
|
|
808
1058
|
type: import("vue").PropType<import("vxe-table").VxeComponentAlignType>;
|
|
809
1059
|
};
|
|
810
1060
|
showHeader: {
|
|
811
1061
|
type: import("vue").PropType<boolean>;
|
|
812
|
-
default: boolean;
|
|
813
1062
|
};
|
|
814
1063
|
showFooter: {
|
|
815
1064
|
type: import("vue").PropType<boolean>;
|
|
@@ -823,6 +1072,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
823
1072
|
rowClassName: {
|
|
824
1073
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.RowClassName<any>>;
|
|
825
1074
|
};
|
|
1075
|
+
cellClassName: {
|
|
1076
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.CellClassName<any>>;
|
|
1077
|
+
};
|
|
826
1078
|
headerRowClassName: {
|
|
827
1079
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.HeaderRowClassName<any>>;
|
|
828
1080
|
};
|
|
@@ -850,12 +1102,21 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
850
1102
|
footerRowStyle: {
|
|
851
1103
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FooterRowStyle<any>>;
|
|
852
1104
|
};
|
|
853
|
-
footerCellStyle: {
|
|
854
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FooterCellStyle<any>>;
|
|
1105
|
+
footerCellStyle: {
|
|
1106
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FooterCellStyle<any>>;
|
|
1107
|
+
};
|
|
1108
|
+
showCustomHeader: {
|
|
1109
|
+
type: import("vue").PropType<boolean>;
|
|
1110
|
+
};
|
|
1111
|
+
mergeHeaderCells: {
|
|
1112
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeHeaderCells>;
|
|
855
1113
|
};
|
|
856
1114
|
mergeCells: {
|
|
857
1115
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeCells<any>>;
|
|
858
1116
|
};
|
|
1117
|
+
mergeFooterCells: {
|
|
1118
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeFooterCells<any>>;
|
|
1119
|
+
};
|
|
859
1120
|
mergeFooterItems: {
|
|
860
1121
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeFooterItems<any>>;
|
|
861
1122
|
};
|
|
@@ -867,7 +1128,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
867
1128
|
};
|
|
868
1129
|
showOverflow: {
|
|
869
1130
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ShowOverflow>;
|
|
870
|
-
default: string;
|
|
871
1131
|
};
|
|
872
1132
|
showHeaderOverflow: {
|
|
873
1133
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ShowOverflow>;
|
|
@@ -878,24 +1138,17 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
878
1138
|
keepSource: {
|
|
879
1139
|
type: import("vue").PropType<boolean>;
|
|
880
1140
|
};
|
|
1141
|
+
autoResize: {
|
|
1142
|
+
type: import("vue").PropType<boolean>;
|
|
1143
|
+
};
|
|
881
1144
|
syncResize: {
|
|
882
1145
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.SyncResize>;
|
|
883
1146
|
};
|
|
884
1147
|
columnConfig: {
|
|
885
1148
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ColumnConfig<any>>;
|
|
886
|
-
default: {
|
|
887
|
-
drag: boolean;
|
|
888
|
-
resizable: boolean;
|
|
889
|
-
minWidth: string;
|
|
890
|
-
};
|
|
891
1149
|
};
|
|
892
1150
|
rowConfig: {
|
|
893
1151
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.RowConfig<any>>;
|
|
894
|
-
default: {
|
|
895
|
-
isHover: boolean;
|
|
896
|
-
isCurrent: boolean;
|
|
897
|
-
useKey: boolean;
|
|
898
|
-
};
|
|
899
1152
|
};
|
|
900
1153
|
cellConfig: {
|
|
901
1154
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.CellConfig<any>>;
|
|
@@ -945,15 +1198,24 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
945
1198
|
filterConfig: {
|
|
946
1199
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FilterConfig<any>>;
|
|
947
1200
|
};
|
|
1201
|
+
floatingFilterConfig: {
|
|
1202
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FloatingFilterConfig<any>>;
|
|
1203
|
+
};
|
|
948
1204
|
radioConfig: {
|
|
949
1205
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.RadioConfig<any>>;
|
|
950
1206
|
};
|
|
951
1207
|
checkboxConfig: {
|
|
952
1208
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig<any>>;
|
|
953
1209
|
};
|
|
1210
|
+
headerTooltipConfig: {
|
|
1211
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.HeaderTooltipConfig<any>>;
|
|
1212
|
+
};
|
|
954
1213
|
tooltipConfig: {
|
|
955
1214
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<any>>;
|
|
956
1215
|
};
|
|
1216
|
+
footerTooltipConfig: {
|
|
1217
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FooterTooltipConfig<any>>;
|
|
1218
|
+
};
|
|
957
1219
|
exportConfig: {
|
|
958
1220
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ExportConfig>;
|
|
959
1221
|
};
|
|
@@ -996,6 +1258,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
996
1258
|
editRules: {
|
|
997
1259
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.EditRules<any>>;
|
|
998
1260
|
};
|
|
1261
|
+
emptyText: {
|
|
1262
|
+
type: import("vue").PropType<string>;
|
|
1263
|
+
};
|
|
999
1264
|
emptyRender: {
|
|
1000
1265
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.EmptyRender>;
|
|
1001
1266
|
};
|
|
@@ -1010,19 +1275,19 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1010
1275
|
};
|
|
1011
1276
|
virtualXConfig: {
|
|
1012
1277
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.VirtualXConfig>;
|
|
1013
|
-
default: {
|
|
1014
|
-
enabled: boolean;
|
|
1015
|
-
};
|
|
1016
1278
|
};
|
|
1017
1279
|
virtualYConfig: {
|
|
1018
1280
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.VirtualYConfig>;
|
|
1019
|
-
default: {
|
|
1020
|
-
enabled: boolean;
|
|
1021
|
-
};
|
|
1022
1281
|
};
|
|
1023
1282
|
scrollbarConfig: {
|
|
1024
1283
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ScrollbarConfig>;
|
|
1025
1284
|
};
|
|
1285
|
+
params: {
|
|
1286
|
+
type: import("vue").PropType<any>;
|
|
1287
|
+
};
|
|
1288
|
+
resizable: {
|
|
1289
|
+
type: import("vue").PropType<boolean>;
|
|
1290
|
+
};
|
|
1026
1291
|
highlightCurrentRow: {
|
|
1027
1292
|
type: import("vue").PropType<boolean>;
|
|
1028
1293
|
};
|
|
@@ -1038,63 +1303,23 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1038
1303
|
highlightCell: {
|
|
1039
1304
|
type: import("vue").PropType<boolean>;
|
|
1040
1305
|
};
|
|
1041
|
-
|
|
1042
|
-
type: import("vue").PropType<string>;
|
|
1043
|
-
};
|
|
1044
|
-
animat: {
|
|
1306
|
+
columnKey: {
|
|
1045
1307
|
type: import("vue").PropType<boolean>;
|
|
1046
1308
|
};
|
|
1047
|
-
|
|
1048
|
-
type: import("vue").PropType<
|
|
1049
|
-
};
|
|
1050
|
-
api: {
|
|
1051
|
-
type: import("vue").PropType<(params?: any) => Promise<any>>;
|
|
1309
|
+
rowKey: {
|
|
1310
|
+
type: import("vue").PropType<boolean>;
|
|
1052
1311
|
};
|
|
1053
|
-
|
|
1312
|
+
rowId: {
|
|
1054
1313
|
type: import("vue").PropType<string>;
|
|
1055
|
-
default: string;
|
|
1056
1314
|
};
|
|
1057
|
-
|
|
1058
|
-
type: import("vue").PropType<Partial<import("./types").FetchSetting>>;
|
|
1059
|
-
};
|
|
1060
|
-
watchApiFetch: {
|
|
1315
|
+
fit: {
|
|
1061
1316
|
type: import("vue").PropType<boolean>;
|
|
1062
|
-
default: boolean;
|
|
1063
|
-
};
|
|
1064
|
-
beforeFetch: {
|
|
1065
|
-
type: import("vue").PropType<(params?: any) => any>;
|
|
1066
|
-
};
|
|
1067
|
-
delEmptyParams: {
|
|
1068
|
-
type: import("vue").PropType<boolean | "strict">;
|
|
1069
|
-
default: boolean;
|
|
1070
|
-
};
|
|
1071
|
-
afterFetch: {
|
|
1072
|
-
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
1073
1317
|
};
|
|
1074
|
-
|
|
1318
|
+
animat: {
|
|
1075
1319
|
type: import("vue").PropType<boolean>;
|
|
1076
|
-
default: boolean;
|
|
1077
|
-
};
|
|
1078
|
-
extraParams: {
|
|
1079
|
-
type: import("vue").PropType<any>;
|
|
1080
|
-
};
|
|
1081
|
-
extraSysHeight: {
|
|
1082
|
-
type: import("vue").PropType<number>;
|
|
1083
|
-
default: number;
|
|
1084
1320
|
};
|
|
1085
|
-
|
|
1321
|
+
delayHover: {
|
|
1086
1322
|
type: import("vue").PropType<number>;
|
|
1087
|
-
default: number;
|
|
1088
|
-
};
|
|
1089
|
-
showPager: {
|
|
1090
|
-
type: import("vue").PropType<boolean>;
|
|
1091
|
-
default: boolean;
|
|
1092
|
-
};
|
|
1093
|
-
formOptions: {
|
|
1094
|
-
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
1095
|
-
showActionForm?: boolean;
|
|
1096
|
-
addSearchAllSchema?: boolean;
|
|
1097
|
-
}>;
|
|
1098
1323
|
};
|
|
1099
1324
|
}>> & Readonly<{
|
|
1100
1325
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -1214,7 +1439,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1214
1439
|
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "update:page-size" | "current-change" | "register" | "fetch-success" | "update:data" | "keydown-start" | "keydown-end" | "current-row-change" | "current-row-disabled" | "current-column-change" | "current-column-disabled" | "radio-change" | "checkbox-change" | "checkbox-all" | "checkbox-range-start" | "checkbox-range-change" | "checkbox-range-end" | "checkbox-range-select" | "cell-click" | "cell-dblclick" | "cell-menu" | "cell-mouseenter" | "cell-mouseleave" | "cell-selected" | "cell-delete-value" | "cell-backspace-value" | "header-cell-click" | "header-cell-dblclick" | "header-cell-menu" | "footer-cell-click" | "footer-cell-dblclick" | "footer-cell-menu" | "clear-merge" | "sort-change" | "clear-sort" | "clear-all-sort" | "filter-change" | "filter-visible" | "clear-filter" | "clear-all-filter" | "resizable-change" | "column-resizable-change" | "row-resizable-change" | "toggle-row-group-expand" | "toggle-row-expand" | "toggle-tree-expand" | "menu-click" | "edit-closed" | "row-dragstart" | "row-dragover" | "row-dragend" | "column-dragstart" | "column-dragover" | "column-dragend" | "enter-append-row" | "edit-actived" | "edit-activated" | "edit-disabled" | "valid-error" | "scroll-boundary" | "custom" | "custom-visible-change" | "custom-visible-all" | "custom-fixed-change" | "change-fnr" | "open-fnr" | "show-fnr" | "hide-fnr" | "fnr-change" | "fnr-find" | "fnr-find-all" | "fnr-replace" | "fnr-replace-all" | "cell-area-copy" | "cell-area-cut" | "cell-area-paste" | "cell-area-merge" | "clear-cell-area-selection" | "clear-cell-area-merge" | "header-cell-area-selection" | "cell-area-selection-invalid" | "cell-area-selection-start" | "cell-area-selection-drag" | "cell-area-selection-end" | "cell-area-extension-start" | "cell-area-extension-drag" | "cell-area-extension-end" | "cell-area-selection-all-start" | "cell-area-selection-all-end" | "cell-area-arrows-start" | "cell-area-arrows-end" | "active-cell-change-start" | "active-cell-change-end" | "form-submit" | "form-reset" | "update:page-num" | "page-change" | "form-submit-invalid" | "form-collapse" | "form-toggle-collapse" | "proxy-query" | "proxy-delete" | "proxy-save" | "toolbar-button-click" | "toolbar-tool-click", ...args: any[]) => void;
|
|
1215
1440
|
setProps: (props: Partial<import("./types").TableProps>) => void;
|
|
1216
1441
|
reload: (opt?: any) => Promise<import("../types").Recordable[] | undefined>;
|
|
1217
|
-
getShowPagination: () => boolean;
|
|
1218
1442
|
deleteTableDataRecord: (row: any, rowKey: any) => void;
|
|
1219
1443
|
insertTableDataRecord: (record: import("../types").Recordable | import("../types").Recordable[], index?: number) => import("../types").Recordable[] | undefined;
|
|
1220
1444
|
updateTableDataRecord: (rowKey: string | number, record: import("../types").Recordable) => import("../types").Recordable | undefined;
|
|
@@ -1226,104 +1450,342 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1226
1450
|
getRawDataSource: () => import("../types").Recordable[];
|
|
1227
1451
|
tableSearch: (value: any) => void;
|
|
1228
1452
|
table: import("vue").Ref<import("./types").TableInstance | undefined, import("./types").TableInstance | undefined>;
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1453
|
+
pageRef: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
1454
|
+
total: {
|
|
1455
|
+
type: import("vue").PropType<number>;
|
|
1456
|
+
};
|
|
1457
|
+
pageSize: {
|
|
1458
|
+
type: import("vue").PropType<number>;
|
|
1459
|
+
};
|
|
1460
|
+
defaultPageSize: {
|
|
1461
|
+
type: import("vue").PropType<number>;
|
|
1462
|
+
};
|
|
1463
|
+
currentPage: {
|
|
1464
|
+
type: import("vue").PropType<number>;
|
|
1465
|
+
};
|
|
1466
|
+
defaultCurrentPage: {
|
|
1467
|
+
type: import("vue").PropType<number>;
|
|
1468
|
+
};
|
|
1469
|
+
pageCount: {
|
|
1470
|
+
type: import("vue").PropType<number>;
|
|
1471
|
+
};
|
|
1472
|
+
pagerCount: {
|
|
1473
|
+
type: import("vue").PropType<number>;
|
|
1474
|
+
};
|
|
1475
|
+
layout: {
|
|
1476
|
+
type: import("vue").PropType<string>;
|
|
1477
|
+
};
|
|
1478
|
+
pageSizes: {
|
|
1479
|
+
type: import("vue").PropType<number[]>;
|
|
1480
|
+
};
|
|
1481
|
+
popperClass: {
|
|
1482
|
+
type: import("vue").PropType<string>;
|
|
1483
|
+
};
|
|
1484
|
+
prevText: {
|
|
1485
|
+
type: import("vue").PropType<string>;
|
|
1486
|
+
};
|
|
1487
|
+
prevIcon: {
|
|
1488
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
1489
|
+
};
|
|
1490
|
+
nextText: {
|
|
1491
|
+
type: import("vue").PropType<string>;
|
|
1492
|
+
};
|
|
1493
|
+
nextIcon: {
|
|
1494
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
1495
|
+
};
|
|
1496
|
+
small: {
|
|
1497
|
+
type: import("vue").PropType<boolean>;
|
|
1498
|
+
};
|
|
1499
|
+
background: {
|
|
1500
|
+
type: import("vue").PropType<boolean>;
|
|
1501
|
+
};
|
|
1502
|
+
disabled: {
|
|
1503
|
+
type: import("vue").PropType<boolean>;
|
|
1504
|
+
};
|
|
1505
|
+
hideOnSinglePage: {
|
|
1506
|
+
type: import("vue").PropType<boolean>;
|
|
1507
|
+
};
|
|
1508
|
+
}>> & Readonly<{
|
|
1509
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
1510
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
1511
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
1512
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
1513
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
1514
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
1515
|
+
}>, {
|
|
1516
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
1517
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1518
|
+
"update:current-page": (val: number) => void;
|
|
1519
|
+
"update:page-size": (val: number) => void;
|
|
1520
|
+
"size-change": (val: number) => void;
|
|
1521
|
+
"current-change": (val: number) => void;
|
|
1522
|
+
"prev-click": (val: number) => void;
|
|
1523
|
+
"next-click": (val: number) => void;
|
|
1524
|
+
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1525
|
+
P: {};
|
|
1526
|
+
B: {};
|
|
1527
|
+
D: {};
|
|
1528
|
+
C: {};
|
|
1529
|
+
M: {};
|
|
1530
|
+
Defaults: {};
|
|
1531
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
1532
|
+
total: {
|
|
1533
|
+
type: import("vue").PropType<number>;
|
|
1534
|
+
};
|
|
1535
|
+
pageSize: {
|
|
1536
|
+
type: import("vue").PropType<number>;
|
|
1537
|
+
};
|
|
1538
|
+
defaultPageSize: {
|
|
1539
|
+
type: import("vue").PropType<number>;
|
|
1540
|
+
};
|
|
1541
|
+
currentPage: {
|
|
1542
|
+
type: import("vue").PropType<number>;
|
|
1543
|
+
};
|
|
1544
|
+
defaultCurrentPage: {
|
|
1545
|
+
type: import("vue").PropType<number>;
|
|
1546
|
+
};
|
|
1547
|
+
pageCount: {
|
|
1548
|
+
type: import("vue").PropType<number>;
|
|
1549
|
+
};
|
|
1550
|
+
pagerCount: {
|
|
1551
|
+
type: import("vue").PropType<number>;
|
|
1552
|
+
};
|
|
1553
|
+
layout: {
|
|
1554
|
+
type: import("vue").PropType<string>;
|
|
1555
|
+
};
|
|
1556
|
+
pageSizes: {
|
|
1557
|
+
type: import("vue").PropType<number[]>;
|
|
1558
|
+
};
|
|
1559
|
+
popperClass: {
|
|
1560
|
+
type: import("vue").PropType<string>;
|
|
1561
|
+
};
|
|
1562
|
+
prevText: {
|
|
1563
|
+
type: import("vue").PropType<string>;
|
|
1564
|
+
};
|
|
1565
|
+
prevIcon: {
|
|
1566
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
1567
|
+
};
|
|
1568
|
+
nextText: {
|
|
1569
|
+
type: import("vue").PropType<string>;
|
|
1570
|
+
};
|
|
1571
|
+
nextIcon: {
|
|
1572
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
1573
|
+
};
|
|
1574
|
+
small: {
|
|
1575
|
+
type: import("vue").PropType<boolean>;
|
|
1576
|
+
};
|
|
1577
|
+
background: {
|
|
1578
|
+
type: import("vue").PropType<boolean>;
|
|
1579
|
+
};
|
|
1580
|
+
disabled: {
|
|
1581
|
+
type: import("vue").PropType<boolean>;
|
|
1582
|
+
};
|
|
1583
|
+
hideOnSinglePage: {
|
|
1584
|
+
type: import("vue").PropType<boolean>;
|
|
1585
|
+
};
|
|
1586
|
+
}>> & Readonly<{
|
|
1587
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
1588
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
1589
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
1590
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
1591
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
1592
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
1593
|
+
}>, {
|
|
1594
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
1595
|
+
}, {}, {}, {}, {}> | undefined, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
1596
|
+
total: {
|
|
1597
|
+
type: import("vue").PropType<number>;
|
|
1598
|
+
};
|
|
1599
|
+
pageSize: {
|
|
1600
|
+
type: import("vue").PropType<number>;
|
|
1601
|
+
};
|
|
1602
|
+
defaultPageSize: {
|
|
1603
|
+
type: import("vue").PropType<number>;
|
|
1604
|
+
};
|
|
1605
|
+
currentPage: {
|
|
1606
|
+
type: import("vue").PropType<number>;
|
|
1607
|
+
};
|
|
1608
|
+
defaultCurrentPage: {
|
|
1609
|
+
type: import("vue").PropType<number>;
|
|
1610
|
+
};
|
|
1611
|
+
pageCount: {
|
|
1612
|
+
type: import("vue").PropType<number>;
|
|
1613
|
+
};
|
|
1614
|
+
pagerCount: {
|
|
1615
|
+
type: import("vue").PropType<number>;
|
|
1616
|
+
};
|
|
1617
|
+
layout: {
|
|
1618
|
+
type: import("vue").PropType<string>;
|
|
1619
|
+
};
|
|
1620
|
+
pageSizes: {
|
|
1621
|
+
type: import("vue").PropType<number[]>;
|
|
1622
|
+
};
|
|
1623
|
+
popperClass: {
|
|
1624
|
+
type: import("vue").PropType<string>;
|
|
1625
|
+
};
|
|
1626
|
+
prevText: {
|
|
1627
|
+
type: import("vue").PropType<string>;
|
|
1628
|
+
};
|
|
1629
|
+
prevIcon: {
|
|
1630
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
1631
|
+
};
|
|
1632
|
+
nextText: {
|
|
1633
|
+
type: import("vue").PropType<string>;
|
|
1634
|
+
};
|
|
1635
|
+
nextIcon: {
|
|
1636
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
1637
|
+
};
|
|
1638
|
+
small: {
|
|
1639
|
+
type: import("vue").PropType<boolean>;
|
|
1640
|
+
};
|
|
1641
|
+
background: {
|
|
1642
|
+
type: import("vue").PropType<boolean>;
|
|
1643
|
+
};
|
|
1644
|
+
disabled: {
|
|
1645
|
+
type: import("vue").PropType<boolean>;
|
|
1646
|
+
};
|
|
1647
|
+
hideOnSinglePage: {
|
|
1648
|
+
type: import("vue").PropType<boolean>;
|
|
1649
|
+
};
|
|
1650
|
+
}>> & Readonly<{
|
|
1651
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
1652
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
1653
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
1654
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
1655
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
1656
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
1657
|
+
}>, {
|
|
1658
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
1659
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1660
|
+
"update:current-page": (val: number) => void;
|
|
1661
|
+
"update:page-size": (val: number) => void;
|
|
1662
|
+
"size-change": (val: number) => void;
|
|
1663
|
+
"current-change": (val: number) => void;
|
|
1664
|
+
"prev-click": (val: number) => void;
|
|
1665
|
+
"next-click": (val: number) => void;
|
|
1666
|
+
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1667
|
+
P: {};
|
|
1668
|
+
B: {};
|
|
1669
|
+
D: {};
|
|
1670
|
+
C: {};
|
|
1671
|
+
M: {};
|
|
1672
|
+
Defaults: {};
|
|
1673
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
1674
|
+
total: {
|
|
1675
|
+
type: import("vue").PropType<number>;
|
|
1676
|
+
};
|
|
1677
|
+
pageSize: {
|
|
1678
|
+
type: import("vue").PropType<number>;
|
|
1679
|
+
};
|
|
1680
|
+
defaultPageSize: {
|
|
1681
|
+
type: import("vue").PropType<number>;
|
|
1682
|
+
};
|
|
1683
|
+
currentPage: {
|
|
1684
|
+
type: import("vue").PropType<number>;
|
|
1685
|
+
};
|
|
1686
|
+
defaultCurrentPage: {
|
|
1687
|
+
type: import("vue").PropType<number>;
|
|
1688
|
+
};
|
|
1689
|
+
pageCount: {
|
|
1690
|
+
type: import("vue").PropType<number>;
|
|
1691
|
+
};
|
|
1692
|
+
pagerCount: {
|
|
1693
|
+
type: import("vue").PropType<number>;
|
|
1694
|
+
};
|
|
1695
|
+
layout: {
|
|
1696
|
+
type: import("vue").PropType<string>;
|
|
1697
|
+
};
|
|
1698
|
+
pageSizes: {
|
|
1699
|
+
type: import("vue").PropType<number[]>;
|
|
1700
|
+
};
|
|
1701
|
+
popperClass: {
|
|
1702
|
+
type: import("vue").PropType<string>;
|
|
1703
|
+
};
|
|
1704
|
+
prevText: {
|
|
1705
|
+
type: import("vue").PropType<string>;
|
|
1706
|
+
};
|
|
1707
|
+
prevIcon: {
|
|
1708
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
1709
|
+
};
|
|
1710
|
+
nextText: {
|
|
1711
|
+
type: import("vue").PropType<string>;
|
|
1712
|
+
};
|
|
1713
|
+
nextIcon: {
|
|
1714
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
1715
|
+
};
|
|
1716
|
+
small: {
|
|
1717
|
+
type: import("vue").PropType<boolean>;
|
|
1718
|
+
};
|
|
1719
|
+
background: {
|
|
1720
|
+
type: import("vue").PropType<boolean>;
|
|
1721
|
+
};
|
|
1722
|
+
disabled: {
|
|
1723
|
+
type: import("vue").PropType<boolean>;
|
|
1724
|
+
};
|
|
1725
|
+
hideOnSinglePage: {
|
|
1726
|
+
type: import("vue").PropType<boolean>;
|
|
1727
|
+
};
|
|
1728
|
+
}>> & Readonly<{
|
|
1729
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
1730
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
1731
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
1732
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
1733
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
1734
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
1735
|
+
}>, {
|
|
1736
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
1737
|
+
}, {}, {}, {}, {}> | undefined>;
|
|
1738
|
+
}, {}, {}, {}, {}>;
|
|
1255
1739
|
__isFragment?: never;
|
|
1256
1740
|
__isTeleport?: never;
|
|
1257
1741
|
__isSuspense?: never;
|
|
1258
1742
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1259
|
-
|
|
1260
|
-
type: import("vue").PropType<import("
|
|
1261
|
-
};
|
|
1262
|
-
data: {
|
|
1263
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<any>>;
|
|
1264
|
-
};
|
|
1265
|
-
height: {
|
|
1266
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
1267
|
-
};
|
|
1268
|
-
maxHeight: {
|
|
1269
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
1270
|
-
};
|
|
1271
|
-
minHeight: {
|
|
1272
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MinHeight>;
|
|
1273
|
-
default: number;
|
|
1274
|
-
};
|
|
1275
|
-
border: {
|
|
1276
|
-
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Border>;
|
|
1277
|
-
default: string;
|
|
1743
|
+
sticky: {
|
|
1744
|
+
type: import("vue").PropType<boolean | import("./types").StickyOption>;
|
|
1278
1745
|
};
|
|
1279
|
-
|
|
1280
|
-
type: import("vue").PropType<
|
|
1746
|
+
api: {
|
|
1747
|
+
type: import("vue").PropType<(params?: any) => Promise<any>>;
|
|
1281
1748
|
};
|
|
1282
|
-
|
|
1283
|
-
type: import("vue").PropType<
|
|
1749
|
+
pageSize: {
|
|
1750
|
+
type: import("vue").PropType<number>;
|
|
1284
1751
|
};
|
|
1285
|
-
|
|
1286
|
-
type: import("vue").PropType<
|
|
1752
|
+
total: {
|
|
1753
|
+
type: import("vue").PropType<number>;
|
|
1287
1754
|
};
|
|
1288
|
-
|
|
1289
|
-
type: import("vue").PropType<
|
|
1755
|
+
rowkey: {
|
|
1756
|
+
type: import("vue").PropType<string>;
|
|
1290
1757
|
};
|
|
1291
1758
|
immediate: {
|
|
1292
1759
|
type: import("vue").PropType<boolean>;
|
|
1293
|
-
default: boolean;
|
|
1294
1760
|
};
|
|
1295
|
-
|
|
1296
|
-
type: import("vue").PropType<
|
|
1297
|
-
default: boolean;
|
|
1761
|
+
fetchSetting: {
|
|
1762
|
+
type: import("vue").PropType<Partial<import("./types").FetchSetting>>;
|
|
1298
1763
|
};
|
|
1299
|
-
|
|
1764
|
+
watchApiFetch: {
|
|
1300
1765
|
type: import("vue").PropType<boolean>;
|
|
1301
|
-
default: boolean;
|
|
1302
1766
|
};
|
|
1303
|
-
|
|
1304
|
-
type: import("vue").PropType<
|
|
1767
|
+
beforeFetch: {
|
|
1768
|
+
type: import("vue").PropType<(params?: any) => any>;
|
|
1305
1769
|
};
|
|
1306
|
-
|
|
1307
|
-
type: import("vue").PropType<boolean |
|
|
1770
|
+
delEmptyParams: {
|
|
1771
|
+
type: import("vue").PropType<boolean | "strict">;
|
|
1308
1772
|
};
|
|
1309
|
-
|
|
1310
|
-
type: import("vue").PropType<
|
|
1311
|
-
default: boolean;
|
|
1773
|
+
afterFetch: {
|
|
1774
|
+
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
1312
1775
|
};
|
|
1313
|
-
|
|
1314
|
-
type: import("vue").PropType<
|
|
1315
|
-
default: string;
|
|
1776
|
+
transformParams: {
|
|
1777
|
+
type: import("vue").PropType<boolean>;
|
|
1316
1778
|
};
|
|
1317
|
-
|
|
1318
|
-
type: import("vue").PropType<
|
|
1779
|
+
extraParams: {
|
|
1780
|
+
type: import("vue").PropType<any>;
|
|
1319
1781
|
};
|
|
1320
|
-
|
|
1321
|
-
type: import("vue").PropType<
|
|
1782
|
+
extraSysHeight: {
|
|
1783
|
+
type: import("vue").PropType<number>;
|
|
1322
1784
|
};
|
|
1323
|
-
|
|
1324
|
-
type: import("vue").PropType<
|
|
1785
|
+
pageHeight: {
|
|
1786
|
+
type: import("vue").PropType<number>;
|
|
1325
1787
|
};
|
|
1326
|
-
|
|
1788
|
+
showPager: {
|
|
1327
1789
|
type: import("vue").PropType<boolean>;
|
|
1328
1790
|
};
|
|
1329
1791
|
pagination: {
|
|
@@ -1332,54 +1794,83 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1332
1794
|
pageIsZero?: boolean;
|
|
1333
1795
|
}>;
|
|
1334
1796
|
};
|
|
1335
|
-
|
|
1336
|
-
type: import("vue").PropType<
|
|
1797
|
+
formOptions: {
|
|
1798
|
+
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
1799
|
+
showActionForm?: boolean;
|
|
1800
|
+
addSearchAllSchema?: boolean;
|
|
1801
|
+
}>;
|
|
1337
1802
|
};
|
|
1338
|
-
|
|
1339
|
-
type: import("vue").PropType<
|
|
1803
|
+
onChange: {
|
|
1804
|
+
type: import("vue").PropType<(...args: any[]) => void>;
|
|
1340
1805
|
};
|
|
1341
|
-
|
|
1342
|
-
type: import("vue").PropType<
|
|
1343
|
-
default: number;
|
|
1806
|
+
emptyCfg: {
|
|
1807
|
+
type: import("vue").PropType<import("vft/es/vft").EmptyProps>;
|
|
1344
1808
|
};
|
|
1345
1809
|
layouts: {
|
|
1346
1810
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.Layouts>;
|
|
1347
1811
|
};
|
|
1812
|
+
columns: {
|
|
1813
|
+
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.Columns<any>>;
|
|
1814
|
+
};
|
|
1348
1815
|
pagerConfig: {
|
|
1349
1816
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.PagerConfig>;
|
|
1350
1817
|
};
|
|
1351
1818
|
proxyConfig: {
|
|
1352
1819
|
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.ProxyConfig<any>>;
|
|
1353
1820
|
};
|
|
1354
|
-
toolbarConfig: {
|
|
1355
|
-
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.ToolbarConfig>;
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1821
|
+
toolbarConfig: {
|
|
1822
|
+
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.ToolbarConfig>;
|
|
1823
|
+
};
|
|
1824
|
+
formConfig: {
|
|
1825
|
+
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.FormConfig>;
|
|
1826
|
+
};
|
|
1827
|
+
zoomConfig: {
|
|
1828
|
+
type: import("vue").PropType<import("vxe-table").VxeGridPropTypes.ZoomConfig>;
|
|
1829
|
+
};
|
|
1830
|
+
size: {
|
|
1831
|
+
type: import("vue").PropType<import("vxe-table").VxeComponentSizeType>;
|
|
1832
|
+
};
|
|
1833
|
+
id: {
|
|
1834
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ID<any>>;
|
|
1835
|
+
};
|
|
1836
|
+
data: {
|
|
1837
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Data<any>>;
|
|
1838
|
+
};
|
|
1839
|
+
height: {
|
|
1840
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Height>;
|
|
1841
|
+
};
|
|
1842
|
+
minHeight: {
|
|
1843
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MinHeight>;
|
|
1844
|
+
};
|
|
1845
|
+
maxHeight: {
|
|
1846
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MaxHeight>;
|
|
1847
|
+
};
|
|
1848
|
+
stripe: {
|
|
1849
|
+
type: import("vue").PropType<boolean>;
|
|
1850
|
+
};
|
|
1851
|
+
padding: {
|
|
1852
|
+
type: import("vue").PropType<boolean>;
|
|
1362
1853
|
};
|
|
1363
|
-
|
|
1364
|
-
type: import("vue").PropType<
|
|
1854
|
+
round: {
|
|
1855
|
+
type: import("vue").PropType<boolean>;
|
|
1365
1856
|
};
|
|
1366
|
-
|
|
1367
|
-
type: import("vue").PropType<import("vxe-table").
|
|
1857
|
+
border: {
|
|
1858
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.Border>;
|
|
1368
1859
|
};
|
|
1369
|
-
|
|
1860
|
+
loading: {
|
|
1370
1861
|
type: import("vue").PropType<boolean>;
|
|
1371
|
-
|
|
1862
|
+
};
|
|
1863
|
+
align: {
|
|
1864
|
+
type: import("vue").PropType<import("vxe-table").VxeComponentAlignType>;
|
|
1372
1865
|
};
|
|
1373
1866
|
headerAlign: {
|
|
1374
1867
|
type: import("vue").PropType<import("vxe-table").VxeComponentAlignType>;
|
|
1375
|
-
default: string;
|
|
1376
1868
|
};
|
|
1377
1869
|
footerAlign: {
|
|
1378
1870
|
type: import("vue").PropType<import("vxe-table").VxeComponentAlignType>;
|
|
1379
1871
|
};
|
|
1380
1872
|
showHeader: {
|
|
1381
1873
|
type: import("vue").PropType<boolean>;
|
|
1382
|
-
default: boolean;
|
|
1383
1874
|
};
|
|
1384
1875
|
showFooter: {
|
|
1385
1876
|
type: import("vue").PropType<boolean>;
|
|
@@ -1393,6 +1884,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1393
1884
|
rowClassName: {
|
|
1394
1885
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.RowClassName<any>>;
|
|
1395
1886
|
};
|
|
1887
|
+
cellClassName: {
|
|
1888
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.CellClassName<any>>;
|
|
1889
|
+
};
|
|
1396
1890
|
headerRowClassName: {
|
|
1397
1891
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.HeaderRowClassName<any>>;
|
|
1398
1892
|
};
|
|
@@ -1423,9 +1917,18 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1423
1917
|
footerCellStyle: {
|
|
1424
1918
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FooterCellStyle<any>>;
|
|
1425
1919
|
};
|
|
1920
|
+
showCustomHeader: {
|
|
1921
|
+
type: import("vue").PropType<boolean>;
|
|
1922
|
+
};
|
|
1923
|
+
mergeHeaderCells: {
|
|
1924
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeHeaderCells>;
|
|
1925
|
+
};
|
|
1426
1926
|
mergeCells: {
|
|
1427
1927
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeCells<any>>;
|
|
1428
1928
|
};
|
|
1929
|
+
mergeFooterCells: {
|
|
1930
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeFooterCells<any>>;
|
|
1931
|
+
};
|
|
1429
1932
|
mergeFooterItems: {
|
|
1430
1933
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.MergeFooterItems<any>>;
|
|
1431
1934
|
};
|
|
@@ -1437,7 +1940,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1437
1940
|
};
|
|
1438
1941
|
showOverflow: {
|
|
1439
1942
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ShowOverflow>;
|
|
1440
|
-
default: string;
|
|
1441
1943
|
};
|
|
1442
1944
|
showHeaderOverflow: {
|
|
1443
1945
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ShowOverflow>;
|
|
@@ -1448,24 +1950,17 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1448
1950
|
keepSource: {
|
|
1449
1951
|
type: import("vue").PropType<boolean>;
|
|
1450
1952
|
};
|
|
1953
|
+
autoResize: {
|
|
1954
|
+
type: import("vue").PropType<boolean>;
|
|
1955
|
+
};
|
|
1451
1956
|
syncResize: {
|
|
1452
1957
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.SyncResize>;
|
|
1453
1958
|
};
|
|
1454
1959
|
columnConfig: {
|
|
1455
1960
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ColumnConfig<any>>;
|
|
1456
|
-
default: {
|
|
1457
|
-
drag: boolean;
|
|
1458
|
-
resizable: boolean;
|
|
1459
|
-
minWidth: string;
|
|
1460
|
-
};
|
|
1461
1961
|
};
|
|
1462
1962
|
rowConfig: {
|
|
1463
1963
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.RowConfig<any>>;
|
|
1464
|
-
default: {
|
|
1465
|
-
isHover: boolean;
|
|
1466
|
-
isCurrent: boolean;
|
|
1467
|
-
useKey: boolean;
|
|
1468
|
-
};
|
|
1469
1964
|
};
|
|
1470
1965
|
cellConfig: {
|
|
1471
1966
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.CellConfig<any>>;
|
|
@@ -1515,15 +2010,24 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1515
2010
|
filterConfig: {
|
|
1516
2011
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FilterConfig<any>>;
|
|
1517
2012
|
};
|
|
2013
|
+
floatingFilterConfig: {
|
|
2014
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FloatingFilterConfig<any>>;
|
|
2015
|
+
};
|
|
1518
2016
|
radioConfig: {
|
|
1519
2017
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.RadioConfig<any>>;
|
|
1520
2018
|
};
|
|
1521
2019
|
checkboxConfig: {
|
|
1522
2020
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.CheckboxConfig<any>>;
|
|
1523
2021
|
};
|
|
2022
|
+
headerTooltipConfig: {
|
|
2023
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.HeaderTooltipConfig<any>>;
|
|
2024
|
+
};
|
|
1524
2025
|
tooltipConfig: {
|
|
1525
2026
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.TooltipConfig<any>>;
|
|
1526
2027
|
};
|
|
2028
|
+
footerTooltipConfig: {
|
|
2029
|
+
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.FooterTooltipConfig<any>>;
|
|
2030
|
+
};
|
|
1527
2031
|
exportConfig: {
|
|
1528
2032
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ExportConfig>;
|
|
1529
2033
|
};
|
|
@@ -1566,6 +2070,9 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1566
2070
|
editRules: {
|
|
1567
2071
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.EditRules<any>>;
|
|
1568
2072
|
};
|
|
2073
|
+
emptyText: {
|
|
2074
|
+
type: import("vue").PropType<string>;
|
|
2075
|
+
};
|
|
1569
2076
|
emptyRender: {
|
|
1570
2077
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.EmptyRender>;
|
|
1571
2078
|
};
|
|
@@ -1580,19 +2087,19 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1580
2087
|
};
|
|
1581
2088
|
virtualXConfig: {
|
|
1582
2089
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.VirtualXConfig>;
|
|
1583
|
-
default: {
|
|
1584
|
-
enabled: boolean;
|
|
1585
|
-
};
|
|
1586
2090
|
};
|
|
1587
2091
|
virtualYConfig: {
|
|
1588
2092
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.VirtualYConfig>;
|
|
1589
|
-
default: {
|
|
1590
|
-
enabled: boolean;
|
|
1591
|
-
};
|
|
1592
2093
|
};
|
|
1593
2094
|
scrollbarConfig: {
|
|
1594
2095
|
type: import("vue").PropType<import("vxe-table").VxeTablePropTypes.ScrollbarConfig>;
|
|
1595
2096
|
};
|
|
2097
|
+
params: {
|
|
2098
|
+
type: import("vue").PropType<any>;
|
|
2099
|
+
};
|
|
2100
|
+
resizable: {
|
|
2101
|
+
type: import("vue").PropType<boolean>;
|
|
2102
|
+
};
|
|
1596
2103
|
highlightCurrentRow: {
|
|
1597
2104
|
type: import("vue").PropType<boolean>;
|
|
1598
2105
|
};
|
|
@@ -1608,63 +2115,23 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1608
2115
|
highlightCell: {
|
|
1609
2116
|
type: import("vue").PropType<boolean>;
|
|
1610
2117
|
};
|
|
1611
|
-
|
|
1612
|
-
type: import("vue").PropType<string>;
|
|
1613
|
-
};
|
|
1614
|
-
animat: {
|
|
2118
|
+
columnKey: {
|
|
1615
2119
|
type: import("vue").PropType<boolean>;
|
|
1616
2120
|
};
|
|
1617
|
-
|
|
1618
|
-
type: import("vue").PropType<
|
|
1619
|
-
};
|
|
1620
|
-
api: {
|
|
1621
|
-
type: import("vue").PropType<(params?: any) => Promise<any>>;
|
|
2121
|
+
rowKey: {
|
|
2122
|
+
type: import("vue").PropType<boolean>;
|
|
1622
2123
|
};
|
|
1623
|
-
|
|
2124
|
+
rowId: {
|
|
1624
2125
|
type: import("vue").PropType<string>;
|
|
1625
|
-
default: string;
|
|
1626
|
-
};
|
|
1627
|
-
fetchSetting: {
|
|
1628
|
-
type: import("vue").PropType<Partial<import("./types").FetchSetting>>;
|
|
1629
2126
|
};
|
|
1630
|
-
|
|
2127
|
+
fit: {
|
|
1631
2128
|
type: import("vue").PropType<boolean>;
|
|
1632
|
-
default: boolean;
|
|
1633
2129
|
};
|
|
1634
|
-
|
|
1635
|
-
type: import("vue").PropType<(params?: any) => any>;
|
|
1636
|
-
};
|
|
1637
|
-
delEmptyParams: {
|
|
1638
|
-
type: import("vue").PropType<boolean | "strict">;
|
|
1639
|
-
default: boolean;
|
|
1640
|
-
};
|
|
1641
|
-
afterFetch: {
|
|
1642
|
-
type: import("vue").PropType<(params: any) => import("../types").Recordable[]>;
|
|
1643
|
-
};
|
|
1644
|
-
transformParams: {
|
|
2130
|
+
animat: {
|
|
1645
2131
|
type: import("vue").PropType<boolean>;
|
|
1646
|
-
default: boolean;
|
|
1647
|
-
};
|
|
1648
|
-
extraParams: {
|
|
1649
|
-
type: import("vue").PropType<any>;
|
|
1650
|
-
};
|
|
1651
|
-
extraSysHeight: {
|
|
1652
|
-
type: import("vue").PropType<number>;
|
|
1653
|
-
default: number;
|
|
1654
2132
|
};
|
|
1655
|
-
|
|
2133
|
+
delayHover: {
|
|
1656
2134
|
type: import("vue").PropType<number>;
|
|
1657
|
-
default: number;
|
|
1658
|
-
};
|
|
1659
|
-
showPager: {
|
|
1660
|
-
type: import("vue").PropType<boolean>;
|
|
1661
|
-
default: boolean;
|
|
1662
|
-
};
|
|
1663
|
-
formOptions: {
|
|
1664
|
-
type: import("vue").PropType<import("vft/es/vft").SuperFormProps & {
|
|
1665
|
-
showActionForm?: boolean;
|
|
1666
|
-
addSearchAllSchema?: boolean;
|
|
1667
|
-
}>;
|
|
1668
2135
|
};
|
|
1669
2136
|
}>> & Readonly<{
|
|
1670
2137
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -1784,7 +2251,6 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1784
2251
|
emit: (event: "change" | "zoom" | "copy" | "cut" | "keydown" | "paste" | "scroll" | "update:page-size" | "current-change" | "register" | "fetch-success" | "update:data" | "keydown-start" | "keydown-end" | "current-row-change" | "current-row-disabled" | "current-column-change" | "current-column-disabled" | "radio-change" | "checkbox-change" | "checkbox-all" | "checkbox-range-start" | "checkbox-range-change" | "checkbox-range-end" | "checkbox-range-select" | "cell-click" | "cell-dblclick" | "cell-menu" | "cell-mouseenter" | "cell-mouseleave" | "cell-selected" | "cell-delete-value" | "cell-backspace-value" | "header-cell-click" | "header-cell-dblclick" | "header-cell-menu" | "footer-cell-click" | "footer-cell-dblclick" | "footer-cell-menu" | "clear-merge" | "sort-change" | "clear-sort" | "clear-all-sort" | "filter-change" | "filter-visible" | "clear-filter" | "clear-all-filter" | "resizable-change" | "column-resizable-change" | "row-resizable-change" | "toggle-row-group-expand" | "toggle-row-expand" | "toggle-tree-expand" | "menu-click" | "edit-closed" | "row-dragstart" | "row-dragover" | "row-dragend" | "column-dragstart" | "column-dragover" | "column-dragend" | "enter-append-row" | "edit-actived" | "edit-activated" | "edit-disabled" | "valid-error" | "scroll-boundary" | "custom" | "custom-visible-change" | "custom-visible-all" | "custom-fixed-change" | "change-fnr" | "open-fnr" | "show-fnr" | "hide-fnr" | "fnr-change" | "fnr-find" | "fnr-find-all" | "fnr-replace" | "fnr-replace-all" | "cell-area-copy" | "cell-area-cut" | "cell-area-paste" | "cell-area-merge" | "clear-cell-area-selection" | "clear-cell-area-merge" | "header-cell-area-selection" | "cell-area-selection-invalid" | "cell-area-selection-start" | "cell-area-selection-drag" | "cell-area-selection-end" | "cell-area-extension-start" | "cell-area-extension-drag" | "cell-area-extension-end" | "cell-area-selection-all-start" | "cell-area-selection-all-end" | "cell-area-arrows-start" | "cell-area-arrows-end" | "active-cell-change-start" | "active-cell-change-end" | "form-submit" | "form-reset" | "update:page-num" | "page-change" | "form-submit-invalid" | "form-collapse" | "form-toggle-collapse" | "proxy-query" | "proxy-delete" | "proxy-save" | "toolbar-button-click" | "toolbar-tool-click", ...args: any[]) => void;
|
|
1785
2252
|
setProps: (props: Partial<import("./types").TableProps>) => void;
|
|
1786
2253
|
reload: (opt?: any) => Promise<import("../types").Recordable[] | undefined>;
|
|
1787
|
-
getShowPagination: () => boolean;
|
|
1788
2254
|
deleteTableDataRecord: (row: any, rowKey: any) => void;
|
|
1789
2255
|
insertTableDataRecord: (record: import("../types").Recordable | import("../types").Recordable[], index?: number) => import("../types").Recordable[] | undefined;
|
|
1790
2256
|
updateTableDataRecord: (rowKey: string | number, record: import("../types").Recordable) => import("../types").Recordable | undefined;
|
|
@@ -1796,6 +2262,291 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1796
2262
|
getRawDataSource: () => import("../types").Recordable[];
|
|
1797
2263
|
tableSearch: (value: any) => void;
|
|
1798
2264
|
table: import("vue").Ref<import("./types").TableInstance | undefined, import("./types").TableInstance | undefined>;
|
|
2265
|
+
pageRef: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
2266
|
+
total: {
|
|
2267
|
+
type: import("vue").PropType<number>;
|
|
2268
|
+
};
|
|
2269
|
+
pageSize: {
|
|
2270
|
+
type: import("vue").PropType<number>;
|
|
2271
|
+
};
|
|
2272
|
+
defaultPageSize: {
|
|
2273
|
+
type: import("vue").PropType<number>;
|
|
2274
|
+
};
|
|
2275
|
+
currentPage: {
|
|
2276
|
+
type: import("vue").PropType<number>;
|
|
2277
|
+
};
|
|
2278
|
+
defaultCurrentPage: {
|
|
2279
|
+
type: import("vue").PropType<number>;
|
|
2280
|
+
};
|
|
2281
|
+
pageCount: {
|
|
2282
|
+
type: import("vue").PropType<number>;
|
|
2283
|
+
};
|
|
2284
|
+
pagerCount: {
|
|
2285
|
+
type: import("vue").PropType<number>;
|
|
2286
|
+
};
|
|
2287
|
+
layout: {
|
|
2288
|
+
type: import("vue").PropType<string>;
|
|
2289
|
+
};
|
|
2290
|
+
pageSizes: {
|
|
2291
|
+
type: import("vue").PropType<number[]>;
|
|
2292
|
+
};
|
|
2293
|
+
popperClass: {
|
|
2294
|
+
type: import("vue").PropType<string>;
|
|
2295
|
+
};
|
|
2296
|
+
prevText: {
|
|
2297
|
+
type: import("vue").PropType<string>;
|
|
2298
|
+
};
|
|
2299
|
+
prevIcon: {
|
|
2300
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
2301
|
+
};
|
|
2302
|
+
nextText: {
|
|
2303
|
+
type: import("vue").PropType<string>;
|
|
2304
|
+
};
|
|
2305
|
+
nextIcon: {
|
|
2306
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
2307
|
+
};
|
|
2308
|
+
small: {
|
|
2309
|
+
type: import("vue").PropType<boolean>;
|
|
2310
|
+
};
|
|
2311
|
+
background: {
|
|
2312
|
+
type: import("vue").PropType<boolean>;
|
|
2313
|
+
};
|
|
2314
|
+
disabled: {
|
|
2315
|
+
type: import("vue").PropType<boolean>;
|
|
2316
|
+
};
|
|
2317
|
+
hideOnSinglePage: {
|
|
2318
|
+
type: import("vue").PropType<boolean>;
|
|
2319
|
+
};
|
|
2320
|
+
}>> & Readonly<{
|
|
2321
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
2322
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
2323
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
2324
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
2325
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
2326
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
2327
|
+
}>, {
|
|
2328
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
2329
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2330
|
+
"update:current-page": (val: number) => void;
|
|
2331
|
+
"update:page-size": (val: number) => void;
|
|
2332
|
+
"size-change": (val: number) => void;
|
|
2333
|
+
"current-change": (val: number) => void;
|
|
2334
|
+
"prev-click": (val: number) => void;
|
|
2335
|
+
"next-click": (val: number) => void;
|
|
2336
|
+
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
2337
|
+
P: {};
|
|
2338
|
+
B: {};
|
|
2339
|
+
D: {};
|
|
2340
|
+
C: {};
|
|
2341
|
+
M: {};
|
|
2342
|
+
Defaults: {};
|
|
2343
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
2344
|
+
total: {
|
|
2345
|
+
type: import("vue").PropType<number>;
|
|
2346
|
+
};
|
|
2347
|
+
pageSize: {
|
|
2348
|
+
type: import("vue").PropType<number>;
|
|
2349
|
+
};
|
|
2350
|
+
defaultPageSize: {
|
|
2351
|
+
type: import("vue").PropType<number>;
|
|
2352
|
+
};
|
|
2353
|
+
currentPage: {
|
|
2354
|
+
type: import("vue").PropType<number>;
|
|
2355
|
+
};
|
|
2356
|
+
defaultCurrentPage: {
|
|
2357
|
+
type: import("vue").PropType<number>;
|
|
2358
|
+
};
|
|
2359
|
+
pageCount: {
|
|
2360
|
+
type: import("vue").PropType<number>;
|
|
2361
|
+
};
|
|
2362
|
+
pagerCount: {
|
|
2363
|
+
type: import("vue").PropType<number>;
|
|
2364
|
+
};
|
|
2365
|
+
layout: {
|
|
2366
|
+
type: import("vue").PropType<string>;
|
|
2367
|
+
};
|
|
2368
|
+
pageSizes: {
|
|
2369
|
+
type: import("vue").PropType<number[]>;
|
|
2370
|
+
};
|
|
2371
|
+
popperClass: {
|
|
2372
|
+
type: import("vue").PropType<string>;
|
|
2373
|
+
};
|
|
2374
|
+
prevText: {
|
|
2375
|
+
type: import("vue").PropType<string>;
|
|
2376
|
+
};
|
|
2377
|
+
prevIcon: {
|
|
2378
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
2379
|
+
};
|
|
2380
|
+
nextText: {
|
|
2381
|
+
type: import("vue").PropType<string>;
|
|
2382
|
+
};
|
|
2383
|
+
nextIcon: {
|
|
2384
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
2385
|
+
};
|
|
2386
|
+
small: {
|
|
2387
|
+
type: import("vue").PropType<boolean>;
|
|
2388
|
+
};
|
|
2389
|
+
background: {
|
|
2390
|
+
type: import("vue").PropType<boolean>;
|
|
2391
|
+
};
|
|
2392
|
+
disabled: {
|
|
2393
|
+
type: import("vue").PropType<boolean>;
|
|
2394
|
+
};
|
|
2395
|
+
hideOnSinglePage: {
|
|
2396
|
+
type: import("vue").PropType<boolean>;
|
|
2397
|
+
};
|
|
2398
|
+
}>> & Readonly<{
|
|
2399
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
2400
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
2401
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
2402
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
2403
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
2404
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
2405
|
+
}>, {
|
|
2406
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
2407
|
+
}, {}, {}, {}, {}> | undefined, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
2408
|
+
total: {
|
|
2409
|
+
type: import("vue").PropType<number>;
|
|
2410
|
+
};
|
|
2411
|
+
pageSize: {
|
|
2412
|
+
type: import("vue").PropType<number>;
|
|
2413
|
+
};
|
|
2414
|
+
defaultPageSize: {
|
|
2415
|
+
type: import("vue").PropType<number>;
|
|
2416
|
+
};
|
|
2417
|
+
currentPage: {
|
|
2418
|
+
type: import("vue").PropType<number>;
|
|
2419
|
+
};
|
|
2420
|
+
defaultCurrentPage: {
|
|
2421
|
+
type: import("vue").PropType<number>;
|
|
2422
|
+
};
|
|
2423
|
+
pageCount: {
|
|
2424
|
+
type: import("vue").PropType<number>;
|
|
2425
|
+
};
|
|
2426
|
+
pagerCount: {
|
|
2427
|
+
type: import("vue").PropType<number>;
|
|
2428
|
+
};
|
|
2429
|
+
layout: {
|
|
2430
|
+
type: import("vue").PropType<string>;
|
|
2431
|
+
};
|
|
2432
|
+
pageSizes: {
|
|
2433
|
+
type: import("vue").PropType<number[]>;
|
|
2434
|
+
};
|
|
2435
|
+
popperClass: {
|
|
2436
|
+
type: import("vue").PropType<string>;
|
|
2437
|
+
};
|
|
2438
|
+
prevText: {
|
|
2439
|
+
type: import("vue").PropType<string>;
|
|
2440
|
+
};
|
|
2441
|
+
prevIcon: {
|
|
2442
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
2443
|
+
};
|
|
2444
|
+
nextText: {
|
|
2445
|
+
type: import("vue").PropType<string>;
|
|
2446
|
+
};
|
|
2447
|
+
nextIcon: {
|
|
2448
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
2449
|
+
};
|
|
2450
|
+
small: {
|
|
2451
|
+
type: import("vue").PropType<boolean>;
|
|
2452
|
+
};
|
|
2453
|
+
background: {
|
|
2454
|
+
type: import("vue").PropType<boolean>;
|
|
2455
|
+
};
|
|
2456
|
+
disabled: {
|
|
2457
|
+
type: import("vue").PropType<boolean>;
|
|
2458
|
+
};
|
|
2459
|
+
hideOnSinglePage: {
|
|
2460
|
+
type: import("vue").PropType<boolean>;
|
|
2461
|
+
};
|
|
2462
|
+
}>> & Readonly<{
|
|
2463
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
2464
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
2465
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
2466
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
2467
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
2468
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
2469
|
+
}>, {
|
|
2470
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
2471
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2472
|
+
"update:current-page": (val: number) => void;
|
|
2473
|
+
"update:page-size": (val: number) => void;
|
|
2474
|
+
"size-change": (val: number) => void;
|
|
2475
|
+
"current-change": (val: number) => void;
|
|
2476
|
+
"prev-click": (val: number) => void;
|
|
2477
|
+
"next-click": (val: number) => void;
|
|
2478
|
+
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
2479
|
+
P: {};
|
|
2480
|
+
B: {};
|
|
2481
|
+
D: {};
|
|
2482
|
+
C: {};
|
|
2483
|
+
M: {};
|
|
2484
|
+
Defaults: {};
|
|
2485
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
2486
|
+
total: {
|
|
2487
|
+
type: import("vue").PropType<number>;
|
|
2488
|
+
};
|
|
2489
|
+
pageSize: {
|
|
2490
|
+
type: import("vue").PropType<number>;
|
|
2491
|
+
};
|
|
2492
|
+
defaultPageSize: {
|
|
2493
|
+
type: import("vue").PropType<number>;
|
|
2494
|
+
};
|
|
2495
|
+
currentPage: {
|
|
2496
|
+
type: import("vue").PropType<number>;
|
|
2497
|
+
};
|
|
2498
|
+
defaultCurrentPage: {
|
|
2499
|
+
type: import("vue").PropType<number>;
|
|
2500
|
+
};
|
|
2501
|
+
pageCount: {
|
|
2502
|
+
type: import("vue").PropType<number>;
|
|
2503
|
+
};
|
|
2504
|
+
pagerCount: {
|
|
2505
|
+
type: import("vue").PropType<number>;
|
|
2506
|
+
};
|
|
2507
|
+
layout: {
|
|
2508
|
+
type: import("vue").PropType<string>;
|
|
2509
|
+
};
|
|
2510
|
+
pageSizes: {
|
|
2511
|
+
type: import("vue").PropType<number[]>;
|
|
2512
|
+
};
|
|
2513
|
+
popperClass: {
|
|
2514
|
+
type: import("vue").PropType<string>;
|
|
2515
|
+
};
|
|
2516
|
+
prevText: {
|
|
2517
|
+
type: import("vue").PropType<string>;
|
|
2518
|
+
};
|
|
2519
|
+
prevIcon: {
|
|
2520
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
2521
|
+
};
|
|
2522
|
+
nextText: {
|
|
2523
|
+
type: import("vue").PropType<string>;
|
|
2524
|
+
};
|
|
2525
|
+
nextIcon: {
|
|
2526
|
+
type: import("vue").PropType<string | import("vft/es/vft").IconProps>;
|
|
2527
|
+
};
|
|
2528
|
+
small: {
|
|
2529
|
+
type: import("vue").PropType<boolean>;
|
|
2530
|
+
};
|
|
2531
|
+
background: {
|
|
2532
|
+
type: import("vue").PropType<boolean>;
|
|
2533
|
+
};
|
|
2534
|
+
disabled: {
|
|
2535
|
+
type: import("vue").PropType<boolean>;
|
|
2536
|
+
};
|
|
2537
|
+
hideOnSinglePage: {
|
|
2538
|
+
type: import("vue").PropType<boolean>;
|
|
2539
|
+
};
|
|
2540
|
+
}>> & Readonly<{
|
|
2541
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
2542
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
2543
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
2544
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
2545
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
2546
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
2547
|
+
}>, {
|
|
2548
|
+
pageCountBridge: import("vue").ComputedRef<number>;
|
|
2549
|
+
}, {}, {}, {}, {}> | undefined>;
|
|
1799
2550
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
1800
2551
|
change: (...args: any[]) => void;
|
|
1801
2552
|
zoom: (...args: any[]) => void;
|
|
@@ -1909,35 +2660,11 @@ export declare const VftTable: import("vft/es/utils").SFCWithInstall<{
|
|
|
1909
2660
|
"proxy-save": (...args: any[]) => void;
|
|
1910
2661
|
"toolbar-button-click": (...args: any[]) => void;
|
|
1911
2662
|
"toolbar-tool-click": (...args: any[]) => void;
|
|
1912
|
-
}, string, {
|
|
1913
|
-
minHeight: import("vxe-table").VxeTablePropTypes.MinHeight;
|
|
1914
|
-
border: import("vxe-table").VxeTablePropTypes.Border;
|
|
1915
|
-
immediate: boolean;
|
|
1916
|
-
fit: import("vxe-table").VxeTablePropTypes.Fit;
|
|
1917
|
-
loading: import("vxe-table").VxeTablePropTypes.Loading;
|
|
1918
|
-
autoResize: import("vxe-table").VxeTablePropTypes.AutoResize;
|
|
1919
|
-
align: import("vxe-table").VxeTablePropTypes.Align;
|
|
1920
|
-
pageSize: number;
|
|
1921
|
-
toolbarConfig: import("vxe-table").VxeGridPropTypes.ToolbarConfig;
|
|
1922
|
-
stripe: import("vxe-table").VxeTablePropTypes.Stripe;
|
|
1923
|
-
headerAlign: import("vxe-table").VxeTablePropTypes.HeaderAlign;
|
|
1924
|
-
showHeader: import("vxe-table").VxeTablePropTypes.ShowHeader;
|
|
1925
|
-
showOverflow: import("vxe-table").VxeTablePropTypes.ShowOverflow;
|
|
1926
|
-
columnConfig: import("vxe-table").VxeTablePropTypes.ColumnConfig<any>;
|
|
1927
|
-
rowConfig: import("vxe-table").VxeTablePropTypes.RowConfig<any>;
|
|
1928
|
-
virtualXConfig: import("vxe-table").VxeTablePropTypes.VirtualXConfig;
|
|
1929
|
-
virtualYConfig: import("vxe-table").VxeTablePropTypes.VirtualYConfig;
|
|
1930
|
-
rowkey: string;
|
|
1931
|
-
watchApiFetch: boolean;
|
|
1932
|
-
delEmptyParams: boolean | "strict";
|
|
1933
|
-
transformParams: boolean;
|
|
1934
|
-
extraSysHeight: number;
|
|
1935
|
-
pageHeight: number;
|
|
1936
|
-
showPager: boolean;
|
|
1937
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2663
|
+
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1938
2664
|
$slots: {
|
|
1939
2665
|
"toolbar-left"?(_: {}): any;
|
|
1940
2666
|
"toolbar-right"?(_: {}): any;
|
|
2667
|
+
empty?(_: {}): any;
|
|
1941
2668
|
};
|
|
1942
2669
|
})> & Record<string, any>;
|
|
1943
2670
|
export default VftTable;
|