el-plus 0.0.61 → 0.0.62

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/index.full.js +19 -3
  3. package/dist/index.full.min.js +2 -2
  4. package/dist/index.full.min.js.map +1 -1
  5. package/dist/index.full.min.mjs +2 -2
  6. package/dist/index.full.min.mjs.map +1 -1
  7. package/dist/index.full.mjs +19 -3
  8. package/es/components/search-list-page/index.d.ts +108 -6
  9. package/es/components/search-list-page/src/search-list-page.d.ts +8 -0
  10. package/es/components/search-list-page/src/search-list-page.mjs +6 -0
  11. package/es/components/search-list-page/src/search-list-page.mjs.map +1 -1
  12. package/es/components/search-list-page/src/search-list-page.vue.d.ts +44 -2
  13. package/es/components/search-list-page/src/use-search-list-page.d.ts +28 -2
  14. package/es/components/search-list-page/src/use-search-list-page.mjs +2 -0
  15. package/es/components/search-list-page/src/use-search-list-page.mjs.map +1 -1
  16. package/es/components/table/index.d.ts +30 -0
  17. package/es/components/table/src/table.d.ts +8 -0
  18. package/es/components/table/src/table.mjs +6 -0
  19. package/es/components/table/src/table.mjs.map +1 -1
  20. package/es/components/table/src/table.vue.d.ts +18 -0
  21. package/es/components/table/src/table.vue2.mjs +3 -1
  22. package/es/components/table/src/table.vue2.mjs.map +1 -1
  23. package/es/package.json.mjs +1 -1
  24. package/lib/components/search-list-page/index.d.ts +108 -6
  25. package/lib/components/search-list-page/src/search-list-page.d.ts +8 -0
  26. package/lib/components/search-list-page/src/search-list-page.js +6 -0
  27. package/lib/components/search-list-page/src/search-list-page.js.map +1 -1
  28. package/lib/components/search-list-page/src/search-list-page.vue.d.ts +44 -2
  29. package/lib/components/search-list-page/src/use-search-list-page.d.ts +28 -2
  30. package/lib/components/search-list-page/src/use-search-list-page.js +2 -0
  31. package/lib/components/search-list-page/src/use-search-list-page.js.map +1 -1
  32. package/lib/components/table/index.d.ts +30 -0
  33. package/lib/components/table/src/table.d.ts +8 -0
  34. package/lib/components/table/src/table.js +6 -0
  35. package/lib/components/table/src/table.js.map +1 -1
  36. package/lib/components/table/src/table.vue.d.ts +18 -0
  37. package/lib/components/table/src/table.vue2.js +3 -1
  38. package/lib/components/table/src/table.vue2.js.map +1 -1
  39. package/lib/package.json.js +1 -1
  40. package/package.json +1 -1
