yxuse 3.0.39 → 3.0.40

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 (49) hide show
  1. package/lib/api.cjs.js +1 -1
  2. package/lib/api.es.js +9 -9
  3. package/lib/components.cjs.js +1 -1
  4. package/lib/components.es.js +11 -11
  5. package/lib/directives.cjs.js +1 -1
  6. package/lib/directives.es.js +2 -2
  7. package/lib/hooks.cjs.js +1 -1
  8. package/lib/hooks.es.js +2 -2
  9. package/lib/index.cjs.js +1 -1
  10. package/lib/index.cjs10.js +1 -1
  11. package/lib/index.cjs11.js +1 -3
  12. package/lib/index.cjs11.js.gz +0 -0
  13. package/lib/index.cjs12.js +1 -1
  14. package/lib/index.cjs13.js +1 -1
  15. package/lib/index.cjs2.js +1 -1
  16. package/lib/index.cjs3.js +1 -1
  17. package/lib/index.cjs4.js +1 -1
  18. package/lib/index.cjs5.js +8 -28
  19. package/lib/index.cjs5.js.gz +0 -0
  20. package/lib/index.cjs6.js +1 -1
  21. package/lib/index.cjs6.js.gz +0 -0
  22. package/lib/index.cjs7.js +1 -1
  23. package/lib/index.cjs9.js +1 -1
  24. package/lib/index.es.js +43 -39
  25. package/lib/index.es10.js +245 -241
  26. package/lib/index.es10.js.gz +0 -0
  27. package/lib/index.es11.js +1854 -1146
  28. package/lib/index.es11.js.gz +0 -0
  29. package/lib/index.es12.js +181 -103
  30. package/lib/index.es13.js +15 -12
  31. package/lib/index.es2.js +13 -13
  32. package/lib/index.es3.js +58 -40
  33. package/lib/index.es4.js +47 -37
  34. package/lib/index.es5.js +9697 -5929
  35. package/lib/index.es5.js.gz +0 -0
  36. package/lib/index.es6.js +821 -615
  37. package/lib/index.es6.js.gz +0 -0
  38. package/lib/index.es7.js +21 -17
  39. package/lib/index.es8.js +4 -4
  40. package/lib/index.es9.js +9 -7
  41. package/lib/theme.cjs.js +1 -1
  42. package/lib/theme.es.js +11 -11
  43. package/lib/translate.cjs.js +1 -1
  44. package/lib/translate.es.js +6 -6
  45. package/lib/utils.cjs.js +1 -1
  46. package/lib/utils.es.js +11 -11
  47. package/lib/yxIcon.cjs.js +1 -1
  48. package/lib/yxIcon.es.js +2 -2
  49. package/package.json +2 -1
