el-plus 0.0.60 → 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 (78) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/index.css +1 -1
  3. package/dist/index.full.js +71 -35
  4. package/dist/index.full.min.js +2 -2
  5. package/dist/index.full.min.js.map +1 -1
  6. package/dist/index.full.min.mjs +2 -2
  7. package/dist/index.full.min.mjs.map +1 -1
  8. package/dist/index.full.mjs +71 -35
  9. package/es/components/form/src/form-item-vue.mjs +1 -1
  10. package/es/components/form/src/form-item-vue.mjs.map +1 -1
  11. package/es/components/search-list-page/index.d.ts +108 -6
  12. package/es/components/search-list-page/src/search-list-page.d.ts +8 -0
  13. package/es/components/search-list-page/src/search-list-page.mjs +6 -0
  14. package/es/components/search-list-page/src/search-list-page.mjs.map +1 -1
  15. package/es/components/search-list-page/src/search-list-page.vue.d.ts +44 -2
  16. package/es/components/search-list-page/src/use-search-list-page.d.ts +28 -2
  17. package/es/components/search-list-page/src/use-search-list-page.mjs +2 -0
  18. package/es/components/search-list-page/src/use-search-list-page.mjs.map +1 -1
  19. package/es/components/select/src/select.vue2.mjs +1 -1
  20. package/es/components/select/src/select.vue2.mjs.map +1 -1
  21. package/es/components/select/src/use-select.d.ts +2 -2
  22. package/es/components/select/src/use-select.mjs +20 -18
  23. package/es/components/select/src/use-select.mjs.map +1 -1
  24. package/es/components/table/index.d.ts +30 -0
  25. package/es/components/table/src/table.d.ts +8 -0
  26. package/es/components/table/src/table.mjs +6 -0
  27. package/es/components/table/src/table.mjs.map +1 -1
  28. package/es/components/table/src/table.vue.d.ts +18 -0
  29. package/es/components/table/src/table.vue2.mjs +3 -1
  30. package/es/components/table/src/table.vue2.mjs.map +1 -1
  31. package/es/hooks/dialog/use-dialog.d.ts +2 -0
  32. package/es/hooks/dialog/use-dialog.mjs +9 -1
  33. package/es/hooks/dialog/use-dialog.mjs.map +1 -1
  34. package/es/hooks/dialog/use-form-dialog.d.ts +2 -0
  35. package/es/hooks/dialog/use-form-dialog.mjs +11 -10
  36. package/es/hooks/dialog/use-form-dialog.mjs.map +1 -1
  37. package/es/hooks/use-locale.mjs +11 -2
  38. package/es/hooks/use-locale.mjs.map +1 -1
  39. package/es/package.json.mjs +1 -1
  40. package/lib/components/form/src/form-item-vue.js +1 -1
  41. package/lib/components/form/src/form-item-vue.js.map +1 -1
  42. package/lib/components/search-list-page/index.d.ts +108 -6
  43. package/lib/components/search-list-page/src/search-list-page.d.ts +8 -0
  44. package/lib/components/search-list-page/src/search-list-page.js +6 -0
  45. package/lib/components/search-list-page/src/search-list-page.js.map +1 -1
  46. package/lib/components/search-list-page/src/search-list-page.vue.d.ts +44 -2
  47. package/lib/components/search-list-page/src/use-search-list-page.d.ts +28 -2
  48. package/lib/components/search-list-page/src/use-search-list-page.js +2 -0
  49. package/lib/components/search-list-page/src/use-search-list-page.js.map +1 -1
  50. package/lib/components/select/src/select.vue2.js +1 -1
  51. package/lib/components/select/src/select.vue2.js.map +1 -1
  52. package/lib/components/select/src/use-select.d.ts +2 -2
  53. package/lib/components/select/src/use-select.js +19 -17
  54. package/lib/components/select/src/use-select.js.map +1 -1
  55. package/lib/components/table/index.d.ts +30 -0
  56. package/lib/components/table/src/table.d.ts +8 -0
  57. package/lib/components/table/src/table.js +6 -0
  58. package/lib/components/table/src/table.js.map +1 -1
  59. package/lib/components/table/src/table.vue.d.ts +18 -0
  60. package/lib/components/table/src/table.vue2.js +3 -1
  61. package/lib/components/table/src/table.vue2.js.map +1 -1
  62. package/lib/hooks/dialog/use-dialog.d.ts +2 -0
  63. package/lib/hooks/dialog/use-dialog.js +9 -1
  64. package/lib/hooks/dialog/use-dialog.js.map +1 -1
  65. package/lib/hooks/dialog/use-form-dialog.d.ts +2 -0
  66. package/lib/hooks/dialog/use-form-dialog.js +11 -10
  67. package/lib/hooks/dialog/use-form-dialog.js.map +1 -1
  68. package/lib/hooks/use-locale.js +11 -2
  69. package/lib/hooks/use-locale.js.map +1 -1
  70. package/lib/package.json.js +1 -1
  71. package/package.json +1 -1
  72. package/theme-chalk/attachment.css +1 -1
  73. package/theme-chalk/buttons.css +1 -1
  74. package/theme-chalk/form.css +1 -1
  75. package/theme-chalk/index.css +1 -1
  76. package/theme-chalk/src/attachment.scss +1 -1
  77. package/theme-chalk/src/buttons.scss +1 -1
  78. package/theme-chalk/src/form.scss +6 -0