@@ -4,6 +4,14 @@ export declare const EpSearchListPage: {
4
4
  readonly customColumnModule: {
5
5
  readonly type: import("vue").PropType<number | string>;
6
6
  };
7
+ readonly customColumnApi: {
8
+ readonly default: "/api-item/api/customizedColumns/find";
9
+ readonly type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
10
+ };
11
+ readonly customColumnSaveApi: {
12
+ readonly default: "/api-item/api/customizedColumns/save";
13
+ readonly type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
14
+ };
7
15
  readonly showOperationColumn: BooleanConstructor;
8
16
  readonly formItemList: {
9
17
  readonly type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
@@ -220,6 +228,8 @@ export declare const EpSearchListPage: {
220
228
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
221
229
  }>[];
222
230
  readonly isInitSearch: boolean;
231
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
232
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
223
233
  readonly border: boolean;
224
234
  readonly fit: boolean;
225
235
  readonly stripe: boolean;
@@ -328,6 +338,8 @@ export declare const EpSearchListPage: {
328
338
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
329
339
  }>[];
330
340
  readonly isInitSearch: boolean;
341
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
342
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
331
343
  readonly border: boolean;
332
344
  readonly fit: boolean;
333
345
  readonly stripe: boolean;
@@ -387,7 +399,7 @@ export declare const EpSearchListPage: {
387
399
  readonly tooltipEffect?: string | undefined;
388
400
  readonly appendFilterPanelTo?: string | undefined;
389
401
  readonly scrollbarTabindex?: string | number | undefined;
390
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
402
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
391
403
  $attrs: {
392
404
  [x: string]: unknown;
393
405
  };
@@ -491,6 +503,14 @@ export declare const EpSearchListPage: {
491
503
  readonly customColumnModule: {
492
504
  type: import("vue").PropType<number | string>;
493
505
  };
506
+ readonly customColumnApi: {
507
+ default: "/api-item/api/customizedColumns/find";
508
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
509
+ };
510
+ readonly customColumnSaveApi: {
511
+ default: "/api-item/api/customizedColumns/save";
512
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
513
+ };
494
514
  readonly api: {
495
515
  type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
496
516
  };
@@ -1309,6 +1329,8 @@ export declare const EpSearchListPage: {
1309
1329
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1310
1330
  }>[];
1311
1331
  readonly isInitSearch: boolean;
1332
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
1333
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
1312
1334
  readonly border: boolean;
1313
1335
  readonly fit: boolean;
1314
1336
  readonly stripe: boolean;
@@ -1437,6 +1459,8 @@ export declare const EpSearchListPage: {
1437
1459
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1438
1460
  }>[];
1439
1461
  readonly isInitSearch: boolean;
1462
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
1463
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
1440
1464
  readonly border: boolean;
1441
1465
  readonly fit: boolean;
1442
1466
  readonly stripe: boolean;
@@ -1543,6 +1567,14 @@ export declare const EpSearchListPage: {
1543
1567
  readonly customColumnModule: {
1544
1568
  type: import("vue").PropType<number | string>;
1545
1569
  };
1570
+ readonly customColumnApi: {
1571
+ default: "/api-item/api/customizedColumns/find";
1572
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
1573
+ };
1574
+ readonly customColumnSaveApi: {
1575
+ default: "/api-item/api/customizedColumns/save";
1576
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
1577
+ };
1546
1578
  readonly api: {
1547
1579
  type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
1548
1580
  };
@@ -2261,7 +2293,7 @@ export declare const EpSearchListPage: {
2261
2293
  };
2262
2294
  readonly preserveExpandedContent: BooleanConstructor;
2263
2295
  readonly nativeScrollbar: BooleanConstructor;
2264
- }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
2296
+ }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
2265
2297
  elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
2266
2298
  elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
2267
2299
  validate: () => import("element-plus").FormValidationResult;
@@ -2585,6 +2617,8 @@ export declare const EpSearchListPage: {
2585
2617
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
2586
2618
  }>[];
2587
2619
  readonly isInitSearch: boolean;
2620
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
2621
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
2588
2622
  readonly formItemList: import("el-plus/es/index").FormItemProps[];
2589
2623
  readonly formData: Record<string, any>;
2590
2624
  readonly showOperationColumn: boolean;
@@ -2613,6 +2647,14 @@ export declare const EpSearchListPage: {
2613
2647
  readonly customColumnModule: {
2614
2648
  readonly type: import("vue").PropType<number | string>;
2615
2649
  };
2650
+ readonly customColumnApi: {
2651
+ readonly default: "/api-item/api/customizedColumns/find";
2652
+ readonly type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
2653
+ };
2654
+ readonly customColumnSaveApi: {
2655
+ readonly default: "/api-item/api/customizedColumns/save";
2656
+ readonly type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
2657
+ };
2616
2658
  readonly showOperationColumn: BooleanConstructor;
2617
2659
  readonly formItemList: {
2618
2660
  readonly type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
@@ -2829,6 +2871,8 @@ export declare const EpSearchListPage: {
2829
2871
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
2830
2872
  }>[];
2831
2873
  readonly isInitSearch: boolean;
2874
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
2875
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
2832
2876
  readonly border: boolean;
2833
2877
  readonly fit: boolean;
2834
2878
  readonly stripe: boolean;
@@ -2937,6 +2981,8 @@ export declare const EpSearchListPage: {
2937
2981
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
2938
2982
  }>[];
2939
2983
  readonly isInitSearch: boolean;
2984
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
2985
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
2940
2986
  readonly border: boolean;
2941
2987
  readonly fit: boolean;
2942
2988
  readonly stripe: boolean;
@@ -2996,7 +3042,7 @@ export declare const EpSearchListPage: {
2996
3042
  readonly tooltipEffect?: string | undefined;
2997
3043
  readonly appendFilterPanelTo?: string | undefined;
2998
3044
  readonly scrollbarTabindex?: string | number | undefined;
2999
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
3045
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
3000
3046
  $attrs: {
3001
3047
  [x: string]: unknown;
3002
3048
  };
@@ -3100,6 +3146,14 @@ export declare const EpSearchListPage: {
3100
3146
  readonly customColumnModule: {
3101
3147
  type: import("vue").PropType<number | string>;
3102
3148
  };
3149
+ readonly customColumnApi: {
3150
+ default: "/api-item/api/customizedColumns/find";
3151
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
3152
+ };
3153
+ readonly customColumnSaveApi: {
3154
+ default: "/api-item/api/customizedColumns/save";
3155
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
3156
+ };
3103
3157
  readonly api: {
3104
3158
  type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
3105
3159
  };
@@ -3918,6 +3972,8 @@ export declare const EpSearchListPage: {
3918
3972
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
3919
3973
  }>[];
3920
3974
  readonly isInitSearch: boolean;
3975
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
3976
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
3921
3977
  readonly border: boolean;
3922
3978
  readonly fit: boolean;
3923
3979
  readonly stripe: boolean;
@@ -4046,6 +4102,8 @@ export declare const EpSearchListPage: {
4046
4102
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
4047
4103
  }>[];
4048
4104
  readonly isInitSearch: boolean;
4105
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
4106
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
4049
4107
  readonly border: boolean;
4050
4108
  readonly fit: boolean;
4051
4109
  readonly stripe: boolean;
@@ -4152,6 +4210,14 @@ export declare const EpSearchListPage: {
4152
4210
  readonly customColumnModule: {
4153
4211
  type: import("vue").PropType<number | string>;
4154
4212
  };
4213
+ readonly customColumnApi: {
4214
+ default: "/api-item/api/customizedColumns/find";
4215
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
4216
+ };
4217
+ readonly customColumnSaveApi: {
4218
+ default: "/api-item/api/customizedColumns/save";
4219
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
4220
+ };
4155
4221
  readonly api: {
4156
4222
  type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
4157
4223
  };
@@ -4870,7 +4936,7 @@ export declare const EpSearchListPage: {
4870
4936
  };
4871
4937
  readonly preserveExpandedContent: BooleanConstructor;
4872
4938
  readonly nativeScrollbar: BooleanConstructor;
4873
- }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
4939
+ }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
4874
4940
  elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
4875
4941
  elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
4876
4942
  validate: () => import("element-plus").FormValidationResult;
@@ -5194,6 +5260,8 @@ export declare const EpSearchListPage: {
5194
5260
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
5195
5261
  }>[];
5196
5262
  readonly isInitSearch: boolean;
5263
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
5264
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
5197
5265
  readonly formItemList: import("el-plus/es/index").FormItemProps[];
5198
5266
  readonly formData: Record<string, any>;
5199
5267
  readonly showOperationColumn: boolean;
@@ -5219,6 +5287,14 @@ export declare const EpSearchListPage: {
5219
5287
  readonly customColumnModule: {
5220
5288
  readonly type: import("vue").PropType<number | string>;
5221
5289
  };
5290
+ readonly customColumnApi: {
5291
+ readonly default: "/api-item/api/customizedColumns/find";
5292
+ readonly type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
5293
+ };
5294
+ readonly customColumnSaveApi: {
5295
+ readonly default: "/api-item/api/customizedColumns/save";
5296
+ readonly type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
5297
+ };
5222
5298
  readonly showOperationColumn: BooleanConstructor;
5223
5299
  readonly formItemList: {
5224
5300
  readonly type: import("vue").PropType<import("el-plus/es/index").FormItemProps[]>;
@@ -5385,6 +5461,8 @@ export declare const EpSearchListPage: {
5385
5461
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
5386
5462
  }>[];
5387
5463
  readonly isInitSearch: boolean;
5464
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
5465
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
5388
5466
  readonly border: boolean;
5389
5467
  readonly fit: boolean;
5390
5468
  readonly stripe: boolean;
@@ -5493,6 +5571,8 @@ export declare const EpSearchListPage: {
5493
5571
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
5494
5572
  }>[];
5495
5573
  readonly isInitSearch: boolean;
5574
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
5575
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
5496
5576
  readonly border: boolean;
5497
5577
  readonly fit: boolean;
5498
5578
  readonly stripe: boolean;
@@ -5552,7 +5632,7 @@ export declare const EpSearchListPage: {
5552
5632
  readonly tooltipEffect?: string | undefined;
5553
5633
  readonly appendFilterPanelTo?: string | undefined;
5554
5634
  readonly scrollbarTabindex?: string | number | undefined;
5555
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
5635
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
5556
5636
  $attrs: {
5557
5637
  [x: string]: unknown;
5558
5638
  };
@@ -5618,6 +5698,14 @@ export declare const EpSearchListPage: {
5618
5698
  readonly customColumnModule: {
5619
5699
  type: import("vue").PropType<number | string>;
5620
5700
  };
5701
+ readonly customColumnApi: {
5702
+ default: "/api-item/api/customizedColumns/find";
5703
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
5704
+ };
5705
+ readonly customColumnSaveApi: {
5706
+ default: "/api-item/api/customizedColumns/save";
5707
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
5708
+ };
5621
5709
  readonly api: {
5622
5710
  type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
5623
5711
  };
@@ -6436,6 +6524,8 @@ export declare const EpSearchListPage: {
6436
6524
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
6437
6525
  }>[];
6438
6526
  readonly isInitSearch: boolean;
6527
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
6528
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
6439
6529
  readonly border: boolean;
6440
6530
  readonly fit: boolean;
6441
6531
  readonly stripe: boolean;
@@ -6564,6 +6654,8 @@ export declare const EpSearchListPage: {
6564
6654
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
6565
6655
  }>[];
6566
6656
  readonly isInitSearch: boolean;
6657
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
6658
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
6567
6659
  readonly border: boolean;
6568
6660
  readonly fit: boolean;
6569
6661
  readonly stripe: boolean;
@@ -6632,6 +6724,14 @@ export declare const EpSearchListPage: {
6632
6724
  readonly customColumnModule: {
6633
6725
  type: import("vue").PropType<number | string>;
6634
6726
  };
6727
+ readonly customColumnApi: {
6728
+ default: "/api-item/api/customizedColumns/find";
6729
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
6730
+ };
6731
+ readonly customColumnSaveApi: {
6732
+ default: "/api-item/api/customizedColumns/save";
6733
+ type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
6734
+ };
6635
6735
  readonly api: {
6636
6736
  type: import("vue").PropType<import("el-plus/es/types/axios").Api>;
6637
6737
  };
@@ -7350,7 +7450,7 @@ export declare const EpSearchListPage: {
7350
7450
  };
7351
7451
  readonly preserveExpandedContent: BooleanConstructor;
7352
7452
  readonly nativeScrollbar: BooleanConstructor;
7353
- }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
7453
+ }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
7354
7454
  elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
7355
7455
  elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
7356
7456
  validate: () => import("element-plus").FormValidationResult;
@@ -7674,6 +7774,8 @@ export declare const EpSearchListPage: {
7674
7774
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
7675
7775
  }>[];
7676
7776
  readonly isInitSearch: boolean;
7777
+ readonly customColumnApi: import("el-plus/es/types/axios").Api;
7778
+ readonly customColumnSaveApi: import("el-plus/es/types/axios").Api;
7677
7779
  readonly formItemList: import("el-plus/es/index").FormItemProps[];
7678
7780
  readonly formData: Record<string, any>;
7679
7781
  readonly showOperationColumn: boolean;
@@ -3,6 +3,14 @@ export declare const searchListPageProps: {
3
3
  readonly customColumnModule: {
4
4
  readonly type: PropType<number | string>;
5
5
  };
6
+ readonly customColumnApi: {
7
+ readonly default: "/api-item/api/customizedColumns/find";
8
+ readonly type: PropType<import("el-plus/es/types").Api>;
9
+ };
10
+ readonly customColumnSaveApi: {
11
+ readonly default: "/api-item/api/customizedColumns/save";
12
+ readonly type: PropType<import("el-plus/es/types").Api>;
13
+ };
6
14
  readonly showOperationColumn: BooleanConstructor;
7
15
  readonly formItemList: {
8
16
  readonly type: PropType<import("el-plus/es/components/form").FormItemProps[]>;
@@ -12,6 +12,12 @@ const searchListPageProps = {
12
12
  customColumnModule: {
13
13
  ...customColumn.customColumnProps.module
14
14
  },
15
+ customColumnApi: {
16
+ ...customColumn.customColumnProps.api
17
+ },
18
+ customColumnSaveApi: {
19
+ ...customColumn.customColumnProps.saveApi
20
+ },
15
21
  showOperationColumn: Boolean,
16
22
  // 是否显示操作列
17
23
  // 表单列表
@@ -1 +1 @@
1
- {"version":3,"file":"search-list-page.js","sources":["../../../../../../packages/components/search-list-page/src/search-list-page.ts"],"sourcesContent":["import type { PropType, ExtractPublicPropTypes } from 'vue'\nimport { apiProps } from '@el-plus/utils/props'\nimport { formProps } from '@el-plus/components/form'\nimport { buttonsProps } from '@el-plus/components/buttons'\nimport { tableProps } from '@el-plus/components/table'\nimport { customColumnProps } from '@el-plus/components/custom-column'\n\nexport const searchListPageProps = {\n ...apiProps,\n // 自定义列模块\n customColumnModule: {\n ...customColumnProps.module,\n },\n showOperationColumn: Boolean, // 是否显示操作列\n // 表单列表\n formItemList: {\n ...formProps.formItemList,\n },\n // 左侧按钮\n leftButtons: {\n ...buttonsProps.list,\n },\n // 表格列\n columns: {\n ...tableProps.columns,\n },\n // 列最小宽度\n minWidth: {\n ...tableProps.minWidth,\n },\n // 操作列宽度\n actionColWidth: {\n ...tableProps.actionColWidth,\n },\n // 操作列\n actionButtons: {\n ...tableProps.actionButtons,\n },\n // 格式化列\n formatColumns: {\n ...tableProps.formatColumns,\n },\n showSelectionCol: Boolean,\n showSingleSelectionCol: Boolean,\n showIndexCol: {\n type: Boolean,\n default: true,\n },\n add: Function, // 新增\n // templateDownloadApi: String, // 模板下载\n // importApi: String, // 导入\n // exportApi: String, // 导出\n // 表格额外距离\n offsetTop: {\n type: Number,\n default: 0,\n },\n formData: {\n type: Object,\n default: () => ({}),\n },\n tableProps: Object,\n formProps: Object,\n buttonsProps: Object,\n name: String, // 权限前缀\n // 是否初始化加载数据\n isInitSearch: {\n type: Boolean,\n default: true,\n },\n} as const\nexport type SearchListPageProps = ExtractPublicPropTypes<\n typeof searchListPageProps\n>\n"],"names":["apiProps","customColumnProps","formProps","buttonsProps","tableProps"],"mappings":";;;;;;;;AAOO,MAAM,mBAAA,GAAsB;AAAA,EACjC,GAAGA,cAAA;AAAA;AAAA,EAEH,kBAAA,EAAoB;AAAA,IAClB,GAAGC,8BAAA,CAAkB;AAAA,GACvB;AAAA,EACA,mBAAA,EAAqB,OAAA;AAAA;AAAA;AAAA,EAErB,YAAA,EAAc;AAAA,IACZ,GAAGC,cAAA,CAAU;AAAA,GACf;AAAA;AAAA,EAEA,WAAA,EAAa;AAAA,IACX,GAAGC,oBAAA,CAAa;AAAA,GAClB;AAAA;AAAA,EAEA,OAAA,EAAS;AAAA,IACP,GAAGC,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,QAAA,EAAU;AAAA,IACR,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,cAAA,EAAgB;AAAA,IACd,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA,EACA,gBAAA,EAAkB,OAAA;AAAA,EAClB,sBAAA,EAAwB,OAAA;AAAA,EACxB,YAAA,EAAc;AAAA,IACZ,IAAA,EAAM,OAAA;AAAA,IACN,OAAA,EAAS;AAAA,GACX;AAAA,EACA,GAAA,EAAK,QAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKL,SAAA,EAAW;AAAA,IACT,IAAA,EAAM,MAAA;AAAA,IACN,OAAA,EAAS;AAAA,GACX;AAAA,EACA,QAAA,EAAU;AAAA,IACR,IAAA,EAAM,MAAA;AAAA,IACN,OAAA,EAAS,OAAO,EAAC;AAAA,GACnB;AAAA,EACA,UAAA,EAAY,MAAA;AAAA,EACZ,SAAA,EAAW,MAAA;AAAA,EACX,YAAA,EAAc,MAAA;AAAA,EACd,IAAA,EAAM,MAAA;AAAA;AAAA;AAAA,EAEN,YAAA,EAAc;AAAA,IACZ,IAAA,EAAM,OAAA;AAAA,IACN,OAAA,EAAS;AAAA;AAEb;;;;"}
1
+ {"version":3,"file":"search-list-page.js","sources":["../../../../../../packages/components/search-list-page/src/search-list-page.ts"],"sourcesContent":["import type { PropType, ExtractPublicPropTypes } from 'vue'\nimport { apiProps } from '@el-plus/utils/props'\nimport { formProps } from '@el-plus/components/form'\nimport { buttonsProps } from '@el-plus/components/buttons'\nimport { tableProps } from '@el-plus/components/table'\nimport { customColumnProps } from '@el-plus/components/custom-column'\n\nexport const searchListPageProps = {\n ...apiProps,\n // 自定义列模块\n customColumnModule: {\n ...customColumnProps.module,\n },\n customColumnApi: {\n ...customColumnProps.api,\n },\n customColumnSaveApi: {\n ...customColumnProps.saveApi,\n },\n showOperationColumn: Boolean, // 是否显示操作列\n // 表单列表\n formItemList: {\n ...formProps.formItemList,\n },\n // 左侧按钮\n leftButtons: {\n ...buttonsProps.list,\n },\n // 表格列\n columns: {\n ...tableProps.columns,\n },\n // 列最小宽度\n minWidth: {\n ...tableProps.minWidth,\n },\n // 操作列宽度\n actionColWidth: {\n ...tableProps.actionColWidth,\n },\n // 操作列\n actionButtons: {\n ...tableProps.actionButtons,\n },\n // 格式化列\n formatColumns: {\n ...tableProps.formatColumns,\n },\n showSelectionCol: Boolean,\n showSingleSelectionCol: Boolean,\n showIndexCol: {\n type: Boolean,\n default: true,\n },\n add: Function, // 新增\n // templateDownloadApi: String, // 模板下载\n // importApi: String, // 导入\n // exportApi: String, // 导出\n // 表格额外距离\n offsetTop: {\n type: Number,\n default: 0,\n },\n formData: {\n type: Object,\n default: () => ({}),\n },\n tableProps: Object,\n formProps: Object,\n buttonsProps: Object,\n name: String, // 权限前缀\n // 是否初始化加载数据\n isInitSearch: {\n type: Boolean,\n default: true,\n },\n} as const\nexport type SearchListPageProps = ExtractPublicPropTypes<\n typeof searchListPageProps\n>\n"],"names":["apiProps","customColumnProps","formProps","buttonsProps","tableProps"],"mappings":";;;;;;;;AAOO,MAAM,mBAAA,GAAsB;AAAA,EACjC,GAAGA,cAAA;AAAA;AAAA,EAEH,kBAAA,EAAoB;AAAA,IAClB,GAAGC,8BAAA,CAAkB;AAAA,GACvB;AAAA,EACA,eAAA,EAAiB;AAAA,IACf,GAAGA,8BAAA,CAAkB;AAAA,GACvB;AAAA,EACA,mBAAA,EAAqB;AAAA,IACnB,GAAGA,8BAAA,CAAkB;AAAA,GACvB;AAAA,EACA,mBAAA,EAAqB,OAAA;AAAA;AAAA;AAAA,EAErB,YAAA,EAAc;AAAA,IACZ,GAAGC,cAAA,CAAU;AAAA,GACf;AAAA;AAAA,EAEA,WAAA,EAAa;AAAA,IACX,GAAGC,oBAAA,CAAa;AAAA,GAClB;AAAA;AAAA,EAEA,OAAA,EAAS;AAAA,IACP,GAAGC,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,QAAA,EAAU;AAAA,IACR,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,cAAA,EAAgB;AAAA,IACd,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAGA,gBAAA,CAAW;AAAA,GAChB;AAAA,EACA,gBAAA,EAAkB,OAAA;AAAA,EAClB,sBAAA,EAAwB,OAAA;AAAA,EACxB,YAAA,EAAc;AAAA,IACZ,IAAA,EAAM,OAAA;AAAA,IACN,OAAA,EAAS;AAAA,GACX;AAAA,EACA,GAAA,EAAK,QAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAKL,SAAA,EAAW;AAAA,IACT,IAAA,EAAM,MAAA;AAAA,IACN,OAAA,EAAS;AAAA,GACX;AAAA,EACA,QAAA,EAAU;AAAA,IACR,IAAA,EAAM,MAAA;AAAA,IACN,OAAA,EAAS,OAAO,EAAC;AAAA,GACnB;AAAA,EACA,UAAA,EAAY,MAAA;AAAA,EACZ,SAAA,EAAW,MAAA;AAAA,EACX,YAAA,EAAc,MAAA;AAAA,EACd,IAAA,EAAM,MAAA;AAAA;AAAA;AAAA,EAEN,YAAA,EAAc;AAAA,IACZ,IAAA,EAAM,OAAA;AAAA,IACN,OAAA,EAAS;AAAA;AAEb;;;;"}
@@ -7,6 +7,14 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
7
7
  readonly customColumnModule: {
8
8
  readonly type: import("vue").PropType<number | string>;
9
9
  };
10
+ readonly customColumnApi: {
11
+ readonly default: "/api-item/api/customizedColumns/find";
12
+ readonly type: import("vue").PropType<import("el-plus/es/types").Api>;
13
+ };
14
+ readonly customColumnSaveApi: {
15
+ readonly default: "/api-item/api/customizedColumns/save";
16
+ readonly type: import("vue").PropType<import("el-plus/es/types").Api>;
17
+ };
10
18
  readonly showOperationColumn: BooleanConstructor;
11
19
  readonly formItemList: {
12
20
  readonly type: import("vue").PropType<import("el-plus/es/components/form").FormItemProps[]>;
@@ -173,6 +181,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
173
181
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
174
182
  }>[];
175
183
  readonly isInitSearch: boolean;
184
+ readonly customColumnApi: import("el-plus/es/types").Api;
185
+ readonly customColumnSaveApi: import("el-plus/es/types").Api;
176
186
  readonly border: boolean;
177
187
  readonly fit: boolean;
178
188
  readonly stripe: boolean;
@@ -281,6 +291,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
281
291
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
282
292
  }>[];
283
293
  readonly isInitSearch: boolean;
294
+ readonly customColumnApi: import("el-plus/es/types").Api;
295
+ readonly customColumnSaveApi: import("el-plus/es/types").Api;
284
296
  readonly border: boolean;
285
297
  readonly fit: boolean;
286
298
  readonly stripe: boolean;
@@ -340,7 +352,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
340
352
  readonly tooltipEffect?: string | undefined;
341
353
  readonly appendFilterPanelTo?: string | undefined;
342
354
  readonly scrollbarTabindex?: string | number | undefined;
343
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
355
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
344
356
  $attrs: {
345
357
  [x: string]: unknown;
346
358
  };
@@ -406,6 +418,14 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
406
418
  readonly customColumnModule: {
407
419
  type: import("vue").PropType<number | string>;
408
420
  };
421
+ readonly customColumnApi: {
422
+ default: "/api-item/api/customizedColumns/find";
423
+ type: import("vue").PropType<import("el-plus/es/types").Api>;
424
+ };
425
+ readonly customColumnSaveApi: {
426
+ default: "/api-item/api/customizedColumns/save";
427
+ type: import("vue").PropType<import("el-plus/es/types").Api>;
428
+ };
409
429
  readonly api: {
410
430
  type: import("vue").PropType<import("el-plus/es/types").Api>;
411
431
  };
@@ -1224,6 +1244,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
1224
1244
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1225
1245
  }>[];
1226
1246
  readonly isInitSearch: boolean;
1247
+ readonly customColumnApi: import("el-plus/es/types").Api;
1248
+ readonly customColumnSaveApi: import("el-plus/es/types").Api;
1227
1249
  readonly border: boolean;
1228
1250
  readonly fit: boolean;
1229
1251
  readonly stripe: boolean;
@@ -1352,6 +1374,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
1352
1374
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1353
1375
  }>[];
1354
1376
  readonly isInitSearch: boolean;
1377
+ readonly customColumnApi: import("el-plus/es/types").Api;
1378
+ readonly customColumnSaveApi: import("el-plus/es/types").Api;
1355
1379
  readonly border: boolean;
1356
1380
  readonly fit: boolean;
1357
1381
  readonly stripe: boolean;
@@ -1420,6 +1444,14 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
1420
1444
  readonly customColumnModule: {
1421
1445
  type: import("vue").PropType<number | string>;
1422
1446
  };
1447
+ readonly customColumnApi: {
1448
+ default: "/api-item/api/customizedColumns/find";
1449
+ type: import("vue").PropType<import("el-plus/es/types").Api>;
1450
+ };
1451
+ readonly customColumnSaveApi: {
1452
+ default: "/api-item/api/customizedColumns/save";
1453
+ type: import("vue").PropType<import("el-plus/es/types").Api>;
1454
+ };
1423
1455
  readonly api: {
1424
1456
  type: import("vue").PropType<import("el-plus/es/types").Api>;
1425
1457
  };
@@ -2138,7 +2170,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
2138
2170
  };
2139
2171
  readonly preserveExpandedContent: BooleanConstructor;
2140
2172
  readonly nativeScrollbar: BooleanConstructor;
2141
- }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
2173
+ }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
2142
2174
  elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
2143
2175
  elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
2144
2176
  validate: () => import("element-plus").FormValidationResult;
@@ -2419,6 +2451,14 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
2419
2451
  readonly customColumnModule: {
2420
2452
  readonly type: import("vue").PropType<number | string>;
2421
2453
  };
2454
+ readonly customColumnApi: {
2455
+ readonly default: "/api-item/api/customizedColumns/find";
2456
+ readonly type: import("vue").PropType<import("el-plus/es/types").Api>;
2457
+ };
2458
+ readonly customColumnSaveApi: {
2459
+ readonly default: "/api-item/api/customizedColumns/save";
2460
+ readonly type: import("vue").PropType<import("el-plus/es/types").Api>;
2461
+ };
2422
2462
  readonly showOperationColumn: BooleanConstructor;
2423
2463
  readonly formItemList: {
2424
2464
  readonly type: import("vue").PropType<import("el-plus/es/components/form").FormItemProps[]>;
@@ -2535,6 +2575,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
2535
2575
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
2536
2576
  }>[];
2537
2577
  readonly isInitSearch: boolean;
2578
+ readonly customColumnApi: import("el-plus/es/types").Api;
2579
+ readonly customColumnSaveApi: import("el-plus/es/types").Api;
2538
2580
  readonly formItemList: import("el-plus/es/components/form").FormItemProps[];
2539
2581
  readonly formData: Record<string, any>;
2540
2582
  readonly showOperationColumn: boolean;
@@ -61,6 +61,8 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
61
61
  reqBefore: import("el-plus/es/types").ReqBefore | undefined;
62
62
  reqData: Record<string, any> | undefined;
63
63
  customColumnModule: string | number | undefined;
64
+ customColumnApi: import("el-plus/es/types").Api | undefined;
65
+ customColumnSaveApi: import("el-plus/es/types").Api | undefined;
64
66
  minWidth: string | number | undefined;
65
67
  actionColWidth: string | number | undefined;
66
68
  }>;
@@ -176,6 +178,8 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
176
178
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
177
179
  }>[];
178
180
  readonly isInitSearch: boolean;
181
+ readonly customColumnApi: import("el-plus/es/types").Api;
182
+ readonly customColumnSaveApi: import("el-plus/es/types").Api;
179
183
  readonly border: boolean;
180
184
  readonly fit: boolean;
181
185
  readonly stripe: boolean;
@@ -284,6 +288,8 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
284
288
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
285
289
  }>[];
286
290
  readonly isInitSearch: boolean;
291
+ readonly customColumnApi: import("el-plus/es/types").Api;
292
+ readonly customColumnSaveApi: import("el-plus/es/types").Api;
287
293
  readonly border: boolean;
288
294
  readonly fit: boolean;
289
295
  readonly stripe: boolean;
@@ -343,7 +349,7 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
343
349
  readonly tooltipEffect?: string | undefined;
344
350
  readonly appendFilterPanelTo?: string | undefined;
345
351
  readonly scrollbarTabindex?: string | number | undefined;
346
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
352
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar">;
347
353
  $attrs: {
348
354
  [x: string]: unknown;
349
355
  };
@@ -409,6 +415,14 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
409
415
  readonly customColumnModule: {
410
416
  type: import("vue").PropType<number | string>;
411
417
  };
418
+ readonly customColumnApi: {
419
+ default: "/api-item/api/customizedColumns/find";
420
+ type: import("vue").PropType<import("el-plus/es/types").Api>;
421
+ };
422
+ readonly customColumnSaveApi: {
423
+ default: "/api-item/api/customizedColumns/save";
424
+ type: import("vue").PropType<import("el-plus/es/types").Api>;
425
+ };
412
426
  readonly api: {
413
427
  type: import("vue").PropType<import("el-plus/es/types").Api>;
414
428
  };
@@ -1227,6 +1241,8 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
1227
1241
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1228
1242
  }>[];
1229
1243
  readonly isInitSearch: boolean;
1244
+ readonly customColumnApi: import("el-plus/es/types").Api;
1245
+ readonly customColumnSaveApi: import("el-plus/es/types").Api;
1230
1246
  readonly border: boolean;
1231
1247
  readonly fit: boolean;
1232
1248
  readonly stripe: boolean;
@@ -1355,6 +1371,8 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
1355
1371
  hide?: (boolean | ((T: unknown) => boolean)) | undefined;
1356
1372
  }>[];
1357
1373
  readonly isInitSearch: boolean;
1374
+ readonly customColumnApi: import("el-plus/es/types").Api;
1375
+ readonly customColumnSaveApi: import("el-plus/es/types").Api;
1358
1376
  readonly border: boolean;
1359
1377
  readonly fit: boolean;
1360
1378
  readonly stripe: boolean;
@@ -1423,6 +1441,14 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
1423
1441
  readonly customColumnModule: {
1424
1442
  type: import("vue").PropType<number | string>;
1425
1443
  };
1444
+ readonly customColumnApi: {
1445
+ default: "/api-item/api/customizedColumns/find";
1446
+ type: import("vue").PropType<import("el-plus/es/types").Api>;
1447
+ };
1448
+ readonly customColumnSaveApi: {
1449
+ default: "/api-item/api/customizedColumns/save";
1450
+ type: import("vue").PropType<import("el-plus/es/types").Api>;
1451
+ };
1426
1452
  readonly api: {
1427
1453
  type: import("vue").PropType<import("el-plus/es/types").Api>;
1428
1454
  };
@@ -2141,7 +2167,7 @@ export declare const useSearchListPage: (props: SearchListPageProps, config?: {}
2141
2167
  };
2142
2168
  readonly preserveExpandedContent: BooleanConstructor;
2143
2169
  readonly nativeScrollbar: BooleanConstructor;
2144
- }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
2170
+ }>> & Readonly<{}>, "search" | "clearSelection" | "validate" | "resetFields" | "clearValidate" | "elFormRef" | "elTableRef" | "openCustomColumnDialog" | ("data" | "style" | "size" | "disabled" | "lazy" | "headerCellStyle" | "className" | "columns" | "showSelectionCol" | "showSingleSelectionCol" | "showIndexCol" | "align" | "actionColWidth" | "reserveSelection" | "paginationProps" | "showPagination" | "isFrontPage" | "actionButtons" | "formatColumns" | "isInitSearch" | "customColumnApi" | "customColumnSaveApi" | "border" | "fit" | "stripe" | "showHeader" | "showSummary" | "highlightCurrentRow" | "defaultExpandAll" | "selectOnIndeterminate" | "indent" | "treeProps" | "tableLayout" | "scrollbarAlwaysOn" | "flexible" | "scrollbarTabindex" | "allowDragLastColumn" | "preserveExpandedContent" | "nativeScrollbar")> & import("vue").ShallowUnwrapRef<{
2145
2171
  elFormRef: Readonly<import("vue").ShallowRef<import("element-plus").FormInstance | null>>;
2146
2172
  elTableRef: Readonly<import("vue").ShallowRef<import("element-plus").TableInstance | null>>;
2147
2173
  validate: () => import("element-plus").FormValidationResult;
@@ -47,6 +47,8 @@ const useTable = (props, config) => {
47
47
  reqBefore: props.reqBefore,
48
48
  reqData: props.formData,
49
49
  customColumnModule: props.customColumnModule,
50
+ customColumnApi: props.customColumnApi,
51
+ customColumnSaveApi: props.customColumnSaveApi,
50
52
  minWidth: props.minWidth,
51
53
  actionColWidth: props.actionColWidth,
52
54
  ...props.tableProps