dydx-naive-ui-for-vue 0.1.36 → 0.1.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dydx-naive-ui-for-vue.js +248 -249
- package/dist/dydx-naive-ui-for-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { t as Is } from "./resolver-BDxomgBZ.js";
|
|
2
2
|
import { NAutoComplete as Fr, NButton as V, NCascader as Ir, NCheckbox as Et, NCheckboxGroup as Je, NColorPicker as jr, NDataTable as Br, NDatePicker as zr, NDrawer as Ur, NDrawerContent as Mr, NDropdown as Rr, NDynamicInput as Er, NDynamicTags as Lr, NForm as Gr, NFormItem as Kr, NGrid as Vr, NGridItem as Hr, NIcon as E, NImage as Wr, NInput as qr, NInputNumber as Yr, NMention as Jr, NModal as Qr, NPopconfirm as Xr, NPopover as Zr, NRadio as ea, NRadioButton as ta, NRadioGroup as De, NRate as ra, NSelect as Lt, NSlider as aa, NSpace as Z, NSpin as Qe, NSwitch as na, NTag as Ee, NText as la, NTimePicker as oa, NTooltip as Fe, NTreeSelect as ia, NUpload as Gt, NUploadDragger as ua, useMessage as sa } from "naive-ui";
|
|
3
|
-
import { Fragment as X, computed as M, createBlock as A, createCommentVNode as J, createElementBlock as Y, createElementVNode as $e, createSlots as xe, createTextVNode as j, createVNode as b, defineComponent as
|
|
3
|
+
import { Fragment as X, computed as M, createBlock as A, createCommentVNode as J, createElementBlock as Y, createElementVNode as $e, createSlots as xe, createTextVNode as j, createVNode as b, defineComponent as ce, guardReactiveProps as da, h as w, isRef as fa, mergeModels as ct, mergeProps as q, nextTick as ca, normalizeProps as pa, onMounted as Kt, onUnmounted as ya, openBlock as v, ref as re, renderList as ne, renderSlot as H, resolveDynamicComponent as de, toDisplayString as G, toHandlers as ga, unref as d, useAttrs as Xe, useModel as va, watch as ma, withCtx as u } from "vue";
|
|
4
4
|
import * as Oe from "@vicons/ionicons5";
|
|
5
5
|
import { AddOutline as Vt, CheckmarkOutline as Ht, CloseOutline as Wt, CloudUploadOutline as pt, CreateOutline as ba, DownloadOutline as _a, EyeOutline as ha, HelpCircleOutline as wa, OpenOutline as Ca, RefreshOutline as qt, SearchOutline as Ta, SettingsOutline as xa, TrashOutline as Sa } from "@vicons/ionicons5";
|
|
6
|
-
var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */
|
|
6
|
+
var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */ ce({
|
|
7
7
|
name: "DydxUpload",
|
|
8
8
|
__name: "DydxUpload",
|
|
9
9
|
props: {
|
|
@@ -43,27 +43,27 @@ var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */ fe({
|
|
|
43
43
|
"beforeUpload"
|
|
44
44
|
],
|
|
45
45
|
setup(e, { expose: t, emit: r }) {
|
|
46
|
-
const a = e, o = r, i = sa(), l =
|
|
47
|
-
...
|
|
48
|
-
url:
|
|
49
|
-
})) : a.fileList),
|
|
50
|
-
const
|
|
51
|
-
return a.acceptTypes?.length &&
|
|
46
|
+
const a = e, o = r, i = sa(), l = re(), g = M(() => a.listType ? a.listType : a.uploadType === "image" ? "image-card" : "text"), m = M(() => a.urlPrefix ? a.fileList.map((C) => ({
|
|
47
|
+
...C,
|
|
48
|
+
url: C.url && !C.url.startsWith("http") ? a.urlPrefix + C.url : C.url
|
|
49
|
+
})) : a.fileList), y = M(() => {
|
|
50
|
+
const C = [];
|
|
51
|
+
return a.acceptTypes?.length && C.push(`支持格式:${a.acceptTypes.join(", ")}`), a.maxSize && C.push(`单个文件不超过 ${a.maxSize}MB`), a.maxCount && C.push(`最多 ${a.maxCount} 个文件`), C.join(";");
|
|
52
52
|
}), h = M(() => {
|
|
53
53
|
if (a.accept) return a.accept;
|
|
54
54
|
if (a.acceptTypes?.length) return a.acceptTypes.join(",");
|
|
55
55
|
if (a.uploadType === "image") return "image/*";
|
|
56
56
|
}), x = M(() => {
|
|
57
|
-
const { uploadType:
|
|
57
|
+
const { uploadType: C, fileList: O, customUpload: B, acceptTypes: c, maxSize: f, maxCount: p, multiple: T, autoUpload: W, disabled: ae, urlPrefix: L, showTip: he, showDragger: we, ...Ae } = a;
|
|
58
58
|
return Ae;
|
|
59
|
-
}), P = (
|
|
60
|
-
o("update:fileList", a.urlPrefix ?
|
|
59
|
+
}), P = (C) => {
|
|
60
|
+
o("update:fileList", a.urlPrefix ? C.map((O) => ({
|
|
61
61
|
...O,
|
|
62
62
|
url: O.url?.startsWith(a.urlPrefix) ? O.url.slice(a.urlPrefix.length) : O.url
|
|
63
|
-
})) :
|
|
64
|
-
}, $ = async ({ file:
|
|
65
|
-
o("beforeUpload",
|
|
66
|
-
const O =
|
|
63
|
+
})) : C);
|
|
64
|
+
}, $ = async ({ file: C }) => {
|
|
65
|
+
o("beforeUpload", C);
|
|
66
|
+
const O = C.file;
|
|
67
67
|
return O ? a.maxSize && O.size > a.maxSize * 1024 * 1024 ? (i.error(`文件大小不能超过 ${a.maxSize}MB`), !1) : a.acceptTypes?.length && !a.acceptTypes.some((B) => {
|
|
68
68
|
if (B.startsWith(".")) return O.name.toLowerCase().endsWith(B.toLowerCase());
|
|
69
69
|
if (B.includes("*")) {
|
|
@@ -72,8 +72,8 @@ var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */ fe({
|
|
|
72
72
|
}
|
|
73
73
|
return O.type === B;
|
|
74
74
|
}) ? (i.error(`只支持 ${a.acceptTypes.join(", ")} 格式`), !1) : a.maxCount && a.fileList.length >= a.maxCount ? (o("exceed", [O]), i.error(`最多上传 ${a.maxCount} 个文件`), !1) : !0 : !0;
|
|
75
|
-
}, R = async (
|
|
76
|
-
const { file: O, onProgress: B, onFinish: c, onError: f } =
|
|
75
|
+
}, R = async (C) => {
|
|
76
|
+
const { file: O, onProgress: B, onFinish: c, onError: f } = C;
|
|
77
77
|
if (!a.customUpload) {
|
|
78
78
|
console.warn("DydxUpload: customUpload 方法未提供"), f();
|
|
79
79
|
return;
|
|
@@ -92,10 +92,10 @@ var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */ fe({
|
|
|
92
92
|
submit: () => l.value?.submit(),
|
|
93
93
|
openDialog: () => l.value?.openOpenFileDialog(),
|
|
94
94
|
clear: () => l.value?.clear()
|
|
95
|
-
}), (
|
|
96
|
-
const B = E, c = la, f = ua, p = V,
|
|
95
|
+
}), (C, O) => {
|
|
96
|
+
const B = E, c = la, f = ua, p = V, T = Gt;
|
|
97
97
|
return v(), Y("div", null, [
|
|
98
|
-
b(
|
|
98
|
+
b(T, q({
|
|
99
99
|
ref_key: "uploadRef",
|
|
100
100
|
ref: l
|
|
101
101
|
}, x.value, {
|
|
@@ -106,7 +106,7 @@ var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */ fe({
|
|
|
106
106
|
multiple: e.multiple,
|
|
107
107
|
disabled: e.disabled,
|
|
108
108
|
"default-upload": e.autoUpload,
|
|
109
|
-
"list-type":
|
|
109
|
+
"list-type": g.value,
|
|
110
110
|
"onUpdate:fileList": P,
|
|
111
111
|
onBeforeUpload: $
|
|
112
112
|
}), {
|
|
@@ -132,12 +132,12 @@ var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */ fe({
|
|
|
132
132
|
display: "block"
|
|
133
133
|
}
|
|
134
134
|
}, {
|
|
135
|
-
default: u(() => [j(G(
|
|
135
|
+
default: u(() => [j(G(y.value), 1)]),
|
|
136
136
|
_: 1
|
|
137
137
|
})) : J("", !0)
|
|
138
138
|
]),
|
|
139
139
|
_: 1
|
|
140
|
-
})) : H(
|
|
140
|
+
})) : H(C.$slots, "default", { key: 1 }, () => [e.uploadType === "image" && g.value === "image-card" ? (v(), A(B, {
|
|
141
141
|
key: 0,
|
|
142
142
|
size: 28
|
|
143
143
|
}, {
|
|
@@ -179,13 +179,13 @@ var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */ fe({
|
|
|
179
179
|
display: "block"
|
|
180
180
|
}
|
|
181
181
|
}, {
|
|
182
|
-
default: u(() => [j(G(
|
|
182
|
+
default: u(() => [j(G(y.value), 1)]),
|
|
183
183
|
_: 1
|
|
184
184
|
})) : J("", !0)
|
|
185
185
|
]);
|
|
186
186
|
};
|
|
187
187
|
}
|
|
188
|
-
}), Ie = Aa, Pa = /* @__PURE__ */
|
|
188
|
+
}), Ie = Aa, Pa = /* @__PURE__ */ ce({
|
|
189
189
|
name: "DydxIconSelect",
|
|
190
190
|
__name: "DydxIconSelect",
|
|
191
191
|
props: {
|
|
@@ -205,21 +205,21 @@ var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */ fe({
|
|
|
205
205
|
emits: ["update:value"],
|
|
206
206
|
setup(e, { emit: t }) {
|
|
207
207
|
const r = e, a = t, o = Object.keys(Oe), i = M(() => {
|
|
208
|
-
let
|
|
209
|
-
return r.iconStyle === "outline" ?
|
|
208
|
+
let y = o;
|
|
209
|
+
return r.iconStyle === "outline" ? y = o.filter((h) => h.endsWith("Outline")) : r.iconStyle === "sharp" ? y = o.filter((h) => h.endsWith("Sharp")) : r.iconStyle === "filled" && (y = o.filter((h) => !h.endsWith("Outline") && !h.endsWith("Sharp"))), y.map((h) => ({
|
|
210
210
|
label: h,
|
|
211
211
|
value: h
|
|
212
212
|
}));
|
|
213
|
-
}), l = (
|
|
214
|
-
const h = Oe[
|
|
215
|
-
return
|
|
216
|
-
},
|
|
217
|
-
const h = Oe[
|
|
218
|
-
return
|
|
219
|
-
}, m = (
|
|
220
|
-
a("update:value",
|
|
213
|
+
}), l = (y) => {
|
|
214
|
+
const h = Oe[y.value];
|
|
215
|
+
return h ? w("div", { style: "display: flex; align-items: center; gap: 8px;" }, [w(E, { size: 18 }, () => w(h)), w("span", { style: "flex: 1; overflow: hidden; text-overflow: ellipsis;" }, y.label)]) : w("span", y.label);
|
|
216
|
+
}, g = ({ option: y }) => {
|
|
217
|
+
const h = Oe[y.value];
|
|
218
|
+
return h ? w("div", { style: "display: flex; align-items: center; gap: 4px;" }, [w(E, { size: 16 }, () => w(h)), y.label]) : w("span", y.label);
|
|
219
|
+
}, m = (y) => {
|
|
220
|
+
a("update:value", y);
|
|
221
221
|
};
|
|
222
|
-
return (
|
|
222
|
+
return (y, h) => (v(), A(d(Lt), {
|
|
223
223
|
value: e.value,
|
|
224
224
|
options: i.value,
|
|
225
225
|
placeholder: e.placeholder,
|
|
@@ -227,7 +227,7 @@ var ka = { style: { "margin-bottom": "12px" } }, Aa = /* @__PURE__ */ fe({
|
|
|
227
227
|
clearable: e.clearable,
|
|
228
228
|
filterable: e.filterable,
|
|
229
229
|
"render-label": l,
|
|
230
|
-
"render-tag":
|
|
230
|
+
"render-tag": g,
|
|
231
231
|
"virtual-scroll": "",
|
|
232
232
|
"onUpdate:value": m
|
|
233
233
|
}, null, 8, [
|
|
@@ -264,7 +264,7 @@ const $a = {
|
|
|
264
264
|
"file-upload": Ie,
|
|
265
265
|
"icon-select": Ze
|
|
266
266
|
};
|
|
267
|
-
var Oa = typeof global == "object" && global && global.Object === Object && global, Yt = Oa, Na = typeof self == "object" && self && self.Object === Object && self, Da = Yt || Na || Function("return this")(), ee = Da, Fa = ee.Symbol,
|
|
267
|
+
var Oa = typeof global == "object" && global && global.Object === Object && global, Yt = Oa, Na = typeof self == "object" && self && self.Object === Object && self, Da = Yt || Na || Function("return this")(), ee = Da, Fa = ee.Symbol, le = Fa, Jt = Object.prototype, Ia = Jt.hasOwnProperty, ja = Jt.toString, Ce = le ? le.toStringTag : void 0;
|
|
268
268
|
function Ba(e) {
|
|
269
269
|
var t = Ia.call(e, Ce), r = e[Ce];
|
|
270
270
|
try {
|
|
@@ -279,27 +279,27 @@ var za = Ba, Ua = Object.prototype.toString;
|
|
|
279
279
|
function Ma(e) {
|
|
280
280
|
return Ua.call(e);
|
|
281
281
|
}
|
|
282
|
-
var Ra = Ma, Ea = "[object Null]", La = "[object Undefined]", yt =
|
|
282
|
+
var Ra = Ma, Ea = "[object Null]", La = "[object Undefined]", yt = le ? le.toStringTag : void 0;
|
|
283
283
|
function Ga(e) {
|
|
284
284
|
return e == null ? e === void 0 ? La : Ea : yt && yt in Object(e) ? za(e) : Ra(e);
|
|
285
285
|
}
|
|
286
|
-
var
|
|
286
|
+
var pe = Ga;
|
|
287
287
|
function Ka(e) {
|
|
288
288
|
return e != null && typeof e == "object";
|
|
289
289
|
}
|
|
290
|
-
var
|
|
290
|
+
var ye = Ka, Va = "[object Symbol]";
|
|
291
291
|
function Ha(e) {
|
|
292
|
-
return typeof e == "symbol" ||
|
|
292
|
+
return typeof e == "symbol" || ye(e) && pe(e) == Va;
|
|
293
293
|
}
|
|
294
294
|
var et = Ha;
|
|
295
295
|
function Wa(e, t) {
|
|
296
296
|
for (var r = -1, a = e == null ? 0 : e.length, o = Array(a); ++r < a; ) o[r] = t(e[r], r, e);
|
|
297
297
|
return o;
|
|
298
298
|
}
|
|
299
|
-
var qa = Wa, Ya = Array.isArray,
|
|
299
|
+
var qa = Wa, Ya = Array.isArray, ge = Ya, Ja = 1 / 0, gt = le ? le.prototype : void 0, vt = gt ? gt.toString : void 0;
|
|
300
300
|
function Qt(e) {
|
|
301
301
|
if (typeof e == "string") return e;
|
|
302
|
-
if (
|
|
302
|
+
if (ge(e)) return qa(e, Qt) + "";
|
|
303
303
|
if (et(e)) return vt ? vt.call(e) : "";
|
|
304
304
|
var t = e + "";
|
|
305
305
|
return t == "0" && 1 / e == -Ja ? "-0" : t;
|
|
@@ -309,10 +309,10 @@ function Xa(e) {
|
|
|
309
309
|
var t = typeof e;
|
|
310
310
|
return e != null && (t == "object" || t == "function");
|
|
311
311
|
}
|
|
312
|
-
var
|
|
312
|
+
var ie = Xa, Za = "[object AsyncFunction]", en = "[object Function]", tn = "[object GeneratorFunction]", rn = "[object Proxy]";
|
|
313
313
|
function an(e) {
|
|
314
|
-
if (!
|
|
315
|
-
var t =
|
|
314
|
+
if (!ie(e)) return !1;
|
|
315
|
+
var t = pe(e);
|
|
316
316
|
return t == en || t == tn || t == Za || t == rn;
|
|
317
317
|
}
|
|
318
318
|
var Xt = an, nn = ee["__core-js_shared__"], Le = nn, mt = (function() {
|
|
@@ -336,9 +336,9 @@ function sn(e) {
|
|
|
336
336
|
}
|
|
337
337
|
return "";
|
|
338
338
|
}
|
|
339
|
-
var
|
|
339
|
+
var ue = sn, dn = /[\\^$.*+?()[\]{}|]/g, fn = /^\[object .+?Constructor\]$/, cn = Function.prototype, pn = Object.prototype, yn = cn.toString, gn = pn.hasOwnProperty, vn = RegExp("^" + yn.call(gn).replace(dn, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$");
|
|
340
340
|
function mn(e) {
|
|
341
|
-
return !
|
|
341
|
+
return !ie(e) || on(e) ? !1 : (Xt(e) ? vn : fn).test(ue(e));
|
|
342
342
|
}
|
|
343
343
|
var bn = mn;
|
|
344
344
|
function _n(e, t) {
|
|
@@ -349,11 +349,11 @@ function wn(e, t) {
|
|
|
349
349
|
var r = hn(e, t);
|
|
350
350
|
return bn(r) ? r : void 0;
|
|
351
351
|
}
|
|
352
|
-
var
|
|
352
|
+
var se = wn, Cn = se(ee, "WeakMap"), Ve = Cn, bt = Object.create, Tn = /* @__PURE__ */ (function() {
|
|
353
353
|
function e() {
|
|
354
354
|
}
|
|
355
355
|
return function(t) {
|
|
356
|
-
if (!
|
|
356
|
+
if (!ie(t)) return {};
|
|
357
357
|
if (bt) return bt(t);
|
|
358
358
|
e.prototype = t;
|
|
359
359
|
var r = new e();
|
|
@@ -367,7 +367,7 @@ function Sn(e, t) {
|
|
|
367
367
|
}
|
|
368
368
|
var kn = Sn, An = (function() {
|
|
369
369
|
try {
|
|
370
|
-
var e =
|
|
370
|
+
var e = se(Object, "defineProperty");
|
|
371
371
|
return e({}, "", {}), e;
|
|
372
372
|
} catch {
|
|
373
373
|
}
|
|
@@ -404,8 +404,8 @@ function zn(e, t, r, a) {
|
|
|
404
404
|
var o = !r;
|
|
405
405
|
r || (r = {});
|
|
406
406
|
for (var i = -1, l = t.length; ++i < l; ) {
|
|
407
|
-
var
|
|
408
|
-
m === void 0 && (m = e[
|
|
407
|
+
var g = t[i], m = a ? a(r[g], e[g], g, r, e) : void 0;
|
|
408
|
+
m === void 0 && (m = e[g]), o ? er(r, g, m) : tt(r, g, m);
|
|
409
409
|
}
|
|
410
410
|
return r;
|
|
411
411
|
}
|
|
@@ -429,12 +429,12 @@ function Gn(e, t) {
|
|
|
429
429
|
}
|
|
430
430
|
var Kn = Gn, Vn = "[object Arguments]";
|
|
431
431
|
function Hn(e) {
|
|
432
|
-
return
|
|
432
|
+
return ye(e) && pe(e) == Vn;
|
|
433
433
|
}
|
|
434
434
|
var ht = Hn, nr = Object.prototype, Wn = nr.hasOwnProperty, qn = nr.propertyIsEnumerable, Yn = ht(/* @__PURE__ */ (function() {
|
|
435
435
|
return arguments;
|
|
436
436
|
})()) ? ht : function(e) {
|
|
437
|
-
return
|
|
437
|
+
return ye(e) && Wn.call(e, "callee") && !qn.call(e, "callee");
|
|
438
438
|
}, Jn = Yn;
|
|
439
439
|
function Qn() {
|
|
440
440
|
return !1;
|
|
@@ -443,7 +443,7 @@ var Xn = Qn, lr = typeof exports == "object" && exports && !exports.nodeType &&
|
|
|
443
443
|
I[gl] = I[vl] = I[ml] = I[bl] = I[_l] = I[hl] = I[wl] = I[Cl] = I[Tl] = !0;
|
|
444
444
|
I[el] = I[tl] = I[pl] = I[rl] = I[yl] = I[al] = I[nl] = I[ll] = I[ol] = I[il] = I[ul] = I[sl] = I[dl] = I[fl] = I[cl] = !1;
|
|
445
445
|
function xl(e) {
|
|
446
|
-
return
|
|
446
|
+
return ye(e) && rr(e.length) && !!I[pe(e)];
|
|
447
447
|
}
|
|
448
448
|
var Sl = xl;
|
|
449
449
|
function kl(e) {
|
|
@@ -457,11 +457,11 @@ var at = kl, ir = typeof exports == "object" && exports && !exports.nodeType &&
|
|
|
457
457
|
return e || Ge && Ge.binding && Ge.binding("util");
|
|
458
458
|
} catch {
|
|
459
459
|
}
|
|
460
|
-
})(),
|
|
460
|
+
})(), fe = Al, Tt = fe && fe.isTypedArray, Pl = Tt ? at(Tt) : Sl, $l = Pl, Ol = Object.prototype.hasOwnProperty;
|
|
461
461
|
function Nl(e, t) {
|
|
462
|
-
var r =
|
|
463
|
-
for (var
|
|
464
|
-
return
|
|
462
|
+
var r = ge(e), a = !r && Jn(e), o = !r && !a && or(e), i = !r && !a && !o && $l(e), l = r || a || o || i, g = l ? Kn(e.length, String) : [], m = g.length;
|
|
463
|
+
for (var y in e) (t || Ol.call(e, y)) && !(l && (y == "length" || o && (y == "offset" || y == "parent") || i && (y == "buffer" || y == "byteLength" || y == "byteOffset") || Zt(y, m))) && g.push(y);
|
|
464
|
+
return g;
|
|
465
465
|
}
|
|
466
466
|
var ur = Nl;
|
|
467
467
|
function Dl(e, t) {
|
|
@@ -488,7 +488,7 @@ function Ml(e) {
|
|
|
488
488
|
}
|
|
489
489
|
var Rl = Ml, El = Object.prototype.hasOwnProperty;
|
|
490
490
|
function Ll(e) {
|
|
491
|
-
if (!
|
|
491
|
+
if (!ie(e)) return Rl(e);
|
|
492
492
|
var t = rt(e), r = [];
|
|
493
493
|
for (var a in e) a == "constructor" && (t || !El.call(e, a)) || r.push(a);
|
|
494
494
|
return r;
|
|
@@ -499,11 +499,11 @@ function Kl(e) {
|
|
|
499
499
|
}
|
|
500
500
|
var lt = Kl, Vl = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, Hl = /^\w*$/;
|
|
501
501
|
function Wl(e, t) {
|
|
502
|
-
if (
|
|
502
|
+
if (ge(e)) return !1;
|
|
503
503
|
var r = typeof e;
|
|
504
504
|
return r == "number" || r == "symbol" || r == "boolean" || e == null || et(e) ? !0 : Hl.test(e) || !Vl.test(e) || t != null && e in Object(t);
|
|
505
505
|
}
|
|
506
|
-
var ql = Wl, Yl =
|
|
506
|
+
var ql = Wl, Yl = se(Object, "create"), Se = Yl;
|
|
507
507
|
function Jl() {
|
|
508
508
|
this.__data__ = Se ? Se(null) : {}, this.size = 0;
|
|
509
509
|
}
|
|
@@ -532,19 +532,19 @@ function uo(e, t) {
|
|
|
532
532
|
return this.size += this.has(e) ? 0 : 1, r[e] = Se && t === void 0 ? io : t, this;
|
|
533
533
|
}
|
|
534
534
|
var so = uo;
|
|
535
|
-
function
|
|
535
|
+
function ve(e) {
|
|
536
536
|
var t = -1, r = e == null ? 0 : e.length;
|
|
537
537
|
for (this.clear(); ++t < r; ) {
|
|
538
538
|
var a = e[t];
|
|
539
539
|
this.set(a[0], a[1]);
|
|
540
540
|
}
|
|
541
541
|
}
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
var xt =
|
|
542
|
+
ve.prototype.clear = Ql;
|
|
543
|
+
ve.prototype.delete = Zl;
|
|
544
|
+
ve.prototype.get = ao;
|
|
545
|
+
ve.prototype.has = oo;
|
|
546
|
+
ve.prototype.set = so;
|
|
547
|
+
var xt = ve;
|
|
548
548
|
function fo() {
|
|
549
549
|
this.__data__ = [], this.size = 0;
|
|
550
550
|
}
|
|
@@ -573,19 +573,19 @@ function wo(e, t) {
|
|
|
573
573
|
return a < 0 ? (++this.size, r.push([e, t])) : r[a][1] = t, this;
|
|
574
574
|
}
|
|
575
575
|
var Co = wo;
|
|
576
|
-
function
|
|
576
|
+
function me(e) {
|
|
577
577
|
var t = -1, r = e == null ? 0 : e.length;
|
|
578
578
|
for (this.clear(); ++t < r; ) {
|
|
579
579
|
var a = e[t];
|
|
580
580
|
this.set(a[0], a[1]);
|
|
581
581
|
}
|
|
582
582
|
}
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
var ze =
|
|
583
|
+
me.prototype.clear = co;
|
|
584
|
+
me.prototype.delete = vo;
|
|
585
|
+
me.prototype.get = bo;
|
|
586
|
+
me.prototype.has = ho;
|
|
587
|
+
me.prototype.set = Co;
|
|
588
|
+
var ze = me, To = se(ee, "Map"), ke = To;
|
|
589
589
|
function xo() {
|
|
590
590
|
this.size = 0, this.__data__ = {
|
|
591
591
|
hash: new xt(),
|
|
@@ -622,19 +622,19 @@ function jo(e, t) {
|
|
|
622
622
|
return r.set(e, t), this.size += r.size == a ? 0 : 1, this;
|
|
623
623
|
}
|
|
624
624
|
var Bo = jo;
|
|
625
|
-
function
|
|
625
|
+
function be(e) {
|
|
626
626
|
var t = -1, r = e == null ? 0 : e.length;
|
|
627
627
|
for (this.clear(); ++t < r; ) {
|
|
628
628
|
var a = e[t];
|
|
629
629
|
this.set(a[0], a[1]);
|
|
630
630
|
}
|
|
631
631
|
}
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
var ot =
|
|
632
|
+
be.prototype.clear = So;
|
|
633
|
+
be.prototype.delete = Oo;
|
|
634
|
+
be.prototype.get = Do;
|
|
635
|
+
be.prototype.has = Io;
|
|
636
|
+
be.prototype.set = Bo;
|
|
637
|
+
var ot = be, zo = "Expected a function";
|
|
638
638
|
function it(e, t) {
|
|
639
639
|
if (typeof e != "function" || t != null && typeof t != "function") throw new TypeError(zo);
|
|
640
640
|
var r = function() {
|
|
@@ -664,7 +664,7 @@ function Ho(e) {
|
|
|
664
664
|
}
|
|
665
665
|
var Wo = Ho;
|
|
666
666
|
function qo(e, t) {
|
|
667
|
-
return
|
|
667
|
+
return ge(e) ? e : ql(e, t) ? [e] : Vo(Wo(e));
|
|
668
668
|
}
|
|
669
669
|
var dr = qo, Yo = 1 / 0;
|
|
670
670
|
function Jo(e) {
|
|
@@ -717,15 +717,15 @@ function ci(e, t) {
|
|
|
717
717
|
return r.set(e, t), this.size = r.size, this;
|
|
718
718
|
}
|
|
719
719
|
var pi = ci;
|
|
720
|
-
function
|
|
720
|
+
function _e(e) {
|
|
721
721
|
this.size = (this.__data__ = new ze(e)).size;
|
|
722
722
|
}
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
var yi =
|
|
723
|
+
_e.prototype.clear = ni;
|
|
724
|
+
_e.prototype.delete = oi;
|
|
725
|
+
_e.prototype.get = ui;
|
|
726
|
+
_e.prototype.has = di;
|
|
727
|
+
_e.prototype.set = pi;
|
|
728
|
+
var yi = _e;
|
|
729
729
|
function gi(e, t) {
|
|
730
730
|
return e && je(t, nt(t), e);
|
|
731
731
|
}
|
|
@@ -770,7 +770,7 @@ function $i(e, t) {
|
|
|
770
770
|
var Oi = $i;
|
|
771
771
|
function Ni(e, t, r) {
|
|
772
772
|
var a = t(e);
|
|
773
|
-
return
|
|
773
|
+
return ge(e) ? a : cr(a, r(e));
|
|
774
774
|
}
|
|
775
775
|
var mr = Ni;
|
|
776
776
|
function Di(e) {
|
|
@@ -780,9 +780,9 @@ var Fi = Di;
|
|
|
780
780
|
function Ii(e) {
|
|
781
781
|
return mr(e, lt, vr);
|
|
782
782
|
}
|
|
783
|
-
var ji = Ii, Bi =
|
|
784
|
-
(He &&
|
|
785
|
-
var t =
|
|
783
|
+
var ji = Ii, Bi = se(ee, "DataView"), He = Bi, zi = se(ee, "Promise"), We = zi, Ui = se(ee, "Set"), qe = Ui, $t = "[object Map]", Mi = "[object Object]", Ot = "[object Promise]", Nt = "[object Set]", Dt = "[object WeakMap]", Ft = "[object DataView]", Ri = ue(He), Ei = ue(ke), Li = ue(We), Gi = ue(qe), Ki = ue(Ve), oe = pe;
|
|
784
|
+
(He && oe(new He(/* @__PURE__ */ new ArrayBuffer(1))) != Ft || ke && oe(new ke()) != $t || We && oe(We.resolve()) != Ot || qe && oe(new qe()) != Nt || Ve && oe(new Ve()) != Dt) && (oe = function(e) {
|
|
785
|
+
var t = pe(e), r = t == Mi ? e.constructor : void 0, a = r ? ue(r) : "";
|
|
786
786
|
if (a) switch (a) {
|
|
787
787
|
case Ri:
|
|
788
788
|
return Ft;
|
|
@@ -797,7 +797,7 @@ var ji = Ii, Bi = ue(ee, "DataView"), He = Bi, zi = ue(ee, "Promise"), We = zi,
|
|
|
797
797
|
}
|
|
798
798
|
return t;
|
|
799
799
|
});
|
|
800
|
-
var st =
|
|
800
|
+
var st = oe, Vi = Object.prototype.hasOwnProperty;
|
|
801
801
|
function Hi(e) {
|
|
802
802
|
var t = e.length, r = new e.constructor(t);
|
|
803
803
|
return t && typeof e[0] == "string" && Vi.call(e, "index") && (r.index = e.index, r.input = e.input), r;
|
|
@@ -817,7 +817,7 @@ function Zi(e) {
|
|
|
817
817
|
var t = new e.constructor(e.source, Xi.exec(e));
|
|
818
818
|
return t.lastIndex = e.lastIndex, t;
|
|
819
819
|
}
|
|
820
|
-
var eu = Zi, jt =
|
|
820
|
+
var eu = Zi, jt = le ? le.prototype : void 0, Bt = jt ? jt.valueOf : void 0;
|
|
821
821
|
function tu(e) {
|
|
822
822
|
return Bt ? Object(Bt.call(e)) : {};
|
|
823
823
|
}
|
|
@@ -866,30 +866,30 @@ function ku(e) {
|
|
|
866
866
|
}
|
|
867
867
|
var Au = ku, Pu = "[object Map]";
|
|
868
868
|
function $u(e) {
|
|
869
|
-
return
|
|
869
|
+
return ye(e) && st(e) == Pu;
|
|
870
870
|
}
|
|
871
|
-
var Ou = $u, zt =
|
|
871
|
+
var Ou = $u, zt = fe && fe.isMap, Nu = zt ? at(zt) : Ou, Du = Nu, Fu = "[object Set]";
|
|
872
872
|
function Iu(e) {
|
|
873
|
-
return
|
|
873
|
+
return ye(e) && st(e) == Fu;
|
|
874
874
|
}
|
|
875
|
-
var ju = Iu, Ut =
|
|
875
|
+
var ju = Iu, Ut = fe && fe.isSet, Bu = Ut ? at(Ut) : ju, zu = Bu, Uu = 1, Mu = 2, Ru = 4, br = "[object Arguments]", Eu = "[object Array]", Lu = "[object Boolean]", Gu = "[object Date]", Ku = "[object Error]", _r = "[object Function]", Vu = "[object GeneratorFunction]", Hu = "[object Map]", Wu = "[object Number]", hr = "[object Object]", qu = "[object RegExp]", Yu = "[object Set]", Ju = "[object String]", Qu = "[object Symbol]", Xu = "[object WeakMap]", Zu = "[object ArrayBuffer]", es = "[object DataView]", ts = "[object Float32Array]", rs = "[object Float64Array]", as = "[object Int8Array]", ns = "[object Int16Array]", ls = "[object Int32Array]", os = "[object Uint8Array]", is = "[object Uint8ClampedArray]", us = "[object Uint16Array]", ss = "[object Uint32Array]", F = {};
|
|
876
876
|
F[br] = F[Eu] = F[Zu] = F[es] = F[Lu] = F[Gu] = F[ts] = F[rs] = F[as] = F[ns] = F[ls] = F[Hu] = F[Wu] = F[hr] = F[qu] = F[Yu] = F[Ju] = F[Qu] = F[os] = F[is] = F[us] = F[ss] = !0;
|
|
877
877
|
F[Ku] = F[_r] = F[Xu] = !1;
|
|
878
878
|
function Ne(e, t, r, a, o, i) {
|
|
879
|
-
var l,
|
|
879
|
+
var l, g = t & Uu, m = t & Mu, y = t & Ru;
|
|
880
880
|
if (r && (l = o ? r(e, a, o, i) : r(e)), l !== void 0) return l;
|
|
881
|
-
if (!
|
|
882
|
-
var h =
|
|
881
|
+
if (!ie(e)) return e;
|
|
882
|
+
var h = ge(e);
|
|
883
883
|
if (h) {
|
|
884
|
-
if (l = Wi(e), !
|
|
884
|
+
if (l = Wi(e), !g) return kn(e, l);
|
|
885
885
|
} else {
|
|
886
886
|
var x = st(e), P = x == _r || x == Vu;
|
|
887
|
-
if (or(e)) return hi(e,
|
|
887
|
+
if (or(e)) return hi(e, g);
|
|
888
888
|
if (x == hr || x == br || P && !o) {
|
|
889
|
-
if (l = m || P ? {} : Au(e), !
|
|
889
|
+
if (l = m || P ? {} : Au(e), !g) return m ? Oi(e, bi(l, e)) : Ai(e, vi(l, e));
|
|
890
890
|
} else {
|
|
891
891
|
if (!F[x]) return o ? e : {};
|
|
892
|
-
l = Su(e, x,
|
|
892
|
+
l = Su(e, x, g);
|
|
893
893
|
}
|
|
894
894
|
}
|
|
895
895
|
i || (i = new yi());
|
|
@@ -897,12 +897,12 @@ function Ne(e, t, r, a, o, i) {
|
|
|
897
897
|
if ($) return $;
|
|
898
898
|
i.set(e, l), zu(e) ? e.forEach(function(z) {
|
|
899
899
|
l.add(Ne(z, t, r, z, e, i));
|
|
900
|
-
}) : Du(e) && e.forEach(function(z,
|
|
901
|
-
l.set(
|
|
900
|
+
}) : Du(e) && e.forEach(function(z, C) {
|
|
901
|
+
l.set(C, Ne(z, t, r, C, e, i));
|
|
902
902
|
});
|
|
903
|
-
var R = h ? void 0 : (
|
|
904
|
-
return $n(R || e, function(z,
|
|
905
|
-
R && (
|
|
903
|
+
var R = h ? void 0 : (y ? m ? ji : Fi : m ? lt : nt)(e);
|
|
904
|
+
return $n(R || e, function(z, C) {
|
|
905
|
+
R && (C = z, z = e[C]), tt(l, C, Ne(z, t, r, C, e, i));
|
|
906
906
|
}), l;
|
|
907
907
|
}
|
|
908
908
|
var ds = Ne, fs = 1, cs = 4;
|
|
@@ -911,16 +911,16 @@ function ps(e) {
|
|
|
911
911
|
}
|
|
912
912
|
var Mt = ps;
|
|
913
913
|
function ys(e, t, r, a) {
|
|
914
|
-
if (!
|
|
914
|
+
if (!ie(e)) return e;
|
|
915
915
|
t = dr(t, e);
|
|
916
|
-
for (var o = -1, i = t.length, l = i - 1,
|
|
917
|
-
var m = fr(t[o]),
|
|
916
|
+
for (var o = -1, i = t.length, l = i - 1, g = e; g != null && ++o < i; ) {
|
|
917
|
+
var m = fr(t[o]), y = r;
|
|
918
918
|
if (m === "__proto__" || m === "constructor" || m === "prototype") return e;
|
|
919
919
|
if (o != l) {
|
|
920
|
-
var h =
|
|
921
|
-
|
|
920
|
+
var h = g[m];
|
|
921
|
+
y = a ? a(h, m, g) : void 0, y === void 0 && (y = ie(h) ? h : Zt(t[o + 1]) ? [] : {});
|
|
922
922
|
}
|
|
923
|
-
tt(
|
|
923
|
+
tt(g, m, y), g = g[m];
|
|
924
924
|
}
|
|
925
925
|
return e;
|
|
926
926
|
}
|
|
@@ -932,7 +932,7 @@ var ms = vs;
|
|
|
932
932
|
const Rt = (e, t) => ei(e, t), bs = (e, t, r) => {
|
|
933
933
|
ms(e, t, r);
|
|
934
934
|
};
|
|
935
|
-
var _s = /* @__PURE__ */
|
|
935
|
+
var _s = /* @__PURE__ */ ce({
|
|
936
936
|
name: "DydxNaiveForm",
|
|
937
937
|
__name: "DydxNaiveForm",
|
|
938
938
|
props: /* @__PURE__ */ ct({
|
|
@@ -988,21 +988,21 @@ var _s = /* @__PURE__ */ fe({
|
|
|
988
988
|
"validate"
|
|
989
989
|
], ["update:model"]),
|
|
990
990
|
setup(e, { expose: t, emit: r }) {
|
|
991
|
-
const a = e, o = r, i = va(e, "model"), l =
|
|
991
|
+
const a = e, o = r, i = va(e, "model"), l = re(), g = re();
|
|
992
992
|
let m = !1;
|
|
993
993
|
Kt(() => {
|
|
994
|
-
!m && i.value && (
|
|
994
|
+
!m && i.value && (g.value = Mt(i.value), m = !0);
|
|
995
995
|
});
|
|
996
|
-
const
|
|
996
|
+
const y = M(() => ({
|
|
997
997
|
type: "primary",
|
|
998
998
|
text: "搜索",
|
|
999
999
|
loading: a.loading,
|
|
1000
|
-
renderIcon: () =>
|
|
1000
|
+
renderIcon: () => w(E, null, { default: () => w(Ta) }),
|
|
1001
1001
|
...a.submitButton
|
|
1002
1002
|
})), h = M(() => ({
|
|
1003
1003
|
type: "default",
|
|
1004
1004
|
text: "重置",
|
|
1005
|
-
renderIcon: () =>
|
|
1005
|
+
renderIcon: () => w(E, null, { default: () => w(qt) }),
|
|
1006
1006
|
...a.resetButton
|
|
1007
1007
|
})), x = M(() => a.schemas.filter((n) => !(typeof n.hidden == "function" ? n.hidden(i.value) : n.hidden))), P = M(() => ({
|
|
1008
1008
|
disabled: a.disabled ?? !1,
|
|
@@ -1027,7 +1027,7 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1027
1027
|
})), R = (n) => {
|
|
1028
1028
|
const _ = n.type || "input";
|
|
1029
1029
|
return _ === "custom" ? n.component : $a[_];
|
|
1030
|
-
}, z = (n) => typeof n.disabled == "function" ? n.disabled(i.value) : n.disabled,
|
|
1030
|
+
}, z = (n) => typeof n.disabled == "function" ? n.disabled(i.value) : n.disabled, C = (n) => {
|
|
1031
1031
|
const _ = { ...n.props };
|
|
1032
1032
|
if (_.placeholder !== void 0) return _;
|
|
1033
1033
|
const U = typeof n.label == "string" ? n.label : "";
|
|
@@ -1037,7 +1037,7 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1037
1037
|
"textarea",
|
|
1038
1038
|
"input-number",
|
|
1039
1039
|
"dynamic-input"
|
|
1040
|
-
],
|
|
1040
|
+
], te = [
|
|
1041
1041
|
"select",
|
|
1042
1042
|
"cascader",
|
|
1043
1043
|
"tree-select",
|
|
@@ -1045,17 +1045,17 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1045
1045
|
"time-picker",
|
|
1046
1046
|
"color-picker"
|
|
1047
1047
|
];
|
|
1048
|
-
return Q.includes(K) ? _.placeholder = `请输入${U}` :
|
|
1048
|
+
return Q.includes(K) ? _.placeholder = `请输入${U}` : te.includes(K) && (_.placeholder = `请选择${U}`), _;
|
|
1049
1049
|
}, O = (n) => {
|
|
1050
1050
|
const _ = n.type === "custom" ? "modelValue" : "value";
|
|
1051
1051
|
return {
|
|
1052
1052
|
[n.modelPropName || _]: p(n.name),
|
|
1053
|
-
...
|
|
1053
|
+
...C(n),
|
|
1054
1054
|
disabled: z(n)
|
|
1055
1055
|
};
|
|
1056
1056
|
}, B = (n) => {
|
|
1057
1057
|
const _ = n.type === "custom" ? "modelValue" : "value", U = n.modelPropName || _;
|
|
1058
|
-
return { [n.modelEventName || `update:${U}`]: (K) =>
|
|
1058
|
+
return { [n.modelEventName || `update:${U}`]: (K) => T(n.name, K) };
|
|
1059
1059
|
}, c = (n) => {
|
|
1060
1060
|
if (!n) return {};
|
|
1061
1061
|
const _ = { ...n };
|
|
@@ -1064,15 +1064,14 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1064
1064
|
if (!n) return {};
|
|
1065
1065
|
const _ = { ...n };
|
|
1066
1066
|
return delete _.text, _;
|
|
1067
|
-
}, p = (n) => Rt(i.value, n),
|
|
1067
|
+
}, p = (n) => Rt(i.value, n), T = (n, _) => {
|
|
1068
1068
|
bs(i.value, n, _);
|
|
1069
1069
|
}, W = (n) => {
|
|
1070
1070
|
let _ = typeof n.rule == "function" ? n.rule(i.value) : n.rule;
|
|
1071
1071
|
const U = !n.noRequired && !a.disableDefaultRequired;
|
|
1072
1072
|
if (U) {
|
|
1073
1073
|
const K = {
|
|
1074
|
-
|
|
1075
|
-
message: `${typeof n.label == "string" ? n.label : "此项"}不能为空`,
|
|
1074
|
+
validator: (Q, te) => te == null || te === "" ? /* @__PURE__ */ new Error(`${typeof n.label == "string" ? n.label : "此项"}不能为空`) : !0,
|
|
1076
1075
|
trigger: "blur"
|
|
1077
1076
|
};
|
|
1078
1077
|
_ ? _ = Array.isArray(_) ? [K, ..._] : [K, _] : _ = K;
|
|
@@ -1101,7 +1100,7 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1101
1100
|
size: n.size ?? "medium",
|
|
1102
1101
|
validationStatus: n.validationStatus
|
|
1103
1102
|
};
|
|
1104
|
-
},
|
|
1103
|
+
}, ae = {
|
|
1105
1104
|
xs: 0,
|
|
1106
1105
|
s: 640,
|
|
1107
1106
|
m: 1024,
|
|
@@ -1112,23 +1111,23 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1112
1111
|
if (typeof n == "number" || typeof n == "string") return n;
|
|
1113
1112
|
if (typeof n == "object") {
|
|
1114
1113
|
const _ = [];
|
|
1115
|
-
return Object.entries(
|
|
1114
|
+
return Object.entries(ae).forEach(([U, K]) => {
|
|
1116
1115
|
const Q = n[U];
|
|
1117
1116
|
Q !== void 0 && _.push(`${K}:${Q}`);
|
|
1118
1117
|
}), _.length === 0 ? 24 : _.join(" ");
|
|
1119
1118
|
}
|
|
1120
1119
|
return 24;
|
|
1121
|
-
},
|
|
1120
|
+
}, he = (n) => ({
|
|
1122
1121
|
span: L(n.span ?? a.cols),
|
|
1123
1122
|
offset: n.offset
|
|
1124
|
-
}),
|
|
1123
|
+
}), we = async (...n) => {
|
|
1125
1124
|
await l.value.validate(...n);
|
|
1126
1125
|
}, Ae = async (n, _) => {
|
|
1127
1126
|
const U = Array.isArray(n) ? n : [n];
|
|
1128
1127
|
await l.value.validate(_, (K) => U.some((Q) => K.key === Q));
|
|
1129
1128
|
}, Re = () => l.value?.restoreValidation(), S = () => {
|
|
1130
|
-
if (Re(),
|
|
1131
|
-
const n = Mt(
|
|
1129
|
+
if (Re(), g.value !== void 0) {
|
|
1130
|
+
const n = Mt(g.value), _ = i.value;
|
|
1132
1131
|
(/* @__PURE__ */ new Set([...Object.keys(_), ...Object.keys(n)])).forEach((U) => {
|
|
1133
1132
|
_[U] = U in n ? n[U] : null;
|
|
1134
1133
|
});
|
|
@@ -1136,7 +1135,7 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1136
1135
|
o("reset");
|
|
1137
1136
|
}, k = async () => {
|
|
1138
1137
|
try {
|
|
1139
|
-
await
|
|
1138
|
+
await we(), o("submit", i.value);
|
|
1140
1139
|
} catch (n) {
|
|
1141
1140
|
o("validate", n);
|
|
1142
1141
|
}
|
|
@@ -1145,7 +1144,7 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1145
1144
|
};
|
|
1146
1145
|
return t({
|
|
1147
1146
|
formRef: l.value,
|
|
1148
|
-
validate:
|
|
1147
|
+
validate: we,
|
|
1149
1148
|
validateField: Ae,
|
|
1150
1149
|
restoreValidation: Re,
|
|
1151
1150
|
getFormData: () => i.value,
|
|
@@ -1156,11 +1155,11 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1156
1155
|
};
|
|
1157
1156
|
},
|
|
1158
1157
|
getFieldValue: (n) => Rt(i.value, n),
|
|
1159
|
-
setFieldValue: (n, _) =>
|
|
1158
|
+
setFieldValue: (n, _) => T(n, _),
|
|
1160
1159
|
resetFields: S,
|
|
1161
1160
|
getFormItemInst: (n) => l.value?.getFormItemInst?.(n)
|
|
1162
1161
|
}), (n, _) => {
|
|
1163
|
-
const U = Kr, K = Hr, Q = V,
|
|
1162
|
+
const U = Kr, K = Hr, Q = V, te = Vr, Pe = Gr;
|
|
1164
1163
|
return v(), Y(X, null, [
|
|
1165
1164
|
H(n.$slots, "header", { model: i.value }, void 0, !0),
|
|
1166
1165
|
b(d(Qe), { show: a.loading }, {
|
|
@@ -1169,8 +1168,8 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1169
1168
|
ref: l,
|
|
1170
1169
|
model: i.value
|
|
1171
1170
|
}, P.value), {
|
|
1172
|
-
default: u(() => [b(
|
|
1173
|
-
default: u(() => [(v(!0), Y(X, null,
|
|
1171
|
+
default: u(() => [b(te, pa(da($.value)), {
|
|
1172
|
+
default: u(() => [(v(!0), Y(X, null, ne(x.value, (s) => (v(), A(K, q({ key: s.name }, { ref_for: !0 }, he(s)), {
|
|
1174
1173
|
default: u(() => [s.type === "slot" ? H(n.$slots, s.slot || s.name, {
|
|
1175
1174
|
key: 0,
|
|
1176
1175
|
model: i.value,
|
|
@@ -1183,14 +1182,14 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1183
1182
|
model: i.value,
|
|
1184
1183
|
schema: s,
|
|
1185
1184
|
value: p(s.name),
|
|
1186
|
-
setValue: (D) =>
|
|
1185
|
+
setValue: (D) => T(s.name, D)
|
|
1187
1186
|
}, () => [s.type === "radio-group" && s.props?.options ? (v(), A(d(De), q({
|
|
1188
1187
|
key: 0,
|
|
1189
1188
|
value: p(s.name),
|
|
1190
|
-
"onUpdate:value": (D) =>
|
|
1189
|
+
"onUpdate:value": (D) => T(s.name, D)
|
|
1191
1190
|
}, { ref_for: !0 }, c(s.props)), {
|
|
1192
1191
|
default: u(() => [b(d(Z), null, {
|
|
1193
|
-
default: u(() => [(v(!0), Y(X, null,
|
|
1192
|
+
default: u(() => [(v(!0), Y(X, null, ne(s.props.options, (D) => (v(), A(d(ea), {
|
|
1194
1193
|
key: D[s.props.valueField || "value"],
|
|
1195
1194
|
value: D[s.props.valueField || "value"],
|
|
1196
1195
|
disabled: D.disabled
|
|
@@ -1204,9 +1203,9 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1204
1203
|
}, 1040, ["value", "onUpdate:value"])) : s.type === "radio-button-group" && s.props?.options ? (v(), A(d(De), q({
|
|
1205
1204
|
key: 1,
|
|
1206
1205
|
value: p(s.name),
|
|
1207
|
-
"onUpdate:value": (D) =>
|
|
1206
|
+
"onUpdate:value": (D) => T(s.name, D)
|
|
1208
1207
|
}, { ref_for: !0 }, c(s.props)), {
|
|
1209
|
-
default: u(() => [(v(!0), Y(X, null,
|
|
1208
|
+
default: u(() => [(v(!0), Y(X, null, ne(s.props.options, (D) => (v(), A(d(ta), {
|
|
1210
1209
|
key: D[s.props.valueField || "value"],
|
|
1211
1210
|
value: D[s.props.valueField || "value"],
|
|
1212
1211
|
disabled: D.disabled
|
|
@@ -1218,10 +1217,10 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1218
1217
|
}, 1040, ["value", "onUpdate:value"])) : s.type === "checkbox-group" && s.props?.options ? (v(), A(d(Je), q({
|
|
1219
1218
|
key: 2,
|
|
1220
1219
|
value: p(s.name),
|
|
1221
|
-
"onUpdate:value": (D) =>
|
|
1220
|
+
"onUpdate:value": (D) => T(s.name, D)
|
|
1222
1221
|
}, { ref_for: !0 }, c(s.props)), {
|
|
1223
1222
|
default: u(() => [b(d(Z), null, {
|
|
1224
|
-
default: u(() => [(v(!0), Y(X, null,
|
|
1223
|
+
default: u(() => [(v(!0), Y(X, null, ne(s.props.options, (D) => (v(), A(d(Et), {
|
|
1225
1224
|
key: D[s.props.valueField || "value"],
|
|
1226
1225
|
value: D[s.props.valueField || "value"],
|
|
1227
1226
|
disabled: D.disabled
|
|
@@ -1232,32 +1231,32 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1232
1231
|
_: 2
|
|
1233
1232
|
}, 1024)]),
|
|
1234
1233
|
_: 2
|
|
1235
|
-
}, 1040, ["value", "onUpdate:value"])) : s.type === "switch" ? (v(), A(
|
|
1234
|
+
}, 1040, ["value", "onUpdate:value"])) : s.type === "switch" ? (v(), A(de(R(s)), q({
|
|
1236
1235
|
key: 3,
|
|
1237
1236
|
value: p(s.name),
|
|
1238
|
-
"onUpdate:value": (D) =>
|
|
1237
|
+
"onUpdate:value": (D) => T(s.name, D)
|
|
1239
1238
|
}, { ref_for: !0 }, s.props, { disabled: z(s) }), null, 16, [
|
|
1240
1239
|
"value",
|
|
1241
1240
|
"onUpdate:value",
|
|
1242
1241
|
"disabled"
|
|
1243
|
-
])) : s.type === "image-upload" || s.type === "file-upload" ? (v(), A(
|
|
1242
|
+
])) : s.type === "image-upload" || s.type === "file-upload" ? (v(), A(de(R(s)), q({
|
|
1244
1243
|
key: 4,
|
|
1245
1244
|
"file-list": p(s.name) || [],
|
|
1246
|
-
"onUpdate:fileList": (D) =>
|
|
1245
|
+
"onUpdate:fileList": (D) => T(s.name, D),
|
|
1247
1246
|
"upload-type": s.type === "image-upload" ? "image" : "file"
|
|
1248
1247
|
}, { ref_for: !0 }, s.props, { disabled: z(s) }), null, 16, [
|
|
1249
1248
|
"file-list",
|
|
1250
1249
|
"onUpdate:fileList",
|
|
1251
1250
|
"upload-type",
|
|
1252
1251
|
"disabled"
|
|
1253
|
-
])) : (v(), A(
|
|
1252
|
+
])) : (v(), A(de(R(s)), q({
|
|
1254
1253
|
key: 5,
|
|
1255
1254
|
ref_for: !0
|
|
1256
1255
|
}, O(s), ga(B(s))), null, 16))], !0)]),
|
|
1257
1256
|
_: 2
|
|
1258
1257
|
}, [typeof s.label == "function" || s.help ? {
|
|
1259
1258
|
name: "label",
|
|
1260
|
-
fn: u(() => [typeof s.label == "function" ? (v(), A(
|
|
1259
|
+
fn: u(() => [typeof s.label == "function" ? (v(), A(de(s.label), { key: 0 })) : (v(), Y(X, { key: 1 }, [j(G(s.label), 1)], 64)), s.help ? (v(), A(d(Fe), {
|
|
1261
1260
|
key: 2,
|
|
1262
1261
|
trigger: "hover"
|
|
1263
1262
|
}, {
|
|
@@ -1280,7 +1279,7 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1280
1279
|
}, {
|
|
1281
1280
|
default: u(() => [H(n.$slots, "footer", {
|
|
1282
1281
|
model: i.value,
|
|
1283
|
-
validate:
|
|
1282
|
+
validate: we,
|
|
1284
1283
|
reset: S
|
|
1285
1284
|
}, () => [b(d(Z), { justify: a.footerAlign }, {
|
|
1286
1285
|
default: u(() => [
|
|
@@ -1288,11 +1287,11 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1288
1287
|
default: u(() => [j(G(h.value.text), 1)]),
|
|
1289
1288
|
_: 1
|
|
1290
1289
|
}, 16)),
|
|
1291
|
-
|
|
1292
|
-
default: u(() => [j(G(
|
|
1290
|
+
y.value.hidden ? J("", !0) : (v(), A(Q, q({ key: 1 }, f(y.value), { onClick: k }), {
|
|
1291
|
+
default: u(() => [j(G(y.value.text), 1)]),
|
|
1293
1292
|
_: 1
|
|
1294
1293
|
}, 16)),
|
|
1295
|
-
(v(!0), Y(X, null,
|
|
1294
|
+
(v(!0), Y(X, null, ne(a.extraButtons, (s) => (v(), A(Q, {
|
|
1296
1295
|
key: s.text,
|
|
1297
1296
|
type: s.type,
|
|
1298
1297
|
size: s.size,
|
|
@@ -1326,17 +1325,17 @@ var _s = /* @__PURE__ */ fe({
|
|
|
1326
1325
|
const r = e.__vccOpts || e;
|
|
1327
1326
|
for (const [a, o] of t) r[a] = o;
|
|
1328
1327
|
return r;
|
|
1329
|
-
}, Me = /* @__PURE__ */ wr(_s, [["__scopeId", "data-v-
|
|
1328
|
+
}, Me = /* @__PURE__ */ wr(_s, [["__scopeId", "data-v-f40b5622"]]);
|
|
1330
1329
|
function hs(e) {
|
|
1331
|
-
const { maxVisible: t = -1, buttons: r = [], showView: a = !0, showEdit: o = !0, showDelete: i = !0, viewConfig: l, editConfig:
|
|
1332
|
-
const p =
|
|
1330
|
+
const { maxVisible: t = -1, buttons: r = [], showView: a = !0, showEdit: o = !0, showDelete: i = !0, viewConfig: l, editConfig: g, deleteConfig: m, onView: y, onEdit: h, onDelete: x } = e, P = (f, p, T, W) => p ? f ? typeof f.show == "function" ? f.show(T, W) : f.show !== !1 : !0 : !1, $ = (f, p, T) => f ? typeof f.disabled == "function" ? f.disabled(p, T) : f.disabled === !0 : !1, R = (f, p, T) => typeof f.show == "function" ? f.show(p, T) : f.show !== !1, z = (f, p, T) => typeof f.disabled == "function" ? f.disabled(p, T) : f.disabled === !0, C = (f, p, T) => typeof f == "function" ? f(p) : f || T, O = (f) => {
|
|
1331
|
+
const p = w(V, {
|
|
1333
1332
|
type: f.type,
|
|
1334
1333
|
size: "small",
|
|
1335
1334
|
disabled: f.disabled,
|
|
1336
1335
|
onClick: f.confirm ? void 0 : f.onClick,
|
|
1337
1336
|
renderIcon: f.icon
|
|
1338
1337
|
}, { default: () => f.label });
|
|
1339
|
-
return f.confirm ?
|
|
1338
|
+
return f.confirm ? w(Xr, { onPositiveClick: f.onClick }, {
|
|
1340
1339
|
trigger: () => p,
|
|
1341
1340
|
default: () => f.confirm
|
|
1342
1341
|
}) : p;
|
|
@@ -1346,68 +1345,68 @@ function hs(e) {
|
|
|
1346
1345
|
key: W.key,
|
|
1347
1346
|
disabled: W.disabled
|
|
1348
1347
|
}));
|
|
1349
|
-
return
|
|
1348
|
+
return w(Rr, {
|
|
1350
1349
|
options: p,
|
|
1351
1350
|
trigger: "click",
|
|
1352
1351
|
onSelect: (W) => {
|
|
1353
|
-
f.find((
|
|
1352
|
+
f.find((ae) => ae.key === W)?.onClick();
|
|
1354
1353
|
}
|
|
1355
|
-
}, { default: () =>
|
|
1354
|
+
}, { default: () => w(V, { size: "small" }, { default: () => "更多" }) });
|
|
1356
1355
|
};
|
|
1357
1356
|
return {
|
|
1358
1357
|
renderActions: (f, p) => {
|
|
1359
|
-
const
|
|
1360
|
-
if (P(l, a, f, p) &&
|
|
1358
|
+
const T = [];
|
|
1359
|
+
if (P(l, a, f, p) && T.push({
|
|
1361
1360
|
key: "__view__",
|
|
1362
1361
|
label: l?.label || "查看",
|
|
1363
1362
|
type: "info",
|
|
1364
1363
|
disabled: $(l, f, p),
|
|
1365
|
-
icon: () =>
|
|
1366
|
-
onClick: () =>
|
|
1364
|
+
icon: () => w(E, null, { default: () => w(ha) }),
|
|
1365
|
+
onClick: () => y?.({
|
|
1367
1366
|
row: f,
|
|
1368
1367
|
index: p
|
|
1369
1368
|
})
|
|
1370
|
-
}), P(
|
|
1369
|
+
}), P(g, o, f, p) && T.push({
|
|
1371
1370
|
key: "__edit__",
|
|
1372
|
-
label:
|
|
1371
|
+
label: g?.label || "编辑",
|
|
1373
1372
|
type: "primary",
|
|
1374
|
-
disabled: $(
|
|
1375
|
-
icon: () =>
|
|
1373
|
+
disabled: $(g, f, p),
|
|
1374
|
+
icon: () => w(E, null, { default: () => w(ba) }),
|
|
1376
1375
|
onClick: () => h?.({
|
|
1377
1376
|
row: f,
|
|
1378
1377
|
index: p
|
|
1379
1378
|
})
|
|
1380
|
-
}), P(m, i, f, p) &&
|
|
1379
|
+
}), P(m, i, f, p) && T.push({
|
|
1381
1380
|
key: "__delete__",
|
|
1382
1381
|
label: m?.label || "删除",
|
|
1383
1382
|
type: "error",
|
|
1384
1383
|
disabled: $(m, f, p),
|
|
1385
|
-
confirm:
|
|
1386
|
-
icon: () =>
|
|
1384
|
+
confirm: C(m?.confirm, f, "确定删除此记录吗?"),
|
|
1385
|
+
icon: () => w(E, null, { default: () => w(Sa) }),
|
|
1387
1386
|
onClick: () => x?.({
|
|
1388
1387
|
row: f,
|
|
1389
1388
|
index: p
|
|
1390
1389
|
})
|
|
1391
1390
|
}), r.forEach((L) => {
|
|
1392
|
-
R(L, f, p) &&
|
|
1391
|
+
R(L, f, p) && T.push({
|
|
1393
1392
|
key: L.key,
|
|
1394
1393
|
label: L.label,
|
|
1395
1394
|
type: L.type || "default",
|
|
1396
1395
|
disabled: z(L, f, p),
|
|
1397
|
-
confirm: L.confirm ?
|
|
1396
|
+
confirm: L.confirm ? C(L.confirm, f, "确定执行此操作吗?") : void 0,
|
|
1398
1397
|
icon: L.icon,
|
|
1399
1398
|
onClick: () => L.onClick?.(f, p)
|
|
1400
1399
|
});
|
|
1401
|
-
}), t === -1 ||
|
|
1400
|
+
}), t === -1 || T.length <= t) return w(Z, {
|
|
1402
1401
|
size: "small",
|
|
1403
1402
|
wrap: !1
|
|
1404
|
-
}, () =>
|
|
1405
|
-
if (t === 0) return B(
|
|
1406
|
-
const W =
|
|
1407
|
-
return
|
|
1403
|
+
}, () => T.map((L) => O(L)));
|
|
1404
|
+
if (t === 0) return B(T);
|
|
1405
|
+
const W = T.slice(0, t), ae = T.slice(t);
|
|
1406
|
+
return w(Z, {
|
|
1408
1407
|
size: "small",
|
|
1409
1408
|
wrap: !1
|
|
1410
|
-
}, () => [...W.map((L) => O(L)), B(
|
|
1409
|
+
}, () => [...W.map((L) => O(L)), B(ae)]);
|
|
1411
1410
|
},
|
|
1412
1411
|
isButtonVisible: R,
|
|
1413
1412
|
isButtonDisabled: z
|
|
@@ -1426,7 +1425,7 @@ var ws = (e) => {
|
|
|
1426
1425
|
if (!e) return "-";
|
|
1427
1426
|
const a = String(e), o = r?.newWindow !== !1;
|
|
1428
1427
|
let i;
|
|
1429
|
-
return r?.text ? i = typeof r.text == "function" ? r.text(t) : r.text : i = a,
|
|
1428
|
+
return r?.text ? i = typeof r.text == "function" ? r.text(t) : r.text : i = a, w(V, {
|
|
1430
1429
|
text: !0,
|
|
1431
1430
|
type: "primary",
|
|
1432
1431
|
onClick: () => {
|
|
@@ -1434,12 +1433,12 @@ var ws = (e) => {
|
|
|
1434
1433
|
}
|
|
1435
1434
|
}, {
|
|
1436
1435
|
default: () => i,
|
|
1437
|
-
icon: () =>
|
|
1436
|
+
icon: () => w(E, { size: 14 }, () => w(Ca))
|
|
1438
1437
|
});
|
|
1439
1438
|
}, xr = (e, t) => {
|
|
1440
1439
|
if (!e) return "-";
|
|
1441
1440
|
const r = String(e), a = t?.width ?? 60, o = t?.height ?? 60, i = t?.radius ?? 4, l = t?.fallback;
|
|
1442
|
-
return
|
|
1441
|
+
return w(Wr, {
|
|
1443
1442
|
src: r,
|
|
1444
1443
|
width: typeof a == "number" ? a : void 0,
|
|
1445
1444
|
height: typeof o == "number" ? o : void 0,
|
|
@@ -1459,13 +1458,13 @@ var ws = (e) => {
|
|
|
1459
1458
|
const l = document.createElement("a");
|
|
1460
1459
|
l.href = a, l.download = o, l.target = "_blank", l.rel = "noopener noreferrer", document.body.appendChild(l), l.click(), document.body.removeChild(l);
|
|
1461
1460
|
};
|
|
1462
|
-
return
|
|
1463
|
-
trigger: () =>
|
|
1461
|
+
return w(Fe, { trigger: "hover" }, {
|
|
1462
|
+
trigger: () => w(V, {
|
|
1464
1463
|
text: !0,
|
|
1465
1464
|
type: "primary",
|
|
1466
1465
|
onClick: i
|
|
1467
1466
|
}, {
|
|
1468
|
-
default: () =>
|
|
1467
|
+
default: () => w("span", { style: {
|
|
1469
1468
|
maxWidth: "150px",
|
|
1470
1469
|
overflow: "hidden",
|
|
1471
1470
|
textOverflow: "ellipsis",
|
|
@@ -1473,38 +1472,38 @@ var ws = (e) => {
|
|
|
1473
1472
|
display: "inline-block",
|
|
1474
1473
|
verticalAlign: "middle"
|
|
1475
1474
|
} }, o),
|
|
1476
|
-
icon: () =>
|
|
1475
|
+
icon: () => w(E, { size: 14 }, () => w(_a))
|
|
1477
1476
|
}),
|
|
1478
1477
|
default: () => o
|
|
1479
1478
|
});
|
|
1480
1479
|
}, kr = (e, t) => {
|
|
1481
1480
|
if (!e) return "-";
|
|
1482
1481
|
const r = String(e), a = Oe[r];
|
|
1483
|
-
return a ?
|
|
1482
|
+
return a ? w(E, {
|
|
1484
1483
|
size: t?.size ?? 20,
|
|
1485
1484
|
color: t?.color
|
|
1486
|
-
}, () =>
|
|
1485
|
+
}, () => w(a)) : r;
|
|
1487
1486
|
}, Ye = (e, t, r = "label", a = "value") => {
|
|
1488
1487
|
if (e == null) return "-";
|
|
1489
|
-
if (!t || t.length === 0) return
|
|
1488
|
+
if (!t || t.length === 0) return w(Ee, { size: "small" }, () => String(e));
|
|
1490
1489
|
const o = t.find((i) => {
|
|
1491
1490
|
const l = i[a];
|
|
1492
1491
|
return l === e || String(l) === String(e) ? !0 : typeof l == "number" && !isNaN(Number(e)) ? l === Number(e) : typeof e == "number" && !isNaN(Number(l)) ? Number(l) === e : typeof l == "boolean" ? l === (e === "true" || e === !0) : typeof e == "boolean" ? (l === "true" || l === !0) === e : !1;
|
|
1493
1492
|
});
|
|
1494
1493
|
if (o) {
|
|
1495
1494
|
const i = o, l = i[r];
|
|
1496
|
-
return
|
|
1495
|
+
return w(Ee, {
|
|
1497
1496
|
size: "small",
|
|
1498
|
-
...Object.keys(o).reduce((
|
|
1497
|
+
...Object.keys(o).reduce((g, m) => (m !== r && m !== a && (g[m] = i[m]), g), {})
|
|
1499
1498
|
}, () => l);
|
|
1500
1499
|
}
|
|
1501
|
-
return
|
|
1502
|
-
}, Ar = (e, t, r = "label", a = "value") => e == null ? "-" : Array.isArray(e) ?
|
|
1500
|
+
return w(Ee, { size: "small" }, () => String(e));
|
|
1501
|
+
}, Ar = (e, t, r = "label", a = "value") => e == null ? "-" : Array.isArray(e) ? w(Z, {
|
|
1503
1502
|
size: "small",
|
|
1504
1503
|
wrap: !0
|
|
1505
1504
|
}, () => e.map((o, i) => {
|
|
1506
1505
|
const l = Ye(o, t, r, a);
|
|
1507
|
-
return typeof l == "string" ?
|
|
1506
|
+
return typeof l == "string" ? w("span", { key: i }, l) : l;
|
|
1508
1507
|
})) : Ye(e, t, r, a);
|
|
1509
1508
|
const Pr = (e, t, r) => {
|
|
1510
1509
|
switch (r.columnType || "text") {
|
|
@@ -1537,17 +1536,17 @@ function Us() {
|
|
|
1537
1536
|
};
|
|
1538
1537
|
}
|
|
1539
1538
|
function Cs(e) {
|
|
1540
|
-
const { columns: t, actionColumn: r, onView: a, onEdit: o, onDelete: i } = e, l = (c) => "key" in c && c.key ? String(c.key) : "type" in c ? `__${c.type}__` : "",
|
|
1539
|
+
const { columns: t, actionColumn: r, onView: a, onEdit: o, onDelete: i } = e, l = (c) => "key" in c && c.key ? String(c.key) : "type" in c ? `__${c.type}__` : "", g = (c) => {
|
|
1541
1540
|
if ("title" in c) {
|
|
1542
1541
|
if (typeof c.title == "string") return c.title;
|
|
1543
1542
|
if (typeof c.title == "function") return "自定义列";
|
|
1544
1543
|
}
|
|
1545
1544
|
return l(c);
|
|
1546
|
-
}, m = (c) => "defaultVisible" in c ? c.defaultVisible !== !1 : !0,
|
|
1545
|
+
}, m = (c) => "defaultVisible" in c ? c.defaultVisible !== !1 : !0, y = (c) => "type" in c && (c.type === "selection" || c.type === "expand") ? !1 : "configurable" in c ? c.configurable !== !1 : !0, h = () => t.filter((c) => m(c)).map((c) => l(c)).filter(Boolean), x = re(h()), P = M(() => t.filter((c) => l(c) && y(c)).map((c) => ({
|
|
1547
1546
|
key: l(c),
|
|
1548
|
-
title:
|
|
1547
|
+
title: g(c),
|
|
1549
1548
|
visible: x.value.includes(l(c)),
|
|
1550
|
-
configurable:
|
|
1549
|
+
configurable: y(c)
|
|
1551
1550
|
}))), $ = () => {
|
|
1552
1551
|
if (r?.show === !1) return null;
|
|
1553
1552
|
const { renderActions: c } = hs({
|
|
@@ -1571,7 +1570,7 @@ function Cs(e) {
|
|
|
1571
1570
|
return {
|
|
1572
1571
|
...c,
|
|
1573
1572
|
align: c.align || "center",
|
|
1574
|
-
render: (
|
|
1573
|
+
render: (T) => Pr(p ? T[p] : void 0, T, f)
|
|
1575
1574
|
};
|
|
1576
1575
|
}
|
|
1577
1576
|
return {
|
|
@@ -1582,8 +1581,8 @@ function Cs(e) {
|
|
|
1582
1581
|
return {
|
|
1583
1582
|
mergedColumns: M(() => {
|
|
1584
1583
|
const c = t.filter((p) => {
|
|
1585
|
-
const
|
|
1586
|
-
return "type" in p && (p.type === "selection" || p.type === "expand") || !
|
|
1584
|
+
const T = l(p);
|
|
1585
|
+
return "type" in p && (p.type === "selection" || p.type === "expand") || !T ? !0 : x.value.includes(T);
|
|
1587
1586
|
}).map((p) => R(p)), f = $();
|
|
1588
1587
|
return f && c.push(f), c;
|
|
1589
1588
|
}),
|
|
@@ -1619,7 +1618,7 @@ function xs(e) {
|
|
|
1619
1618
|
}), l = (P) => {
|
|
1620
1619
|
if (!(t === !1 || !t))
|
|
1621
1620
|
return t[i()[P]];
|
|
1622
|
-
},
|
|
1621
|
+
}, g = M(() => t === !1 || !t ? !1 : {
|
|
1623
1622
|
page: l("page") ?? 1,
|
|
1624
1623
|
pageSize: l("pageSize") ?? 10,
|
|
1625
1624
|
itemCount: l("itemCount"),
|
|
@@ -1632,7 +1631,7 @@ function xs(e) {
|
|
|
1632
1631
|
if (t === !1 || !t) return {};
|
|
1633
1632
|
const $ = i(), R = { ...t };
|
|
1634
1633
|
return P.page !== void 0 && (R[$.page] = P.page), P.pageSize !== void 0 && (R[$.pageSize] = P.pageSize), R;
|
|
1635
|
-
},
|
|
1634
|
+
}, y = (P) => {
|
|
1636
1635
|
const $ = i();
|
|
1637
1636
|
return {
|
|
1638
1637
|
[$.page]: P[$.page],
|
|
@@ -1641,17 +1640,17 @@ function xs(e) {
|
|
|
1641
1640
|
};
|
|
1642
1641
|
};
|
|
1643
1642
|
return {
|
|
1644
|
-
paginationConfig:
|
|
1643
|
+
paginationConfig: g,
|
|
1645
1644
|
handlePageChange: (P) => {
|
|
1646
1645
|
const $ = m({ page: P });
|
|
1647
|
-
a?.($), o?.(
|
|
1646
|
+
a?.($), o?.(y($));
|
|
1648
1647
|
},
|
|
1649
1648
|
handlePageSizeChange: (P) => {
|
|
1650
1649
|
const $ = m({
|
|
1651
1650
|
page: 1,
|
|
1652
1651
|
pageSize: P
|
|
1653
1652
|
});
|
|
1654
|
-
a?.($), o?.(
|
|
1653
|
+
a?.($), o?.(y($));
|
|
1655
1654
|
},
|
|
1656
1655
|
getFieldNames: i
|
|
1657
1656
|
};
|
|
@@ -1659,7 +1658,7 @@ function xs(e) {
|
|
|
1659
1658
|
var Ss = {
|
|
1660
1659
|
key: 0,
|
|
1661
1660
|
class: "dydx-table__toolbar"
|
|
1662
|
-
}, ks = { class: "dydx-table__column-setting" }, As = { class: "dydx-table__column-setting-header" }, Ps = /* @__PURE__ */
|
|
1661
|
+
}, ks = { class: "dydx-table__column-setting" }, As = { class: "dydx-table__column-setting-header" }, Ps = /* @__PURE__ */ ce({
|
|
1663
1662
|
inheritAttrs: !1,
|
|
1664
1663
|
__name: "DydxNaiveTable",
|
|
1665
1664
|
props: {
|
|
@@ -1710,13 +1709,13 @@ var Ss = {
|
|
|
1710
1709
|
"delete"
|
|
1711
1710
|
],
|
|
1712
1711
|
setup(e, { expose: t, emit: r }) {
|
|
1713
|
-
const a = e, o = r, i = Xe(), l =
|
|
1712
|
+
const a = e, o = r, i = Xe(), l = re(null), g = re(void 0), m = M(() => !i.maxHeight), y = (S) => {
|
|
1714
1713
|
const k = getComputedStyle(S);
|
|
1715
1714
|
return S.clientHeight <= 0 ? !1 : !!(parseFloat(k.flexGrow) > 0 || k.height && k.height !== "auto" && k.height !== "0px" || k.maxHeight && k.maxHeight !== "none" && k.maxHeight !== "0px" || k.overflowY === "auto" || k.overflowY === "scroll");
|
|
1716
1715
|
}, h = (S) => {
|
|
1717
1716
|
let k = S.parentElement;
|
|
1718
1717
|
for (; k && k !== document.body; ) {
|
|
1719
|
-
if (
|
|
1718
|
+
if (y(k)) return k;
|
|
1720
1719
|
k = k.parentElement;
|
|
1721
1720
|
}
|
|
1722
1721
|
return null;
|
|
@@ -1726,25 +1725,25 @@ var Ss = {
|
|
|
1726
1725
|
if (!S) return;
|
|
1727
1726
|
const k = h(S);
|
|
1728
1727
|
if (!k) {
|
|
1729
|
-
|
|
1728
|
+
g.value = void 0;
|
|
1730
1729
|
return;
|
|
1731
1730
|
}
|
|
1732
|
-
const N = getComputedStyle(k), n = parseFloat(N.paddingTop), _ = parseFloat(N.paddingBottom), U = k.getBoundingClientRect(), K = S.getBoundingClientRect(), Q = S.querySelector(".dydx-table__toolbar"),
|
|
1733
|
-
ft > 200 ?
|
|
1731
|
+
const N = getComputedStyle(k), n = parseFloat(N.paddingTop), _ = parseFloat(N.paddingBottom), U = k.getBoundingClientRect(), K = S.getBoundingClientRect(), Q = S.querySelector(".dydx-table__toolbar"), te = Q ? Q.offsetHeight + 16 : 0, Pe = S.querySelector(".n-data-table-thead"), s = Pe ? Pe.offsetHeight : 40, D = K.top - (U.top + n), ft = k.clientHeight - n - _ - D - te - s;
|
|
1732
|
+
ft > 200 ? g.value = ft : g.value = void 0;
|
|
1734
1733
|
});
|
|
1735
|
-
}, P = M(() => i.maxHeight ? i.maxHeight :
|
|
1734
|
+
}, P = M(() => i.maxHeight ? i.maxHeight : g.value);
|
|
1736
1735
|
Kt(() => {
|
|
1737
1736
|
x(), window.addEventListener("resize", x);
|
|
1738
1737
|
}), ya(() => {
|
|
1739
1738
|
window.removeEventListener("resize", x);
|
|
1740
1739
|
});
|
|
1741
|
-
const $ =
|
|
1740
|
+
const $ = re(null), { mergedColumns: R, configurableColumns: z, visibleColumnKeys: C, setVisibleColumnKeys: O, resetColumnSetting: B, getVisibleColumnKeys: c } = Cs({
|
|
1742
1741
|
columns: a.columns,
|
|
1743
1742
|
actionColumn: a.actionColumn,
|
|
1744
1743
|
onView: (S) => o("view", S),
|
|
1745
1744
|
onEdit: (S) => o("edit", S),
|
|
1746
1745
|
onDelete: (S) => o("delete", S)
|
|
1747
|
-
}), { paginationConfig: f, handlePageChange: p, handlePageSizeChange:
|
|
1746
|
+
}), { paginationConfig: f, handlePageChange: p, handlePageSizeChange: T } = xs({
|
|
1748
1747
|
get pagination() {
|
|
1749
1748
|
return a.pagination;
|
|
1750
1749
|
},
|
|
@@ -1754,14 +1753,14 @@ var Ss = {
|
|
|
1754
1753
|
onUpdatePagination: (S) => o("update:pagination", S),
|
|
1755
1754
|
onPageChange: (S) => o("pageChange", S)
|
|
1756
1755
|
});
|
|
1757
|
-
ma(
|
|
1756
|
+
ma(C, (S) => {
|
|
1758
1757
|
o("update:visibleColumns", S);
|
|
1759
1758
|
});
|
|
1760
|
-
const W = M(() => typeof a.rowKey == "function" ? a.rowKey : (S) => S[a.rowKey]),
|
|
1759
|
+
const W = M(() => typeof a.rowKey == "function" ? a.rowKey : (S) => S[a.rowKey]), ae = (S) => {
|
|
1761
1760
|
o("update:checkedRowKeys", S, a.data.filter((k) => S.includes(W.value(k))));
|
|
1762
1761
|
}, L = () => {
|
|
1763
1762
|
a.onAdd?.();
|
|
1764
|
-
},
|
|
1763
|
+
}, he = () => {
|
|
1765
1764
|
a.onRefresh?.();
|
|
1766
1765
|
};
|
|
1767
1766
|
return t({
|
|
@@ -1770,7 +1769,7 @@ var Ss = {
|
|
|
1770
1769
|
o("update:checkedRowKeys", [], []);
|
|
1771
1770
|
},
|
|
1772
1771
|
refresh: () => {
|
|
1773
|
-
|
|
1772
|
+
he();
|
|
1774
1773
|
},
|
|
1775
1774
|
getVisibleColumnKeys: c,
|
|
1776
1775
|
setVisibleColumnKeys: O,
|
|
@@ -1799,7 +1798,7 @@ var Ss = {
|
|
|
1799
1798
|
default: u(() => [j(" " + G(e.addButtonText), 1)]),
|
|
1800
1799
|
_: 3
|
|
1801
1800
|
})) : J("", !0),
|
|
1802
|
-
(v(!0), Y(X, null,
|
|
1801
|
+
(v(!0), Y(X, null, ne(e.leftButtons, (N) => (v(), Y(X, { key: N.key }, [N.show !== !1 ? (v(), A(d(V), {
|
|
1803
1802
|
key: 0,
|
|
1804
1803
|
type: N.type,
|
|
1805
1804
|
disabled: N.disabled,
|
|
@@ -1809,7 +1808,7 @@ var Ss = {
|
|
|
1809
1808
|
_: 2
|
|
1810
1809
|
}, [N.icon ? {
|
|
1811
1810
|
name: "icon",
|
|
1812
|
-
fn: u(() => [(v(), A(
|
|
1811
|
+
fn: u(() => [(v(), A(de(N.icon)))]),
|
|
1813
1812
|
key: "0"
|
|
1814
1813
|
} : void 0]), 1032, [
|
|
1815
1814
|
"type",
|
|
@@ -1825,7 +1824,7 @@ var Ss = {
|
|
|
1825
1824
|
}, {
|
|
1826
1825
|
default: u(() => [
|
|
1827
1826
|
H(S.$slots, "toolbar-right", {}, void 0, !0),
|
|
1828
|
-
(v(!0), Y(X, null,
|
|
1827
|
+
(v(!0), Y(X, null, ne(e.rightButtons, (N) => (v(), Y(X, { key: N.key }, [N.show !== !1 ? (v(), A(d(V), {
|
|
1829
1828
|
key: 0,
|
|
1830
1829
|
type: N.type,
|
|
1831
1830
|
disabled: N.disabled,
|
|
@@ -1835,7 +1834,7 @@ var Ss = {
|
|
|
1835
1834
|
_: 2
|
|
1836
1835
|
}, [N.icon ? {
|
|
1837
1836
|
name: "icon",
|
|
1838
|
-
fn: u(() => [(v(), A(
|
|
1837
|
+
fn: u(() => [(v(), A(de(N.icon)))]),
|
|
1839
1838
|
key: "0"
|
|
1840
1839
|
} : void 0]), 1032, [
|
|
1841
1840
|
"type",
|
|
@@ -1849,7 +1848,7 @@ var Ss = {
|
|
|
1849
1848
|
trigger: u(() => [b(d(V), {
|
|
1850
1849
|
circle: "",
|
|
1851
1850
|
class: "dydx-table__icon-btn",
|
|
1852
|
-
onClick:
|
|
1851
|
+
onClick: he
|
|
1853
1852
|
}, {
|
|
1854
1853
|
icon: u(() => [b(d(E), null, {
|
|
1855
1854
|
default: u(() => [b(d(qt))]),
|
|
@@ -1888,14 +1887,14 @@ var Ss = {
|
|
|
1888
1887
|
default: u(() => [...k[3] || (k[3] = [j(" 重置 ", -1)])]),
|
|
1889
1888
|
_: 1
|
|
1890
1889
|
}, 8, ["onClick"])]), b(d(Je), {
|
|
1891
|
-
value: d(
|
|
1892
|
-
"onUpdate:value": k[0] || (k[0] = (N) => fa(
|
|
1890
|
+
value: d(C),
|
|
1891
|
+
"onUpdate:value": k[0] || (k[0] = (N) => fa(C) ? C.value = N : null)
|
|
1893
1892
|
}, {
|
|
1894
1893
|
default: u(() => [b(d(Z), {
|
|
1895
1894
|
vertical: "",
|
|
1896
1895
|
size: 8
|
|
1897
1896
|
}, {
|
|
1898
|
-
default: u(() => [(v(!0), Y(X, null,
|
|
1897
|
+
default: u(() => [(v(!0), Y(X, null, ne(d(z), (N) => (v(), A(d(Et), {
|
|
1899
1898
|
key: N.key,
|
|
1900
1899
|
value: N.key,
|
|
1901
1900
|
label: N.title
|
|
@@ -1921,8 +1920,8 @@ var Ss = {
|
|
|
1921
1920
|
"max-height": P.value
|
|
1922
1921
|
}, d(i), {
|
|
1923
1922
|
"onUpdate:page": d(p),
|
|
1924
|
-
"onUpdate:pageSize": d(
|
|
1925
|
-
"onUpdate:checkedRowKeys":
|
|
1923
|
+
"onUpdate:pageSize": d(T),
|
|
1924
|
+
"onUpdate:checkedRowKeys": ae
|
|
1926
1925
|
}), null, 16, [
|
|
1927
1926
|
"data",
|
|
1928
1927
|
"columns",
|
|
@@ -1936,7 +1935,7 @@ var Ss = {
|
|
|
1936
1935
|
"onUpdate:pageSize"
|
|
1937
1936
|
])], 512));
|
|
1938
1937
|
}
|
|
1939
|
-
}), Or = /* @__PURE__ */ wr(Ps, [["__scopeId", "data-v-41718586"]]), $s = /* @__PURE__ */
|
|
1938
|
+
}), Or = /* @__PURE__ */ wr(Ps, [["__scopeId", "data-v-41718586"]]), $s = /* @__PURE__ */ ce({
|
|
1940
1939
|
name: "DydxFormModal",
|
|
1941
1940
|
inheritAttrs: !1,
|
|
1942
1941
|
__name: "DydxFormModal",
|
|
@@ -1970,7 +1969,7 @@ var Ss = {
|
|
|
1970
1969
|
"cancel"
|
|
1971
1970
|
],
|
|
1972
1971
|
setup(e, { expose: t, emit: r }) {
|
|
1973
|
-
const a = e, o = r, i = Xe(), l =
|
|
1972
|
+
const a = e, o = r, i = Xe(), l = re(), g = M(() => a.title ? a.title : `${a.model[a.rowKey] ? "编辑" : "新增"}${a.subtitle}`), m = M(() => ({ width: typeof a.width == "number" ? `${a.width}px` : a.width })), y = () => {
|
|
1974
1973
|
o("update:show", !1), o("cancel");
|
|
1975
1974
|
}, h = async () => {
|
|
1976
1975
|
try {
|
|
@@ -1985,7 +1984,7 @@ var Ss = {
|
|
|
1985
1984
|
}), (x, P) => (v(), A(d(Qr), q({
|
|
1986
1985
|
show: e.show,
|
|
1987
1986
|
preset: "card",
|
|
1988
|
-
title:
|
|
1987
|
+
title: g.value,
|
|
1989
1988
|
style: m.value,
|
|
1990
1989
|
"mask-closable": !1
|
|
1991
1990
|
}, d(i), { "onUpdate:show": P[0] || (P[0] = ($) => o("update:show", $)) }), xe({ _: 2 }, [
|
|
@@ -2039,7 +2038,7 @@ var Ss = {
|
|
|
2039
2038
|
fn: u(() => [b(d(Z), { justify: "end" }, {
|
|
2040
2039
|
default: u(() => [e.showCancel ? (v(), A(d(V), {
|
|
2041
2040
|
key: 0,
|
|
2042
|
-
onClick:
|
|
2041
|
+
onClick: y
|
|
2043
2042
|
}, {
|
|
2044
2043
|
icon: u(() => [b(d(E), null, {
|
|
2045
2044
|
default: u(() => [b(d(Wt))]),
|
|
@@ -2074,7 +2073,7 @@ var Ss = {
|
|
|
2074
2073
|
"style"
|
|
2075
2074
|
]));
|
|
2076
2075
|
}
|
|
2077
|
-
}), Nr = $s, Os = /* @__PURE__ */
|
|
2076
|
+
}), Nr = $s, Os = /* @__PURE__ */ ce({
|
|
2078
2077
|
name: "DydxFormDrawer",
|
|
2079
2078
|
inheritAttrs: !1,
|
|
2080
2079
|
__name: "DydxFormDrawer",
|
|
@@ -2109,9 +2108,9 @@ var Ss = {
|
|
|
2109
2108
|
"cancel"
|
|
2110
2109
|
],
|
|
2111
2110
|
setup(e, { expose: t, emit: r }) {
|
|
2112
|
-
const a = e, o = r, i = Xe(), l =
|
|
2111
|
+
const a = e, o = r, i = Xe(), l = re(), g = M(() => a.title ? a.title : `${a.model[a.rowKey] ? "编辑" : "新增"}${a.subtitle}`), m = () => {
|
|
2113
2112
|
o("update:show", !1), o("cancel");
|
|
2114
|
-
},
|
|
2113
|
+
}, y = async () => {
|
|
2115
2114
|
try {
|
|
2116
2115
|
await l.value?.validate(), o("confirm", a.model);
|
|
2117
2116
|
} catch {
|
|
@@ -2128,7 +2127,7 @@ var Ss = {
|
|
|
2128
2127
|
"mask-closable": !1
|
|
2129
2128
|
}, d(i), { "onUpdate:show": x[0] || (x[0] = (P) => o("update:show", P)) }), {
|
|
2130
2129
|
default: u(() => [b(d(Mr), {
|
|
2131
|
-
title:
|
|
2130
|
+
title: g.value,
|
|
2132
2131
|
closable: "",
|
|
2133
2132
|
onClose: m
|
|
2134
2133
|
}, xe({ _: 2 }, [h.$slots.default ? {
|
|
@@ -2181,7 +2180,7 @@ var Ss = {
|
|
|
2181
2180
|
})) : J("", !0), b(d(V), {
|
|
2182
2181
|
type: "primary",
|
|
2183
2182
|
loading: e.loading,
|
|
2184
|
-
onClick:
|
|
2183
|
+
onClick: y
|
|
2185
2184
|
}, {
|
|
2186
2185
|
icon: u(() => [b(d(E), null, {
|
|
2187
2186
|
default: u(() => [b(d(Ht))]),
|