@@ -1,4 +1,4 @@
1
- /*! ElPlus v0.0.60 */
1
+ /*! ElPlus v0.0.62 */
2
2
 
3
3
  import { useAttrs, getCurrentInstance, inject, provide, ref, nextTick, defineComponent, computed, createVNode, Fragment, withDirectives, resolveComponent, mergeProps, resolveDirective, useTemplateRef, createTextVNode, h, mergeModels, useModel, createElementBlock, openBlock, normalizeStyle, normalizeClass, unref, createCommentVNode, withCtx, renderSlot, renderList, createBlock, vShow, toDisplayString, reactive, useSlots, watch, onMounted, createSlots, normalizeProps, guardReactiveProps, markRaw, Transition, shallowReactive, isVNode, render, createElementVNode, toRaw } from 'vue';
4
4
  import { buttonProps, useLocale as useLocale$1, ElLoading, ElMessage, ElMessageBox, formProps as formProps$1, formEmits as formEmits$1, ElTooltip, formItemProps as formItemProps$1, ElFormItem, ElForm, ElRow, ElCol, inputProps as inputProps$1, inputEmits as inputEmits$1, configProviderContextKey, ElConfigProvider, ElDialog, ElButton, ElTable, ElIcon, selectProps as selectProps$1, selectEmits as selectEmits$1, ElPageHeader, datePickerProps, linkProps as linkProps$1, ElSkeleton } from 'element-plus';