package/lib/index.es6.js CHANGED
@@ -1,105 +1,146 @@
1
- var me = Object.defineProperty;
2
- var G = Object.getOwnPropertySymbols;
3
- var se = Object.prototype.hasOwnProperty, le = Object.prototype.propertyIsEnumerable;
4
- var ae = (n, o, t) => o in n ? me(n, o, { enumerable: !0, configurable: !0, writable: !0, value: t }) : n[o] = t, V = (n, o) => {
5
- for (var t in o || (o = {}))
6
- se.call(o, t) && ae(n, t, o[t]);
7
- if (G)
8
- for (var t of G(o))
9
- le.call(o, t) && ae(n, t, o[t]);
10
- return n;
11
- };
12
- var A = (n, o) => {
13
- var t = {};
14
- for (var s in n)
15
- se.call(n, s) && o.indexOf(s) < 0 && (t[s] = n[s]);
16
- if (n != null && G)
17
- for (var s of G(n))
18
- o.indexOf(s) < 0 && le.call(n, s) && (t[s] = n[s]);
19
- return t;
20
- };
21
- var J = (n, o, t) => new Promise((s, l) => {
22
- var d = (b) => {
23
- try {
24
- h(t.next(b));
25
- } catch (p) {
26
- l(p);
1
+ var __defProp = Object.defineProperty;
2
+ var __defProps = Object.defineProperties;
3
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
4
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
7
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
8
+ var __spreadValues = (a, b) => {
9
+ for (var prop in b || (b = {}))
10
+ if (__hasOwnProp.call(b, prop))
11
+ __defNormalProp(a, prop, b[prop]);
12
+ if (__getOwnPropSymbols)
13
+ for (var prop of __getOwnPropSymbols(b)) {
14
+ if (__propIsEnum.call(b, prop))
15
+ __defNormalProp(a, prop, b[prop]);
27
16
  }
28
- }, S = (b) => {
29
- try {
30
- h(t.throw(b));
31
- } catch (p) {
32
- l(p);
17
+ return a;
18
+ };
19
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
20
+ var __objRest = (source, exclude) => {
21
+ var target = {};
22
+ for (var prop in source)
23
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
24
+ target[prop] = source[prop];
25
+ if (source != null && __getOwnPropSymbols)
26
+ for (var prop of __getOwnPropSymbols(source)) {
27
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
28
+ target[prop] = source[prop];
33
29
  }
34
- }, h = (b) => b.done ? s(b.value) : Promise.resolve(b.value).then(d, S);
35
- h((t = t.apply(n, o)).next());
36
- });
37
- import { defineComponent as P, reactive as he, resolveComponent as k, openBlock as _, createBlock as F, createSlots as ge, withCtx as T, renderSlot as te, createElementVNode as I, createVNode as f, createTextVNode as z, watch as ie, resolveDynamicComponent as j, mergeProps as D, createElementBlock as N, Fragment as L, renderList as q, createCommentVNode as B, useSlots as ne, useAttrs as oe, ref as O, onMounted as _e, nextTick as ye, isVNode as ce, withModifiers as be, computed as ve, unref as X, normalizeStyle as Q, toDisplayString as E, withKeys as we, toHandlers as Se, pushScopeId as Ce, popScopeId as xe } from "vue";
38
- import { S as $e, _ as Z, T as ke } from "./index.es5.js";
30
+ return target;
31
+ };
32
+ var __async = (__this, __arguments, generator) => {
33
+ return new Promise((resolve, reject) => {
34
+ var fulfilled = (value) => {
35
+ try {
36
+ step(generator.next(value));
37
+ } catch (e) {
38
+ reject(e);
39
+ }
40
+ };
41
+ var rejected = (value) => {
42
+ try {
43
+ step(generator.throw(value));
44
+ } catch (e) {
45
+ reject(e);
46
+ }
47
+ };
48
+ var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
49
+ step((generator = generator.apply(__this, __arguments)).next());
50
+ });
51
+ };
52
+ import { defineComponent, reactive, resolveComponent, openBlock, createBlock, createSlots, withCtx, renderSlot, createElementVNode, createVNode, createTextVNode, watch, resolveDynamicComponent, mergeProps, createElementBlock, Fragment, renderList, createCommentVNode, useSlots, useAttrs, ref, onMounted, nextTick, isVNode, withModifiers, computed, unref, normalizeStyle, toDisplayString, withKeys, toHandlers, pushScopeId, popScopeId } from "vue";
53
+ import { S as Sortable, _ as _export_sfc, T as Toolbar } from "./index.es5.js";
39
54
  import "./index.es11.js";
40
55
  import "element-plus";
41
- import { u as Ve } from "./index.es13.js";
42
- const Ne = { class: "dialog-footer flex justify-end" }, Fe = /* @__PURE__ */ P({
56
+ import { u as uploadResourceApi } from "./index.es13.js";
57
+ const _hoisted_1$3 = { class: "dialog-footer flex justify-end" };
58
+ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
43
59
  __name: "index",
44
- setup(n, { expose: o }) {
45
- const t = he({
60
+ setup(__props, { expose: __expose }) {
61
+ const dialogOptions = reactive({
46
62
  width: "40%",
47
- show: !1,
63
+ show: false,
48
64
  title: "",
49
- loading: !1,
50
- showFooter: !0,
51
- autoClose: !0
52
- }), s = () => {
53
- t.show = !1;
54
- }, l = {}, d = () => J(this, null, function* () {
55
- if (!(l.beforeSubmit && !(yield l.beforeSubmit()))) {
56
- t.loading = !0;
57
- try {
58
- l.submit && (yield l.submit()), t.loading = !1, t.autoClose && s();
59
- } catch (h) {
60
- t.loading = !1;
61
- }
65
+ loading: false,
66
+ showFooter: true,
67
+ autoClose: true
68
+ });
69
+ const close = () => {
70
+ dialogOptions.show = false;
71
+ };
72
+ const dialogMap = {};
73
+ const submit = () => __async(this, null, function* () {
74
+ if (dialogMap["beforeSubmit"] && !(yield dialogMap["beforeSubmit"]()))
75
+ return;
76
+ dialogOptions.loading = true;
77
+ try {
78
+ dialogMap["submit"] && (yield dialogMap["submit"]());
79
+ dialogOptions.loading = false;
80
+ if (dialogOptions.autoClose)
81
+ close();
82
+ } catch (err) {
83
+ dialogOptions.loading = false;
62
84
  }
63
85
  });
64
- return o({
65
- show: ({ width: h, title: b, submit: p, cancel: w, showFooter: v, autoClose: C, beforeOpen: R, beforeSubmit: m }) => {
66
- h && (t.width = h), b && (t.title = b), v !== void 0 && (t.showFooter = v), C !== void 0 && (t.autoClose = C), p && (l.submit = p), w && (l.cancel = w), m && (l.beforeSubmit = m), R && R(), t.show = !0;
67
- },
68
- close: s
69
- }), (h, b) => {
70
- const p = k("el-button"), w = k("el-dialog");
71
- return _(), F(w, {
72
- "close-on-click-modal": !1,
86
+ const show = ({ width, title, submit: submit2, cancel, showFooter, autoClose, beforeOpen, beforeSubmit }) => {
87
+ if (width)
88
+ dialogOptions.width = width;
89
+ if (title)
90
+ dialogOptions.title = title;
91
+ if (showFooter !== void 0)
92
+ dialogOptions.showFooter = showFooter;
93
+ if (autoClose !== void 0)
94
+ dialogOptions.autoClose = autoClose;
95
+ if (submit2)
96
+ dialogMap["submit"] = submit2;
97
+ if (cancel)
98
+ dialogMap["cancel"] = cancel;
99
+ if (beforeSubmit)
100
+ dialogMap["beforeSubmit"] = beforeSubmit;
101
+ if (beforeOpen)
102
+ beforeOpen();
103
+ dialogOptions.show = true;
104
+ };
105
+ __expose({
106
+ show,
107
+ close
108
+ });
109
+ return (_ctx, _cache) => {
110
+ const _component_el_button = resolveComponent("el-button");
111
+ const _component_el_dialog = resolveComponent("el-dialog");
112
+ return openBlock(), createBlock(_component_el_dialog, {
113
+ "close-on-click-modal": false,
73
114
  attrs: "",
74
- width: t.width,
75
- modelValue: t.show,
76
- "onUpdate:modelValue": b[0] || (b[0] = (v) => t.show = v),
77
- title: t.title
78
- }, ge({
79
- default: T(() => [
80
- te(h.$slots, "default")
115
+ width: dialogOptions.width,
116
+ modelValue: dialogOptions.show,
117
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => dialogOptions.show = $event),
118
+ title: dialogOptions.title
119
+ }, createSlots({
120
+ default: withCtx(() => [
121
+ renderSlot(_ctx.$slots, "default")
81
122
  ]),
82
123
  _: 2
83
124
  }, [
84
- t.showFooter ? {
125
+ dialogOptions.showFooter ? {
85
126
  name: "footer",
86
- fn: T(() => [
87
- I("span", Ne, [
88
- f(p, {
127
+ fn: withCtx(() => [
128
+ createElementVNode("span", _hoisted_1$3, [
129
+ createVNode(_component_el_button, {
89
130
  plain: "",
90
- onClick: s
131
+ onClick: close
91
132
  }, {
92
- default: T(() => [
93
- z("取消")
133
+ default: withCtx(() => [
134
+ createTextVNode("取消")
94
135
  ]),
95
136
  _: 1
96
137
  }),
97
- f(p, {
98
- loading: t.loading,
99
- onClick: d
138
+ createVNode(_component_el_button, {
139
+ loading: dialogOptions.loading,
140
+ onClick: submit
100
141
  }, {
101
- default: T(() => [
102
- z("确认")
142
+ default: withCtx(() => [
143
+ createTextVNode("确认")
103
144
  ]),
104
145
  _: 1
105
146
  }, 8, ["loading"])
@@ -110,40 +151,45 @@ const Ne = { class: "dialog-footer flex justify-end" }, Fe = /* @__PURE__ */ P({
110
151
  ]), 1032, ["width", "modelValue", "title"]);
111
152
  };
112
153
  }
113
- }), de = /* @__PURE__ */ P({
154
+ });
155
+ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
114
156
  __name: "index",
115
157
  props: {
116
158
  conf: {},
117
159
  model: {}
118
160
  },
119
161
  emits: ["change"],
120
- setup(n, { emit: o }) {
121
- const t = n, s = o;
122
- return ie(
162
+ setup(__props, { emit: __emit }) {
163
+ const props = __props;
164
+ const emit = __emit;
165
+ watch(
123
166
  () => {
124
- var l;
125
- return t.model[(l = t.conf) == null ? void 0 : l.prop];
167
+ var _a;
168
+ return props.model[(_a = props.conf) == null ? void 0 : _a.prop];
126
169
  },
127
170
  () => {
128
- s("change", t.model);
171
+ emit("change", props.model);
129
172
  }
130
- ), (l, d) => {
131
- var S, h, b;
132
- return _(), F(j(`el-${(S = l.conf) == null ? void 0 : S.renderType}`), D({
133
- modelValue: l.model[(h = l.conf) == null ? void 0 : h.prop],
134
- "onUpdate:modelValue": d[0] || (d[0] = (p) => {
135
- var w;
136
- return l.model[(w = l.conf) == null ? void 0 : w.prop] = p;
173
+ );
174
+ return (_ctx, _cache) => {
175
+ var _a, _b, _c;
176
+ return openBlock(), createBlock(resolveDynamicComponent(`el-${(_a = _ctx.conf) == null ? void 0 : _a.renderType}`), mergeProps({
177
+ modelValue: _ctx.model[(_b = _ctx.conf) == null ? void 0 : _b.prop],
178
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => {
179
+ var _a2;
180
+ return _ctx.model[(_a2 = _ctx.conf) == null ? void 0 : _a2.prop] = $event;
137
181
  })
138
- }, (b = l.conf) == null ? void 0 : b.config), {
139
- default: T(() => {
140
- var p, w, v;
182
+ }, (_c = _ctx.conf) == null ? void 0 : _c.config), {
183
+ default: withCtx(() => {
184
+ var _a2, _b2, _c2;
141
185
  return [
142
- l.conf.renderType === "select" ? (_(!0), N(L, { key: 0 }, q((v = (w = (p = l.conf) == null ? void 0 : p.config) == null ? void 0 : w.options) != null ? v : [], (C) => (_(), F(j("el-option"), {
143
- key: C.value,
144
- label: C.label,
145
- value: C.value
146
- }, null, 8, ["label", "value"]))), 128)) : B("", !0)
186
+ _ctx.conf.renderType === "select" ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList((_c2 = (_b2 = (_a2 = _ctx.conf) == null ? void 0 : _a2.config) == null ? void 0 : _b2.options) != null ? _c2 : [], (op) => {
187
+ return openBlock(), createBlock(resolveDynamicComponent(`el-option`), {
188
+ key: op.value,
189
+ label: op.label,
190
+ value: op.value
191
+ }, null, 8, ["label", "value"]);
192
+ }), 128)) : createCommentVNode("", true)
147
193
  ];
148
194
  }),
149
195
  _: 1
@@ -151,11 +197,12 @@ const Ne = { class: "dialog-footer flex justify-end" }, Fe = /* @__PURE__ */ P({
151
197
  };
152
198
  }
153
199
  });
154
- function Ie(n) {
155
- return typeof n == "function" || Object.prototype.toString.call(n) === "[object Object]" && !ce(n);
200
+ function _isSlot$1(s) {
201
+ return typeof s === "function" || Object.prototype.toString.call(s) === "[object Object]" && !isVNode(s);
156
202
  }
157
- const Te = /* @__PURE__ */ P({
158
- name: "YxTable",
203
+ const _sfc_main$6 = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, {
204
+ name: "YxTable"
205
+ }), {
159
206
  __name: "index",
160
207
  props: {
161
208
  tableData: {},
@@ -171,127 +218,152 @@ const Te = /* @__PURE__ */ P({
171
218
  }
172
219
  },
173
220
  emits: ["operate-handle", "sort-end", "update-page", "size-change"],
174
- setup(n, {
175
- expose: o,
176
- emit: t
221
+ setup(__props, {
222
+ expose: __expose,
223
+ emit: __emit
177
224
  }) {
178
- const s = n, l = ne(), d = oe(), S = O(), h = t;
179
- _e(() => {
180
- ye(() => {
181
- b();
225
+ const props = __props;
226
+ const slots = useSlots();
227
+ const attrs = useAttrs();
228
+ const tableRef = ref();
229
+ const emit = __emit;
230
+ onMounted(() => {
231
+ nextTick(() => {
232
+ startSort();
182
233
  });
183
234
  });
184
- const b = () => {
185
- if (!s.sort)
235
+ const startSort = () => {
236
+ if (!props.sort)
186
237
  return;
187
- const w = document.querySelector(".el-table__body tbody");
188
- $e.create(w, {
238
+ const sortDom = document.querySelector(".el-table__body tbody");
239
+ Sortable.create(sortDom, {
189
240
  animation: 200,
190
241
  // group: "el-table__row table-row",
191
- sort: !0,
192
- handle: s.sortHandle ? `.${s.sortHandle}` : null,
242
+ sort: true,
243
+ handle: props.sortHandle ? `.${props.sortHandle}` : null,
193
244
  onEnd: ({
194
- oldIndex: v,
195
- newIndex: C
245
+ oldIndex,
246
+ newIndex
196
247
  }) => {
197
- h("sort-end", v, C);
248
+ emit("sort-end", oldIndex, newIndex);
198
249
  }
199
250
  });
200
- }, p = (w) => {
201
- let v;
251
+ };
252
+ const render2 = (props2) => {
253
+ let _slot;
202
254
  const {
203
- columns: C,
204
- rowKey: R,
205
- tableData: m,
206
- pageInfo: g
207
- } = w, u = (x, e) => {
208
- var a;
209
- return x.slotName && ((a = l[x.slotName]) == null ? void 0 : a.call(l, e));
210
- }, r = (x) => x.filter((e) => !e.show || e.show(e)).map((e) => {
211
- const i = e, {
212
- children: a
213
- } = i, y = A(i, [
214
- "children"
215
- ]);
216
- return f(k("el-table-column"), y, {
217
- default: ($) => {
218
- if ((e == null ? void 0 : e.renderType) === "operate")
219
- return c(e, $);
220
- if (e != null && e.renderType && (e == null ? void 0 : e.renderType) !== "operate") {
221
- const Y = {
222
- renderType: e.renderType,
223
- prop: e.prop,
224
- config: e.config
225
- };
226
- return f(de, {
227
- conf: Y,
228
- model: $.row,
229
- onChange: e == null ? void 0 : e.change
230
- }, null);
255
+ columns,
256
+ rowKey,
257
+ tableData,
258
+ pageInfo
259
+ } = props2;
260
+ const columnSlots = (cell, scope) => {
261
+ var _a;
262
+ return cell.slotName && ((_a = slots[cell.slotName]) == null ? void 0 : _a.call(slots, scope));
263
+ };
264
+ const renderColumn = (columns2) => {
265
+ return columns2.filter((cell) => !cell.show || cell.show(cell)).map((cell) => {
266
+ const _a = cell, {
267
+ children
268
+ } = _a, cellConf = __objRest(_a, [
269
+ "children"
270
+ ]);
271
+ return createVNode(resolveComponent("el-table-column"), cellConf, {
272
+ default: (scope) => {
273
+ if ((cell == null ? void 0 : cell.renderType) === "operate")
274
+ return renderOperate(cell, scope);
275
+ if ((cell == null ? void 0 : cell.renderType) && (cell == null ? void 0 : cell.renderType) !== "operate") {
276
+ const conf = {
277
+ renderType: cell.renderType,
278
+ prop: cell.prop,
279
+ config: cell.config
280
+ };
281
+ return createVNode(_sfc_main$7, {
282
+ "conf": conf,
283
+ "model": scope.row,
284
+ "onChange": cell == null ? void 0 : cell.change
285
+ }, null);
286
+ }
287
+ if (cell == null ? void 0 : cell.render)
288
+ return cell == null ? void 0 : cell.render(scope.row);
289
+ if (children && (children == null ? void 0 : children.length) > 0)
290
+ return renderColumn(children);
291
+ return (cell == null ? void 0 : cell.slotName) && columnSlots(cell, scope);
231
292
  }
232
- return e != null && e.render ? e == null ? void 0 : e.render($.row) : a && (a == null ? void 0 : a.length) > 0 ? r(a) : (e == null ? void 0 : e.slotName) && u(e, $);
233
- }
293
+ });
234
294
  });
235
- }), c = (x, e) => {
236
- var a;
237
- return f("div", {
238
- class: "flex justify-center items-center cursor-pointer"
239
- }, [(a = x.operate) == null ? void 0 : a.filter((y) => !y.show || y.show(e.row)).map((y) => y != null && y.render ? y.render(e.row) : f("span", {
240
- onClick: be(() => {
241
- y != null && y.onClick && (y == null || y.onClick(e.row)), h("operate-handle", y.key, e.row);
242
- }, ["stop"]),
243
- class: "table-handle whitespace-nowrap"
244
- }, [z(" "), y.label, z(" ")]))]);
245
- }, U = () => {
246
- if (!g)
295
+ };
296
+ const renderOperate = (cell, scope) => {
297
+ var _a;
298
+ return createVNode("div", {
299
+ "class": "flex justify-center items-center cursor-pointer"
300
+ }, [(_a = cell.operate) == null ? void 0 : _a.filter((op) => !op.show || op.show(scope.row)).map((op) => {
301
+ if (op == null ? void 0 : op.render)
302
+ return op.render(scope.row);
303
+ return createVNode("span", {
304
+ "onClick": withModifiers(() => {
305
+ (op == null ? void 0 : op.onClick) && (op == null ? void 0 : op.onClick(scope.row));
306
+ emit("operate-handle", op.key, scope.row);
307
+ }, ["stop"]),
308
+ "class": "table-handle whitespace-nowrap"
309
+ }, [createTextVNode(" "), op.label, createTextVNode(" ")]);
310
+ })]);
311
+ };
312
+ const pagination = () => {
313
+ if (!pageInfo)
247
314
  return null;
248
- const x = (a) => {
249
- h("update-page", "pageSize", a);
250
- }, e = (a) => {
251
- h("update-page", "pageIndex", a);
315
+ const handleSizeChange = (e) => {
316
+ emit("update-page", "pageSize", e);
317
+ };
318
+ const handleCurrentChange = (e) => {
319
+ emit("update-page", "pageIndex", e);
252
320
  };
253
- return f("div", {
254
- class: "pagination-wrap"
255
- }, [f(k("el-pagination"), {
256
- currentPage: g.pageIndex,
257
- "onUpdate:currentPage": (a) => g.pageIndex = a,
258
- pageSize: g.pageSize,
259
- "onUpdate:pageSize": (a) => g.pageSize = a,
260
- small: !1,
261
- disabled: !1,
321
+ return createVNode("div", {
322
+ "class": "pagination-wrap"
323
+ }, [createVNode(resolveComponent("el-pagination"), {
324
+ "currentPage": pageInfo.pageIndex,
325
+ "onUpdate:currentPage": ($event) => pageInfo.pageIndex = $event,
326
+ "pageSize": pageInfo.pageSize,
327
+ "onUpdate:pageSize": ($event) => pageInfo.pageSize = $event,
328
+ "small": false,
329
+ "disabled": false,
262
330
  "page-sizes": [10, 20, 50, 100],
263
- layout: "total,sizes,prev, pager, next",
264
- background: !1,
265
- total: g.total,
266
- onSizeChange: x,
267
- onCurrentChange: e
331
+ "layout": "total,sizes,prev, pager, next",
332
+ "background": false,
333
+ "total": pageInfo.total,
334
+ "onSizeChange": handleSizeChange,
335
+ "onCurrentChange": handleCurrentChange
268
336
  }, null)]);
269
337
  };
270
- return f(L, null, [f(k("el-table"), D({
271
- ref: S
272
- }, d, {
273
- "row-key": R,
274
- data: m
275
- }), Ie(v = r(C)) ? v : {
276
- default: () => [v]
277
- }), U()]);
338
+ return createVNode(Fragment, null, [createVNode(resolveComponent("el-table"), mergeProps({
339
+ "ref": tableRef
340
+ }, attrs, {
341
+ "row-key": rowKey,
342
+ "data": tableData
343
+ }), _isSlot$1(_slot = renderColumn(columns)) ? _slot : {
344
+ default: () => [_slot]
345
+ }), pagination()]);
346
+ };
347
+ __expose({
348
+ tableRef
349
+ });
350
+ return (_ctx, _cache) => {
351
+ return openBlock(), createBlock(resolveDynamicComponent(render2(props)));
278
352
  };
279
- return o({
280
- tableRef: S
281
- }), (w, v) => (_(), F(j(p(s))));
282
353
  }
283
- }), ze = /* @__PURE__ */ P({
354
+ }));
355
+ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
284
356
  __name: "index",
285
357
  props: {
286
358
  searchColumns: {},
287
359
  searchParams: {},
288
360
  showSearchBtn: {
289
361
  type: Boolean,
290
- default: !0
362
+ default: true
291
363
  },
292
364
  showAddBtn: {
293
365
  type: Boolean,
294
- default: !0
366
+ default: true
295
367
  },
296
368
  style: {},
297
369
  labelStyle: {},
@@ -299,317 +371,382 @@ const Te = /* @__PURE__ */ P({
299
371
  classLabelName: {}
300
372
  },
301
373
  emits: ["search", "add"],
302
- setup(n, {
303
- emit: o
374
+ setup(__props, {
375
+ emit: __emit
304
376
  }) {
305
- const t = ne(), s = n, l = o, d = (S) => {
377
+ const slots = useSlots();
378
+ const props = __props;
379
+ const emit = __emit;
380
+ const render2 = (props2) => {
306
381
  const {
307
- searchColumns: h,
308
- searchParams: b,
309
- showSearchBtn: p,
310
- showAddBtn: w,
311
- style: v,
312
- labelStyle: C,
313
- className: R,
314
- classLabelName: m
315
- } = S;
316
- return f(L, null, [f("div", {
317
- class: "table-search flex gap-10"
318
- }, [((u) => u.filter((r) => !r.show || r.show()).map((r) => {
319
- var U, x;
320
- const c = {
321
- renderType: r.renderType,
322
- prop: r.key,
323
- config: r.config
324
- };
325
- return f("div", {
326
- class: `flex items-center search-item ${R != null ? R : ""} ${(U = r.className) != null ? U : ""}`,
327
- style: V(V({}, v), r.style)
328
- }, [f("span", {
329
- class: `whitespace-nowrap label ${m != null ? m : ""} ${(x = r.classLabelName) != null ? x : ""}`,
330
- style: V(V({}, C), r.labelStyle)
331
- }, [z(" "), r.label, z(" ")]), f(de, {
332
- class: r.componentClassName,
333
- style: r.componentStyle,
334
- conf: c,
335
- model: b,
336
- onChange: r == null ? void 0 : r.change
337
- }, null)]);
338
- }))(h), p && f(k("el-button"), {
339
- onClick: () => l("search"),
340
- class: "search-item"
382
+ searchColumns,
383
+ searchParams,
384
+ showSearchBtn,
385
+ showAddBtn,
386
+ style,
387
+ labelStyle,
388
+ className,
389
+ classLabelName
390
+ } = props2;
391
+ const renderColumn = (searchColumns2) => {
392
+ return searchColumns2.filter((cell) => !cell.show || cell.show()).map((cell) => {
393
+ var _a, _b;
394
+ const conf = {
395
+ renderType: cell.renderType,
396
+ prop: cell.key,
397
+ config: cell.config
398
+ };
399
+ return createVNode("div", {
400
+ "class": `flex items-center search-item ${className != null ? className : ""} ${(_a = cell.className) != null ? _a : ""}`,
401
+ "style": __spreadValues(__spreadValues({}, style), cell.style)
402
+ }, [createVNode("span", {
403
+ "class": `whitespace-nowrap label ${classLabelName != null ? classLabelName : ""} ${(_b = cell.classLabelName) != null ? _b : ""}`,
404
+ "style": __spreadValues(__spreadValues({}, labelStyle), cell.labelStyle)
405
+ }, [createTextVNode(" "), cell.label, createTextVNode(" ")]), createVNode(_sfc_main$7, {
406
+ "class": cell.componentClassName,
407
+ "style": cell.componentStyle,
408
+ "conf": conf,
409
+ "model": searchParams,
410
+ "onChange": cell == null ? void 0 : cell.change
411
+ }, null)]);
412
+ });
413
+ };
414
+ return createVNode(Fragment, null, [createVNode("div", {
415
+ "class": "table-search flex gap-10"
416
+ }, [renderColumn(searchColumns), showSearchBtn && createVNode(resolveComponent("el-button"), {
417
+ "onClick": () => emit("search"),
418
+ "class": "search-item"
341
419
  }, {
342
- default: () => [z("搜索"), " "]
343
- }), w && f(k("el-button"), {
344
- class: "search-item",
345
- onClick: () => l("add")
420
+ default: () => [createTextVNode("搜索"), " "]
421
+ }), showAddBtn && createVNode(resolveComponent("el-button"), {
422
+ "class": "search-item",
423
+ "onClick": () => emit("add")
346
424
  }, {
347
- default: () => [z("添加")]
348
- }), t.default && t.default()])]);
425
+ default: () => [createTextVNode("添加")]
426
+ }), slots.default && slots.default()])]);
427
+ };
428
+ return (_ctx, _cache) => {
429
+ return openBlock(), createBlock(resolveDynamicComponent(render2(props)));
349
430
  };
350
- return (S, h) => (_(), F(j(d(s))));
351
431
  }
352
- }), Re = /* @__PURE__ */ Z(ze, [["__scopeId", "data-v-c70da20e"]]), Ue = {
353
- required: Le,
354
- isNumber: De,
355
- isInt: Ee,
356
- maxNumber: Oe,
357
- minNumber: Pe,
358
- reg: Be
432
+ });
433
+ const index$1 = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-c70da20e"]]);
434
+ const ruleMap = {
435
+ required: rule_required,
436
+ isNumber: rule_isNumber,
437
+ isInt: rule_isInt,
438
+ maxNumber: rule_maxNumber,
439
+ minNumber: rule_minNumber,
440
+ reg: rule_reg
359
441
  };
360
- function je(n, o, t) {
361
- return Ue[o](n, t);
442
+ function formatRule(label, ruleName, value) {
443
+ return ruleMap[ruleName](label, value);
362
444
  }
363
- function Le(n) {
364
- return { required: !0, message: `请输入${n}`, trigger: ["blur", "change"] };
445
+ function rule_required(label) {
446
+ return { required: true, message: `请输入${label}`, trigger: ["blur", "change"] };
365
447
  }
366
- function De(n) {
448
+ function rule_isNumber(label) {
367
449
  return {
368
- validator: (o, t, s) => {
369
- if (Number.isNaN(+t)) {
370
- s(new Error(`${n}必须是数字类型`));
450
+ validator: (rule, value, callback) => {
451
+ if (Number.isNaN(+value)) {
452
+ callback(new Error(`${label}必须是数字类型`));
371
453
  return;
372
454
  }
373
- s();
455
+ callback();
374
456
  },
375
457
  trigger: "blur"
376
458
  };
377
459
  }
378
- function Ee(n) {
460
+ function rule_isInt(label) {
379
461
  return {
380
- validator: (o, t, s) => {
381
- if (t % 1 !== 0) {
382
- s(new Error(`${n}必须是整数类型`));
462
+ validator: (rule, value, callback) => {
463
+ if (value % 1 !== 0) {
464
+ callback(new Error(`${label}必须是整数类型`));
383
465
  return;
384
466
  }
385
- s();
467
+ callback();
386
468
  },
387
469
  trigger: "blur"
388
470
  };
389
471
  }
390
- function Oe(n, o) {
472
+ function rule_maxNumber(label, maxNumber) {
391
473
  return {
392
- validator: (t, s, l) => {
393
- if (+s > +o) {
394
- l(new Error(`${n}的值必须小于${o}`));
474
+ validator: (rule, value, callback) => {
475
+ if (+value > +maxNumber) {
476
+ callback(new Error(`${label}的值必须小于${maxNumber}`));
395
477
  return;
396
478
  }
397
- l();
479
+ callback();
398
480
  },
399
481
  trigger: "blur"
400
482
  };
401
483
  }
402
- function Pe(n, o) {
484
+ function rule_minNumber(label, minNumber) {
403
485
  return {
404
- validator: (t, s, l) => {
405
- if (+s < +o) {
406
- l(new Error(`${n}的值必须大于${o}`));
486
+ validator: (rule, value, callback) => {
487
+ if (+value < +minNumber) {
488
+ callback(new Error(`${label}的值必须大于${minNumber}`));
407
489
  return;
408
490
  }
409
- l();
491
+ callback();
410
492
  },
411
493
  trigger: "blur"
412
494
  };
413
495
  }
414
- function Be(n, o) {
496
+ function rule_reg(label, reg) {
415
497
  return {
416
- validator: (t, s, l) => {
417
- if (!o.test(s)) {
418
- l(new Error("校验不通过"));
498
+ validator: (rule, value, callback) => {
499
+ if (!reg.test(value)) {
500
+ callback(new Error(`校验不通过`));
419
501
  return;
420
502
  }
421
- l();
503
+ callback();
422
504
  },
423
505
  trigger: "blur"
424
506
  };
425
507
  }
426
- const qe = {
508
+ const _hoisted_1$2 = {
427
509
  xmlns: "http://www.w3.org/2000/svg",
428
510
  width: "16",
429
511
  height: "16",
430
512
  class: "icon",
431
513
  viewBox: "0 0 1024 1024"
432
- }, Ae = /* @__PURE__ */ I("path", {
514
+ };
515
+ const _hoisted_2$2 = /* @__PURE__ */ createElementVNode("path", {
433
516
  fill: "#707070",
434
517
  d: "M511.666 64.673c-246.535 0-446.39 199.856-446.39 446.39 0 246.536 199.855 446.393 446.39 446.393s446.392-199.857 446.392-446.392S758.203 64.673 511.666 64.673m0 836.878c-215.66 0-390.487-174.827-390.487-390.488 0-215.66 174.827-390.487 390.487-390.487s390.488 174.827 390.488 390.487c0 215.661-174.828 390.488-390.488 390.488m-86.894-485.188s14.002-86.168 100.17-76.474c86.168 9.694 66.78 74.32 58.163 87.245-8.616 21.542-88.323 73.243-101.247 104.479-12.925 31.236-11.848 89.4-11.848 89.4h77.551s-4.308-61.395 38.776-87.246c43.084-25.85 116.326-101.247 84.014-173.413-51.701-82.937-102.324-91.554-168.028-89.4-65.703 2.155-134.638 34.468-157.257 134.639 53.855 7.538 79.706 10.77 79.706 10.77m44.16 233.73h80.783v88.311h-80.782v-88.31z"
435
- }, null, -1), Ye = [
436
- Ae
518
+ }, null, -1);
519
+ const _hoisted_3$1 = [
520
+ _hoisted_2$2
437
521
  ];
438
- function Ke(n, o) {
439
- return _(), N("svg", qe, Ye);
522
+ function render(_ctx, _cache) {
523
+ return openBlock(), createElementBlock("svg", _hoisted_1$2, _hoisted_3$1);
440
524
  }
441
- const Me = { render: Ke }, He = {
525
+ const HelpIcon = { render };
526
+ const _hoisted_1$1 = {
442
527
  key: 0,
443
528
  style: { "margin-left": "4px" }
444
- }, We = ["slot"], Ge = /* @__PURE__ */ P({
529
+ };
530
+ const _hoisted_2$1 = ["slot"];
531
+ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
445
532
  __name: "form",
446
533
  props: {
447
534
  formConfig: {},
448
535
  status: {},
449
536
  formData: {}
450
537
  },
451
- setup(n, { expose: o }) {
452
- const t = ["date-picker"], s = n, l = O(), d = O(b()), S = p(), h = ve(() => {
453
- const u = s.formConfig.compList, r = {};
454
- return u.forEach((c) => {
455
- (typeof c.hidden == "function" ? !c.hidden(d.value, s.status) : !c.hidden) && c.name && (r[c.name] = d.value[c.name]);
456
- }), r;
538
+ setup(__props, { expose: __expose }) {
539
+ const hasNoComp = ["date-picker"];
540
+ const props = __props;
541
+ const formRef = ref();
542
+ const form2 = ref(getForm());
543
+ const rules = getRules();
544
+ const formValue = computed(() => {
545
+ const compList = props.formConfig.compList;
546
+ const showFormValue = {};
547
+ compList.forEach((item) => {
548
+ if (typeof item.hidden === "function" ? !item.hidden(form2.value, props.status) : !item.hidden) {
549
+ item.name && (showFormValue[item.name] = form2.value[item.name]);
550
+ }
551
+ });
552
+ return showFormValue;
457
553
  });
458
- function b() {
459
- return s.status === "ADD" ? v() : s.formData;
554
+ function getForm() {
555
+ return props.status === "ADD" ? initForm() : props.formData;
460
556
  }
461
- function p() {
462
- return C();
557
+ function getRules() {
558
+ return initRules();
463
559
  }
464
- function w() {
465
- d.value = v();
560
+ function resetForm() {
561
+ form2.value = initForm();
466
562
  }
467
- function v() {
468
- const u = s.formConfig.compList, r = {};
469
- return u.forEach((c) => {
470
- c.name && (r[c.name] = c.defaultValue);
471
- }), r;
563
+ function initForm() {
564
+ const list = props.formConfig.compList;
565
+ const form22 = {};
566
+ list.forEach((item) => {
567
+ item.name && (form22[item.name] = item.defaultValue);
568
+ });
569
+ return form22;
472
570
  }
473
- function C() {
474
- const u = s.formConfig.compList, r = {};
475
- return u.forEach((c) => {
476
- var e, a, y;
477
- const U = ((e = c.rule) == null ? void 0 : e.constructor) === Object && Object.keys(c.rule).length > 0, x = Array.isArray(c.customRules) && c.customRules.length > 0;
478
- if ((U || x) && !r[c.name] && (r[c.name] = []), U)
479
- for (const i in c.rule) {
480
- if (c.rule[i] === !1)
571
+ function initRules() {
572
+ const list = props.formConfig.compList;
573
+ const rules2 = {};
574
+ list.forEach((item) => {
575
+ var _a, _b, _c;
576
+ const hasRules = ((_a = item.rule) == null ? void 0 : _a.constructor) === Object && Object.keys(item.rule).length > 0;
577
+ const hasCustomRules = Array.isArray(item.customRules) && item.customRules.length > 0;
578
+ if (hasRules || hasCustomRules) {
579
+ !rules2[item.name] && (rules2[item.name] = []);
580
+ }
581
+ if (hasRules) {
582
+ for (const ruleName in item.rule) {
583
+ if (item.rule[ruleName] === false)
481
584
  break;
482
- const $ = typeof c.label == "function" ? g(c.label) : c.label;
483
- (a = r[c.name]) == null || a.push(je($, i, c.rule[i]));
585
+ const label = typeof item.label === "function" ? handleFn(item.label) : item.label;
586
+ (_b = rules2[item.name]) == null ? void 0 : _b.push(formatRule(label, ruleName, item.rule[ruleName]));
484
587
  }
485
- x && ((y = c.customRules) == null || y.forEach((i) => {
486
- var $;
487
- ($ = r[c.name]) == null || $.push(i);
488
- }));
489
- }), r;
588
+ }
589
+ if (hasCustomRules) {
590
+ (_c = item.customRules) == null ? void 0 : _c.forEach((cRule) => {
591
+ var _a2;
592
+ (_a2 = rules2[item.name]) == null ? void 0 : _a2.push(cRule);
593
+ });
594
+ }
595
+ });
596
+ return rules2;
490
597
  }
491
- function R() {
492
- return new Promise((u, r) => {
493
- l.value.validate((c) => {
494
- c ? u("") : r();
598
+ function validateForm() {
599
+ return new Promise((resolve, reject) => {
600
+ formRef.value.validate((valid) => {
601
+ valid ? resolve("") : reject();
495
602
  });
496
603
  });
497
604
  }
498
- function m(u) {
499
- return u.filter((r) => !g(r.hidden));
605
+ function formShow(compList) {
606
+ return compList.filter((i) => !handleFn(i.hidden));
500
607
  }
501
- function g(u) {
502
- return typeof u == "function" ? u(d.value, s.status) : u;
608
+ function handleFn(fields) {
609
+ return typeof fields === "function" ? fields(form2.value, props.status) : fields;
503
610
  }
504
- return ie(
505
- () => d,
611
+ watch(
612
+ () => form2,
506
613
  () => {
507
- v();
614
+ initForm();
508
615
  },
509
616
  {
510
- deep: !0
617
+ deep: true
511
618
  }
512
- ), o({
513
- form: d,
514
- formValue: h,
515
- resetForm: w,
516
- validateForm: R
517
- }), (u, r) => {
518
- const c = k("el-popover"), U = k("el-form-item"), x = k("el-form");
519
- return _(), F(x, D({
619
+ );
620
+ __expose({
621
+ form: form2,
622
+ formValue,
623
+ resetForm,
624
+ validateForm
625
+ });
626
+ return (_ctx, _cache) => {
627
+ const _component_el_popover = resolveComponent("el-popover");
628
+ const _component_el_form_item = resolveComponent("el-form-item");
629
+ const _component_el_form = resolveComponent("el-form");
630
+ return openBlock(), createBlock(_component_el_form, mergeProps({
520
631
  ref_key: "formRef",
521
- ref: l,
522
- model: d.value
523
- }, u.formConfig.formProps, { rules: X(S) }), {
524
- default: T(() => [
525
- I("div", {
632
+ ref: formRef,
633
+ model: form2.value
634
+ }, _ctx.formConfig.formProps, { rules: unref(rules) }), {
635
+ default: withCtx(() => [
636
+ createElementVNode("div", {
526
637
  class: "form-wrap",
527
- style: Q(u.formConfig.wrapStyle)
638
+ style: normalizeStyle(_ctx.formConfig.wrapStyle)
528
639
  }, [
529
- (_(!0), N(L, null, q(m(u.formConfig.compList), (e) => (_(), N("div", {
530
- class: "form-item",
531
- key: e.name,
532
- style: Q(V(V({}, u.formConfig.itemStyle), e.style))
533
- }, [
534
- f(U, D(V(V({}, u.formConfig.formItemProps), e.formItemProps), {
535
- prop: e.name,
536
- style: u.formConfig.formItemStyle,
537
- class: u.formConfig.layout
538
- }), {
539
- label: T(() => [
540
- I("span", {
541
- style: Q(e.labelStyle)
542
- }, E(g(e.label)), 5),
543
- e.hint ? (_(), F(c, {
544
- key: 0,
545
- placement: "top-start",
546
- trigger: "hover",
547
- content: e.hint
548
- }, {
549
- reference: T(() => [
550
- e.hint ? (_(), N("span", He, [
551
- f(X(Me), { color: "#ccc" })
552
- ])) : B("", !0)
553
- ]),
554
- _: 2
555
- }, 1032, ["content"])) : B("", !0)
556
- ]),
557
- default: T(() => [
558
- e.slotName ? te(u.$slots, e.slotName, {
559
- key: 0,
560
- form: d.value
561
- }, void 0, !0) : t.includes(e.ctype || "") ? (_(), F(j(`el-${e.ctype}`), D({ key: 1 }, e.config, {
562
- modelValue: d.value[e.name],
563
- "onUpdate:modelValue": (a) => d.value[e.name] = a
564
- }), null, 16, ["modelValue", "onUpdate:modelValue"])) : (_(), F(j(`el-${e.ctype}`), D({ key: 2 }, e.config, {
565
- disabled: g(e.disabled),
566
- modelValue: d.value[e.name],
567
- "onUpdate:modelValue": (a) => d.value[e.name] = a,
568
- onKeyup: we((a) => g(e == null ? void 0 : e.enter), ["enter"])
569
- }, Se(e.event)), {
570
- default: T(() => [
571
- e.ctype === "select" ? (_(!0), N(L, { key: 0 }, q(e.selectOptions, (a) => (_(), F(j("el-option"), {
572
- key: a.value,
573
- label: a.label,
574
- value: a.value
575
- }, null, 8, ["label", "value"]))), 128)) : B("", !0),
576
- e.ctype === "radio-group" ? (_(!0), N(L, { key: 1 }, q(e.radioList, (a) => (_(), F(j("el-radio"), {
577
- key: a.value,
578
- label: a.value
579
- }, {
580
- default: T(() => [
581
- z(E(a.label), 1)
582
- ]),
583
- _: 2
584
- }, 1032, ["label"]))), 128)) : B("", !0),
585
- e.ctype === "checkbox-group" ? (_(!0), N(L, { key: 2 }, q(e.checkboxList, (a) => (_(), F(j("el-checkbox"), {
586
- key: a,
587
- label: a
588
- }, null, 8, ["label"]))), 128)) : B("", !0),
589
- e.ctype === "input" ? (_(!0), N(L, { key: 3 }, q((e.slots || []).filter((a) => a.type === "text"), (a) => (_(), N("div", {
590
- slot: a.name,
591
- key: a.name
592
- }, E(a.inner), 9, We))), 128)) : B("", !0)
593
- ]),
594
- _: 2
595
- }, 1040, ["disabled", "modelValue", "onUpdate:modelValue", "onKeyup"]))
596
- ]),
597
- _: 2
598
- }, 1040, ["prop", "style", "class"])
599
- ], 4))), 128))
640
+ (openBlock(true), createElementBlock(Fragment, null, renderList(formShow(_ctx.formConfig.compList), (item) => {
641
+ return openBlock(), createElementBlock("div", {
642
+ class: "form-item",
643
+ key: item.name,
644
+ style: normalizeStyle(__spreadValues(__spreadValues({}, _ctx.formConfig.itemStyle), item.style))
645
+ }, [
646
+ createVNode(_component_el_form_item, mergeProps(__spreadValues(__spreadValues({}, _ctx.formConfig.formItemProps), item.formItemProps), {
647
+ prop: item.name,
648
+ style: _ctx.formConfig.formItemStyle,
649
+ class: _ctx.formConfig.layout
650
+ }), {
651
+ label: withCtx(() => [
652
+ createElementVNode("span", {
653
+ style: normalizeStyle(item.labelStyle)
654
+ }, toDisplayString(handleFn(item.label)), 5),
655
+ item.hint ? (openBlock(), createBlock(_component_el_popover, {
656
+ key: 0,
657
+ placement: "top-start",
658
+ trigger: "hover",
659
+ content: item.hint
660
+ }, {
661
+ reference: withCtx(() => [
662
+ item.hint ? (openBlock(), createElementBlock("span", _hoisted_1$1, [
663
+ createVNode(unref(HelpIcon), { color: "#ccc" })
664
+ ])) : createCommentVNode("", true)
665
+ ]),
666
+ _: 2
667
+ }, 1032, ["content"])) : createCommentVNode("", true)
668
+ ]),
669
+ default: withCtx(() => [
670
+ item.slotName ? renderSlot(_ctx.$slots, item.slotName, {
671
+ key: 0,
672
+ form: form2.value
673
+ }, void 0, true) : hasNoComp.includes(item.ctype || "") ? (openBlock(), createBlock(resolveDynamicComponent(`el-${item.ctype}`), mergeProps({ key: 1 }, item.config, {
674
+ modelValue: form2.value[item.name],
675
+ "onUpdate:modelValue": ($event) => form2.value[item.name] = $event
676
+ }), null, 16, ["modelValue", "onUpdate:modelValue"])) : (openBlock(), createBlock(resolveDynamicComponent(`el-${item.ctype}`), mergeProps({ key: 2 }, item.config, {
677
+ disabled: handleFn(item.disabled),
678
+ modelValue: form2.value[item.name],
679
+ "onUpdate:modelValue": ($event) => form2.value[item.name] = $event,
680
+ onKeyup: withKeys(($event) => handleFn(item == null ? void 0 : item.enter), ["enter"])
681
+ }, toHandlers(item.event)), {
682
+ default: withCtx(() => [
683
+ item.ctype === "select" ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(item.selectOptions, (option) => {
684
+ return openBlock(), createBlock(resolveDynamicComponent("el-option"), {
685
+ key: option.value,
686
+ label: option.label,
687
+ value: option.value
688
+ }, null, 8, ["label", "value"]);
689
+ }), 128)) : createCommentVNode("", true),
690
+ item.ctype === "radio-group" ? (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(item.radioList, (radio) => {
691
+ return openBlock(), createBlock(resolveDynamicComponent("el-radio"), {
692
+ key: radio.value,
693
+ label: radio.value
694
+ }, {
695
+ default: withCtx(() => [
696
+ createTextVNode(toDisplayString(radio.label), 1)
697
+ ]),
698
+ _: 2
699
+ }, 1032, ["label"]);
700
+ }), 128)) : createCommentVNode("", true),
701
+ item.ctype === "checkbox-group" ? (openBlock(true), createElementBlock(Fragment, { key: 2 }, renderList(item.checkboxList, (box) => {
702
+ return openBlock(), createBlock(resolveDynamicComponent("el-checkbox"), {
703
+ key: box,
704
+ label: box
705
+ }, null, 8, ["label"]);
706
+ }), 128)) : createCommentVNode("", true),
707
+ item.ctype === "input" ? (openBlock(true), createElementBlock(Fragment, { key: 3 }, renderList((item.slots || []).filter((i) => i.type === "text"), (st) => {
708
+ return openBlock(), createElementBlock("div", {
709
+ slot: st.name,
710
+ key: st.name
711
+ }, toDisplayString(st.inner), 9, _hoisted_2$1);
712
+ }), 128)) : createCommentVNode("", true)
713
+ ]),
714
+ _: 2
715
+ }, 1040, ["disabled", "modelValue", "onUpdate:modelValue", "onKeyup"]))
716
+ ]),
717
+ _: 2
718
+ }, 1040, ["prop", "style", "class"])
719
+ ], 4);
720
+ }), 128))
600
721
  ], 4)
601
722
  ]),
602
723
  _: 3
603
724
  }, 16, ["model", "rules"]);
604
725
  };
605
726
  }
606
- }), Je = /* @__PURE__ */ Z(Ge, [["__scopeId", "data-v-a47302d3"]]);
607
- let pe, fe, Qe;
608
- const Xe = () => {
609
- localStorage.setItem(pe, fe), window.location.reload(!0);
610
- }, Ze = () => {
611
- Qe.unmount(), document.body.removeChild(document.querySelector("#update")), localStorage.setItem(pe, fe);
612
- }, et = (n) => (Ce("data-v-ebf4f18f"), n = n(), xe(), n), tt = { class: "update-wrap flex items-center justify-center" }, nt = { class: "relative update-content" }, ot = { class: "flex items-center justify-center" }, rt = { class: "flex flex-col gap-5 mt-10" }, at = { class: "update-title" }, st = { class: "update-item px-20" }, lt = { class: "text-end" }, ut = { class: "flex justify-end items-center mt-10" }, it = /* @__PURE__ */ et(() => /* @__PURE__ */ I("span", { class: "tips mt-10" }, "提示: 选择立即更新后,会立即刷新页面更新系统,当前页面缓存数据会消失选择暂不更新后,请稍后自行刷新页面更新系统。", -1)), ct = /* @__PURE__ */ P({
727
+ });
728
+ const form = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-a47302d3"]]);
729
+ let versionKey, curVersion, updateApp;
730
+ const updateSysVersion = () => {
731
+ localStorage.setItem(versionKey, curVersion);
732
+ window.location.reload(true);
733
+ };
734
+ const delayUpdateSysVersion = () => {
735
+ updateApp.unmount();
736
+ document.body.removeChild(document.querySelector("#update"));
737
+ localStorage.setItem(versionKey, curVersion);
738
+ };
739
+ const _withScopeId = (n) => (pushScopeId("data-v-ebf4f18f"), n = n(), popScopeId(), n);
740
+ const _hoisted_1 = { class: "update-wrap flex items-center justify-center" };
741
+ const _hoisted_2 = { class: "relative update-content" };
742
+ const _hoisted_3 = { class: "flex items-center justify-center" };
743
+ const _hoisted_4 = { class: "flex flex-col gap-5 mt-10" };
744
+ const _hoisted_5 = { class: "update-title" };
745
+ const _hoisted_6 = { class: "update-item px-20" };
746
+ const _hoisted_7 = { class: "text-end" };
747
+ const _hoisted_8 = { class: "flex justify-end items-center mt-10" };
748
+ const _hoisted_9 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "tips mt-10" }, "提示: 选择立即更新后,会立即刷新页面更新系统,当前页面缓存数据会消失选择暂不更新后,请稍后自行刷新页面更新系统。", -1));
749
+ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
613
750
  __name: "index",
614
751
  props: {
615
752
  title: {},
@@ -617,45 +754,50 @@ const Xe = () => {
617
754
  content: {},
618
755
  time: {}
619
756
  },
620
- setup(n) {
621
- const o = n;
622
- return console.log(o), (t, s) => {
623
- const l = k("el-button");
624
- return _(), N("div", tt, [
625
- I("div", nt, [
626
- I("div", ot, E(o == null ? void 0 : o.title), 1),
627
- I("div", rt, [
628
- I("div", at, E(o == null ? void 0 : o.description), 1),
629
- (_(!0), N(L, null, q(o == null ? void 0 : o.content, (d, S) => (_(), N("div", st, [
630
- I("span", null, E(S) + ":", 1),
631
- z(),
632
- I("span", null, E(d), 1)
633
- ]))), 256)),
634
- I("div", lt, E(o.time) + " 软件专业部", 1),
635
- I("div", ut, [
636
- f(l, {
757
+ setup(__props) {
758
+ const props = __props;
759
+ console.log(props);
760
+ return (_ctx, _cache) => {
761
+ const _component_el_button = resolveComponent("el-button");
762
+ return openBlock(), createElementBlock("div", _hoisted_1, [
763
+ createElementVNode("div", _hoisted_2, [
764
+ createElementVNode("div", _hoisted_3, toDisplayString(props == null ? void 0 : props.title), 1),
765
+ createElementVNode("div", _hoisted_4, [
766
+ createElementVNode("div", _hoisted_5, toDisplayString(props == null ? void 0 : props.description), 1),
767
+ (openBlock(true), createElementBlock(Fragment, null, renderList(props == null ? void 0 : props.content, (item, key) => {
768
+ return openBlock(), createElementBlock("div", _hoisted_6, [
769
+ createElementVNode("span", null, toDisplayString(key) + ":", 1),
770
+ createTextVNode(),
771
+ createElementVNode("span", null, toDisplayString(item), 1)
772
+ ]);
773
+ }), 256)),
774
+ createElementVNode("div", _hoisted_7, toDisplayString(props.time) + " 软件专业部", 1),
775
+ createElementVNode("div", _hoisted_8, [
776
+ createVNode(_component_el_button, {
637
777
  plain: "",
638
- onClick: X(Ze)
778
+ onClick: unref(delayUpdateSysVersion)
639
779
  }, {
640
- default: T(() => [
641
- z("暂不更新")
780
+ default: withCtx(() => [
781
+ createTextVNode("暂不更新")
642
782
  ]),
643
783
  _: 1
644
784
  }, 8, ["onClick"]),
645
- f(l, { onClick: X(Xe) }, {
646
- default: T(() => [
647
- z("立即更新")
785
+ createVNode(_component_el_button, { onClick: unref(updateSysVersion) }, {
786
+ default: withCtx(() => [
787
+ createTextVNode("立即更新")
648
788
  ]),
649
789
  _: 1
650
790
  }, 8, ["onClick"])
651
791
  ]),
652
- it
792
+ _hoisted_9
653
793
  ])
654
794
  ])
655
795
  ]);
656
796
  };
657
797
  }
658
- }), dt = /* @__PURE__ */ Z(ct, [["__scopeId", "data-v-ebf4f18f"]]), pt = {
798
+ });
799
+ const Update = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-ebf4f18f"]]);
800
+ const _sfc_main$2 = {
659
801
  props: {
660
802
  color: {
661
803
  type: String,
@@ -667,15 +809,16 @@ const Xe = () => {
667
809
  }
668
810
  }
669
811
  };
670
- function ft(n, o, t, s, l, d) {
671
- return _(), N("i", {
812
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
813
+ return openBlock(), createElementBlock("i", {
672
814
  class: "yx-icon",
673
- style: Q([{ "--color": t.color, "font-size": t.size + "px" }])
815
+ style: normalizeStyle([{ "--color": $props.color, "font-size": $props.size + "px" }])
674
816
  }, [
675
- te(n.$slots, "default", {}, void 0, !0)
817
+ renderSlot(_ctx.$slots, "default", {}, void 0, true)
676
818
  ], 4);
677
819
  }
678
- const mt = /* @__PURE__ */ Z(pt, [["render", ft], ["__scopeId", "data-v-75aef834"]]), ht = /* @__PURE__ */ P({
820
+ const index = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["render", _sfc_render], ["__scopeId", "data-v-75aef834"]]);
821
+ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
679
822
  __name: "index",
680
823
  props: {
681
824
  uploadTips: {},
@@ -684,38 +827,54 @@ const mt = /* @__PURE__ */ Z(pt, [["render", ft], ["__scopeId", "data-v-75aef834
684
827
  }
685
828
  },
686
829
  emits: ["update:fileObsUrl"],
687
- setup(n, {
688
- emit: o
830
+ setup(__props, {
831
+ emit: __emit
689
832
  }) {
690
- const t = oe(), s = O([]), l = n, d = O(""), S = o, h = (w) => J(this, [w], function* ({
691
- file: p
833
+ const attrs = useAttrs();
834
+ const fileList = ref([]);
835
+ const props = __props;
836
+ const fileObsUrl = ref("");
837
+ const emit = __emit;
838
+ const uploadFile = (_0) => __async(this, [_0], function* ({
839
+ file
692
840
  }) {
693
- const v = new FormData();
694
- v.append("file", p);
841
+ const fromData = new FormData();
842
+ fromData.append("file", file);
695
843
  const {
696
- data: C
697
- } = yield Ve(v);
698
- d.value = C.fileUrl, S("update:fileObsUrl", d.value);
699
- }), b = (p) => f(k("el-upload"), D({
700
- class: "w-full h-full",
701
- "http-request": h,
702
- "file-list": s.value
703
- }, t), {
704
- trigger: () => p == null ? void 0 : p.render(d.value),
705
- tip: () => f("div", {
706
- class: "el-upload__tip"
707
- }, [p == null ? void 0 : p.uploadTips])
844
+ data
845
+ } = yield uploadResourceApi(fromData);
846
+ fileObsUrl.value = data.fileUrl;
847
+ emit("update:fileObsUrl", fileObsUrl.value);
708
848
  });
709
- return (p, w) => (_(), F(j(b(l)), {
710
- "model-value": d.value
711
- }, null, 8, ["model-value"]));
849
+ const render2 = (props2) => {
850
+ return createVNode(resolveComponent("el-upload"), mergeProps({
851
+ "class": "w-full h-full",
852
+ "http-request": uploadFile,
853
+ "file-list": fileList.value
854
+ }, attrs), {
855
+ trigger: () => {
856
+ return props2 == null ? void 0 : props2.render(fileObsUrl.value);
857
+ },
858
+ tip: () => {
859
+ return createVNode("div", {
860
+ "class": "el-upload__tip"
861
+ }, [props2 == null ? void 0 : props2.uploadTips]);
862
+ }
863
+ });
864
+ };
865
+ return (_ctx, _cache) => {
866
+ return openBlock(), createBlock(resolveDynamicComponent(render2(props)), {
867
+ "model-value": fileObsUrl.value
868
+ }, null, 8, ["model-value"]);
869
+ };
712
870
  }
713
871
  });
714
- function ue(n) {
715
- return typeof n == "function" || Object.prototype.toString.call(n) === "[object Object]" && !ce(n);
872
+ function _isSlot(s) {
873
+ return typeof s === "function" || Object.prototype.toString.call(s) === "[object Object]" && !isVNode(s);
716
874
  }
717
- const gt = /* @__PURE__ */ P({
718
- name: "YxForm",
875
+ const _sfc_main = /* @__PURE__ */ defineComponent(__spreadProps(__spreadValues({}, {
876
+ name: "YxForm"
877
+ }), {
719
878
  __name: "index",
720
879
  props: {
721
880
  formParams: {},
@@ -733,175 +892,222 @@ const gt = /* @__PURE__ */ P({
733
892
  },
734
893
  rules: {}
735
894
  },
736
- setup(n, {
737
- expose: o
895
+ setup(__props, {
896
+ expose: __expose
738
897
  }) {
739
- let t = O({});
740
- const s = O({}), l = () => {
898
+ let formData = ref({});
899
+ const formRules = ref({});
900
+ const initForm = () => {
741
901
  const {
742
- formList: m,
743
- formParams: g
744
- } = h;
745
- !g || Object.keys(g).length === 0 ? m.forEach((u) => t.value[u.prop] = "") : t.value = g, console.log("initForm", t);
746
- }, d = ne(), S = oe(), h = n, b = () => {
747
- let m = {};
902
+ formList,
903
+ formParams
904
+ } = props;
905
+ if (!formParams || Object.keys(formParams).length === 0) {
906
+ formList.forEach((item) => formData.value[item.prop] = "");
907
+ } else {
908
+ formData.value = formParams;
909
+ }
910
+ console.log("initForm", formData);
911
+ };
912
+ const slots = useSlots();
913
+ const attrs = useAttrs();
914
+ const props = __props;
915
+ const getRules = () => {
916
+ let rules = {};
748
917
  const {
749
- formList: g
750
- } = h;
751
- g.forEach((u) => {
752
- if (u.children && u.children.length > 0 && u.children.forEach((r) => {
753
- if (r.required) {
754
- const c = {
755
- required: !0,
756
- message: `${r.label}不能为空`,
757
- trigger: "blur"
758
- };
759
- m[r.prop] = [c], r.rules && (m[r.prop] = [...m[r.prop], ...r.rules]);
760
- }
761
- }), u.required) {
762
- const r = {
763
- required: !0,
764
- message: `${u.label}不能为空`,
918
+ formList
919
+ } = props;
920
+ formList.forEach((form2) => {
921
+ if (form2.children && form2.children.length > 0) {
922
+ form2.children.forEach((item) => {
923
+ if (item.required) {
924
+ const defaultRule = {
925
+ required: true,
926
+ message: `${item.label}不能为空`,
927
+ trigger: "blur"
928
+ };
929
+ rules[item.prop] = [defaultRule];
930
+ if (item.rules) {
931
+ rules[item.prop] = [...rules[item.prop], ...item.rules];
932
+ }
933
+ }
934
+ });
935
+ }
936
+ if (form2.required) {
937
+ const defaultRule = {
938
+ required: true,
939
+ message: `${form2.label}不能为空`,
765
940
  trigger: "blur"
766
941
  };
767
- m[u.prop] = [r], u.rules && (m[u.prop] = [...m[u.prop], ...u.rules]);
942
+ rules[form2.prop] = [defaultRule];
943
+ if (form2.rules) {
944
+ rules[form2.prop] = [...rules[form2.prop], ...form2.rules];
945
+ }
768
946
  }
769
- }), s.value = m;
770
- }, p = O(), w = () => {
947
+ });
948
+ formRules.value = rules;
949
+ };
950
+ const formRef = ref();
951
+ const getFormStyle = () => {
771
952
  const {
772
- formStyle: m
773
- } = h, c = m, {
774
- row: g,
775
- gap: u
776
- } = c, r = A(c, [
953
+ formStyle
954
+ } = props;
955
+ const _a = formStyle, {
956
+ row,
957
+ gap
958
+ } = _a, style = __objRest(_a, [
777
959
  "row",
778
960
  "gap"
779
961
  ]);
780
- return V({
781
- "grid-template-columns": `repeat(${g}, 1fr)`,
782
- "grid-gap": u
783
- }, r);
784
- }, v = (m) => {
785
- if (!m)
962
+ return __spreadValues({
963
+ "grid-template-columns": `repeat(${row}, 1fr)`,
964
+ "grid-gap": gap
965
+ }, style);
966
+ };
967
+ const getGroupStyle = (groupStyle) => {
968
+ if (!groupStyle)
786
969
  return {};
787
- const c = m, {
788
- row: g,
789
- gap: u
790
- } = c, r = A(c, [
970
+ const _a = groupStyle, {
971
+ row,
972
+ gap
973
+ } = _a, style = __objRest(_a, [
791
974
  "row",
792
975
  "gap"
793
976
  ]);
794
- return V({
795
- "grid-template-columns": `repeat(${g}, 1fr)`,
796
- "grid-gap": u
797
- }, r);
977
+ return __spreadValues({
978
+ "grid-template-columns": `repeat(${row}, 1fr)`,
979
+ "grid-gap": gap
980
+ }, style);
798
981
  };
799
- l(), b();
800
- const C = (m) => {
801
- let g;
982
+ initForm();
983
+ getRules();
984
+ const render2 = (props2) => {
985
+ let _slot;
802
986
  const {
803
- formList: u,
804
- formStyle: r,
805
- formLayout: c
806
- } = m, U = ({
807
- renderType: a,
808
- event: y,
809
- prop: i,
810
- label: $,
811
- config: Y
987
+ formList,
988
+ formStyle,
989
+ formLayout
990
+ } = props2;
991
+ const dynamicComponent = ({
992
+ renderType,
993
+ event,
994
+ prop,
995
+ label,
996
+ config
812
997
  }) => {
813
- const re = k("el-" + a), K = () => {
814
- if (a === "select")
815
- return Y.options.map((W) => f(k("el-option"), {
816
- label: W.label,
817
- value: W.value
998
+ const Component = resolveComponent("el-" + renderType);
999
+ const renderChildComponent = () => {
1000
+ if (renderType === "select")
1001
+ return config.options.map((item) => createVNode(resolveComponent("el-option"), {
1002
+ "label": item.label,
1003
+ "value": item.value
818
1004
  }, null));
819
- }, H = Y || {}, {
820
- options: ee
821
- } = H, M = A(H, [
1005
+ };
1006
+ const _a = config || {}, {
1007
+ options
1008
+ } = _a, conf = __objRest(_a, [
822
1009
  "options"
823
1010
  ]);
824
- return f(re, D(y, M, {
825
- modelValue: t.value[i],
826
- "onUpdate:modelValue": (W) => t.value[i] = W,
827
- placeholder: `请输入${$}`
828
- }), ue(K) ? K : {
829
- default: () => [K]
1011
+ return createVNode(Component, mergeProps(event, conf, {
1012
+ "modelValue": formData.value[prop],
1013
+ "onUpdate:modelValue": ($event) => formData.value[prop] = $event,
1014
+ "placeholder": `请输入${label}`
1015
+ }), _isSlot(renderChildComponent) ? renderChildComponent : {
1016
+ default: () => [renderChildComponent]
830
1017
  });
831
- }, x = (a, y) => {
832
- var i;
833
- return a.slotName && ((i = d[a.slotName]) == null ? void 0 : i.call(d, y));
834
- }, e = (a) => {
835
- const y = (i) => {
836
- var M;
837
- const ee = i, {
838
- render: $,
839
- config: Y,
840
- renderType: re
841
- } = ee, K = A(ee, [
1018
+ };
1019
+ const formItemSlots = (form2, scope) => {
1020
+ var _a;
1021
+ return form2.slotName && ((_a = slots[form2.slotName]) == null ? void 0 : _a.call(slots, scope));
1022
+ };
1023
+ const renderFormItem = (formList2) => {
1024
+ const renderForm = (form2) => {
1025
+ var _b;
1026
+ const _a = form2, {
1027
+ render: render3,
1028
+ config,
1029
+ renderType
1030
+ } = _a, formProps = __objRest(_a, [
842
1031
  "render",
843
1032
  "config",
844
1033
  "renderType"
845
1034
  ]);
846
- return f(k("el-form-item"), D({
847
- class: `${c === "vertical" ? "flex flex-col " : ""} ${(M = i.className) != null ? M : ""}`
848
- }, K, {
849
- prop: i.prop,
850
- labelWidth: r.labelWidth
1035
+ return createVNode(resolveComponent("el-form-item"), mergeProps({
1036
+ "class": `${formLayout === "vertical" ? "flex flex-col " : ""} ${(_b = form2.className) != null ? _b : ""}`
1037
+ }, formProps, {
1038
+ "prop": form2.prop,
1039
+ "labelWidth": formStyle.labelWidth
851
1040
  }), {
852
- default: (H) => i != null && i.render ? i == null ? void 0 : i.render(t.value) : i.renderType ? U(i) : (i == null ? void 0 : i.slotName) && x(i, H),
853
- label: () => f("span", {
854
- class: i.className,
855
- style: V({}, i.style)
856
- }, [i.label])
1041
+ default: (scope) => {
1042
+ if (form2 == null ? void 0 : form2.render)
1043
+ return form2 == null ? void 0 : form2.render(formData.value);
1044
+ if (form2.renderType)
1045
+ return dynamicComponent(form2);
1046
+ return (form2 == null ? void 0 : form2.slotName) && formItemSlots(form2, scope);
1047
+ },
1048
+ label: () => createVNode("span", {
1049
+ "class": form2.className,
1050
+ "style": __spreadValues({}, form2.style)
1051
+ }, [form2.label])
857
1052
  });
858
1053
  };
859
- return a.filter((i) => !i.show || i.show(t.value)).map((i) => i.children && i.children.length > 0 ? f("div", {
860
- class: "flex flex-col"
861
- }, [f("span", null, [i.groupName]), f("div", {
862
- class: "grid",
863
- style: V({}, v(i == null ? void 0 : i.groupStyle))
864
- }, [i.children.filter(($) => !$.show || $.show(t.value)).map(($) => y($))])]) : y(i));
1054
+ return formList2.filter((form2) => !form2.show || form2.show(formData.value)).map((form2) => {
1055
+ if (form2.children && form2.children.length > 0) {
1056
+ return createVNode("div", {
1057
+ "class": "flex flex-col"
1058
+ }, [createVNode("span", null, [form2.groupName]), createVNode("div", {
1059
+ "class": "grid",
1060
+ "style": __spreadValues({}, getGroupStyle(form2 == null ? void 0 : form2.groupStyle))
1061
+ }, [form2.children.filter((form3) => !form3.show || form3.show(formData.value)).map((form3) => renderForm(form3))])]);
1062
+ } else {
1063
+ return renderForm(form2);
1064
+ }
1065
+ });
865
1066
  };
866
- return f(L, null, [f(k("el-form"), D({
867
- "scroll-to-error": !0,
868
- model: t.value,
869
- rules: s.value,
870
- class: "grid",
871
- ref: p
872
- }, S, {
873
- style: V({}, w())
874
- }), ue(g = e(u)) ? g : {
875
- default: () => [g]
1067
+ return createVNode(Fragment, null, [createVNode(resolveComponent("el-form"), mergeProps({
1068
+ "scroll-to-error": true,
1069
+ "model": formData.value,
1070
+ "rules": formRules.value,
1071
+ "class": "grid",
1072
+ "ref": formRef
1073
+ }, attrs, {
1074
+ "style": __spreadValues({}, getFormStyle())
1075
+ }), _isSlot(_slot = renderFormItem(formList)) ? _slot : {
1076
+ default: () => [_slot]
876
1077
  })]);
877
1078
  };
878
- return o({
879
- formData: t,
880
- formValidate: () => J(this, null, function* () {
881
- return yield p.value.validate((m) => !!m);
882
- })
883
- }), (m, g) => (_(), F(j(C(h))));
1079
+ const formValidate = () => __async(this, null, function* () {
1080
+ return yield formRef.value.validate((valid) => valid ? true : false);
1081
+ });
1082
+ __expose({
1083
+ formData,
1084
+ formValidate
1085
+ });
1086
+ return (_ctx, _cache) => {
1087
+ return openBlock(), createBlock(resolveDynamicComponent(render2(props)));
1088
+ };
884
1089
  }
885
- }), Ct = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
1090
+ }));
1091
+ const components2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
886
1092
  __proto__: null,
887
- Toolbar: ke,
888
- Update: dt,
889
- YxDialog: Fe,
890
- YxForm: Je,
891
- YxFormV2: gt,
892
- YxIcon: mt,
893
- YxSearchForm: Re,
894
- YxTable: Te,
895
- YxUpload: ht
1093
+ Toolbar,
1094
+ Update,
1095
+ YxDialog: _sfc_main$8,
1096
+ YxForm: form,
1097
+ YxFormV2: _sfc_main,
1098
+ YxIcon: index,
1099
+ YxSearchForm: index$1,
1100
+ YxTable: _sfc_main$6,
1101
+ YxUpload: _sfc_main$1
896
1102
  }, Symbol.toStringTag, { value: "Module" }));
897
1103
  export {
898
- dt as U,
899
- Fe as _,
900
- Te as a,
901
- mt as b,
902
- Ct as c,
903
- ht as d,
904
- gt as e,
905
- Je as f,
906
- Re as i
1104
+ Update as U,
1105
+ _sfc_main$8 as _,
1106
+ _sfc_main$6 as a,
1107
+ index as b,
1108
+ components2 as c,
1109
+ _sfc_main$1 as d,
1110
+ _sfc_main as e,
1111
+ form as f,
1112
+ index$1 as i
907
1113
  };