@@ -199,7 +199,13 @@ const vRepeatClick = {
199
199
  const elLocaleModules = import.meta.glob(
200
200
  "/node_modules/element-plus/es/locale/lang/*.mjs"
201
201
  );
202
- const localeModules = import.meta.glob("../locale/lang/*.{mjs,ts}");
202
+ let localeModules = import.meta.glob("../locale/lang/*.{mjs,ts}");
203
+ if (process.env.NODE_ENV === "production") {
204
+ localeModules = import.meta.glob(
205
+ "/node_modules/el-plus/es/locale/lang/*.{mjs,ts}"
206
+ // 打包后到vite项目,因为有optimizeDeps,会找不到, 所以要在生产环境下重新判断
207
+ );
208
+ }
203
209
  const TRANSLATER_KEY = /* @__PURE__ */ Symbol("TRANSLATER_KEY");
204
210
  let cachedTranslater = null;
205
211
  const useLocale = () => {
@@ -227,7 +233,10 @@ const useLocale = () => {
227
233
  const provideFn = inSetup2 ? provide : app.provide;
228
234
  return new Promise(async (resolve) => {
229
235
  try {
230
- const basePath = "../locale/lang/";
236
+ let basePath = "../locale/lang/";
237
+ if (process.env.NODE_ENV === "production") {
238
+ basePath = "/node_modules/el-plus/es/locale/lang/";
239
+ }
231
240
  const ext = process.env.NODE_ENV === "production" ? ".mjs" : ".ts";
232
241
  const modulePath = basePath + localeLang + ext;
233
242
  let loader = localeModules[modulePath];
@@ -955,7 +964,7 @@ var EpFormItem = /* @__PURE__ */ defineComponent({
955
964
  } = props;
956
965
  return () => {
957
966
  return createVNode(ElFormItem, mergeProps({
958
- "class": [bem$4.b(), prepareClassNames()],
967
+ "class": [bem$4.b(), bem$4.is("hide-label", !props.isShowLabel), prepareClassNames()],
959
968
  "style": prepareStyles()
960
969
  }, {
961
970
  ...prepareProps(formItemProps2, [...expandFormItemPropsKeys]),
@@ -1324,8 +1333,10 @@ const useDialog = (options = {}) => {
1324
1333
  render: render$1,
1325
1334
  destroyOnClose,
1326
1335
  onConfirm,
1336
+ onBeforeConfirm,
1327
1337
  confirmText,
1328
1338
  onCancel,
1339
+ onBeforeCancel,
1329
1340
  cancelText,
1330
1341
  showFooter = true,
1331
1342
  ...dialogProps
@@ -1350,7 +1361,10 @@ const useDialog = (options = {}) => {
1350
1361
  "class": bem$3.e("footer")
1351
1362
  }, [scopedSlots.footerPrepend?.(promiseOptions), createVNode(ElButton, {
1352
1363
  "size": "default",
1353
- "onClick": () => {
1364
+ "onClick": async () => {
1365
+ if (onBeforeCancel) {
1366
+ await onBeforeCancel(reject);
1367
+ }
1354
1368
  if (onCancel) {
1355
1369
  onCancel(reject);
1356
1370
  } else {
@@ -1362,6 +1376,9 @@ const useDialog = (options = {}) => {
1362
1376
  }), scopedSlots.footerInner?.(promiseOptions), createVNode(ElButton, {
1363
1377
  "type": "primary",
1364
1378
  "onClick": async () => {
1379
+ if (onBeforeConfirm) {
1380
+ await onBeforeConfirm(resolve);
1381
+ }
1365
1382
  if (onConfirm) {
1366
1383
  onConfirm(resolve);
1367
1384
  } else {
@@ -1857,6 +1874,12 @@ const expandTableProps = {
1857
1874
  // 自定义列模块
1858
1875
  customColumnModule: {
1859
1876
  ...customColumnProps.module
1877
+ },
1878
+ customColumnApi: {
1879
+ ...customColumnProps.api
1880
+ },
1881
+ customColumnSaveApi: {
1882
+ ...customColumnProps.saveApi
1860
1883
  }
1861
1884
  };
1862
1885
  const tableProps = {
@@ -1873,22 +1896,19 @@ const useFormDialog = (options = {}) => {
1873
1896
  dialogProps,
1874
1897
  title,
1875
1898
  width = "80%",
1899
+ onBeforeConfirm,
1900
+ onBeforeCancel,
1876
1901
  ...formProps
1877
1902
  } = options;
1878
1903
  const formRef = ref();
1879
1904
  const isUseComFormData = !formProps.formData;
1880
- let formData = isUseComFormData ? reactive({}) : formProps.formData;
1881
- const isDestroy = dialogProps?.destroyOnClose;
1882
- const resetForm = async () => {
1883
- if (isDestroy) {
1884
- await formRef.value?.resetFields();
1885
- }
1886
- };
1905
+ let formData;
1887
1906
  return useDialog({
1888
1907
  class: bem$2.b(),
1889
1908
  width,
1890
1909
  title,
1891
1910
  render: () => {
1911
+ formData = isUseComFormData ? reactive({}) : formProps.formData;
1892
1912
  return createVNode(EpForm, mergeProps({
1893
1913
  "ref": formRef,
1894
1914
  "modelValue": formData,
@@ -1901,11 +1921,15 @@ const useFormDialog = (options = {}) => {
1901
1921
  },
1902
1922
  onConfirm: async (resolve) => {
1903
1923
  await formRef.value.validate();
1904
- resolve(isUseComFormData ? JSON.parse(JSON.stringify(formData)) : formData);
1905
- resetForm();
1924
+ if (onBeforeConfirm) {
1925
+ await onBeforeConfirm(formData, resolve);
1926
+ }
1927
+ return resolve(formData);
1906
1928
  },
1907
1929
  onCancel: async (resolve) => {
1908
- await resetForm();
1930
+ if (onBeforeCancel) {
1931
+ await onBeforeCancel(formData, resolve);
1932
+ }
1909
1933
  resolve("cancel");
1910
1934
  },
1911
1935
  ...dialogProps
@@ -2432,8 +2456,10 @@ var _sfc_main$8 = /* @__PURE__ */ defineComponent({
2432
2456
  ref_key: "customColumnRef",
2433
2457
  ref: customColumnRef,
2434
2458
  module: _ctx.customColumnModule,
2459
+ api: _ctx.customColumnApi,
2460
+ "save-api": _ctx.customColumnSaveApi,
2435
2461
  "show-handler": false
2436
- }, null, 8, ["module"])) : createCommentVNode("", true)], 6);
2462
+ }, null, 8, ["module", "api", "save-api"])) : createCommentVNode("", true)], 6);
2437
2463
  };
2438
2464
  }
2439
2465
  });
@@ -2446,6 +2472,12 @@ const searchListPageProps = {
2446
2472
  customColumnModule: {
2447
2473
  ...customColumnProps.module
2448
2474
  },
2475
+ customColumnApi: {
2476
+ ...customColumnProps.api
2477
+ },
2478
+ customColumnSaveApi: {
2479
+ ...customColumnProps.saveApi
2480
+ },
2449
2481
  showOperationColumn: Boolean,
2450
2482
  // 是否显示操作列
2451
2483
  // 表单列表
@@ -2550,6 +2582,8 @@ const useTable = (props, config) => {
2550
2582
  reqBefore: props.reqBefore,
2551
2583
  reqData: props.formData,
2552
2584
  customColumnModule: props.customColumnModule,
2585
+ customColumnApi: props.customColumnApi,
2586
+ customColumnSaveApi: props.customColumnSaveApi,
2553
2587
  minWidth: props.minWidth,
2554
2588
  actionColWidth: props.actionColWidth,
2555
2589
  ...props.tableProps
@@ -2848,24 +2882,26 @@ function useSelect(props, emit) {
2848
2882
  return item[props.valueKey] === value;
2849
2883
  }) || {};
2850
2884
  };
2851
- const expandAttrs = {
2852
- loading: props.loading || loading?.value,
2853
- remoteMethod: (query) => {
2854
- if (!query) return;
2855
- requestFn({
2856
- $searchValue: query
2857
- });
2858
- },
2859
- onChange(value) {
2860
- emit("change", value, getSelectItem(value));
2861
- },
2862
- onVisibleChange(visible) {
2863
- if (props.api && props.lazy && visible && !hasLoaded && !props.remote) {
2864
- requestFn();
2885
+ const expandAttrs = computed(() => {
2886
+ return {
2887
+ loading: props.loading || loading?.value,
2888
+ remoteMethod: (query) => {
2889
+ if (!query) return;
2890
+ requestFn({
2891
+ $searchValue: query
2892
+ });
2893
+ },
2894
+ onChange(value) {
2895
+ emit("change", value, getSelectItem(value));
2896
+ },
2897
+ onVisibleChange(visible) {
2898
+ if (props.api && props.lazy && visible && !hasLoaded && !props.remote) {
2899
+ requestFn();
2900
+ }
2901
+ emit("visible-change", visible);
2865
2902
  }
2866
- emit("visible-change", visible);
2867
- }
2868
- };
2903
+ };
2904
+ });
2869
2905
  return {
2870
2906
  customOptions,
2871
2907
  loadOptions,
@@ -2900,7 +2936,7 @@ var _sfc_main$6 = /* @__PURE__ */ defineComponent({
2900
2936
  return {
2901
2937
  ...prepareProps(props, ["modelValue", "desc", ...expandSelectPropsKeys]),
2902
2938
  ...prepareEvents(emit, selectEmitsKeys),
2903
- ...expandAttrs
2939
+ ...expandAttrs.value
2904
2940
  };
2905
2941
  });
2906
2942
  loadOptions(value.value, desc.value);
@@ -4145,7 +4181,7 @@ var components = [
4145
4181
  EpUniVue
4146
4182
  ];
4147
4183
 
4148
- var version = "0.0.60";
4184
+ var version = "0.0.62";
4149
4185
 
4150
4186
  var globalProperties = {
4151
4187
  install(app) {
@@ -27,7 +27,7 @@ var EpFormItem = /* @__PURE__ */ defineComponent({
27
27
  } = props;
28
28
  return () => {
29
29
  return createVNode(ElFormItem, mergeProps({
30
- "class": [bem.b(), prepareClassNames()],
30
+ "class": [bem.b(), bem.is("hide-label", !props.isShowLabel), prepareClassNames()],
31
31
  "style": prepareStyles()
32
32
  }, {
33
33
  ...prepareProps(formItemProps2, [...expandFormItemPropsKeys]),
@@ -1 +1 @@
1
- {"version":3,"file":"form-item-vue.mjs","sources":["../../../../../../packages/components/form/src/form-item-vue.tsx"],"sourcesContent":["import { defineComponent, useAttrs } from 'vue'\nimport { createNameSpace } from '@el-plus/utils/bem'\nimport { useFormItemRules, useFormItemSlots } from './hooks/use-form-item'\nimport { ElFormItem } from 'element-plus'\n\nimport { formItemProps, expandFormItemPropsKeys } from './form-item'\nimport {\n prepareProps,\n prepareEvents,\n prepareClassNames,\n prepareStyles,\n} from '@el-plus/utils/props'\nconst bem = createNameSpace('form-item')\nexport default defineComponent({\n name: 'EpFormItem',\n inheritAttrs: false,\n props: formItemProps,\n setup(props, { emit }) {\n // const {} = useFormItem(props)\n const attrs = useAttrs()\n const { scopedSlots } = useFormItemSlots(props)\n const { rules } = useFormItemRules(props)\n const { props: childProps, disabled, ...formItemProps } = props // eslint-disable-line\n return () => {\n return (\n <ElFormItem\n class={[bem.b(), prepareClassNames()]}\n style={prepareStyles()}\n v-slots={scopedSlots}\n {...{\n ...prepareProps(formItemProps, [...expandFormItemPropsKeys]),\n rules,\n 'label-width': attrs['form-label-width'],\n }}\n // scopedSlots={scopedSlots}\n // label={label}\n // prop={prop}\n // rules={mergeRules}\n // {...{ props: formItemProps }}\n />\n )\n }\n },\n})\n"],"names":["bem","createNameSpace","name","inheritAttrs","props","formItemProps","setup","emit","attrs","useAttrs","scopedSlots","useFormItemSlots","rules","useFormItemRules","childProps","disabled","_createVNode","ElFormItem","_mergeProps","b","prepareClassNames","prepareStyles","prepareProps","expandFormItemPropsKeys"],"mappings":";;;;;;;AAYA,MAAMA,GAAAA,GAAMC,gBAAgB,WAAW,CAAA;AACvC,iDAA+B;AAAA,EAC7BC,IAAAA,EAAM,YAAA;AAAA,EACNC,YAAAA,EAAc,KAAA;AAAA,EACdC,KAAAA,EAAOC,aAAAA;AAAAA,EACPC,MAAMF,KAAAA,EAAO;AAAA,IAAEG;AAAAA,GAAK,EAAG;AAErB,IAAA,MAAMC,QAAQC,QAAAA,EAAS;AACvB,IAAA,MAAM;AAAA,MAAEC;AAAAA,KAAY,GAAIC,iBAAiBP,KAAK,CAAA;AAC9C,IAAA,MAAM;AAAA,MAAEQ;AAAAA,KAAM,GAAIC,iBAAiBT,KAAK,CAAA;AACxC,IAAA,MAAM;AAAA,MAAEA,KAAAA,EAAOU,UAAAA;AAAAA,MAAYC,QAAAA;AAAAA,MAAU,GAAGV;AAAAA,KAAc,GAAID,KAAAA;AAC1D,IAAA,OAAO,MAAM;AACX,MAAA,OAAAY,WAAAA,CAAAC,YAAAC,UAAAA,CAAA;AAAA,QAAA,SAEW,CAAClB,GAAAA,CAAImB,CAAAA,EAAE,EAAGC,mBAAmB,CAAA;AAAA,QAAC,SAC9BC,aAAAA;AAAc,OAAC,EAAA;AAAA,QAGpB,GAAGC,YAAAA,CAAajB,cAAAA,EAAe,CAAC,GAAGkB,uBAAuB,CAAC,CAAA;AAAA,QAC3DX,KAAAA;AAAAA,QACA,aAAA,EAAeJ,MAAM,kBAAkB;AAAA,OAAC,GAJjCE,WAAW,CAAA;AAAA,IAa1B,CAAA;AAAA,EACF;AACF,CAAC,CAAA;;;;"}
1
+ {"version":3,"file":"form-item-vue.mjs","sources":["../../../../../../packages/components/form/src/form-item-vue.tsx"],"sourcesContent":["import { defineComponent, useAttrs } from 'vue'\nimport { createNameSpace } from '@el-plus/utils/bem'\nimport { useFormItemRules, useFormItemSlots } from './hooks/use-form-item'\nimport { ElFormItem } from 'element-plus'\n\nimport { formItemProps, expandFormItemPropsKeys } from './form-item'\nimport {\n prepareProps,\n prepareEvents,\n prepareClassNames,\n prepareStyles,\n} from '@el-plus/utils/props'\nconst bem = createNameSpace('form-item')\nexport default defineComponent({\n name: 'EpFormItem',\n inheritAttrs: false,\n props: formItemProps,\n setup(props, { emit }) {\n // const {} = useFormItem(props)\n const attrs = useAttrs()\n const { scopedSlots } = useFormItemSlots(props)\n const { rules } = useFormItemRules(props)\n const { props: childProps, disabled, ...formItemProps } = props // eslint-disable-line\n return () => {\n return (\n <ElFormItem\n class={[\n bem.b(),\n bem.is('hide-label', !props.isShowLabel),\n prepareClassNames(),\n ]}\n style={prepareStyles()}\n v-slots={scopedSlots}\n {...{\n ...prepareProps(formItemProps, [...expandFormItemPropsKeys]),\n rules,\n 'label-width': attrs['form-label-width'],\n }}\n // scopedSlots={scopedSlots}\n // label={label}\n // prop={prop}\n // rules={mergeRules}\n // {...{ props: formItemProps }}\n />\n )\n }\n },\n})\n"],"names":["bem","createNameSpace","name","inheritAttrs","props","formItemProps","setup","emit","attrs","useAttrs","scopedSlots","useFormItemSlots","rules","useFormItemRules","childProps","disabled","_createVNode","ElFormItem","_mergeProps","b","is","isShowLabel","prepareClassNames","prepareStyles","prepareProps","expandFormItemPropsKeys"],"mappings":";;;;;;;AAYA,MAAMA,GAAAA,GAAMC,gBAAgB,WAAW,CAAA;AACvC,iDAA+B;AAAA,EAC7BC,IAAAA,EAAM,YAAA;AAAA,EACNC,YAAAA,EAAc,KAAA;AAAA,EACdC,KAAAA,EAAOC,aAAAA;AAAAA,EACPC,MAAMF,KAAAA,EAAO;AAAA,IAAEG;AAAAA,GAAK,EAAG;AAErB,IAAA,MAAMC,QAAQC,QAAAA,EAAS;AACvB,IAAA,MAAM;AAAA,MAAEC;AAAAA,KAAY,GAAIC,iBAAiBP,KAAK,CAAA;AAC9C,IAAA,MAAM;AAAA,MAAEQ;AAAAA,KAAM,GAAIC,iBAAiBT,KAAK,CAAA;AACxC,IAAA,MAAM;AAAA,MAAEA,KAAAA,EAAOU,UAAAA;AAAAA,MAAYC,QAAAA;AAAAA,MAAU,GAAGV;AAAAA,KAAc,GAAID,KAAAA;AAC1D,IAAA,OAAO,MAAM;AACX,MAAA,OAAAY,WAAAA,CAAAC,YAAAC,UAAAA,CAAA;AAAA,QAAA,OAAA,EAEW,CACLlB,GAAAA,CAAImB,CAAAA,EAAE,EACNnB,GAAAA,CAAIoB,EAAAA,CAAG,YAAA,EAAc,CAAChB,KAAAA,CAAMiB,WAAW,CAAA,EACvCC,mBAAmB,CAAA;AAAA,QACpB,SACMC,aAAAA;AAAc,OAAC,EAAA;AAAA,QAGpB,GAAGC,YAAAA,CAAanB,cAAAA,EAAe,CAAC,GAAGoB,uBAAuB,CAAC,CAAA;AAAA,QAC3Db,KAAAA;AAAAA,QACA,aAAA,EAAeJ,MAAM,kBAAkB;AAAA,OAAC,GAJjCE,WAAW,CAAA;AAAA,IAa1B,CAAA;AAAA,EACF;AACF,CAAC,CAAA;;;;"}
@@ -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[]>;
@@ -10,6 +10,12 @@ const searchListPageProps = {
10
10
  customColumnModule: {
11
11
  ...customColumnProps.module
12
12
  },
13
+ customColumnApi: {
14
+ ...customColumnProps.api
15
+ },
16
+ customColumnSaveApi: {
17
+ ...customColumnProps.saveApi
18
+ },
13
19
  showOperationColumn: Boolean,
14
20
  // 是否显示操作列
15
21
  // 表单列表
@@ -1 +1 @@
1
- {"version":3,"file":"search-list-page.mjs","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":[],"mappings":";;;;;;AAOO,MAAM,mBAAA,GAAsB;AAAA,EACjC,GAAG,QAAA;AAAA;AAAA,EAEH,kBAAA,EAAoB;AAAA,IAClB,GAAG,iBAAA,CAAkB;AAAA,GACvB;AAAA,EACA,mBAAA,EAAqB,OAAA;AAAA;AAAA;AAAA,EAErB,YAAA,EAAc;AAAA,IACZ,GAAG,SAAA,CAAU;AAAA,GACf;AAAA;AAAA,EAEA,WAAA,EAAa;AAAA,IACX,GAAG,YAAA,CAAa;AAAA,GAClB;AAAA;AAAA,EAEA,OAAA,EAAS;AAAA,IACP,GAAG,UAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,QAAA,EAAU;AAAA,IACR,GAAG,UAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,cAAA,EAAgB;AAAA,IACd,GAAG,UAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAG,UAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAG,UAAA,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.mjs","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":[],"mappings":";;;;;;AAOO,MAAM,mBAAA,GAAsB;AAAA,EACjC,GAAG,QAAA;AAAA;AAAA,EAEH,kBAAA,EAAoB;AAAA,IAClB,GAAG,iBAAA,CAAkB;AAAA,GACvB;AAAA,EACA,eAAA,EAAiB;AAAA,IACf,GAAG,iBAAA,CAAkB;AAAA,GACvB;AAAA,EACA,mBAAA,EAAqB;AAAA,IACnB,GAAG,iBAAA,CAAkB;AAAA,GACvB;AAAA,EACA,mBAAA,EAAqB,OAAA;AAAA;AAAA;AAAA,EAErB,YAAA,EAAc;AAAA,IACZ,GAAG,SAAA,CAAU;AAAA,GACf;AAAA;AAAA,EAEA,WAAA,EAAa;AAAA,IACX,GAAG,YAAA,CAAa;AAAA,GAClB;AAAA;AAAA,EAEA,OAAA,EAAS;AAAA,IACP,GAAG,UAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,QAAA,EAAU;AAAA,IACR,GAAG,UAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,cAAA,EAAgB;AAAA,IACd,GAAG,UAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAG,UAAA,CAAW;AAAA,GAChB;AAAA;AAAA,EAEA,aAAA,EAAe;AAAA,IACb,GAAG,UAAA,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;;;;"}