z-ui-pc 0.5.5 → 0.5.6
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/index.d.ts +2 -1
- package/dist/index.js +751 -746
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ref as G, defineComponent as W, resolveComponent as S, createBlock as R, openBlock as h, unref as c, createSlots as pt, withCtx as B, createElementVNode as M, normalizeStyle as mt, toDisplayString as J, useCssVars as Ge, computed as
|
|
2
|
-
import V, { isNumber as Gt, cloneDeep as he, isUndefined as Ve, isEqual as jo, merge as
|
|
1
|
+
import { ref as G, defineComponent as W, resolveComponent as S, createBlock as R, openBlock as h, unref as c, createSlots as pt, withCtx as B, createElementVNode as M, normalizeStyle as mt, toDisplayString as J, useCssVars as Ge, computed as P, createElementBlock as I, renderSlot as fe, createTextVNode as K, normalizeClass as re, createCommentVNode as z, provide as Vo, inject as Oo, resolveDynamicComponent as jt, mergeProps as le, toHandlers as we, watch as ft, nextTick as ae, isRef as be, normalizeProps as Lo, guardReactiveProps as Ho, mergeModels as De, useModel as xe, createVNode as b, Fragment as q, renderList as se, useSlots as Kt, resolveDirective as Ae, withDirectives as pe, onBeforeUnmount as Le, markRaw as St, watchEffect as $e, getCurrentScope as gt, onScopeDispose as ht, withModifiers as _e, watchPostEffect as vt, onActivated as Uo, onDeactivated as Qo, onMounted as He, onUnmounted as At, useTemplateRef as Yo, Teleport as zo, withKeys as Zo, h as yt, isVNode as Xo, Transition as qt, getCurrentInstance as Jt, defineAsyncComponent as Wo, render as Tt } from "vue";
|
|
2
|
+
import V, { isNumber as Gt, cloneDeep as he, isUndefined as Ve, isEqual as jo, merge as Ne, mergeWith as Ko, isObject as We, isString as $t, isFunction as eo, sortBy as qo, debounce as Jo, isNull as xt } from "lodash";
|
|
3
3
|
import Ee from "dayjs";
|
|
4
4
|
import { CircleClose as to, Search as oo, Close as lt, EditPen as no, CloseBold as Ct, Plus as ao, Loading as $o, ArrowDownBold as en, ArrowUp as tn, ArrowDown as on, Delete as nn, CircleCloseFilled as an, QuestionFilled as Ft } from "@element-plus/icons-vue";
|
|
5
5
|
import { ElAnchor as sn, ElMessage as bt, ElMessageBox as ln, ElLoading as rn, ElInput as cn } from "element-plus";
|
|
@@ -70,13 +70,13 @@ const dn = (t, e) => (o) => {
|
|
|
70
70
|
"3b3e28cb": a.color,
|
|
71
71
|
"2be529ce": o.value
|
|
72
72
|
}));
|
|
73
|
-
const e =
|
|
73
|
+
const e = P(() => {
|
|
74
74
|
const a = parseFloat(String(t.size));
|
|
75
75
|
return isNaN(a) ? "24px" : `${a}px`;
|
|
76
|
-
}), o =
|
|
76
|
+
}), o = P(() => {
|
|
77
77
|
const a = parseFloat(String(t.fontSize));
|
|
78
78
|
return isNaN(a) ? "14px" : `${a}px`;
|
|
79
|
-
}), n =
|
|
79
|
+
}), n = P(() => {
|
|
80
80
|
const a = String(t.content);
|
|
81
81
|
return a && t.showFirstLetter && a.length > 1 ? Array.from(a).filter(Boolean)[0] || "" : t.content || "";
|
|
82
82
|
});
|
|
@@ -113,7 +113,7 @@ const dn = (t, e) => (o) => {
|
|
|
113
113
|
"441450ce": e.value,
|
|
114
114
|
"0c7a2aa7": o.value
|
|
115
115
|
}));
|
|
116
|
-
const e =
|
|
116
|
+
const e = P(() => Gt(t.mb) ? `${t.mb}px` : t.mb), o = P(() => Gt(t.mt) ? `${t.mt}px` : t.mt);
|
|
117
117
|
return (n, a) => (h(), I("div", vn, [
|
|
118
118
|
M("div", {
|
|
119
119
|
class: re([
|
|
@@ -176,32 +176,32 @@ const En = {
|
|
|
176
176
|
disabled: { type: Boolean, default: !1 }
|
|
177
177
|
},
|
|
178
178
|
setup(t) {
|
|
179
|
-
const e = Fe(), o =
|
|
180
|
-
e.updateFormData(t.prop, he(
|
|
179
|
+
const e = Fe(), o = P(() => e.formItems.find((p) => p.prop === t.prop)), n = (p) => {
|
|
180
|
+
e.updateFormData(t.prop, he(p));
|
|
181
181
|
}, a = () => o.value?.parseColumnEvent(() => {
|
|
182
182
|
e.emit(ue.CHANGE);
|
|
183
|
-
}) ?? {}, s =
|
|
183
|
+
}) ?? {}, s = P({
|
|
184
184
|
get() {
|
|
185
185
|
return e.activeGroupColumnsMap.get(o.value?.prop)?.dynamicExpression;
|
|
186
186
|
},
|
|
187
|
-
set(
|
|
188
|
-
const
|
|
189
|
-
|
|
187
|
+
set(p) {
|
|
188
|
+
const r = e.activeGroupColumnsMap.get(o.value?.prop);
|
|
189
|
+
r && (r.dynamicExpression = p);
|
|
190
190
|
}
|
|
191
|
-
}), l =
|
|
192
|
-
const
|
|
191
|
+
}), l = P(() => {
|
|
192
|
+
const p = o.value?.attrs ?? {};
|
|
193
193
|
return t.disabled ? {
|
|
194
|
-
...
|
|
194
|
+
...p,
|
|
195
195
|
disabled: !0
|
|
196
|
-
} :
|
|
196
|
+
} : p;
|
|
197
197
|
});
|
|
198
|
-
return (
|
|
198
|
+
return (p, r) => o.value ? (h(), I("div", En, [
|
|
199
199
|
(h(), R(jt(o.value.getFormComponent), le(l.value, {
|
|
200
200
|
"dynamic-expression": s.value,
|
|
201
|
-
"onUpdate:dynamicExpression":
|
|
202
|
-
"model-value": c(e).formData[
|
|
201
|
+
"onUpdate:dynamicExpression": r[0] || (r[0] = (m) => s.value = m),
|
|
202
|
+
"model-value": c(e).formData[p.prop]
|
|
203
203
|
}, we(a()), {
|
|
204
|
-
"onUpdate:modelValue":
|
|
204
|
+
"onUpdate:modelValue": r[1] || (r[1] = (m) => n(m))
|
|
205
205
|
}), null, 16, ["dynamic-expression", "model-value"]))
|
|
206
206
|
])) : z("", !0);
|
|
207
207
|
}
|
|
@@ -215,24 +215,24 @@ function Fn() {
|
|
|
215
215
|
(function(o, n) {
|
|
216
216
|
t.exports = n();
|
|
217
217
|
})(xn, function() {
|
|
218
|
-
var o, n, a = 1e3, s = 6e4, l = 36e5,
|
|
218
|
+
var o, n, a = 1e3, s = 6e4, l = 36e5, p = 864e5, r = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, m = 31536e6, u = 2628e6, g = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/, v = { years: m, months: u, days: p, hours: l, minutes: s, seconds: a, milliseconds: 1, weeks: 6048e5 }, i = function(w) {
|
|
219
219
|
return w instanceof T;
|
|
220
|
-
},
|
|
220
|
+
}, f = function(w, D, A) {
|
|
221
221
|
return new T(w, A, D.$l);
|
|
222
222
|
}, d = function(w) {
|
|
223
223
|
return n.p(w) + "s";
|
|
224
|
-
}, C = function(w) {
|
|
225
|
-
return w < 0;
|
|
226
224
|
}, y = function(w) {
|
|
227
|
-
return
|
|
225
|
+
return w < 0;
|
|
226
|
+
}, C = function(w) {
|
|
227
|
+
return y(w) ? Math.ceil(w) : Math.floor(w);
|
|
228
228
|
}, _ = function(w) {
|
|
229
229
|
return Math.abs(w);
|
|
230
230
|
}, k = function(w, D) {
|
|
231
|
-
return w ?
|
|
231
|
+
return w ? y(w) ? { negative: !0, format: "" + _(w) + D } : { negative: !1, format: "" + w + D } : { negative: !1, format: "" };
|
|
232
232
|
}, T = function() {
|
|
233
|
-
function w(A,
|
|
233
|
+
function w(A, N, j) {
|
|
234
234
|
var F = this;
|
|
235
|
-
if (this.$d = {}, this.$l = j, A === void 0 && (this.$ms = 0, this.parseFromMilliseconds()),
|
|
235
|
+
if (this.$d = {}, this.$l = j, A === void 0 && (this.$ms = 0, this.parseFromMilliseconds()), N) return f(A * v[d(N)], this);
|
|
236
236
|
if (typeof A == "number") return this.$ms = A, this.parseFromMilliseconds(), this;
|
|
237
237
|
if (typeof A == "object") return Object.keys(A).forEach(function(E) {
|
|
238
238
|
F.$d[d(E)] = A[E];
|
|
@@ -251,41 +251,41 @@ function Fn() {
|
|
|
251
251
|
var D = w.prototype;
|
|
252
252
|
return D.calMilliseconds = function() {
|
|
253
253
|
var A = this;
|
|
254
|
-
this.$ms = Object.keys(this.$d).reduce(function(
|
|
255
|
-
return
|
|
254
|
+
this.$ms = Object.keys(this.$d).reduce(function(N, j) {
|
|
255
|
+
return N + (A.$d[j] || 0) * v[j];
|
|
256
256
|
}, 0);
|
|
257
257
|
}, D.parseFromMilliseconds = function() {
|
|
258
258
|
var A = this.$ms;
|
|
259
|
-
this.$d.years =
|
|
259
|
+
this.$d.years = C(A / m), A %= m, this.$d.months = C(A / u), A %= u, this.$d.days = C(A / p), A %= p, this.$d.hours = C(A / l), A %= l, this.$d.minutes = C(A / s), A %= s, this.$d.seconds = C(A / a), A %= a, this.$d.milliseconds = A;
|
|
260
260
|
}, D.toISOString = function() {
|
|
261
|
-
var A = k(this.$d.years, "Y"),
|
|
261
|
+
var A = k(this.$d.years, "Y"), N = k(this.$d.months, "M"), j = +this.$d.days || 0;
|
|
262
262
|
this.$d.weeks && (j += 7 * this.$d.weeks);
|
|
263
263
|
var F = k(j, "D"), L = k(this.$d.hours, "H"), Q = k(this.$d.minutes, "M"), E = this.$d.seconds || 0;
|
|
264
264
|
this.$d.milliseconds && (E += this.$d.milliseconds / 1e3, E = Math.round(1e3 * E) / 1e3);
|
|
265
|
-
var H = k(E, "S"), U = A.negative ||
|
|
265
|
+
var H = k(E, "S"), U = A.negative || N.negative || F.negative || L.negative || Q.negative || H.negative, X = L.format || Q.format || H.format ? "T" : "", ie = (U ? "-" : "") + "P" + A.format + N.format + F.format + X + L.format + Q.format + H.format;
|
|
266
266
|
return ie === "P" || ie === "-P" ? "P0D" : ie;
|
|
267
267
|
}, D.toJSON = function() {
|
|
268
268
|
return this.toISOString();
|
|
269
269
|
}, D.format = function(A) {
|
|
270
|
-
var
|
|
271
|
-
return
|
|
270
|
+
var N = A || "YYYY-MM-DDTHH:mm:ss", j = { Y: this.$d.years, YY: n.s(this.$d.years, 2, "0"), YYYY: n.s(this.$d.years, 4, "0"), M: this.$d.months, MM: n.s(this.$d.months, 2, "0"), D: this.$d.days, DD: n.s(this.$d.days, 2, "0"), H: this.$d.hours, HH: n.s(this.$d.hours, 2, "0"), m: this.$d.minutes, mm: n.s(this.$d.minutes, 2, "0"), s: this.$d.seconds, ss: n.s(this.$d.seconds, 2, "0"), SSS: n.s(this.$d.milliseconds, 3, "0") };
|
|
271
|
+
return N.replace(r, function(F, L) {
|
|
272
272
|
return L || String(j[F]);
|
|
273
273
|
});
|
|
274
274
|
}, D.as = function(A) {
|
|
275
275
|
return this.$ms / v[d(A)];
|
|
276
276
|
}, D.get = function(A) {
|
|
277
|
-
var
|
|
278
|
-
return j === "milliseconds" ?
|
|
279
|
-
}, D.add = function(A,
|
|
277
|
+
var N = this.$ms, j = d(A);
|
|
278
|
+
return j === "milliseconds" ? N %= 1e3 : N = j === "weeks" ? C(N / v[j]) : this.$d[j], N || 0;
|
|
279
|
+
}, D.add = function(A, N, j) {
|
|
280
280
|
var F;
|
|
281
|
-
return F =
|
|
282
|
-
}, D.subtract = function(A,
|
|
283
|
-
return this.add(A,
|
|
281
|
+
return F = N ? A * v[d(N)] : i(A) ? A.$ms : f(A, this).$ms, f(this.$ms + F * (j ? -1 : 1), this);
|
|
282
|
+
}, D.subtract = function(A, N) {
|
|
283
|
+
return this.add(A, N, !0);
|
|
284
284
|
}, D.locale = function(A) {
|
|
285
|
-
var
|
|
286
|
-
return
|
|
285
|
+
var N = this.clone();
|
|
286
|
+
return N.$l = A, N;
|
|
287
287
|
}, D.clone = function() {
|
|
288
|
-
return
|
|
288
|
+
return f(this.$ms, this);
|
|
289
289
|
}, D.humanize = function(A) {
|
|
290
290
|
return o().add(this.$ms, "ms").locale(this.$l).fromNow(!A);
|
|
291
291
|
}, D.valueOf = function() {
|
|
@@ -329,22 +329,22 @@ function Fn() {
|
|
|
329
329
|
return function(w, D, A) {
|
|
330
330
|
o = A, n = A().$utils(), A.duration = function(F, L) {
|
|
331
331
|
var Q = A.locale();
|
|
332
|
-
return
|
|
333
|
-
}, A.isDuration =
|
|
334
|
-
var
|
|
332
|
+
return f(F, { $l: Q }, L);
|
|
333
|
+
}, A.isDuration = i;
|
|
334
|
+
var N = D.prototype.add, j = D.prototype.subtract;
|
|
335
335
|
D.prototype.add = function(F, L) {
|
|
336
|
-
return
|
|
336
|
+
return i(F) ? x(this, F, 1) : N.bind(this)(F, L);
|
|
337
337
|
}, D.prototype.subtract = function(F, L) {
|
|
338
|
-
return
|
|
338
|
+
return i(F) ? x(this, F, -1) : j.bind(this)(F, L);
|
|
339
339
|
};
|
|
340
340
|
};
|
|
341
341
|
});
|
|
342
342
|
}(Ze)), Ze.exports;
|
|
343
343
|
}
|
|
344
344
|
var Mn = Fn();
|
|
345
|
-
const
|
|
346
|
-
Ee.extend(
|
|
347
|
-
const et = "YYYY-MM-DD HH:mm:ss",
|
|
345
|
+
const Pn = /* @__PURE__ */ Gn(Mn);
|
|
346
|
+
Ee.extend(Pn);
|
|
347
|
+
const et = "YYYY-MM-DD HH:mm:ss", Nn = (t, e = et) => [Ee(t).startOf("day"), Ee(t).endOf("day")].map((o) => o.format(e)), io = (t = et) => Nn(void 0, t);
|
|
348
348
|
function vr(t) {
|
|
349
349
|
return Ee.duration(Math.ceil(Number(t) || 0), "seconds").format("mm:ss");
|
|
350
350
|
}
|
|
@@ -405,7 +405,7 @@ const Ar = (t, e = "HH:mm:ss") => {
|
|
|
405
405
|
const o = co[t];
|
|
406
406
|
return typeof o == "function" ? o(...e) : void 0;
|
|
407
407
|
}, Se = (t, e) => ({
|
|
408
|
-
value:
|
|
408
|
+
value: P({
|
|
409
409
|
get() {
|
|
410
410
|
return t.modelValue;
|
|
411
411
|
},
|
|
@@ -426,8 +426,8 @@ const Ar = (t, e = "HH:mm:ss") => {
|
|
|
426
426
|
() => {
|
|
427
427
|
if (V.isFunction(t.options)) {
|
|
428
428
|
const l = t.options();
|
|
429
|
-
uo(l) ? (n.value = !0, l.then((
|
|
430
|
-
s(
|
|
429
|
+
uo(l) ? (n.value = !0, l.then((p) => {
|
|
430
|
+
s(p);
|
|
431
431
|
})) : s(l);
|
|
432
432
|
} else
|
|
433
433
|
s(t.options);
|
|
@@ -479,34 +479,34 @@ const Ar = (t, e = "HH:mm:ss") => {
|
|
|
479
479
|
},
|
|
480
480
|
emits: ["update:modelValue", "change"],
|
|
481
481
|
setup(t, { emit: e }) {
|
|
482
|
-
Ge((
|
|
482
|
+
Ge((f) => ({
|
|
483
483
|
"50b6e6e6": v.value
|
|
484
484
|
}));
|
|
485
|
-
const o = t, n = e, { parseOptions: a, loadingOptions: s } = _t(o), { value: l } = Se(o, n),
|
|
485
|
+
const o = t, n = e, { parseOptions: a, loadingOptions: s } = _t(o), { value: l } = Se(o, n), p = P(() => V.omit(o.on, ["blur", "change"])), r = P(() => Te(V.omit(o, ["on", "options", "modelValue"]))), m = () => {
|
|
486
486
|
n("change", l.value);
|
|
487
487
|
};
|
|
488
488
|
let u;
|
|
489
|
-
const g = async (
|
|
490
|
-
|
|
491
|
-
}, v =
|
|
492
|
-
const
|
|
493
|
-
|
|
489
|
+
const g = async (f) => {
|
|
490
|
+
f ? u = he(l.value) : (await ae(), jo(u, l.value) || m(), u = void 0), o.on.visibleChange?.(f);
|
|
491
|
+
}, v = P(() => o.width || "100%"), i = (f, d) => {
|
|
492
|
+
const y = Reflect.get(o.on, f);
|
|
493
|
+
y && y(d), m(), u = he(o.props.multiple ? d ?? [] : d);
|
|
494
494
|
};
|
|
495
|
-
return (
|
|
496
|
-
const
|
|
497
|
-
return h(), R(
|
|
495
|
+
return (f, d) => {
|
|
496
|
+
const y = S("el-cascader");
|
|
497
|
+
return h(), R(y, le({
|
|
498
498
|
modelValue: c(l),
|
|
499
|
-
"onUpdate:modelValue": d[0] || (d[0] = (
|
|
499
|
+
"onUpdate:modelValue": d[0] || (d[0] = (C) => be(l) ? l.value = C : null),
|
|
500
500
|
loading: c(s)
|
|
501
|
-
},
|
|
501
|
+
}, r.value, { options: c(a) }, we(p.value), {
|
|
502
502
|
onVisibleChange: g,
|
|
503
|
-
onClear: d[1] || (d[1] = (
|
|
504
|
-
onRemoveTag: d[2] || (d[2] = (
|
|
503
|
+
onClear: d[1] || (d[1] = (C) => i("clear", C)),
|
|
504
|
+
onRemoveTag: d[2] || (d[2] = (C) => i("removeTag", C))
|
|
505
505
|
}), pt({ _: 2 }, [
|
|
506
|
-
|
|
506
|
+
f.$slots.default ? {
|
|
507
507
|
name: "default",
|
|
508
|
-
fn: B(({ node:
|
|
509
|
-
fe(
|
|
508
|
+
fn: B(({ node: C, data: _ }) => [
|
|
509
|
+
fe(f.$slots, "default", Lo(Ho({ node: C, data: _ })))
|
|
510
510
|
]),
|
|
511
511
|
key: "0"
|
|
512
512
|
} : void 0
|
|
@@ -583,7 +583,7 @@ const Ar = (t, e = "HH:mm:ss") => {
|
|
|
583
583
|
}),
|
|
584
584
|
emits: /* @__PURE__ */ De(["update:modelValue", "change"], ["update:dynamicExpression"]),
|
|
585
585
|
setup(t, { emit: e }) {
|
|
586
|
-
const o = t, n = xe(t, "dynamicExpression"), a = e, { value: s } = Se(o, a), { pushDynamicExpression: l, updateDynamicExpression:
|
|
586
|
+
const o = t, n = xe(t, "dynamicExpression"), a = e, { value: s } = Se(o, a), { pushDynamicExpression: l, updateDynamicExpression: p } = Qn(n), r = P(
|
|
587
587
|
() => Te(
|
|
588
588
|
V.omit(o, [
|
|
589
589
|
"on",
|
|
@@ -595,46 +595,47 @@ const Ar = (t, e = "HH:mm:ss") => {
|
|
|
595
595
|
"popperClass"
|
|
596
596
|
])
|
|
597
597
|
)
|
|
598
|
-
),
|
|
598
|
+
), m = P(() => {
|
|
599
599
|
if (o.useDefaultTimeToDay)
|
|
600
600
|
return [new Date(2e3, 1, 1, 0, 0, 0), new Date(2e3, 1, 1, 23, 59, 59)];
|
|
601
|
-
}), u = (
|
|
602
|
-
if (!
|
|
603
|
-
return
|
|
604
|
-
const d = o.format || "",
|
|
605
|
-
return o.autoAddSeconds && d === "YYYY-MM-DD HH:mm" ? `${
|
|
606
|
-
}, g =
|
|
601
|
+
}), u = (i, f) => {
|
|
602
|
+
if (!i)
|
|
603
|
+
return i;
|
|
604
|
+
const d = o.format || "", y = Ee(i).format(d);
|
|
605
|
+
return o.autoAddSeconds && d === "YYYY-MM-DD HH:mm" ? `${y}:${f ? "59" : "00"}` : y;
|
|
606
|
+
}, g = P(() => ({
|
|
607
607
|
...o.on,
|
|
608
|
-
"update:modelValue": (
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
608
|
+
"update:modelValue": (i) => {
|
|
609
|
+
const f = i ?? "";
|
|
610
|
+
if (Array.isArray(f)) {
|
|
611
|
+
const [d, y] = f;
|
|
612
|
+
a("update:modelValue", [u(d), u(y, !0)]);
|
|
612
613
|
} else
|
|
613
|
-
a("update:modelValue", u(
|
|
614
|
-
|
|
614
|
+
a("update:modelValue", u(f, !0));
|
|
615
|
+
p();
|
|
615
616
|
},
|
|
616
617
|
/* clear 事件会触发 emit */
|
|
617
618
|
change: V.debounce(() => {
|
|
618
619
|
a("change", s.value);
|
|
619
620
|
})
|
|
620
|
-
})), v =
|
|
621
|
-
() => o.shortcuts?.map((
|
|
622
|
-
const { value:
|
|
621
|
+
})), v = P(
|
|
622
|
+
() => o.shortcuts?.map((i) => {
|
|
623
|
+
const { value: f, text: d } = i;
|
|
623
624
|
return {
|
|
624
625
|
text: d,
|
|
625
626
|
value: () => (l({
|
|
626
627
|
expression: "GET_DATE_RANGE",
|
|
627
628
|
params: [d, o.format || "", o.autoAddSeconds]
|
|
628
|
-
}), typeof
|
|
629
|
+
}), typeof f == "function" ? f() : f)
|
|
629
630
|
};
|
|
630
631
|
})
|
|
631
632
|
);
|
|
632
|
-
return (
|
|
633
|
+
return (i, f) => {
|
|
633
634
|
const d = S("el-date-picker");
|
|
634
|
-
return h(), R(d, le(
|
|
635
|
+
return h(), R(d, le(r.value, {
|
|
635
636
|
"popper-class": `z-base-date-popper ${o.popperClass || ""}`,
|
|
636
637
|
"model-value": c(s),
|
|
637
|
-
"default-time":
|
|
638
|
+
"default-time": m.value,
|
|
638
639
|
shortcuts: v.value
|
|
639
640
|
}, we(g.value)), null, 16, ["popper-class", "model-value", "default-time", "shortcuts"]);
|
|
640
641
|
};
|
|
@@ -700,79 +701,79 @@ const Ar = (t, e = "HH:mm:ss") => {
|
|
|
700
701
|
}),
|
|
701
702
|
emits: /* @__PURE__ */ De(["update:modelValue", "change"], ["update:dynamicExpression"]),
|
|
702
703
|
setup(t, { emit: e }) {
|
|
703
|
-
const o = t, n = xe(t, "dynamicExpression"), a = e, s =
|
|
704
|
+
const o = t, n = xe(t, "dynamicExpression"), a = e, s = P(() => Te(V.omit(o, ["options", "on", "modelValue"]))), { value: l } = Se(o, a), p = () => {
|
|
704
705
|
ae().then(() => {
|
|
705
|
-
const [
|
|
706
|
-
|
|
706
|
+
const [i, f, d] = l.value;
|
|
707
|
+
i && f && d ? a("change", l.value) : !i && !f && !d && a("change", []);
|
|
707
708
|
});
|
|
708
|
-
},
|
|
709
|
+
}, r = P({
|
|
709
710
|
get() {
|
|
710
711
|
return o.modelValue[2];
|
|
711
712
|
},
|
|
712
|
-
set(
|
|
713
|
-
const [
|
|
714
|
-
l.value = [
|
|
713
|
+
set(i) {
|
|
714
|
+
const [f, d] = o.modelValue;
|
|
715
|
+
l.value = [f, d, i], p(), m(n.value, i);
|
|
715
716
|
}
|
|
716
|
-
}),
|
|
717
|
-
if (
|
|
718
|
-
const { params: [d] = [] } =
|
|
717
|
+
}), m = (i, f) => {
|
|
718
|
+
if (i) {
|
|
719
|
+
const { params: [d] = [] } = i;
|
|
719
720
|
n.value = {
|
|
720
721
|
expression: "GET_DATE_RANGE_SELECT_GROUP",
|
|
721
|
-
params: [d,
|
|
722
|
+
params: [d, f ?? ""]
|
|
722
723
|
};
|
|
723
724
|
} else
|
|
724
725
|
n.value = void 0;
|
|
725
|
-
}, u =
|
|
726
|
+
}, u = P({
|
|
726
727
|
get() {
|
|
727
728
|
return o.modelValue.slice(0, 2);
|
|
728
729
|
},
|
|
729
|
-
set(
|
|
730
|
-
const
|
|
731
|
-
o.disabledSelectByEmptyData ? (l.value =
|
|
730
|
+
set(i) {
|
|
731
|
+
const f = o.modelValue[2];
|
|
732
|
+
o.disabledSelectByEmptyData ? (l.value = i ? [...i, f] : [], p()) : (l.value = [...i ?? ["", ""], l.value?.[2]], a("change", l.value));
|
|
732
733
|
}
|
|
733
|
-
}), g =
|
|
734
|
+
}), g = P(() => {
|
|
734
735
|
if (!o.disabledSelectByEmptyData)
|
|
735
736
|
return !1;
|
|
736
|
-
const [
|
|
737
|
-
return !
|
|
738
|
-
}), v =
|
|
737
|
+
const [i, f] = o.modelValue;
|
|
738
|
+
return !i || !f;
|
|
739
|
+
}), v = P({
|
|
739
740
|
get() {
|
|
740
741
|
return he(n.value);
|
|
741
742
|
},
|
|
742
|
-
set(
|
|
743
|
-
|
|
743
|
+
set(i) {
|
|
744
|
+
m(i, l.value?.[2]);
|
|
744
745
|
}
|
|
745
746
|
});
|
|
746
|
-
return (
|
|
747
|
-
const d = S("el-option"),
|
|
747
|
+
return (i, f) => {
|
|
748
|
+
const d = S("el-option"), y = S("el-select");
|
|
748
749
|
return h(), I("div", {
|
|
749
750
|
class: re([
|
|
750
751
|
"base-date-range-and-select-group__container",
|
|
751
752
|
{
|
|
752
|
-
"is-reverse":
|
|
753
|
+
"is-reverse": i.selectToFirst
|
|
753
754
|
}
|
|
754
755
|
])
|
|
755
756
|
}, [
|
|
756
757
|
M("div", Yn, [
|
|
757
758
|
b(rt, le({
|
|
758
759
|
"dynamic-expression": v.value,
|
|
759
|
-
"onUpdate:dynamicExpression":
|
|
760
|
+
"onUpdate:dynamicExpression": f[0] || (f[0] = (C) => v.value = C),
|
|
760
761
|
modelValue: u.value,
|
|
761
|
-
"onUpdate:modelValue":
|
|
762
|
+
"onUpdate:modelValue": f[1] || (f[1] = (C) => u.value = C)
|
|
762
763
|
}, s.value), null, 16, ["dynamic-expression", "modelValue"])
|
|
763
764
|
]),
|
|
764
765
|
M("div", zn, [
|
|
765
|
-
b(
|
|
766
|
-
modelValue:
|
|
767
|
-
"onUpdate:modelValue":
|
|
768
|
-
},
|
|
769
|
-
style: { width:
|
|
770
|
-
disabled: g.value ??
|
|
766
|
+
b(y, le({
|
|
767
|
+
modelValue: r.value,
|
|
768
|
+
"onUpdate:modelValue": f[2] || (f[2] = (C) => r.value = C)
|
|
769
|
+
}, i.selectOptions ?? {}, {
|
|
770
|
+
style: { width: i.selectWidth },
|
|
771
|
+
disabled: g.value ?? i.disabled,
|
|
771
772
|
clearable: !1
|
|
772
773
|
}), {
|
|
773
774
|
default: B(() => [
|
|
774
|
-
(h(!0), I(q, null, se(
|
|
775
|
-
key:
|
|
775
|
+
(h(!0), I(q, null, se(i.options, (C) => (h(), R(d, le({ ref_for: !0 }, C, {
|
|
776
|
+
key: C.value
|
|
776
777
|
}), null, 16))), 128))
|
|
777
778
|
]),
|
|
778
779
|
_: 1
|
|
@@ -785,14 +786,14 @@ const Ar = (t, e = "HH:mm:ss") => {
|
|
|
785
786
|
name: "BaseInput",
|
|
786
787
|
__name: "BaseInput",
|
|
787
788
|
setup(t) {
|
|
788
|
-
const e = Kt(), o =
|
|
789
|
+
const e = Kt(), o = P(() => Object.keys(e));
|
|
789
790
|
return (n, a) => {
|
|
790
791
|
const s = S("el-input"), l = Ae("paste-trim");
|
|
791
792
|
return pe((h(), R(s, { class: "base-input" }, pt({ _: 2 }, [
|
|
792
|
-
se(o.value, (
|
|
793
|
-
name:
|
|
793
|
+
se(o.value, (p) => ({
|
|
794
|
+
name: p,
|
|
794
795
|
fn: B(() => [
|
|
795
|
-
fe(n.$slots,
|
|
796
|
+
fe(n.$slots, p)
|
|
796
797
|
])
|
|
797
798
|
}))
|
|
798
799
|
]), 1024)), [
|
|
@@ -839,40 +840,40 @@ const Ar = (t, e = "HH:mm:ss") => {
|
|
|
839
840
|
},
|
|
840
841
|
emits: ["update:modelValue", "change"],
|
|
841
842
|
setup(t, { emit: e }) {
|
|
842
|
-
const o = t, n = e, { value: a } = Se(o, n), s =
|
|
843
|
+
const o = t, n = e, { value: a } = Se(o, n), s = P(
|
|
843
844
|
() => Te(V.omit(o, ["on", "modelValue", "precision", "max", "min"]))
|
|
844
845
|
);
|
|
845
846
|
let l = o.modelValue;
|
|
846
|
-
const
|
|
847
|
-
let
|
|
848
|
-
isNaN(Number(
|
|
849
|
-
},
|
|
847
|
+
const p = (v) => {
|
|
848
|
+
let i = v;
|
|
849
|
+
isNaN(Number(i)) && (i = l), l !== i && (l = i), a.value = l;
|
|
850
|
+
}, r = () => {
|
|
850
851
|
let v = "^\\d+$";
|
|
851
852
|
return o.precision && (v = `^\\d+(\\.)?(\\d{1,${o.precision}})?$`), new RegExp(v);
|
|
852
|
-
},
|
|
853
|
-
|
|
853
|
+
}, m = () => {
|
|
854
|
+
p(parseFloat(l)), o.on?.change?.(l), n("change", l);
|
|
854
855
|
}, u = (v) => {
|
|
855
856
|
if (typeof v != "number" && !v) {
|
|
856
|
-
|
|
857
|
+
p(v);
|
|
857
858
|
return;
|
|
858
859
|
}
|
|
859
|
-
const { min:
|
|
860
|
-
if (v && !
|
|
861
|
-
|
|
860
|
+
const { min: i, max: f } = o;
|
|
861
|
+
if (v && !r().test(v)) {
|
|
862
|
+
p(l);
|
|
862
863
|
return;
|
|
863
864
|
}
|
|
864
|
-
const d = Number(v),
|
|
865
|
-
|
|
866
|
-
}, g =
|
|
867
|
-
return (v,
|
|
868
|
-
const
|
|
865
|
+
const d = Number(v), y = typeof i < "u" && d < i, C = typeof f < "u" && d > f;
|
|
866
|
+
p(C ? f : y ? i : v), o.on?.input?.(l);
|
|
867
|
+
}, g = P(() => V.omit(o.on, ["change", "input"]));
|
|
868
|
+
return (v, i) => {
|
|
869
|
+
const f = S("el-input"), d = Ae("paste-trim");
|
|
869
870
|
return h(), I("div", jn, [
|
|
870
|
-
pe((h(), R(
|
|
871
|
+
pe((h(), R(f, le(s.value, {
|
|
871
872
|
modelValue: c(a),
|
|
872
|
-
"onUpdate:modelValue":
|
|
873
|
+
"onUpdate:modelValue": i[0] || (i[0] = (y) => be(a) ? a.value = y : null)
|
|
873
874
|
}, we(g.value), {
|
|
874
875
|
onInput: u,
|
|
875
|
-
onChange:
|
|
876
|
+
onChange: m
|
|
876
877
|
}), {
|
|
877
878
|
suffix: B(() => [
|
|
878
879
|
fe(v.$slots, "suffix", {}, void 0, !0)
|
|
@@ -885,20 +886,20 @@ const Ar = (t, e = "HH:mm:ss") => {
|
|
|
885
886
|
};
|
|
886
887
|
}
|
|
887
888
|
}), qn = /* @__PURE__ */ ee(Kn, [["__scopeId", "data-v-fd1ded59"]]);
|
|
888
|
-
let
|
|
889
|
-
const
|
|
889
|
+
let Pt = 1;
|
|
890
|
+
const Pe = [], ze = [], wt = () => ({
|
|
890
891
|
startAsyncTask: () => {
|
|
891
|
-
const a =
|
|
892
|
-
|
|
892
|
+
const a = Pt++;
|
|
893
|
+
Pe.push(a);
|
|
893
894
|
},
|
|
894
895
|
taskComplete: async () => {
|
|
895
|
-
await ae(),
|
|
896
|
+
await ae(), Pe.pop(), Pe.length === 0 && (ze.forEach((a) => a()), ze.length = 0);
|
|
896
897
|
},
|
|
897
898
|
onTaskAllComplete: (a) => {
|
|
898
|
-
|
|
899
|
+
Pe.length === 0 ? a() : ze.push(a);
|
|
899
900
|
},
|
|
900
901
|
clearAllAsyncTask: () => {
|
|
901
|
-
|
|
902
|
+
Pe.length = 0, ze.length = 0, Pt = 1;
|
|
902
903
|
}
|
|
903
904
|
}), Jn = { class: "base-number-range__container" }, $n = {
|
|
904
905
|
key: 0,
|
|
@@ -925,39 +926,39 @@ const Ne = [], ze = [], wt = () => ({
|
|
|
925
926
|
const o = t, n = e, { value: a } = Se(o, n), s = () => a.value?.map?.((_) => {
|
|
926
927
|
const k = parseFloat(String(_));
|
|
927
928
|
return isNaN(k) ? void 0 : k;
|
|
928
|
-
}) ?? [], l =
|
|
929
|
+
}) ?? [], l = P(() => V.omit(o.on, ["focus", "input", "change"])), p = (_) => {
|
|
929
930
|
if (Reflect.has(o.on, _)) {
|
|
930
931
|
const k = Reflect.get(o.on, _);
|
|
931
932
|
V.isFunction(k) && k(a.value);
|
|
932
933
|
}
|
|
933
|
-
}, { startAsyncTask:
|
|
934
|
+
}, { startAsyncTask: r, taskComplete: m } = wt();
|
|
934
935
|
let u;
|
|
935
936
|
const g = () => {
|
|
936
|
-
u && (clearTimeout(u),
|
|
937
|
+
u && (clearTimeout(u), m()), u = void 0;
|
|
937
938
|
}, v = () => {
|
|
938
|
-
g(),
|
|
939
|
-
},
|
|
939
|
+
g(), p("focus");
|
|
940
|
+
}, i = () => {
|
|
940
941
|
let _ = "^\\d+$";
|
|
941
942
|
return o.precision && (_ = `^\\d+(\\.)?(\\d{1,${o.precision}})?$`), new RegExp(_);
|
|
942
943
|
};
|
|
943
|
-
let
|
|
944
|
+
let f = [...a.value];
|
|
944
945
|
const d = (_) => {
|
|
945
|
-
|
|
946
|
-
},
|
|
946
|
+
f = [..._], n("update:modelValue", [..._]);
|
|
947
|
+
}, y = (_, k) => {
|
|
947
948
|
if (typeof _ != "number" && !_) {
|
|
948
|
-
|
|
949
|
+
f[k] = _;
|
|
949
950
|
return;
|
|
950
951
|
}
|
|
951
952
|
const { min: T, max: x } = o, w = [...a.value];
|
|
952
|
-
if (_ && !
|
|
953
|
-
d(
|
|
953
|
+
if (_ && !i().test(_)) {
|
|
954
|
+
d(f);
|
|
954
955
|
return;
|
|
955
956
|
}
|
|
956
|
-
const D = Number(_), A = typeof T < "u" && D < T,
|
|
957
|
-
|
|
958
|
-
},
|
|
959
|
-
|
|
960
|
-
|
|
957
|
+
const D = Number(_), A = typeof T < "u" && D < T, N = typeof x < "u" && D > x;
|
|
958
|
+
N || A ? (w.splice(k, 1, N ? x : T), d(w)) : f[k] = _;
|
|
959
|
+
}, C = () => {
|
|
960
|
+
r(), u = setTimeout(() => {
|
|
961
|
+
p("change"), n("change", s()), m();
|
|
961
962
|
}, 200), d(s());
|
|
962
963
|
};
|
|
963
964
|
return Le(() => {
|
|
@@ -972,8 +973,8 @@ const Ne = [], ze = [], wt = () => ({
|
|
|
972
973
|
disabled: _.disabled
|
|
973
974
|
}, we(l.value), {
|
|
974
975
|
onFocus: v,
|
|
975
|
-
onChange:
|
|
976
|
-
onInput: (D) =>
|
|
976
|
+
onChange: C,
|
|
977
|
+
onInput: (D) => y(D, w)
|
|
977
978
|
}), null, 16, ["modelValue", "onUpdate:modelValue", "disabled", "onInput"]), [
|
|
978
979
|
[x]
|
|
979
980
|
]),
|
|
@@ -1018,16 +1019,16 @@ const Ne = [], ze = [], wt = () => ({
|
|
|
1018
1019
|
},
|
|
1019
1020
|
emits: ["update:modelValue", "suffixClick", "change"],
|
|
1020
1021
|
setup(t, { emit: e }) {
|
|
1021
|
-
const o = t, n = e, { value: a } = Se(o, n), s =
|
|
1022
|
-
n("update:modelValue",
|
|
1023
|
-
},
|
|
1022
|
+
const o = t, n = e, { value: a } = Se(o, n), s = P(() => Te(V.omit(o, ["on", "modelValue"]))), l = (r) => {
|
|
1023
|
+
n("update:modelValue", r), n("change", r);
|
|
1024
|
+
}, p = () => {
|
|
1024
1025
|
n("update:modelValue", ""), n("change", "");
|
|
1025
1026
|
};
|
|
1026
|
-
return (
|
|
1027
|
+
return (r, m) => {
|
|
1027
1028
|
const u = S("el-icon"), g = S("el-input"), v = Ae("paste-trim");
|
|
1028
1029
|
return pe((h(), R(g, le(s.value, {
|
|
1029
1030
|
modelValue: c(a),
|
|
1030
|
-
"onUpdate:modelValue":
|
|
1031
|
+
"onUpdate:modelValue": m[0] || (m[0] = (i) => be(a) ? a.value = i : null),
|
|
1031
1032
|
clearable: !1,
|
|
1032
1033
|
class: "base-search-input"
|
|
1033
1034
|
}, we(o.on), { onChange: l }), {
|
|
@@ -1035,7 +1036,7 @@ const Ne = [], ze = [], wt = () => ({
|
|
|
1035
1036
|
M("div", oa, [
|
|
1036
1037
|
c(a) ? (h(), R(u, {
|
|
1037
1038
|
key: 0,
|
|
1038
|
-
onClick:
|
|
1039
|
+
onClick: p
|
|
1039
1040
|
}, {
|
|
1040
1041
|
default: B(() => [
|
|
1041
1042
|
b(c(to))
|
|
@@ -1113,21 +1114,21 @@ const Ne = [], ze = [], wt = () => ({
|
|
|
1113
1114
|
},
|
|
1114
1115
|
emits: ["update:modelValue"],
|
|
1115
1116
|
setup(t, { emit: e }) {
|
|
1116
|
-
Ge((
|
|
1117
|
-
48534472:
|
|
1117
|
+
Ge((m) => ({
|
|
1118
|
+
48534472: r.value
|
|
1118
1119
|
}));
|
|
1119
|
-
const o = t, n = e, { parseOptions: a, loadingOptions: s } = _t(o), { value: l } = Se(o, n),
|
|
1120
|
-
return (
|
|
1120
|
+
const o = t, n = e, { parseOptions: a, loadingOptions: s } = _t(o), { value: l } = Se(o, n), p = P(() => Te(V.omit(o, ["on", "options", "modelValue"]))), r = P(() => o.width || "100%");
|
|
1121
|
+
return (m, u) => {
|
|
1121
1122
|
const g = S("el-option"), v = S("el-select");
|
|
1122
|
-
return h(), R(v, le(
|
|
1123
|
+
return h(), R(v, le(p.value, {
|
|
1123
1124
|
modelValue: c(l),
|
|
1124
|
-
"onUpdate:modelValue": u[0] || (u[0] = (
|
|
1125
|
+
"onUpdate:modelValue": u[0] || (u[0] = (i) => be(l) ? l.value = i : null),
|
|
1125
1126
|
loading: c(s)
|
|
1126
|
-
}, we(
|
|
1127
|
+
}, we(m.on)), {
|
|
1127
1128
|
default: B(() => [
|
|
1128
|
-
(h(!0), I(q, null, se(c(a), (
|
|
1129
|
-
key:
|
|
1130
|
-
}, { ref_for: !0 },
|
|
1129
|
+
(h(!0), I(q, null, se(c(a), (i) => (h(), R(g, le({
|
|
1130
|
+
key: i.value
|
|
1131
|
+
}, { ref_for: !0 }, i), null, 16))), 128))
|
|
1131
1132
|
]),
|
|
1132
1133
|
_: 1
|
|
1133
1134
|
}, 16, ["modelValue", "loading"]);
|
|
@@ -1192,29 +1193,29 @@ const Ne = [], ze = [], wt = () => ({
|
|
|
1192
1193
|
setup(t, { emit: e }) {
|
|
1193
1194
|
const o = t, n = e, { value: a } = Se(o, n), { parseOptions: s, loadingOptions: l } = _t(o, () => {
|
|
1194
1195
|
o.defaultSelectFirst && !a.value?.length && s.value.length && n("update:modelValue", ["", s.value[0]?.value ?? ""]);
|
|
1195
|
-
}),
|
|
1196
|
+
}), p = P(() => {
|
|
1196
1197
|
const d = ra(o.selectWidth, o.selectAttrs);
|
|
1197
1198
|
return Object.assign({}, d);
|
|
1198
|
-
}),
|
|
1199
|
+
}), r = () => {
|
|
1199
1200
|
n("change", a.value);
|
|
1200
|
-
},
|
|
1201
|
+
}, m = P(() => s.value.find((y) => y.value === a.value[1])?.placeholder ?? o.placeholder), u = P(
|
|
1201
1202
|
() => s.value.find((d) => d.value === a.value[1])
|
|
1202
1203
|
), g = (d) => {
|
|
1203
|
-
const [,
|
|
1204
|
-
let
|
|
1205
|
-
u.value?.type === "id" && (
|
|
1204
|
+
const [, y] = a.value;
|
|
1205
|
+
let C = d;
|
|
1206
|
+
u.value?.type === "id" && (C = ca(d)), n("update:modelValue", [C, y || ""]);
|
|
1206
1207
|
}, v = () => {
|
|
1207
1208
|
const d = a.value[0];
|
|
1208
|
-
g(""), (o.changeOnSelect || d) &&
|
|
1209
|
-
},
|
|
1209
|
+
g(""), (o.changeOnSelect || d) && r();
|
|
1210
|
+
}, i = P(
|
|
1210
1211
|
() => Te(
|
|
1211
1212
|
V.omit(o, ["modelValue", "groupSelectInputAttrs", "placeholder", "options", "className", "class"])
|
|
1212
1213
|
)
|
|
1213
|
-
),
|
|
1214
|
-
g(""),
|
|
1214
|
+
), f = () => {
|
|
1215
|
+
g(""), r();
|
|
1215
1216
|
};
|
|
1216
|
-
return (d,
|
|
1217
|
-
const
|
|
1217
|
+
return (d, y) => {
|
|
1218
|
+
const C = S("el-icon"), _ = S("el-option"), k = S("el-select"), T = S("el-input"), x = Ae("paste-trim");
|
|
1218
1219
|
return pe((h(), R(T, le({
|
|
1219
1220
|
class: [
|
|
1220
1221
|
"group-select-input",
|
|
@@ -1223,26 +1224,26 @@ const Ne = [], ze = [], wt = () => ({
|
|
|
1223
1224
|
"is-reverse": d.selectToFirst
|
|
1224
1225
|
}
|
|
1225
1226
|
]
|
|
1226
|
-
},
|
|
1227
|
+
}, i.value, {
|
|
1227
1228
|
"model-value": c(a)[0],
|
|
1228
|
-
placeholder:
|
|
1229
|
+
placeholder: m.value,
|
|
1229
1230
|
clearable: !1,
|
|
1230
|
-
maxlength: u.value?.maxlength ??
|
|
1231
|
+
maxlength: u.value?.maxlength ?? i.value.maxlength,
|
|
1231
1232
|
"onUpdate:modelValue": g,
|
|
1232
|
-
onChange:
|
|
1233
|
+
onChange: r
|
|
1233
1234
|
}), {
|
|
1234
1235
|
suffix: B(() => [
|
|
1235
1236
|
M("div", ua, [
|
|
1236
|
-
c(a)[0] ? (h(), R(
|
|
1237
|
+
c(a)[0] ? (h(), R(C, {
|
|
1237
1238
|
key: 0,
|
|
1238
|
-
onClick:
|
|
1239
|
+
onClick: f
|
|
1239
1240
|
}, {
|
|
1240
1241
|
default: B(() => [
|
|
1241
1242
|
b(c(to))
|
|
1242
1243
|
]),
|
|
1243
1244
|
_: 1
|
|
1244
1245
|
})) : z("", !0),
|
|
1245
|
-
b(
|
|
1246
|
+
b(C, null, {
|
|
1246
1247
|
default: B(() => [
|
|
1247
1248
|
b(c(oo))
|
|
1248
1249
|
]),
|
|
@@ -1253,9 +1254,9 @@ const Ne = [], ze = [], wt = () => ({
|
|
|
1253
1254
|
prepend: B(() => [
|
|
1254
1255
|
b(k, le({
|
|
1255
1256
|
modelValue: c(a)[1],
|
|
1256
|
-
"onUpdate:modelValue":
|
|
1257
|
-
},
|
|
1258
|
-
disabled:
|
|
1257
|
+
"onUpdate:modelValue": y[0] || (y[0] = (w) => c(a)[1] = w)
|
|
1258
|
+
}, p.value, {
|
|
1259
|
+
disabled: p.value.disabled ?? d.disabled,
|
|
1259
1260
|
loading: c(l),
|
|
1260
1261
|
onChange: v
|
|
1261
1262
|
}), {
|
|
@@ -1273,7 +1274,7 @@ const Ne = [], ze = [], wt = () => ({
|
|
|
1273
1274
|
]);
|
|
1274
1275
|
};
|
|
1275
1276
|
}
|
|
1276
|
-
}), pa = /* @__PURE__ */ ee(da, [["__scopeId", "data-v-833d44cc"]]),
|
|
1277
|
+
}), pa = /* @__PURE__ */ ee(da, [["__scopeId", "data-v-833d44cc"]]), Nt = {
|
|
1277
1278
|
[ne.GROUP_SELECT_INPUT]: pa,
|
|
1278
1279
|
[ne.SELECT]: la,
|
|
1279
1280
|
[ne.SEARCH_INPUT]: aa,
|
|
@@ -1329,7 +1330,7 @@ const fa = (t) => Ie.get(ke(t)), ga = (t) => Ie.has(ke(t)), ha = (t) => Ie.get(k
|
|
|
1329
1330
|
}
|
|
1330
1331
|
], ye = (t, e) => {
|
|
1331
1332
|
const o = t.attrs || (t.attrs = {});
|
|
1332
|
-
return Ko(o, e, (n, a) => n && a && We(n) && We(a) ?
|
|
1333
|
+
return Ko(o, e, (n, a) => n && a && We(n) && We(a) ? Ne(a, n) : n ?? a), t;
|
|
1333
1334
|
}, ct = {
|
|
1334
1335
|
[ne.RADIO]: (t) => t,
|
|
1335
1336
|
[ne.SWITCH]: (t) => t,
|
|
@@ -1363,7 +1364,7 @@ const fa = (t) => Ie.get(ke(t)), ga = (t) => Ie.has(ke(t)), ha = (t) => Ie.get(k
|
|
|
1363
1364
|
defaultValue: /* @__PURE__ */ new Date()
|
|
1364
1365
|
});
|
|
1365
1366
|
},
|
|
1366
|
-
[ne.DATE_RANGE]: (t) =>
|
|
1367
|
+
[ne.DATE_RANGE]: (t) => Ne(
|
|
1367
1368
|
{
|
|
1368
1369
|
defaultValue: []
|
|
1369
1370
|
},
|
|
@@ -1383,7 +1384,7 @@ const fa = (t) => Ie.get(ke(t)), ga = (t) => Ie.has(ke(t)), ha = (t) => Ie.get(k
|
|
|
1383
1384
|
shortcuts: ya
|
|
1384
1385
|
})
|
|
1385
1386
|
),
|
|
1386
|
-
[ne.GROUP_SELECT_INPUT]: (t) =>
|
|
1387
|
+
[ne.GROUP_SELECT_INPUT]: (t) => Ne(
|
|
1387
1388
|
{
|
|
1388
1389
|
defaultValue: []
|
|
1389
1390
|
},
|
|
@@ -1412,7 +1413,7 @@ const fa = (t) => Ie.get(ke(t)), ga = (t) => Ie.has(ke(t)), ha = (t) => Ie.get(k
|
|
|
1412
1413
|
collapseTags: !0,
|
|
1413
1414
|
collapseTagsTooltip: !0,
|
|
1414
1415
|
filterable: !0
|
|
1415
|
-
}),
|
|
1416
|
+
}), Ne(
|
|
1416
1417
|
{
|
|
1417
1418
|
format: (l) => (
|
|
1418
1419
|
/* 如果是单选,则默认拿到最后一个值 */
|
|
@@ -1428,7 +1429,7 @@ const fa = (t) => Ie.get(ke(t)), ga = (t) => Ie.has(ke(t)), ha = (t) => Ie.get(k
|
|
|
1428
1429
|
const { label: e } = t, o = {
|
|
1429
1430
|
clearable: !0
|
|
1430
1431
|
};
|
|
1431
|
-
return
|
|
1432
|
+
return Ne(
|
|
1432
1433
|
{
|
|
1433
1434
|
defaultValue: []
|
|
1434
1435
|
},
|
|
@@ -1526,7 +1527,7 @@ class fo {
|
|
|
1526
1527
|
*/
|
|
1527
1528
|
stopStacks = /* @__PURE__ */ new Set();
|
|
1528
1529
|
get getFormComponent() {
|
|
1529
|
-
return this.tag ? this._customTagName || mo(this.tag) ? St(ha(this.tag)) : Reflect.has(
|
|
1530
|
+
return this.tag ? this._customTagName || mo(this.tag) ? St(ha(this.tag)) : Reflect.has(Nt, this.tag) ? St(Nt[this.tag]) : this.tag : this.tag;
|
|
1530
1531
|
}
|
|
1531
1532
|
constructor(e) {
|
|
1532
1533
|
e && this.initProps(e);
|
|
@@ -1644,8 +1645,8 @@ const wa = (t) => {
|
|
|
1644
1645
|
}, Ea = (t) => Array.isArray(t), Ia = (t, e) => {
|
|
1645
1646
|
const o = tt(e, Oe), n = new Map(o.columns.map((a) => [a.prop, a]));
|
|
1646
1647
|
return t.forEach(({ prop: a, checked: s }, l) => {
|
|
1647
|
-
const
|
|
1648
|
-
|
|
1648
|
+
const p = n.get(a);
|
|
1649
|
+
p && (p.checked = !!s, s && (p.sort = l + 1));
|
|
1649
1650
|
}), {
|
|
1650
1651
|
useGroup: o.groupName,
|
|
1651
1652
|
groups: [o]
|
|
@@ -1660,16 +1661,16 @@ const wa = (t) => {
|
|
|
1660
1661
|
}, Ao = (t, e) => {
|
|
1661
1662
|
if (Ea(t))
|
|
1662
1663
|
return Ia(t, e);
|
|
1663
|
-
const { groups: o = [], useGroup: n = Ke } = t, a = [], s = tt(e, Ke).columns, l = (
|
|
1664
|
-
const { groupName:
|
|
1664
|
+
const { groups: o = [], useGroup: n = Ke } = t, a = [], s = tt(e, Ke).columns, l = (p) => {
|
|
1665
|
+
const { groupName: r, columns: m } = p, u = new Map(m.map((g) => [g.prop, g]));
|
|
1665
1666
|
a.push({
|
|
1666
|
-
groupName:
|
|
1667
|
+
groupName: r,
|
|
1667
1668
|
columns: s.map((g) => {
|
|
1668
|
-
const { readonly: v } = g,
|
|
1669
|
-
return
|
|
1670
|
-
...
|
|
1671
|
-
value: vo(
|
|
1672
|
-
checked: !Ve(
|
|
1669
|
+
const { readonly: v } = g, i = u.get(g.prop);
|
|
1670
|
+
return i ? {
|
|
1671
|
+
...i,
|
|
1672
|
+
value: vo(i),
|
|
1673
|
+
checked: !Ve(i.sort),
|
|
1673
1674
|
readonly: v
|
|
1674
1675
|
} : g;
|
|
1675
1676
|
})
|
|
@@ -1682,32 +1683,32 @@ const wa = (t) => {
|
|
|
1682
1683
|
}, ka = { class: "advanced-filter-form__container" }, Vt = "advanced_filter_", Sa = /* @__PURE__ */ W({
|
|
1683
1684
|
__name: "AdvancedFilterForm",
|
|
1684
1685
|
setup(t) {
|
|
1685
|
-
const e = Fe(), o = G(), n = G(), a =
|
|
1686
|
-
const
|
|
1686
|
+
const e = Fe(), o = G(), n = G(), a = P(() => {
|
|
1687
|
+
const i = Da(e.columns);
|
|
1687
1688
|
return {
|
|
1688
|
-
groupNames: Reflect.ownKeys(
|
|
1689
|
-
formItems:
|
|
1689
|
+
groupNames: Reflect.ownKeys(i),
|
|
1690
|
+
formItems: i
|
|
1690
1691
|
};
|
|
1691
|
-
}), s = G(a.value?.groupNames?.[0] ?? ""), l = (
|
|
1692
|
-
(
|
|
1693
|
-
),
|
|
1694
|
-
const
|
|
1695
|
-
(
|
|
1692
|
+
}), s = G(a.value?.groupNames?.[0] ?? ""), l = (i) => a.value.formItems[i].every(
|
|
1693
|
+
(f) => !!e.activeGroupColumnsMap.get(f.prop)?.checked
|
|
1694
|
+
), p = (i) => {
|
|
1695
|
+
const f = a.value.formItems[i], d = f.filter(
|
|
1696
|
+
(y) => !!e.activeGroupColumnsMap.get(y.prop)?.checked
|
|
1696
1697
|
).length;
|
|
1697
|
-
return d > 0 && d <
|
|
1698
|
-
},
|
|
1699
|
-
a.value.formItems[
|
|
1700
|
-
e.updateActiveGroupColumnChecked(d.prop,
|
|
1698
|
+
return d > 0 && d < f.length;
|
|
1699
|
+
}, r = (i, f) => {
|
|
1700
|
+
a.value.formItems[i].forEach((d) => {
|
|
1701
|
+
e.updateActiveGroupColumnChecked(d.prop, f);
|
|
1701
1702
|
});
|
|
1702
|
-
},
|
|
1703
|
-
|
|
1704
|
-
}, v = (
|
|
1705
|
-
s.value =
|
|
1703
|
+
}, m = (i) => !!e.activeGroupColumnsMap.get(i)?.checked, u = (i, f) => `${f ? "#" : ""}${Vt}${i}`, g = (i) => {
|
|
1704
|
+
i.preventDefault();
|
|
1705
|
+
}, v = (i) => {
|
|
1706
|
+
s.value = i ? i.replace(`#${Vt}`, "") : a.value?.groupNames?.[0] ?? "";
|
|
1706
1707
|
};
|
|
1707
1708
|
return e.on(ue.UPDATE_ACTIVE_GROUP, () => {
|
|
1708
1709
|
n.value?.scrollTo(u(a.value.groupNames[0], !0));
|
|
1709
|
-
}), (
|
|
1710
|
-
const d = S("el-anchor-link"),
|
|
1710
|
+
}), (i, f) => {
|
|
1711
|
+
const d = S("el-anchor-link"), y = S("el-checkbox"), C = S("el-col"), _ = S("el-row"), k = S("el-form"), T = Ae("ellipsis");
|
|
1711
1712
|
return h(), I("div", ka, [
|
|
1712
1713
|
b(c(sn), {
|
|
1713
1714
|
ref_key: "anchorRef",
|
|
@@ -1743,23 +1744,23 @@ const wa = (t) => {
|
|
|
1743
1744
|
}, [
|
|
1744
1745
|
b(k, {
|
|
1745
1746
|
model: c(e).formData,
|
|
1746
|
-
onSubmit:
|
|
1747
|
+
onSubmit: f[0] || (f[0] = _e(() => {
|
|
1747
1748
|
}, ["prevent"]))
|
|
1748
1749
|
}, {
|
|
1749
1750
|
default: B(() => [
|
|
1750
1751
|
b(_, { span: 24 }, {
|
|
1751
1752
|
default: B(() => [
|
|
1752
1753
|
(h(!0), I(q, null, se(a.value.groupNames, (x) => (h(), I(q, { key: x }, [
|
|
1753
|
-
b(
|
|
1754
|
+
b(C, {
|
|
1754
1755
|
id: u(x),
|
|
1755
1756
|
class: "advanced-filter-form__item advanced-filter-form__group-title",
|
|
1756
1757
|
span: 24
|
|
1757
1758
|
}, {
|
|
1758
1759
|
default: B(() => [
|
|
1759
|
-
b(
|
|
1760
|
+
b(y, {
|
|
1760
1761
|
"model-value": l(x),
|
|
1761
|
-
indeterminate:
|
|
1762
|
-
onChange: (w) =>
|
|
1762
|
+
indeterminate: p(x),
|
|
1763
|
+
onChange: (w) => r(x, w)
|
|
1763
1764
|
}, {
|
|
1764
1765
|
default: B(() => [
|
|
1765
1766
|
K(J(x), 1)
|
|
@@ -1769,15 +1770,15 @@ const wa = (t) => {
|
|
|
1769
1770
|
]),
|
|
1770
1771
|
_: 2
|
|
1771
1772
|
}, 1032, ["id"]),
|
|
1772
|
-
(h(!0), I(q, null, se(a.value.formItems[x], (w) => (h(), R(
|
|
1773
|
+
(h(!0), I(q, null, se(a.value.formItems[x], (w) => (h(), R(C, {
|
|
1773
1774
|
key: w.prop,
|
|
1774
1775
|
class: "advanced-filter-form__item",
|
|
1775
1776
|
span: 12
|
|
1776
1777
|
}, {
|
|
1777
1778
|
default: B(() => [
|
|
1778
|
-
b(
|
|
1779
|
+
b(y, {
|
|
1779
1780
|
disabled: w.readonly,
|
|
1780
|
-
"model-value":
|
|
1781
|
+
"model-value": m(w.prop),
|
|
1781
1782
|
onChange: (D) => c(e).updateActiveGroupColumnChecked(w.prop, D)
|
|
1782
1783
|
}, {
|
|
1783
1784
|
default: B(() => [
|
|
@@ -1813,27 +1814,27 @@ const wa = (t) => {
|
|
|
1813
1814
|
}, Ma = /* @__PURE__ */ W({
|
|
1814
1815
|
__name: "AdvancedFilterSelectedList",
|
|
1815
1816
|
setup(t) {
|
|
1816
|
-
const e = Fe(), o =
|
|
1817
|
+
const e = Fe(), o = P({
|
|
1817
1818
|
get() {
|
|
1818
1819
|
return he(e.activeGroupSelectedColumns ?? []);
|
|
1819
1820
|
},
|
|
1820
1821
|
set(a) {
|
|
1821
1822
|
e.updateActiveGroupSelectedColumns(he(a));
|
|
1822
1823
|
}
|
|
1823
|
-
}), n =
|
|
1824
|
+
}), n = P(
|
|
1824
1825
|
() => (a) => e.formItems.find((s) => s.prop === a)?.label ?? ""
|
|
1825
1826
|
);
|
|
1826
1827
|
return (a, s) => {
|
|
1827
|
-
const l = S("el-icon"),
|
|
1828
|
+
const l = S("el-icon"), p = Ae("ellipsis");
|
|
1828
1829
|
return h(), I("div", Ga, [
|
|
1829
1830
|
b(c(je), {
|
|
1830
1831
|
modelValue: o.value,
|
|
1831
|
-
"onUpdate:modelValue": s[0] || (s[0] = (
|
|
1832
|
+
"onUpdate:modelValue": s[0] || (s[0] = (r) => o.value = r),
|
|
1832
1833
|
draggable: ".selected-item-drag"
|
|
1833
1834
|
}, {
|
|
1834
1835
|
default: B(() => [
|
|
1835
|
-
(h(!0), I(q, null, se(o.value, (
|
|
1836
|
-
key:
|
|
1836
|
+
(h(!0), I(q, null, se(o.value, (r) => (h(), I("div", {
|
|
1837
|
+
key: r.prop,
|
|
1837
1838
|
class: "selected-item selected-item-drag"
|
|
1838
1839
|
}, [
|
|
1839
1840
|
s[1] || (s[1] = M("img", {
|
|
@@ -1841,13 +1842,13 @@ const wa = (t) => {
|
|
|
1841
1842
|
alt: "... "
|
|
1842
1843
|
}, null, -1)),
|
|
1843
1844
|
pe((h(), I("span", xa, [
|
|
1844
|
-
K(J(n.value(
|
|
1845
|
+
K(J(n.value(r.prop)), 1)
|
|
1845
1846
|
])), [
|
|
1846
|
-
[
|
|
1847
|
+
[p]
|
|
1847
1848
|
]),
|
|
1848
|
-
|
|
1849
|
+
r.readonly ? z("", !0) : (h(), I("div", Fa, [
|
|
1849
1850
|
b(l, {
|
|
1850
|
-
onClick: (
|
|
1851
|
+
onClick: (m) => c(e).updateActiveGroupColumnChecked(r.prop, !1)
|
|
1851
1852
|
}, {
|
|
1852
1853
|
default: B(() => [
|
|
1853
1854
|
b(c(lt))
|
|
@@ -1862,13 +1863,13 @@ const wa = (t) => {
|
|
|
1862
1863
|
]);
|
|
1863
1864
|
};
|
|
1864
1865
|
}
|
|
1865
|
-
}),
|
|
1866
|
+
}), Pa = /* @__PURE__ */ ee(Ma, [["__scopeId", "data-v-56e6a2a4"]]), Na = { class: "advanced-filter-tab__container" }, Ra = { class: "advanced-filter-tab__content advanced-filter-tab__form" }, Va = { class: "advanced-filter-tab__content advanced-filter-tab__selected" }, Oa = { class: "title" }, La = /* @__PURE__ */ W({
|
|
1866
1867
|
__name: "AdvancedFilterTab",
|
|
1867
1868
|
setup(t) {
|
|
1868
|
-
const e = Fe(), o =
|
|
1869
|
+
const e = Fe(), o = P(
|
|
1869
1870
|
() => e.activeGroupColumns?.filter((n) => n.checked).length || 0
|
|
1870
1871
|
);
|
|
1871
|
-
return (n, a) => (h(), I("div",
|
|
1872
|
+
return (n, a) => (h(), I("div", Na, [
|
|
1872
1873
|
M("div", Ra, [
|
|
1873
1874
|
a[1] || (a[1] = M("div", { class: "title" }, "搜索列", -1)),
|
|
1874
1875
|
b(Ta)
|
|
@@ -1882,7 +1883,7 @@ const wa = (t) => {
|
|
|
1882
1883
|
(...s) => c(e).resetActiveGroupColumnsStatus && c(e).resetActiveGroupColumnsStatus(...s))
|
|
1883
1884
|
}, "重置")
|
|
1884
1885
|
]),
|
|
1885
|
-
b(
|
|
1886
|
+
b(Pa)
|
|
1886
1887
|
])
|
|
1887
1888
|
]));
|
|
1888
1889
|
}
|
|
@@ -1933,17 +1934,17 @@ const Ya = { class: "advanced-filter-tab-item__footer" }, za = /* @__PURE__ */ W
|
|
|
1933
1934
|
},
|
|
1934
1935
|
emits: ["update:modelValue"],
|
|
1935
1936
|
setup(t) {
|
|
1936
|
-
const e = xe(t, "modelValue"), o = G(), n = Fe(), a =
|
|
1937
|
+
const e = xe(t, "modelValue"), o = G(), n = Fe(), a = P(() => e.value === Oe), s = G(e.value), l = async () => {
|
|
1937
1938
|
await Co(`确定删除${e.value}吗?`) && n.removeGroup(e.value);
|
|
1938
|
-
},
|
|
1939
|
+
}, p = () => {
|
|
1939
1940
|
o.value?.hide(), s.value = e.value;
|
|
1940
|
-
},
|
|
1941
|
-
if (n.groups.some((
|
|
1941
|
+
}, r = () => {
|
|
1942
|
+
if (n.groups.some((m) => m.groupName === s.value))
|
|
1942
1943
|
return yo("名称不能重复");
|
|
1943
|
-
n.updateGroupName(e.value, s.value),
|
|
1944
|
+
n.updateGroupName(e.value, s.value), p();
|
|
1944
1945
|
};
|
|
1945
|
-
return (
|
|
1946
|
-
const g = S("el-icon"), v = S("el-input"),
|
|
1946
|
+
return (m, u) => {
|
|
1947
|
+
const g = S("el-icon"), v = S("el-input"), i = S("el-button"), f = S("el-popover");
|
|
1947
1948
|
return h(), I("div", {
|
|
1948
1949
|
class: re([
|
|
1949
1950
|
"advanced-filter-tab-item__container",
|
|
@@ -1954,7 +1955,7 @@ const Ya = { class: "advanced-filter-tab-item__footer" }, za = /* @__PURE__ */ W
|
|
|
1954
1955
|
onClick: u[1] || (u[1] = _e((d) => c(n).updateActiveGroup(e.value, !0), ["stop"]))
|
|
1955
1956
|
}, [
|
|
1956
1957
|
K(J(e.value) + " ", 1),
|
|
1957
|
-
a.value ? z("", !0) : (h(), R(
|
|
1958
|
+
a.value ? z("", !0) : (h(), R(f, {
|
|
1958
1959
|
key: 0,
|
|
1959
1960
|
ref_key: "popoverRef",
|
|
1960
1961
|
ref: o,
|
|
@@ -1979,16 +1980,16 @@ const Ya = { class: "advanced-filter-tab-item__footer" }, za = /* @__PURE__ */ W
|
|
|
1979
1980
|
"show-word-limit": ""
|
|
1980
1981
|
}, null, 8, ["modelValue"]),
|
|
1981
1982
|
M("div", Ya, [
|
|
1982
|
-
b(
|
|
1983
|
+
b(i, { onClick: p }, {
|
|
1983
1984
|
default: B(() => u[2] || (u[2] = [
|
|
1984
1985
|
K("取消", -1)
|
|
1985
1986
|
])),
|
|
1986
1987
|
_: 1,
|
|
1987
1988
|
__: [2]
|
|
1988
1989
|
}),
|
|
1989
|
-
b(
|
|
1990
|
+
b(i, {
|
|
1990
1991
|
type: "primary",
|
|
1991
|
-
onClick:
|
|
1992
|
+
onClick: r
|
|
1992
1993
|
}, {
|
|
1993
1994
|
default: B(() => u[3] || (u[3] = [
|
|
1994
1995
|
K("确认", -1)
|
|
@@ -2210,13 +2211,13 @@ class bo {
|
|
|
2210
2211
|
groups: e.map(
|
|
2211
2212
|
({ groupName: n, columns: a }) => ({
|
|
2212
2213
|
groupName: n,
|
|
2213
|
-
columns: a.map(({ prop: s, sort: l, value:
|
|
2214
|
+
columns: a.map(({ prop: s, sort: l, value: p, checked: r, dynamicExpression: m }) => ({
|
|
2214
2215
|
prop: s,
|
|
2215
2216
|
/* 有sort存在则代表是勾选的数据 */
|
|
2216
2217
|
sort: l,
|
|
2217
2218
|
/* 如果有动态数据,则不保存原 value/dynamicExpression */
|
|
2218
|
-
value:
|
|
2219
|
-
dynamicExpression:
|
|
2219
|
+
value: r ? m ? void 0 : p : void 0,
|
|
2220
|
+
dynamicExpression: r ? m : void 0
|
|
2220
2221
|
}))
|
|
2221
2222
|
})
|
|
2222
2223
|
),
|
|
@@ -2231,7 +2232,7 @@ class bo {
|
|
|
2231
2232
|
return this.advancedFilterGroup.useGroup = this.activeGroupName, this.groups.forEach((o) => {
|
|
2232
2233
|
const n = o.columns, a = e.get(o.groupName)?.columns ?? [];
|
|
2233
2234
|
if (a.length) {
|
|
2234
|
-
const s = new Map(a.map((l,
|
|
2235
|
+
const s = new Map(a.map((l, p) => [l.prop, p + 1]));
|
|
2235
2236
|
n.forEach((l) => {
|
|
2236
2237
|
l.sort = s.get(l.prop) ?? void 0;
|
|
2237
2238
|
});
|
|
@@ -2375,12 +2376,12 @@ class es {
|
|
|
2375
2376
|
getFormatData(e) {
|
|
2376
2377
|
const o = V.cloneDeep(this.formData ?? {});
|
|
2377
2378
|
return e.reduce((n, a) => {
|
|
2378
|
-
const { format: s, prop: l } = a,
|
|
2379
|
+
const { format: s, prop: l } = a, p = Reflect.get(o, l);
|
|
2379
2380
|
if (s && typeof s == "function") {
|
|
2380
|
-
const
|
|
2381
|
-
|
|
2381
|
+
const r = s(p, o, a);
|
|
2382
|
+
r && typeof V.isPlainObject(r) && Object.assign(n, r);
|
|
2382
2383
|
} else
|
|
2383
|
-
Reflect.set(n, l,
|
|
2384
|
+
Reflect.set(n, l, p);
|
|
2384
2385
|
return n;
|
|
2385
2386
|
}, {});
|
|
2386
2387
|
}
|
|
@@ -2476,10 +2477,10 @@ class _o {
|
|
|
2476
2477
|
parseColumns(e) {
|
|
2477
2478
|
const { initialFormData: o } = this.config;
|
|
2478
2479
|
return V.isEmpty(o) ? e : e.map((n) => {
|
|
2479
|
-
const { defaultValue: a, ...s } = n, l = s.prop,
|
|
2480
|
+
const { defaultValue: a, ...s } = n, l = s.prop, p = Reflect.get(o, l);
|
|
2480
2481
|
return {
|
|
2481
2482
|
...s,
|
|
2482
|
-
defaultValue: Reflect.has(o, l) ?
|
|
2483
|
+
defaultValue: Reflect.has(o, l) ? p : a
|
|
2483
2484
|
};
|
|
2484
2485
|
});
|
|
2485
2486
|
}
|
|
@@ -2646,12 +2647,16 @@ class os extends _o {
|
|
|
2646
2647
|
}
|
|
2647
2648
|
/**
|
|
2648
2649
|
* 更新当前激活的分组对应的数据内容
|
|
2650
|
+
* @param useDefaultValue 是否在值为空的时候使用默认值
|
|
2649
2651
|
*/
|
|
2650
|
-
updateActiveGroupColumnsValue() {
|
|
2651
|
-
const
|
|
2652
|
-
for (let
|
|
2653
|
-
const
|
|
2654
|
-
|
|
2652
|
+
updateActiveGroupColumnsValue(e = !0) {
|
|
2653
|
+
const o = this.columnManagement.getFormItemsMap(), n = this.activeGroupColumns.length;
|
|
2654
|
+
for (let a = 0; a < n; ++a) {
|
|
2655
|
+
const s = this.activeGroupColumns[a], l = o.get(s.prop);
|
|
2656
|
+
if (l) {
|
|
2657
|
+
const p = this.formData[s.prop];
|
|
2658
|
+
s.value = he(e ? p ?? l.defaultValue : p);
|
|
2659
|
+
}
|
|
2655
2660
|
}
|
|
2656
2661
|
}
|
|
2657
2662
|
/**
|
|
@@ -2684,23 +2689,23 @@ class os extends _o {
|
|
|
2684
2689
|
super.destroy(), wt().clearAllAsyncTask();
|
|
2685
2690
|
}
|
|
2686
2691
|
}
|
|
2687
|
-
function ut(t) {
|
|
2688
|
-
const
|
|
2689
|
-
let
|
|
2690
|
-
const
|
|
2691
|
-
|
|
2692
|
-
},
|
|
2693
|
-
|
|
2694
|
-
const
|
|
2695
|
-
uo(
|
|
2696
|
-
|
|
2697
|
-
}) :
|
|
2698
|
-
};
|
|
2699
|
-
return
|
|
2700
|
-
|
|
2692
|
+
function ut(t, e) {
|
|
2693
|
+
const o = G(t ?? !1);
|
|
2694
|
+
let n;
|
|
2695
|
+
const a = (l) => {
|
|
2696
|
+
o.value = l;
|
|
2697
|
+
}, s = (l) => new Promise((p) => {
|
|
2698
|
+
a(!0);
|
|
2699
|
+
const r = l();
|
|
2700
|
+
uo(r) ? r.finally(() => {
|
|
2701
|
+
a(!1), p();
|
|
2702
|
+
}) : (a(!1), p());
|
|
2703
|
+
});
|
|
2704
|
+
return e && vt(() => {
|
|
2705
|
+
o.value ? n = rn.service({
|
|
2701
2706
|
text: "加载中..."
|
|
2702
|
-
}) :
|
|
2703
|
-
}), [
|
|
2707
|
+
}) : n?.close();
|
|
2708
|
+
}), [o, s];
|
|
2704
2709
|
}
|
|
2705
2710
|
const ns = {
|
|
2706
2711
|
key: 0,
|
|
@@ -2713,15 +2718,15 @@ const ns = {
|
|
|
2713
2718
|
setup(t) {
|
|
2714
2719
|
const e = G(!1), { setAdvancedFormBuilder: o, advancedFormBuilder: n } = Dn(), a = () => {
|
|
2715
2720
|
e.value = !1, n.value?.destroy(), n.value = void 0;
|
|
2716
|
-
}, { onTaskAllComplete: s } = wt(), [l,
|
|
2721
|
+
}, { onTaskAllComplete: s } = wt(), [l, p] = ut(), r = () => {
|
|
2717
2722
|
l.value = !0, s(() => {
|
|
2718
|
-
|
|
2719
|
-
await ae(), n.value?.updateActiveGroupColumnsValue(), await n.value?.saveAdvancedFilterData(), n.value && (t.formBuilder.updateGroupsByAdvancedFilter(
|
|
2723
|
+
p(async () => {
|
|
2724
|
+
await ae(), n.value?.updateActiveGroupColumnsValue(!1), await n.value?.saveAdvancedFilterData(), n.value && (t.formBuilder.updateGroupsByAdvancedFilter(
|
|
2720
2725
|
Ao(n.value.columnManagement.getFormatSaveGroups(), t.formBuilder.columns)
|
|
2721
2726
|
), await ae()), n.value?.emit(ue.SAVE_CONFIG), t.formBuilder.emit(ue.SAVE_CONFIG), Ua("操作成功");
|
|
2722
2727
|
});
|
|
2723
2728
|
});
|
|
2724
|
-
}, [
|
|
2729
|
+
}, [m, u] = ut(), g = (v) => {
|
|
2725
2730
|
u(async () => {
|
|
2726
2731
|
o(
|
|
2727
2732
|
new os([], {
|
|
@@ -2733,14 +2738,14 @@ const ns = {
|
|
|
2733
2738
|
});
|
|
2734
2739
|
};
|
|
2735
2740
|
return t.formBuilder.on(ue.OPEN_CONFIG_DIALOG, (v) => {
|
|
2736
|
-
|
|
2741
|
+
m.value = !0, e.value = !0, setTimeout(() => {
|
|
2737
2742
|
g(v);
|
|
2738
2743
|
});
|
|
2739
|
-
}), (v,
|
|
2740
|
-
const
|
|
2741
|
-
return h(), R(
|
|
2744
|
+
}), (v, i) => {
|
|
2745
|
+
const f = S("el-icon"), d = S("el-button"), y = S("el-dialog");
|
|
2746
|
+
return h(), R(y, {
|
|
2742
2747
|
modelValue: e.value,
|
|
2743
|
-
"onUpdate:modelValue":
|
|
2748
|
+
"onUpdate:modelValue": i[0] || (i[0] = (C) => e.value = C),
|
|
2744
2749
|
class: "advanced-filter__dialog",
|
|
2745
2750
|
width: "1300px",
|
|
2746
2751
|
title: "高级筛选",
|
|
@@ -2752,7 +2757,7 @@ const ns = {
|
|
|
2752
2757
|
loading: c(l),
|
|
2753
2758
|
onClick: a
|
|
2754
2759
|
}, {
|
|
2755
|
-
default: B(() =>
|
|
2760
|
+
default: B(() => i[2] || (i[2] = [
|
|
2756
2761
|
K("取消", -1)
|
|
2757
2762
|
])),
|
|
2758
2763
|
_: 1,
|
|
@@ -2761,9 +2766,9 @@ const ns = {
|
|
|
2761
2766
|
b(d, {
|
|
2762
2767
|
loading: c(l),
|
|
2763
2768
|
type: "primary",
|
|
2764
|
-
onClick:
|
|
2769
|
+
onClick: r
|
|
2765
2770
|
}, {
|
|
2766
|
-
default: B(() =>
|
|
2771
|
+
default: B(() => i[3] || (i[3] = [
|
|
2767
2772
|
K("确认", -1)
|
|
2768
2773
|
])),
|
|
2769
2774
|
_: 1,
|
|
@@ -2771,18 +2776,18 @@ const ns = {
|
|
|
2771
2776
|
}, 8, ["loading"])
|
|
2772
2777
|
]),
|
|
2773
2778
|
default: B(() => [
|
|
2774
|
-
c(
|
|
2779
|
+
c(m) ? (h(), I("div", ns, [
|
|
2775
2780
|
M("div", as, [
|
|
2776
|
-
b(
|
|
2781
|
+
b(f, { class: "is-loading" }, {
|
|
2777
2782
|
default: B(() => [
|
|
2778
2783
|
b(c($o))
|
|
2779
2784
|
]),
|
|
2780
2785
|
_: 1
|
|
2781
2786
|
}),
|
|
2782
|
-
|
|
2787
|
+
i[1] || (i[1] = M("div", { class: "text" }, "加载中", -1))
|
|
2783
2788
|
])
|
|
2784
2789
|
])) : z("", !0),
|
|
2785
|
-
c(n) && e.value && !c(
|
|
2790
|
+
c(n) && e.value && !c(m) ? (h(), R(Ka, {
|
|
2786
2791
|
key: 1,
|
|
2787
2792
|
"advanced-form-builder": c(n)
|
|
2788
2793
|
}, null, 8, ["advanced-form-builder"])) : z("", !0)
|
|
@@ -2792,16 +2797,16 @@ const ns = {
|
|
|
2792
2797
|
};
|
|
2793
2798
|
}
|
|
2794
2799
|
}), ls = (t) => {
|
|
2795
|
-
const e = G(), o = G(!1), n = G({}), a = (d,
|
|
2796
|
-
const { prop:
|
|
2797
|
-
|
|
2800
|
+
const e = G(), o = G(!1), n = G({}), a = (d, y) => {
|
|
2801
|
+
const { prop: C } = y;
|
|
2802
|
+
C && Reflect.set(n.value, C, d);
|
|
2798
2803
|
}, s = G(!1), l = () => {
|
|
2799
2804
|
s.value = !s.value;
|
|
2800
|
-
},
|
|
2805
|
+
}, p = G(!1), r = G([]), m = 5, u = async () => {
|
|
2801
2806
|
if (po(e.value?.$el))
|
|
2802
2807
|
return;
|
|
2803
2808
|
t.hiddenProps.clear();
|
|
2804
|
-
const d =
|
|
2809
|
+
const d = r.value.reduce((_, k) => {
|
|
2805
2810
|
const T = k.$el, x = T?.getAttribute("data-prop");
|
|
2806
2811
|
return x && _.set(x, T), _;
|
|
2807
2812
|
}, /* @__PURE__ */ new Map());
|
|
@@ -2814,21 +2819,21 @@ const ns = {
|
|
|
2814
2819
|
const x = d.get(T);
|
|
2815
2820
|
if (x) {
|
|
2816
2821
|
const { top: w } = x.getBoundingClientRect() ?? {};
|
|
2817
|
-
_ ? Math.abs(w - _) >
|
|
2822
|
+
_ ? Math.abs(w - _) > m ? t.hiddenProps.add(T) : t.hiddenProps.delete(T) : (_ = w, t.hiddenProps.delete(T));
|
|
2818
2823
|
} else
|
|
2819
2824
|
t.hiddenProps.add(T);
|
|
2820
2825
|
}
|
|
2821
2826
|
});
|
|
2822
2827
|
}
|
|
2823
2828
|
await ae();
|
|
2824
|
-
const
|
|
2825
|
-
if (
|
|
2826
|
-
const _ = d.get(
|
|
2829
|
+
const y = t.getShowColumns[0], C = t.getShowColumns.at(-1);
|
|
2830
|
+
if (y && C) {
|
|
2831
|
+
const _ = d.get(y.prop), k = d.get(C.prop);
|
|
2827
2832
|
if (_ && k) {
|
|
2828
|
-
const { top: T } = _.getBoundingClientRect() ?? {}, { top: x } = k.getBoundingClientRect() ?? {}, w = Math.abs(T - x) >
|
|
2829
|
-
|
|
2833
|
+
const { top: T } = _.getBoundingClientRect() ?? {}, { top: x } = k.getBoundingClientRect() ?? {}, w = Math.abs(T - x) > m;
|
|
2834
|
+
p.value = !w;
|
|
2830
2835
|
}
|
|
2831
|
-
_ && !k && (
|
|
2836
|
+
_ && !k && (p.value = !1);
|
|
2832
2837
|
}
|
|
2833
2838
|
};
|
|
2834
2839
|
let g = !0;
|
|
@@ -2843,8 +2848,8 @@ const ns = {
|
|
|
2843
2848
|
},
|
|
2844
2849
|
{ flush: "post", deep: !0 }
|
|
2845
2850
|
);
|
|
2846
|
-
let
|
|
2847
|
-
const
|
|
2851
|
+
let i;
|
|
2852
|
+
const f = async () => {
|
|
2848
2853
|
if (t.config.pageId) {
|
|
2849
2854
|
o.value = !0;
|
|
2850
2855
|
try {
|
|
@@ -2854,29 +2859,29 @@ const ns = {
|
|
|
2854
2859
|
}
|
|
2855
2860
|
} else
|
|
2856
2861
|
t.columnManagement.showAllFormItems();
|
|
2857
|
-
o.value = !1, await ae(), t.config.hideExpandBtn ? v() : (
|
|
2862
|
+
o.value = !1, await ae(), t.config.hideExpandBtn ? v() : (i = new ResizeObserver(() => {
|
|
2858
2863
|
g && requestAnimationFrame(u);
|
|
2859
|
-
}), e.value &&
|
|
2864
|
+
}), e.value && i.observe(e.value.$el));
|
|
2860
2865
|
};
|
|
2861
2866
|
return Uo(() => {
|
|
2862
2867
|
g = !0;
|
|
2863
2868
|
}), Qo(() => {
|
|
2864
2869
|
g = !1;
|
|
2865
2870
|
}), He(() => {
|
|
2866
|
-
|
|
2871
|
+
f().finally(() => {
|
|
2867
2872
|
ae().then(() => {
|
|
2868
2873
|
t.emit(ue.COLUMNS_LOADED);
|
|
2869
2874
|
});
|
|
2870
2875
|
});
|
|
2871
2876
|
}), Le(() => {
|
|
2872
|
-
|
|
2877
|
+
i?.disconnect(), v(), t?.destroy();
|
|
2873
2878
|
}), {
|
|
2874
2879
|
collectionRef: a,
|
|
2875
2880
|
updateExpand: l,
|
|
2876
2881
|
isExpand: s,
|
|
2877
2882
|
baseFormRef: e,
|
|
2878
|
-
autoHiddenExpand:
|
|
2879
|
-
colRefs:
|
|
2883
|
+
autoHiddenExpand: p,
|
|
2884
|
+
colRefs: r,
|
|
2880
2885
|
loadingConfigColumns: o
|
|
2881
2886
|
};
|
|
2882
2887
|
}, rs = { class: "base-form__body" }, is = /* @__PURE__ */ W({
|
|
@@ -2887,18 +2892,18 @@ const ns = {
|
|
|
2887
2892
|
},
|
|
2888
2893
|
emits: ["change"],
|
|
2889
2894
|
setup(t, { emit: e }) {
|
|
2890
|
-
const o = e, { baseFormRef: n, isExpand: a, autoHiddenExpand: s, colRefs: l, loadingConfigColumns:
|
|
2891
|
-
() => (
|
|
2892
|
-
t.formBuilder.emit(ue.CHANGE), o("change", ...
|
|
2895
|
+
const o = e, { baseFormRef: n, isExpand: a, autoHiddenExpand: s, colRefs: l, loadingConfigColumns: p, collectionRef: r, updateExpand: m } = ls(t.formBuilder), { configManagement: u, config: g } = t.formBuilder, v = (y, C) => C ? $t(C) ? `${Object.keys(y).reduce((k, T) => (k.push(`${T}:${Reflect.get(y, T)}`), k), []).join(";")} ${C}` : { ...y, ...C } : y, i = P(
|
|
2896
|
+
() => (y) => y.parseColumnEvent((...C) => {
|
|
2897
|
+
t.formBuilder.emit(ue.CHANGE), o("change", ...C);
|
|
2893
2898
|
})
|
|
2894
|
-
),
|
|
2895
|
-
t.formBuilder.updateFormData(
|
|
2899
|
+
), f = (y, C) => {
|
|
2900
|
+
t.formBuilder.updateFormData(y.prop, C);
|
|
2896
2901
|
}, d = () => {
|
|
2897
2902
|
a.value || (a.value = !0);
|
|
2898
2903
|
};
|
|
2899
2904
|
return t.formBuilder.on(ue.SAVE_CONFIG, async () => {
|
|
2900
2905
|
t.formBuilder.resetFormDataByActiveGroup(), t.formBuilder.emit(ue.CHANGE), await ae(), d();
|
|
2901
|
-
}), t.formBuilder.on(ue.UPDATE_ACTIVE_GROUP, d), (
|
|
2906
|
+
}), t.formBuilder.on(ue.UPDATE_ACTIVE_GROUP, d), (y, C) => {
|
|
2902
2907
|
const _ = S("el-form-item"), k = S("el-col"), T = S("el-row"), x = S("el-form"), w = S("el-icon"), D = Ae("loading");
|
|
2903
2908
|
return h(), I(q, null, [
|
|
2904
2909
|
M("div", {
|
|
@@ -2906,18 +2911,18 @@ const ns = {
|
|
|
2906
2911
|
"base-form__container z-form",
|
|
2907
2912
|
c(g).className || "",
|
|
2908
2913
|
c(g).useRowLayout ? "base-form__layout-container" : "base-form__no-layout-container",
|
|
2909
|
-
|
|
2914
|
+
y.formBuilder.getShowColumns.length ? "base-form__has-columns" : ""
|
|
2910
2915
|
])
|
|
2911
2916
|
}, [
|
|
2912
2917
|
pe((h(), I("div", rs, [
|
|
2913
|
-
c(
|
|
2918
|
+
c(p) ? z("", !0) : (h(), R(x, le({
|
|
2914
2919
|
key: 0,
|
|
2915
2920
|
ref_key: "baseFormRef",
|
|
2916
2921
|
ref: n,
|
|
2917
2922
|
class: "base-form__form"
|
|
2918
2923
|
}, c(u).getFormAttrs, {
|
|
2919
|
-
model:
|
|
2920
|
-
onSubmit:
|
|
2924
|
+
model: y.formBuilder.formData,
|
|
2925
|
+
onSubmit: C[0] || (C[0] = _e(() => {
|
|
2921
2926
|
}, ["prevent"]))
|
|
2922
2927
|
}), {
|
|
2923
2928
|
default: B(() => [
|
|
@@ -2925,7 +2930,7 @@ const ns = {
|
|
|
2925
2930
|
style: v({ marginLeft: "0", marginRight: "0" }, c(g).rowAttrs?.style)
|
|
2926
2931
|
}), {
|
|
2927
2932
|
default: B(() => [
|
|
2928
|
-
(h(!0), I(q, null, se(
|
|
2933
|
+
(h(!0), I(q, null, se(y.formBuilder.getShowColumns, (A) => (h(), R(k, le({ ref_for: !0 }, A.elColAttrs ?? {}, {
|
|
2929
2934
|
key: A.prop,
|
|
2930
2935
|
ref_for: !0,
|
|
2931
2936
|
ref_key: "colRefs",
|
|
@@ -2942,10 +2947,10 @@ const ns = {
|
|
|
2942
2947
|
default: B(() => [
|
|
2943
2948
|
(h(), R(jt(A.getFormComponent), le({ ref_for: !0 }, A.attrs, {
|
|
2944
2949
|
ref_for: !0,
|
|
2945
|
-
ref: (
|
|
2946
|
-
"model-value":
|
|
2947
|
-
}, we(
|
|
2948
|
-
"onUpdate:modelValue": (
|
|
2950
|
+
ref: (N) => c(r)(N, A),
|
|
2951
|
+
"model-value": y.formBuilder.formData[A.prop]
|
|
2952
|
+
}, we(i.value(A)), {
|
|
2953
|
+
"onUpdate:modelValue": (N) => f(A, N)
|
|
2949
2954
|
}), null, 16, ["model-value", "onUpdate:modelValue"]))
|
|
2950
2955
|
]),
|
|
2951
2956
|
_: 2
|
|
@@ -2960,15 +2965,15 @@ const ns = {
|
|
|
2960
2965
|
_: 1
|
|
2961
2966
|
}, 16, ["model"]))
|
|
2962
2967
|
])), [
|
|
2963
|
-
[D, c(
|
|
2968
|
+
[D, c(p)]
|
|
2964
2969
|
]),
|
|
2965
2970
|
c(g).hideExpandBtn ? z("", !0) : (h(), I(q, { key: 0 }, [
|
|
2966
2971
|
c(s) ? z("", !0) : (h(), I("div", {
|
|
2967
2972
|
key: 0,
|
|
2968
2973
|
class: re(["expand-btn", { "expand-btn__expand": c(a) }]),
|
|
2969
|
-
style: mt({ display:
|
|
2970
|
-
onClick:
|
|
2971
|
-
(...A) => c(
|
|
2974
|
+
style: mt({ display: y.formBuilder.getShowColumns.length ? "" : "none" }),
|
|
2975
|
+
onClick: C[1] || (C[1] = //@ts-ignore
|
|
2976
|
+
(...A) => c(m) && c(m)(...A))
|
|
2972
2977
|
}, [
|
|
2973
2978
|
b(w, null, {
|
|
2974
2979
|
default: B(() => [
|
|
@@ -2980,7 +2985,7 @@ const ns = {
|
|
|
2980
2985
|
], 6))
|
|
2981
2986
|
], 64))
|
|
2982
2987
|
], 2),
|
|
2983
|
-
b(ss, { "form-builder":
|
|
2988
|
+
b(ss, { "form-builder": y.formBuilder }, null, 8, ["form-builder"])
|
|
2984
2989
|
], 64);
|
|
2985
2990
|
};
|
|
2986
2991
|
}
|
|
@@ -3004,10 +3009,10 @@ const ns = {
|
|
|
3004
3009
|
return He(() => {
|
|
3005
3010
|
!o.value && t.steps.length && (o.value = t.steps[0].value);
|
|
3006
3011
|
}), (a, s) => (h(), I("div", ds, [
|
|
3007
|
-
(h(!0), I(q, null, se(a.steps, (l,
|
|
3012
|
+
(h(!0), I(q, null, se(a.steps, (l, p) => (h(), I("div", {
|
|
3008
3013
|
key: l.value,
|
|
3009
3014
|
class: re(["z-base-step__step-item", { "is-active": l.value === o.value }]),
|
|
3010
|
-
onClick: (
|
|
3015
|
+
onClick: (r) => n("change", l.value)
|
|
3011
3016
|
}, [
|
|
3012
3017
|
M("div", ms, [
|
|
3013
3018
|
b(so, {
|
|
@@ -3017,7 +3022,7 @@ const ns = {
|
|
|
3017
3022
|
}, null, 8, ["content"]),
|
|
3018
3023
|
K(" " + J(l.label), 1)
|
|
3019
3024
|
]),
|
|
3020
|
-
|
|
3025
|
+
p !== a.steps.length - 1 ? (h(), I("div", fs)) : z("", !0)
|
|
3021
3026
|
], 10, ps))), 128))
|
|
3022
3027
|
]));
|
|
3023
3028
|
}
|
|
@@ -3056,7 +3061,7 @@ const ns = {
|
|
|
3056
3061
|
},
|
|
3057
3062
|
emits: ["update:modelValue"],
|
|
3058
3063
|
setup(t) {
|
|
3059
|
-
const e = xe(t, "modelValue"), o =
|
|
3064
|
+
const e = xe(t, "modelValue"), o = P(() => e.value ? Array.isArray(e.value) ? e.value : [e.value] : []), n = G(), a = G(!1);
|
|
3060
3065
|
let s;
|
|
3061
3066
|
return vt(() => {
|
|
3062
3067
|
!s && n.value && (s = new ResizeObserver(() => {
|
|
@@ -3066,15 +3071,15 @@ const ns = {
|
|
|
3066
3071
|
}));
|
|
3067
3072
|
}), At(() => {
|
|
3068
3073
|
s?.disconnect();
|
|
3069
|
-
}), (l,
|
|
3070
|
-
const
|
|
3071
|
-
return h(), I("div", bs, [b(
|
|
3074
|
+
}), (l, p) => {
|
|
3075
|
+
const r = S("el-tag"), m = S("el-tooltip");
|
|
3076
|
+
return h(), I("div", bs, [b(m, {
|
|
3072
3077
|
disabled: !o.value.length || !a.value,
|
|
3073
3078
|
effect: "light",
|
|
3074
3079
|
placement: "top",
|
|
3075
3080
|
"popper-class": "z-show-to-tags__tooltip"
|
|
3076
3081
|
}, {
|
|
3077
|
-
content: B(() => [M("div", Bs, [(h(!0), I(q, null, se(o.value, (u) => (h(), R(
|
|
3082
|
+
content: B(() => [M("div", Bs, [(h(!0), I(q, null, se(o.value, (u) => (h(), R(r, {
|
|
3078
3083
|
key: u,
|
|
3079
3084
|
type: "primary"
|
|
3080
3085
|
}, {
|
|
@@ -3091,38 +3096,38 @@ const ns = {
|
|
|
3091
3096
|
};
|
|
3092
3097
|
}
|
|
3093
3098
|
}), Es = /* @__PURE__ */ ee(Ds, [["__scopeId", "data-v-2c568d65"]]), Is = ge(Es, "ZShowToTags"), ks = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAYAAADFw8lbAAACQElEQVR4Xu2YzXGDMBCFXUJKoISU4AYAHYH4wCUZID7QQdKB3UHcgdOBS6EESki0DGDpgYyQUOJk+GZ0gdXqod3VD5vNyso/h7Hyge32W3x+N5C4MM4vQZLXQZx/saj00OZX6QVycWLzkyJFWySIXw/UV9VYnDPsMxsKcZgUHyjw2ooj9kHGPrBvSfaO9rNhUeZxZxU6D3nY+eBnP8lS+hDshyiFuhQZxNlRR5yIQmhNY6DtLEgIiuSDVdzxFm11UAilVs39aAnMyVakh3a6iEIpbSTffCy014LybkmRRC+U5yT5Ip/iGGxnECkKh+QkeX5Em7k0QoXCoRSCybgI5tP4fD2THJiGBRjLbSpK41kN4+IsdbYM+S1Y2hSs2ay6mM1bwGpQa60ALNpLecOi6a3RFixcrfDz/baUhboLe0e7qfRj8hop0WYAJje+d4W8rk6fGyg/T4LQCt+7gsbqxtWqiz8kVAp9je9dIYypF/phMbk/uRsVE25rOid3W8yWp5RO8tcKnLVTGIKnNHyvBM+NWjuFIRj2IMo+0UYJhj94yg9jNvjMBJzN2Re8wawKeRNExdsSKUFHR3EMOp+izSSDWW0PziSydWoltA15JU2G6bkCt9PuZ4Ot0DGRWou8imYFGL2BmgulHxgDkbaXO6K528BFzERoe6M9jPixvos1dDmJTUcoiaMNAwvzx0TqCh3kuNSyk3W4CT9+YSRG1eiHF/ZBcGvsPnCpNXgxul2n/Ud1fwJFSNwiIV5ZuXO+AeSMxwCzcroLAAAAAElFTkSuQmCC", Ss = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAYAAADFw8lbAAABdUlEQVR4Xu2V0W3DIBCGM0JG6CheIPY9RcbyQx7B6oM3SEboBu0GHaEjdASP0BFajhhKzlgl5VJV7X0SinX4hy8G481GEM7U3XCqlXl3zV7T/lsRzwu9rmj/AhH9gh8V5cqKqIcrK6IerqyIeriyIurhyhaJAozbRpmXWg2voMwYRQJr2ZidMmD7p0YNzzimr7OJNt3wGOpKP0SRwFo2BrP+Hhwz1DlE48HdE42eREwqS4HDuMUxqGyxaN3qY44kQrO030NlXa5I1O4lf9105m3XG4D+vqItmZ1F8Y/R+7HhXsUxU3N9RzS3TYts2DafArntT4uGSXCZ7LEE0Opq0eZ9mxJFFvdji5Z+/g1zXS+K17d4meDyZYK9lXZndIGoqyn9lCObylIWkq0+YJ1F1NUvZHkO/LrTJ19nE8WzDz97tj7hUkWRwFo2Bj+/VBJhE80hN2uX+47WfqVoChFNUZIV0RQlWRFNUZIVUW5ElJurRYX/wgexw+vYgAE1fgAAAABJRU5ErkJggg==", Ot = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAYAAADFw8lbAAAB00lEQVR4Xu1Y0ZGCMBC1hCvBEizhSrgSLIEOpAR/GAw6gx1cCZZgCZRgCXf7xoRZH+ESDxL94M28EZPd5LGEzZLVasGCedC27Rrk9rdAXdfbpmkuxpib8McRbcIt22dHVVUbEdRpcSPs5GbW7J8FVuRDBAO8SXQ3PE5SIDqIkkdIK7+F5RltbJM1slZQLwBrUV6gD7aDKOn7Zlu2SwIbTR2ljm0YIu6qfWSMT7aZHeb+WHWEgusOwujmCraZHfQog9F0gK26uZb7Z4fNl0+vt//6BXE8HvG48JhLYh8Ze839Ywz5FU9nBBG5U4NmJeZmPV7YSA4GyMmorHA4HPbsmJun02nPugYw9x3FOUW/1VOBudy8UVlhERpAVqEqpRW45v6/kEUoSj7ez51/bG5MLtQWKVzOaUaVdsmF6q1xjDFbZlKhqEFJ0BVttg59WAq+elUjqVDexfSOIv+/xvp8SCpUBsR3Uy9GWLo+Q3XrS4UCZviJ3GIL1G2R4yQXWpKoASWaJfsxkgsFRIj2YZFntvchi1Cgvp+W9G86UlLzxClJNqFTsQidG1OFIvWUmdinuVihD4n6RQwfUNj9u/M452J0aegOty6eQZISc0aLXLDgzfALQFYngxmEg2kAAAAASUVORK5CYII=", Ts = (t) => {
|
|
3094
|
-
const e = G(""), o = G(!0), n = G(c(t.groupName) || ""), a = G([]), s = G([]), l = G([]),
|
|
3095
|
-
() => (E) =>
|
|
3096
|
-
), u = (E =
|
|
3099
|
+
const e = G(""), o = G(!0), n = G(c(t.groupName) || ""), a = G([]), s = G([]), l = G([]), p = G({}), r = P(() => Object.keys(p.value) ?? []), m = P(
|
|
3100
|
+
() => (E) => p.value[E]
|
|
3101
|
+
), u = (E = p.value) => {
|
|
3097
3102
|
const H = [];
|
|
3098
|
-
return
|
|
3103
|
+
return r.value.forEach((U) => {
|
|
3099
3104
|
H.push(...E[U]);
|
|
3100
3105
|
}), H;
|
|
3101
|
-
}, g =
|
|
3102
|
-
const H =
|
|
3106
|
+
}, g = P(() => (E) => {
|
|
3107
|
+
const H = p.value[E], U = H.filter((X) => X.checked).length;
|
|
3103
3108
|
return !!U && U < H.length;
|
|
3104
3109
|
}), v = (E, H = {}) => {
|
|
3105
3110
|
const U = u(t.initialGroupData).find((X) => X.prop === E.prop);
|
|
3106
3111
|
return U && Object.assign(E, U, H), E;
|
|
3107
|
-
},
|
|
3112
|
+
}, i = (E) => {
|
|
3108
3113
|
s.value = [];
|
|
3109
3114
|
const H = [], U = [], X = new Map(E.map(($) => [$.prop, $])), ie = ($, ce, Y) => {
|
|
3110
3115
|
ce && (Y?.fixed ? H.push(v($, { fixed: Y.fixed })) : U.push($)), $.checked = !!ce;
|
|
3111
3116
|
};
|
|
3112
|
-
u(
|
|
3117
|
+
u(p.value).forEach(($) => {
|
|
3113
3118
|
const ce = X.get($.prop);
|
|
3114
3119
|
$.readonly ? s.value.push(v($, { fixed: $.fixed })) : ie($, ce ? ce.checked : $.checked, ce);
|
|
3115
3120
|
}), a.value = H, l.value = t.hasLockColumns ? U : H.concat(U);
|
|
3116
|
-
},
|
|
3117
|
-
|
|
3121
|
+
}, f = (E, H) => {
|
|
3122
|
+
p.value[H].forEach((X) => {
|
|
3118
3123
|
X.readonly ? X.checked = !0 : X.checked = E;
|
|
3119
|
-
}),
|
|
3120
|
-
}, d =
|
|
3124
|
+
}), i(u());
|
|
3125
|
+
}, d = P(
|
|
3121
3126
|
() => u().filter((E) => E.checked || E.readonly).length
|
|
3122
|
-
),
|
|
3123
|
-
const H =
|
|
3127
|
+
), y = (E) => {
|
|
3128
|
+
const H = p.value[E];
|
|
3124
3129
|
return H.filter((X) => X.checked).length === H.length;
|
|
3125
|
-
},
|
|
3130
|
+
}, C = (E, H) => {
|
|
3126
3131
|
if (H && a.value.length >= 5 && !E.fixed)
|
|
3127
3132
|
return;
|
|
3128
3133
|
E.fixed = H;
|
|
@@ -3138,19 +3143,19 @@ const ns = {
|
|
|
3138
3143
|
v(U, { checked: U.defaultChecked ?? !1 });
|
|
3139
3144
|
});
|
|
3140
3145
|
const H = u();
|
|
3141
|
-
if (
|
|
3146
|
+
if (i(E === "reset" ? H : t.savedColumnsData ?? H), E === "init" && t.savedColumnsData) {
|
|
3142
3147
|
const U = new Map(t.savedColumnsData.map((X, ie) => [X.prop, ie]));
|
|
3143
3148
|
l.value = V.sortBy(l.value, (X) => U.get(X.prop)), a.value = V.sortBy(a.value, (X) => U.get(X.prop));
|
|
3144
3149
|
}
|
|
3145
3150
|
};
|
|
3146
3151
|
(() => {
|
|
3147
|
-
|
|
3152
|
+
p.value = V.cloneDeep(t.initialGroupData), T("init"), e.value = t.defaultActiveTab || r.value[0];
|
|
3148
3153
|
})();
|
|
3149
3154
|
let w = !1, D;
|
|
3150
|
-
const A = G(),
|
|
3155
|
+
const A = G(), N = G(), j = G(), F = (E, H = !1) => {
|
|
3151
3156
|
if (e.value = E, H) {
|
|
3152
3157
|
w = !0, clearTimeout(D);
|
|
3153
|
-
const U =
|
|
3158
|
+
const U = r.value.indexOf(E);
|
|
3154
3159
|
A.value?.[U]?.scrollIntoView({
|
|
3155
3160
|
behavior: "smooth",
|
|
3156
3161
|
block: "start"
|
|
@@ -3161,19 +3166,19 @@ const ns = {
|
|
|
3161
3166
|
};
|
|
3162
3167
|
let L;
|
|
3163
3168
|
const Q = $e(() => {
|
|
3164
|
-
A.value?.length &&
|
|
3169
|
+
A.value?.length && N.value && (L = new IntersectionObserver(
|
|
3165
3170
|
([E]) => {
|
|
3166
3171
|
const U = E.target.getAttribute("data-group-name");
|
|
3167
3172
|
if (!w) {
|
|
3168
3173
|
if (E.isIntersecting)
|
|
3169
3174
|
U && F(U);
|
|
3170
3175
|
else if (e.value === U) {
|
|
3171
|
-
const X =
|
|
3172
|
-
X > 0 && (e.value =
|
|
3176
|
+
const X = r.value.indexOf(U);
|
|
3177
|
+
X > 0 && (e.value = r.value[X - 1]);
|
|
3173
3178
|
}
|
|
3174
3179
|
}
|
|
3175
3180
|
},
|
|
3176
|
-
{ root:
|
|
3181
|
+
{ root: N.value, threshold: 1 }
|
|
3177
3182
|
), A.value.forEach((E) => {
|
|
3178
3183
|
L.observe(E);
|
|
3179
3184
|
}));
|
|
@@ -3183,23 +3188,23 @@ const ns = {
|
|
|
3183
3188
|
}), {
|
|
3184
3189
|
isSave: o,
|
|
3185
3190
|
currentGroupName: n,
|
|
3186
|
-
duplicateData:
|
|
3187
|
-
groupNameList:
|
|
3191
|
+
duplicateData: p,
|
|
3192
|
+
groupNameList: r,
|
|
3188
3193
|
activeTab: e,
|
|
3189
3194
|
isIndeterminate: g,
|
|
3190
|
-
getCurrentColumnsList:
|
|
3195
|
+
getCurrentColumnsList: m,
|
|
3191
3196
|
checkedUnfixedColumns: l,
|
|
3192
3197
|
checkedFixedColumns: a,
|
|
3193
3198
|
readonlyColumns: s,
|
|
3194
3199
|
getAllCheckedColumnsLength: d,
|
|
3195
3200
|
scrollbarRef: j,
|
|
3196
3201
|
groupNameRefs: A,
|
|
3197
|
-
observerRootElementRef:
|
|
3198
|
-
isCheckAll:
|
|
3202
|
+
observerRootElementRef: N,
|
|
3203
|
+
isCheckAll: y,
|
|
3199
3204
|
getAllColumns: u,
|
|
3200
|
-
checkAll:
|
|
3205
|
+
checkAll: f,
|
|
3201
3206
|
updateActiveTab: F,
|
|
3202
|
-
updateFixed:
|
|
3207
|
+
updateFixed: C,
|
|
3203
3208
|
deleteChecked: k,
|
|
3204
3209
|
checkItem: _,
|
|
3205
3210
|
initAndReset: T
|
|
@@ -3212,7 +3217,7 @@ const ns = {
|
|
|
3212
3217
|
class: "content"
|
|
3213
3218
|
}, Ms = {
|
|
3214
3219
|
class: "tabs"
|
|
3215
|
-
},
|
|
3220
|
+
}, Ps = ["onClick"], Ns = ["data-group-name"], Rs = {
|
|
3216
3221
|
class: "check-sub"
|
|
3217
3222
|
}, Vs = {
|
|
3218
3223
|
class: "config-columns__select-container"
|
|
@@ -3263,24 +3268,24 @@ const ns = {
|
|
|
3263
3268
|
groupNameList: a,
|
|
3264
3269
|
isSave: s,
|
|
3265
3270
|
currentGroupName: l,
|
|
3266
|
-
activeTab:
|
|
3267
|
-
isIndeterminate:
|
|
3268
|
-
getCurrentColumnsList:
|
|
3271
|
+
activeTab: p,
|
|
3272
|
+
isIndeterminate: r,
|
|
3273
|
+
getCurrentColumnsList: m,
|
|
3269
3274
|
checkedUnfixedColumns: u,
|
|
3270
3275
|
checkedFixedColumns: g,
|
|
3271
3276
|
readonlyColumns: v,
|
|
3272
|
-
getAllCheckedColumnsLength:
|
|
3273
|
-
scrollbarRef:
|
|
3277
|
+
getAllCheckedColumnsLength: i,
|
|
3278
|
+
scrollbarRef: f,
|
|
3274
3279
|
groupNameRefs: d,
|
|
3275
|
-
observerRootElementRef:
|
|
3276
|
-
isCheckAll:
|
|
3280
|
+
observerRootElementRef: y,
|
|
3281
|
+
isCheckAll: C,
|
|
3277
3282
|
checkAll: _,
|
|
3278
3283
|
updateActiveTab: k,
|
|
3279
3284
|
updateFixed: T,
|
|
3280
3285
|
deleteChecked: x,
|
|
3281
3286
|
checkItem: w,
|
|
3282
3287
|
initAndReset: D
|
|
3283
|
-
} = Ts(o), A = G(!1),
|
|
3288
|
+
} = Ts(o), A = G(!1), N = () => {
|
|
3284
3289
|
A.value = !1;
|
|
3285
3290
|
}, j = () => {
|
|
3286
3291
|
n("cancel");
|
|
@@ -3319,17 +3324,17 @@ const ns = {
|
|
|
3319
3324
|
}, {
|
|
3320
3325
|
default: B(() => [(h(!0), I(q, null, se(c(a), (Y) => pe((h(), I("div", {
|
|
3321
3326
|
key: Y,
|
|
3322
|
-
class: re(["tab-item", Y === c(
|
|
3327
|
+
class: re(["tab-item", Y === c(p) ? "is-active" : ""]),
|
|
3323
3328
|
onClick: (me) => c(k)(Y, !0)
|
|
3324
|
-
}, [K(J(Y), 1)], 10,
|
|
3329
|
+
}, [K(J(Y), 1)], 10, Ps)), [[ce]])), 128))]),
|
|
3325
3330
|
_: 1
|
|
3326
3331
|
})]), M("div", {
|
|
3327
3332
|
ref_key: "observerRootElementRef",
|
|
3328
|
-
ref:
|
|
3333
|
+
ref: y,
|
|
3329
3334
|
class: "active-tab-content"
|
|
3330
3335
|
}, [b(H, {
|
|
3331
3336
|
ref_key: "scrollbarRef",
|
|
3332
|
-
ref:
|
|
3337
|
+
ref: f,
|
|
3333
3338
|
class: "position__scrollbar"
|
|
3334
3339
|
}, {
|
|
3335
3340
|
default: B(() => [(h(!0), I(q, null, se(c(a), (Y) => (h(), I(q, {
|
|
@@ -3341,13 +3346,13 @@ const ns = {
|
|
|
3341
3346
|
class: "check-tab",
|
|
3342
3347
|
"data-group-name": Y
|
|
3343
3348
|
}, [b(U, {
|
|
3344
|
-
"model-value": c(
|
|
3345
|
-
indeterminate: c(
|
|
3349
|
+
"model-value": c(C)(Y),
|
|
3350
|
+
indeterminate: c(r)(Y),
|
|
3346
3351
|
onChange: (me) => c(_)(me, Y)
|
|
3347
3352
|
}, {
|
|
3348
3353
|
default: B(() => [pe((h(), I("div", null, [K(J(Y), 1)])), [[ce]])]),
|
|
3349
3354
|
_: 2
|
|
3350
|
-
}, 1032, ["model-value", "indeterminate", "onChange"])], 8,
|
|
3355
|
+
}, 1032, ["model-value", "indeterminate", "onChange"])], 8, Ns), M("div", Rs, [(h(!0), I(q, null, se(c(m)(Y), (me) => (h(), I("div", {
|
|
3351
3356
|
key: me.prop,
|
|
3352
3357
|
class: "check-sub__item"
|
|
3353
3358
|
}, [b(U, {
|
|
@@ -3360,7 +3365,7 @@ const ns = {
|
|
|
3360
3365
|
_: 2
|
|
3361
3366
|
}, 1032, ["modelValue", "onUpdate:modelValue", "disabled", "onChange"])]))), 128))])], 64))), 128))]),
|
|
3362
3367
|
_: 1
|
|
3363
|
-
}, 512)], 512)])]), M("div", Vs, [M("div", Os, [M("div", Ls, "已选 " + J(c(
|
|
3368
|
+
}, 512)], 512)])]), M("div", Vs, [M("div", Os, [M("div", Ls, "已选 " + J(c(i)) + " 个", 1), M("div", {
|
|
3364
3369
|
class: "reset",
|
|
3365
3370
|
onClick: E[0] || (E[0] = (Y) => c(D)("reset"))
|
|
3366
3371
|
}, "重置")]), M("div", Hs, [b(H, {
|
|
@@ -3425,7 +3430,7 @@ const ns = {
|
|
|
3425
3430
|
class: re(A.value ? "is-error" : ""),
|
|
3426
3431
|
placeholder: "请输入",
|
|
3427
3432
|
maxlength: "10",
|
|
3428
|
-
onInput:
|
|
3433
|
+
onInput: N
|
|
3429
3434
|
}, {
|
|
3430
3435
|
suffix: B(() => [K(J(c(l)?.length || 0) + "/10", 1)]),
|
|
3431
3436
|
_: 1
|
|
@@ -3454,32 +3459,32 @@ const ns = {
|
|
|
3454
3459
|
},
|
|
3455
3460
|
emits: ["saveColumns"],
|
|
3456
3461
|
setup(t, { expose: e, emit: o }) {
|
|
3457
|
-
const n = o, [a, s] = ut(!0), l = G({}),
|
|
3462
|
+
const n = o, [a, s] = ut(!0), l = G({}), p = G(void 0), r = G(!1), m = G("");
|
|
3458
3463
|
let u;
|
|
3459
|
-
const g = async (
|
|
3460
|
-
l.value = he(
|
|
3464
|
+
const g = async (f, d) => {
|
|
3465
|
+
l.value = he(f.groupData), m.value = f.groupName, a.value = !0, await ae();
|
|
3461
3466
|
try {
|
|
3462
|
-
|
|
3467
|
+
p.value = d;
|
|
3463
3468
|
} finally {
|
|
3464
3469
|
s(() => {
|
|
3465
|
-
|
|
3470
|
+
r.value = !0;
|
|
3466
3471
|
});
|
|
3467
3472
|
}
|
|
3468
|
-
return new Promise((
|
|
3469
|
-
u =
|
|
3473
|
+
return new Promise((y) => {
|
|
3474
|
+
u = y;
|
|
3470
3475
|
});
|
|
3471
3476
|
}, v = () => {
|
|
3472
|
-
|
|
3473
|
-
},
|
|
3474
|
-
if (
|
|
3477
|
+
r.value = !1;
|
|
3478
|
+
}, i = (f, d, y) => {
|
|
3479
|
+
if (f.length === 0) {
|
|
3475
3480
|
Qa("至少保留一列");
|
|
3476
3481
|
return;
|
|
3477
3482
|
}
|
|
3478
3483
|
a.value = !1, u({
|
|
3479
3484
|
data: {
|
|
3480
|
-
updateData:
|
|
3485
|
+
updateData: f,
|
|
3481
3486
|
groupName: d,
|
|
3482
|
-
isSave:
|
|
3487
|
+
isSave: y
|
|
3483
3488
|
},
|
|
3484
3489
|
close: () => {
|
|
3485
3490
|
s(() => {
|
|
@@ -3490,25 +3495,25 @@ const ns = {
|
|
|
3490
3495
|
};
|
|
3491
3496
|
return e({
|
|
3492
3497
|
openDialog: g
|
|
3493
|
-
}), (
|
|
3494
|
-
const
|
|
3495
|
-
return h(), R(
|
|
3496
|
-
modelValue:
|
|
3497
|
-
"onUpdate:modelValue": d[0] || (d[0] = (
|
|
3498
|
+
}), (f, d) => {
|
|
3499
|
+
const y = S("el-dialog");
|
|
3500
|
+
return h(), R(y, {
|
|
3501
|
+
modelValue: r.value,
|
|
3502
|
+
"onUpdate:modelValue": d[0] || (d[0] = (C) => r.value = C),
|
|
3498
3503
|
class: "config-columns-dialog",
|
|
3499
3504
|
title: "自定义列",
|
|
3500
3505
|
"close-on-click-modal": !1,
|
|
3501
3506
|
"destroy-on-close": ""
|
|
3502
3507
|
}, {
|
|
3503
3508
|
default: B(() => [
|
|
3504
|
-
|
|
3509
|
+
r.value ? (h(), R(el, {
|
|
3505
3510
|
key: 0,
|
|
3506
3511
|
"initial-group-data": l.value,
|
|
3507
|
-
"saved-columns-data":
|
|
3508
|
-
"group-name":
|
|
3509
|
-
"page-name":
|
|
3512
|
+
"saved-columns-data": p.value,
|
|
3513
|
+
"group-name": m.value,
|
|
3514
|
+
"page-name": f.columnConfig?.pageName,
|
|
3510
3515
|
loading: c(a),
|
|
3511
|
-
onConfirm:
|
|
3516
|
+
onConfirm: i,
|
|
3512
3517
|
onCancel: v
|
|
3513
3518
|
}, null, 8, ["initial-group-data", "saved-columns-data", "group-name", "page-name", "loading"])) : z("", !0)
|
|
3514
3519
|
]),
|
|
@@ -3517,10 +3522,10 @@ const ns = {
|
|
|
3517
3522
|
};
|
|
3518
3523
|
}
|
|
3519
3524
|
}), ol = () => {
|
|
3520
|
-
const t = Yo("listenElementRef"), e = () => t?.value || document.body, o = [], n = (s, l,
|
|
3521
|
-
o.push({ event: s, fn: l, options:
|
|
3525
|
+
const t = Yo("listenElementRef"), e = () => t?.value || document.body, o = [], n = (s, l, p) => {
|
|
3526
|
+
o.push({ event: s, fn: l, options: p }), e().addEventListener(s, l, p);
|
|
3522
3527
|
}, a = () => {
|
|
3523
|
-
o.forEach(({ event: s, fn: l, options:
|
|
3528
|
+
o.forEach(({ event: s, fn: l, options: p }) => e().removeEventListener(s, l, p)), o.length = 0;
|
|
3524
3529
|
};
|
|
3525
3530
|
return Le(a), gt() && ht(a), {
|
|
3526
3531
|
stops: a,
|
|
@@ -3537,56 +3542,56 @@ const ns = {
|
|
|
3537
3542
|
},
|
|
3538
3543
|
emits: ["find", "hidden"],
|
|
3539
3544
|
setup(t, { emit: e }) {
|
|
3540
|
-
const o = e, n = G(0), a = G(""), s = G(!1), l = G(), { on:
|
|
3545
|
+
const o = e, n = G(0), a = G(""), s = G(!1), l = G(), { on: p } = ol(), r = (d) => {
|
|
3541
3546
|
n.value = d, o("find", a.value, d);
|
|
3542
|
-
},
|
|
3543
|
-
|
|
3547
|
+
}, m = Jo(() => {
|
|
3548
|
+
r(0);
|
|
3544
3549
|
}, 500), u = () => {
|
|
3545
3550
|
const d = n.value > 0 ? n.value - 1 : t.count - 1;
|
|
3546
|
-
|
|
3551
|
+
r(d);
|
|
3547
3552
|
}, g = () => {
|
|
3548
3553
|
const d = n.value + 1 < t.count ? n.value + 1 : 0;
|
|
3549
|
-
|
|
3554
|
+
r(d);
|
|
3550
3555
|
}, v = async () => {
|
|
3551
3556
|
s.value = !0, await ae(), l.value?.focus();
|
|
3552
|
-
},
|
|
3557
|
+
}, i = () => {
|
|
3553
3558
|
s.value = !1, a.value = "", n.value = 0, o("hidden");
|
|
3554
|
-
},
|
|
3559
|
+
}, f = P(() => t.count ? n.value + 1 : 0);
|
|
3555
3560
|
return He(() => {
|
|
3556
|
-
|
|
3557
|
-
const
|
|
3561
|
+
p("keydown", (d) => {
|
|
3562
|
+
const y = d.target, C = l.value?.$el?.contains?.(y), { key: _, metaKey: k, ctrlKey: T } = d;
|
|
3558
3563
|
switch (_) {
|
|
3559
3564
|
case "f":
|
|
3560
3565
|
(k || T) && (d.preventDefault(), v());
|
|
3561
3566
|
break;
|
|
3562
3567
|
case "Escape":
|
|
3563
|
-
|
|
3568
|
+
i();
|
|
3564
3569
|
break;
|
|
3565
3570
|
case "ArrowUp":
|
|
3566
|
-
|
|
3571
|
+
C && d.preventDefault(), u();
|
|
3567
3572
|
break;
|
|
3568
3573
|
case "ArrowDown":
|
|
3569
|
-
|
|
3574
|
+
C && d.preventDefault(), g();
|
|
3570
3575
|
break;
|
|
3571
3576
|
}
|
|
3572
3577
|
});
|
|
3573
|
-
}), (d,
|
|
3574
|
-
const
|
|
3578
|
+
}), (d, y) => {
|
|
3579
|
+
const C = S("el-icon");
|
|
3575
3580
|
return h(), R(zo, { to: "body" }, [
|
|
3576
3581
|
s.value ? (h(), I("div", nl, [
|
|
3577
3582
|
b(c(cn), {
|
|
3578
3583
|
ref_key: "inputRef",
|
|
3579
3584
|
ref: l,
|
|
3580
3585
|
modelValue: a.value,
|
|
3581
|
-
"onUpdate:modelValue":
|
|
3586
|
+
"onUpdate:modelValue": y[0] || (y[0] = (_) => a.value = _),
|
|
3582
3587
|
placeholder: "请输入搜索关键字",
|
|
3583
|
-
onInput: c(
|
|
3588
|
+
onInput: c(m),
|
|
3584
3589
|
onKeydown: Zo(g, ["enter"])
|
|
3585
3590
|
}, {
|
|
3586
3591
|
append: B(() => [
|
|
3587
|
-
M("div", al, J(
|
|
3592
|
+
M("div", al, J(f.value) + "/" + J(d.count), 1),
|
|
3588
3593
|
M("div", sl, [
|
|
3589
|
-
b(
|
|
3594
|
+
b(C, {
|
|
3590
3595
|
class: re(d.count ? "is-active" : "is-disable"),
|
|
3591
3596
|
onClick: u
|
|
3592
3597
|
}, {
|
|
@@ -3595,7 +3600,7 @@ const ns = {
|
|
|
3595
3600
|
]),
|
|
3596
3601
|
_: 1
|
|
3597
3602
|
}, 8, ["class"]),
|
|
3598
|
-
b(
|
|
3603
|
+
b(C, {
|
|
3599
3604
|
class: re(d.count ? "is-active" : "is-disable"),
|
|
3600
3605
|
onClick: g
|
|
3601
3606
|
}, {
|
|
@@ -3604,7 +3609,7 @@ const ns = {
|
|
|
3604
3609
|
]),
|
|
3605
3610
|
_: 1
|
|
3606
3611
|
}, 8, ["class"]),
|
|
3607
|
-
b(
|
|
3612
|
+
b(C, { onClick: i }, {
|
|
3608
3613
|
default: B(() => [
|
|
3609
3614
|
b(c(Ct))
|
|
3610
3615
|
]),
|
|
@@ -3730,7 +3735,7 @@ const ns = {
|
|
|
3730
3735
|
const o = e, n = (s) => ["config-columns__btn-item", s === t.groupId ? "config-columns__btn-item--active" : ""], a = (s) => {
|
|
3731
3736
|
const {
|
|
3732
3737
|
id: l,
|
|
3733
|
-
name:
|
|
3738
|
+
name: p
|
|
3734
3739
|
} = s;
|
|
3735
3740
|
return b(S("el-dropdown-item"), {
|
|
3736
3741
|
class: n(l),
|
|
@@ -3740,7 +3745,7 @@ const ns = {
|
|
|
3740
3745
|
}, {
|
|
3741
3746
|
default: () => [pe(b("div", {
|
|
3742
3747
|
class: "config-columns__btn-item-name"
|
|
3743
|
-
}, [
|
|
3748
|
+
}, [p]), [[Ae("ellipsis")]]), l !== Je ? b("div", {
|
|
3744
3749
|
class: "config-columns__btn-operation"
|
|
3745
3750
|
}, [b(S("el-icon"), {
|
|
3746
3751
|
class: "edit-icon",
|
|
@@ -3758,14 +3763,14 @@ const ns = {
|
|
|
3758
3763
|
});
|
|
3759
3764
|
};
|
|
3760
3765
|
return (s, l) => {
|
|
3761
|
-
const
|
|
3766
|
+
const p = S("el-dropdown-item"), r = S("el-button"), m = S("el-dropdown-menu"), u = S("el-dropdown");
|
|
3762
3767
|
return h(), R(u, {
|
|
3763
3768
|
"popper-class": "config-columns__btn-popper",
|
|
3764
3769
|
trigger: "hover",
|
|
3765
3770
|
placement: "bottom-end"
|
|
3766
3771
|
}, {
|
|
3767
|
-
dropdown: B(() => [b(
|
|
3768
|
-
default: B(() => [b(
|
|
3772
|
+
dropdown: B(() => [b(m, null, {
|
|
3773
|
+
default: B(() => [b(p, {
|
|
3769
3774
|
disabled: ""
|
|
3770
3775
|
}, {
|
|
3771
3776
|
default: B(() => l[1] || (l[1] = [K("系统推荐", -1)])),
|
|
@@ -3776,7 +3781,7 @@ const ns = {
|
|
|
3776
3781
|
name: s.columnConfig?.systemGroupName || "系统默认"
|
|
3777
3782
|
}, null, 8, ["id", "name"]), l[3] || (l[3] = M("div", {
|
|
3778
3783
|
class: "config-columns__btn-item__line"
|
|
3779
|
-
}, null, -1)), b(
|
|
3784
|
+
}, null, -1)), b(p, {
|
|
3780
3785
|
disabled: ""
|
|
3781
3786
|
}, {
|
|
3782
3787
|
default: B(() => [K("常用自定义列(" + J(s.columnGroups?.length || 0) + "/10)", 1)]),
|
|
@@ -3785,11 +3790,11 @@ const ns = {
|
|
|
3785
3790
|
id: g.id,
|
|
3786
3791
|
key: g.id,
|
|
3787
3792
|
name: g.groupName
|
|
3788
|
-
}, null, 8, ["id", "name"]))), 128)), s.columnGroups?.length < 10 ? (h(), R(
|
|
3793
|
+
}, null, 8, ["id", "name"]))), 128)), s.columnGroups?.length < 10 ? (h(), R(p, {
|
|
3789
3794
|
key: 0,
|
|
3790
3795
|
class: "config-columns__btn-add"
|
|
3791
3796
|
}, {
|
|
3792
|
-
default: B(() => [b(
|
|
3797
|
+
default: B(() => [b(r, {
|
|
3793
3798
|
link: "",
|
|
3794
3799
|
icon: c(ao),
|
|
3795
3800
|
type: "primary",
|
|
@@ -3841,47 +3846,47 @@ function vl(t) {
|
|
|
3841
3846
|
_render: a,
|
|
3842
3847
|
renderToOptions: s,
|
|
3843
3848
|
onClick: l,
|
|
3844
|
-
emptyClick:
|
|
3845
|
-
emptyValue:
|
|
3846
|
-
prop:
|
|
3849
|
+
emptyClick: p,
|
|
3850
|
+
emptyValue: r,
|
|
3851
|
+
prop: m
|
|
3847
3852
|
} = e;
|
|
3848
3853
|
if (a) {
|
|
3849
3854
|
const {
|
|
3850
|
-
$tableData:
|
|
3851
|
-
$index:
|
|
3855
|
+
$tableData: i,
|
|
3856
|
+
$index: f,
|
|
3852
3857
|
$defaultSort: d,
|
|
3853
|
-
$rowKey:
|
|
3858
|
+
$rowKey: y
|
|
3854
3859
|
} = o;
|
|
3855
|
-
let
|
|
3856
|
-
d && (
|
|
3857
|
-
const _ = a(yt, o ?? {}, Reflect.get(
|
|
3860
|
+
let C = f;
|
|
3861
|
+
d && (y ? C = i.findIndex((k) => Reflect.get(k, y) === Reflect.get(n, y)) : console.warn("如果设置了default-sort,必须要设置row-key,否则可能会导致自定义渲染内容错乱!"));
|
|
3862
|
+
const _ = a(yt, o ?? {}, Reflect.get(i, C) ?? {});
|
|
3858
3863
|
return typeof _ != "number" && (!_ || _ === Bo) ? at : _;
|
|
3859
3864
|
}
|
|
3860
|
-
const u =
|
|
3861
|
-
if (!
|
|
3865
|
+
const u = r ?? at;
|
|
3866
|
+
if (!m)
|
|
3862
3867
|
return u;
|
|
3863
|
-
const g = Reflect.get(o,
|
|
3868
|
+
const g = Reflect.get(o, m);
|
|
3864
3869
|
if (s) {
|
|
3865
|
-
const
|
|
3866
|
-
return
|
|
3870
|
+
const i = s.find((d) => d.value === g), f = i?.label ?? u;
|
|
3871
|
+
return i?._color ? b("span", {
|
|
3867
3872
|
style: {
|
|
3868
|
-
color:
|
|
3873
|
+
color: i._color
|
|
3869
3874
|
}
|
|
3870
|
-
}, [
|
|
3875
|
+
}, [f]) : i?._status ? b("span", {
|
|
3871
3876
|
class: "custom-status__color",
|
|
3872
3877
|
style: {
|
|
3873
|
-
"--status-color":
|
|
3878
|
+
"--status-color": i._status
|
|
3874
3879
|
}
|
|
3875
|
-
}, [
|
|
3880
|
+
}, [f]) : f;
|
|
3876
3881
|
}
|
|
3877
|
-
const v = On(g) || g ==
|
|
3882
|
+
const v = On(g) || g == r;
|
|
3878
3883
|
if (l) {
|
|
3879
|
-
const
|
|
3884
|
+
const i = b(Do, {
|
|
3880
3885
|
onClick: () => l?.(t.data)
|
|
3881
3886
|
}, hl(g) ? g : {
|
|
3882
3887
|
default: () => [g]
|
|
3883
3888
|
});
|
|
3884
|
-
return
|
|
3889
|
+
return p ? i : v ? u : i;
|
|
3885
3890
|
}
|
|
3886
3891
|
return v ? u : g;
|
|
3887
3892
|
}
|
|
@@ -3899,83 +3904,83 @@ function Al(t) {
|
|
|
3899
3904
|
const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
3900
3905
|
const e = G([]), o = async () => {
|
|
3901
3906
|
if (t.columnConfig?.pageId) {
|
|
3902
|
-
const
|
|
3903
|
-
if (
|
|
3904
|
-
const [{ config:
|
|
3905
|
-
e.value =
|
|
3907
|
+
const r = await Re.loadViewConfig({ pageId: t.columnConfig.pageId, type: 2 });
|
|
3908
|
+
if (r?.length) {
|
|
3909
|
+
const [{ config: m }] = r;
|
|
3910
|
+
e.value = m ? JSON.parse(m) : [];
|
|
3906
3911
|
}
|
|
3907
3912
|
}
|
|
3908
|
-
}, n = (
|
|
3909
|
-
const
|
|
3913
|
+
}, n = (r) => {
|
|
3914
|
+
const m = {}, u = t.columns.length;
|
|
3910
3915
|
for (let v = 0; v < u; ++v) {
|
|
3911
|
-
const { groupName:
|
|
3912
|
-
if (!
|
|
3916
|
+
const { groupName: i = ml, prop: f, label: d, defaultChecked: y, readonly: C, fixed: _ } = t.columns[v];
|
|
3917
|
+
if (!f || !d)
|
|
3913
3918
|
continue;
|
|
3914
|
-
let k = Reflect.get(
|
|
3915
|
-
k || Reflect.set(
|
|
3916
|
-
const T = { prop:
|
|
3917
|
-
|
|
3919
|
+
let k = Reflect.get(m, i);
|
|
3920
|
+
k || Reflect.set(m, i, k = []);
|
|
3921
|
+
const T = { prop: f, label: d, defaultChecked: y, fixed: st(_) };
|
|
3922
|
+
C && (T.defaultChecked = !0, T.readonly = !0), k.push(T);
|
|
3918
3923
|
}
|
|
3919
3924
|
return {
|
|
3920
|
-
groupName:
|
|
3921
|
-
groupData:
|
|
3925
|
+
groupName: r && e.value.find((v) => v.id === r)?.groupName || "",
|
|
3926
|
+
groupData: m
|
|
3922
3927
|
};
|
|
3923
|
-
}, a = (
|
|
3924
|
-
const
|
|
3928
|
+
}, a = (r) => {
|
|
3929
|
+
const m = new Map(r.map((u) => [u.prop, u]));
|
|
3925
3930
|
return t.columns.forEach((u) => {
|
|
3926
|
-
u.prop && (
|
|
3931
|
+
u.prop && (m.has(u.prop) ? m.delete(u.prop) : r.push({
|
|
3927
3932
|
prop: u.prop,
|
|
3928
3933
|
checked: !!(u.readonly || u.defaultChecked),
|
|
3929
3934
|
fixed: st(u.fixed)
|
|
3930
3935
|
}));
|
|
3931
|
-
}),
|
|
3932
|
-
const g =
|
|
3933
|
-
g !== -1 &&
|
|
3934
|
-
}),
|
|
3936
|
+
}), m.size && m.forEach((u) => {
|
|
3937
|
+
const g = r.findIndex((v) => v.prop === u.prop);
|
|
3938
|
+
g !== -1 && r.splice(g, 1);
|
|
3939
|
+
}), r;
|
|
3935
3940
|
};
|
|
3936
3941
|
return {
|
|
3937
3942
|
initGroupData: o,
|
|
3938
3943
|
getGroupedColumnInfo: n,
|
|
3939
|
-
getCheckedColumnsById: (
|
|
3940
|
-
if (
|
|
3941
|
-
const
|
|
3942
|
-
if (
|
|
3943
|
-
return a(
|
|
3944
|
+
getCheckedColumnsById: (r) => {
|
|
3945
|
+
if (r) {
|
|
3946
|
+
const m = e.value.find((u) => u.id === r)?.columns;
|
|
3947
|
+
if (m)
|
|
3948
|
+
return a(m);
|
|
3944
3949
|
}
|
|
3945
|
-
return t.columns.filter((
|
|
3946
|
-
(
|
|
3947
|
-
prop:
|
|
3948
|
-
checked: !!(
|
|
3949
|
-
fixed: st(
|
|
3950
|
+
return t.columns.filter((m) => m.prop).map(
|
|
3951
|
+
(m) => ({
|
|
3952
|
+
prop: m.prop,
|
|
3953
|
+
checked: !!(m.readonly || m.defaultChecked),
|
|
3954
|
+
fixed: st(m.fixed)
|
|
3950
3955
|
})
|
|
3951
3956
|
);
|
|
3952
3957
|
},
|
|
3953
|
-
saveConfigColumns: async (
|
|
3954
|
-
const g = new Map(
|
|
3955
|
-
(
|
|
3956
|
-
prop:
|
|
3957
|
-
checked: g.has(
|
|
3958
|
-
fixed: g.get(
|
|
3958
|
+
saveConfigColumns: async (r, m, u) => {
|
|
3959
|
+
const g = new Map(r.map((f, d) => [f.prop, { ...f, index: d }])), v = t.columns.filter((f) => f.prop && f.label), i = V.sortBy(v, (f) => g.get(f.prop)?.index ?? -1).map(
|
|
3960
|
+
(f) => ({
|
|
3961
|
+
prop: f.prop,
|
|
3962
|
+
checked: g.has(f.prop),
|
|
3963
|
+
fixed: g.get(f.prop)?.fixed
|
|
3959
3964
|
})
|
|
3960
3965
|
);
|
|
3961
3966
|
if (u) {
|
|
3962
|
-
const { id:
|
|
3963
|
-
|
|
3967
|
+
const { id: f, groupName: d } = m, y = e.value.find((C) => C.id === f);
|
|
3968
|
+
y ? (y.columns = i, y.groupName = d) : e.value.push({ ...m, columns: i });
|
|
3964
3969
|
try {
|
|
3965
3970
|
await Re.saveViewConfig({
|
|
3966
3971
|
pageId: t.columnConfig?.pageId,
|
|
3967
3972
|
type: 2,
|
|
3968
3973
|
config: JSON.stringify(e.value)
|
|
3969
3974
|
});
|
|
3970
|
-
} catch (
|
|
3971
|
-
console.log(
|
|
3975
|
+
} catch (C) {
|
|
3976
|
+
console.log(C);
|
|
3972
3977
|
}
|
|
3973
3978
|
}
|
|
3974
|
-
return a(
|
|
3979
|
+
return a(i);
|
|
3975
3980
|
},
|
|
3976
|
-
deleteGroupByGroupId: async (
|
|
3977
|
-
const
|
|
3978
|
-
|
|
3981
|
+
deleteGroupByGroupId: async (r) => {
|
|
3982
|
+
const m = e.value.findIndex((u) => u.id === r);
|
|
3983
|
+
m > -1 && e.value.splice(m, 1), await Re.saveViewConfig({
|
|
3979
3984
|
pageId: t.columnConfig?.pageId,
|
|
3980
3985
|
type: 2,
|
|
3981
3986
|
config: JSON.stringify(e.value)
|
|
@@ -3991,31 +3996,31 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
3991
3996
|
getGroupedColumnInfo: a,
|
|
3992
3997
|
saveConfigColumns: s,
|
|
3993
3998
|
columnGroups: l
|
|
3994
|
-
} = yl(t),
|
|
3999
|
+
} = yl(t), p = G(!0), r = G(t.columnConfig?.groupId ?? Je), m = G([]), u = G(), g = (_) => {
|
|
3995
4000
|
const k = new Map(_.map((w, D) => [w.prop, { ...w, index: D }])), T = [];
|
|
3996
4001
|
t.columns.forEach((w) => w.readonly && T.push(w));
|
|
3997
4002
|
const x = V.sortBy(
|
|
3998
4003
|
t.columns.filter((w) => !w.readonly && (k.get(w.prop)?.checked || !w.prop)),
|
|
3999
4004
|
(w) => k.get(w.prop)?.index ?? -1
|
|
4000
4005
|
);
|
|
4001
|
-
T.reverse().forEach((w) => x.unshift(w)),
|
|
4006
|
+
T.reverse().forEach((w) => x.unshift(w)), m.value = x.map(
|
|
4002
4007
|
(w) => ({
|
|
4003
4008
|
...w,
|
|
4004
4009
|
fixed: w.prop ? k.get(w.prop)?.fixed : w.fixed
|
|
4005
4010
|
})
|
|
4006
4011
|
);
|
|
4007
4012
|
}, v = (_, k) => {
|
|
4008
|
-
|
|
4009
|
-
},
|
|
4013
|
+
r.value = _, g(k ?? o(_));
|
|
4014
|
+
}, i = (_) => {
|
|
4010
4015
|
u.value?.openDialog(a(_), o(_)).then(async (k) => {
|
|
4011
4016
|
const {
|
|
4012
4017
|
data: { updateData: T, groupName: x, isSave: w },
|
|
4013
4018
|
close: D
|
|
4014
|
-
} = k, A = _ || `${(/* @__PURE__ */ new Date()).valueOf()}`,
|
|
4015
|
-
D(), w ? A ===
|
|
4019
|
+
} = k, A = _ || `${(/* @__PURE__ */ new Date()).valueOf()}`, N = await s(T, { groupName: x, id: A }, w);
|
|
4020
|
+
D(), w ? A === r.value ? g(o(_)) : v(A) : v(pl, N);
|
|
4016
4021
|
});
|
|
4017
|
-
},
|
|
4018
|
-
|
|
4022
|
+
}, f = () => {
|
|
4023
|
+
m.value = t.columns.filter(({ type: _, defaultChecked: k, readonly: T, prop: x }) => T || _ && Reflect.has(Xe, _) || !x ? !0 : !!k);
|
|
4019
4024
|
};
|
|
4020
4025
|
(async () => {
|
|
4021
4026
|
if (t.columnConfig?.pageId)
|
|
@@ -4024,32 +4029,32 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4024
4029
|
} catch (_) {
|
|
4025
4030
|
console.log(_);
|
|
4026
4031
|
}
|
|
4027
|
-
|
|
4032
|
+
f(), p.value = !1;
|
|
4028
4033
|
})();
|
|
4029
|
-
const
|
|
4030
|
-
|
|
4031
|
-
},
|
|
4032
|
-
await n(_), _ ===
|
|
4034
|
+
const y = (_) => {
|
|
4035
|
+
i(_);
|
|
4036
|
+
}, C = async (_) => {
|
|
4037
|
+
await n(_), _ === r.value && v(Je);
|
|
4033
4038
|
};
|
|
4034
4039
|
return ft(
|
|
4035
4040
|
() => t.columns,
|
|
4036
4041
|
() => {
|
|
4037
|
-
t.columnConfig?.pageId ? g(o(
|
|
4042
|
+
t.columnConfig?.pageId ? g(o(r.value)) : f();
|
|
4038
4043
|
},
|
|
4039
4044
|
{
|
|
4040
4045
|
deep: !0,
|
|
4041
4046
|
flush: "post"
|
|
4042
4047
|
}
|
|
4043
4048
|
), {
|
|
4044
|
-
configColumns:
|
|
4049
|
+
configColumns: m,
|
|
4045
4050
|
configColumnsDialogRef: u,
|
|
4046
|
-
loadingConfigColumns:
|
|
4047
|
-
groupId:
|
|
4051
|
+
loadingConfigColumns: p,
|
|
4052
|
+
groupId: r,
|
|
4048
4053
|
columnGroups: l,
|
|
4049
|
-
openConfigColumnDialog:
|
|
4054
|
+
openConfigColumnDialog: i,
|
|
4050
4055
|
changeGroupId: v,
|
|
4051
|
-
editGroupByGroupId:
|
|
4052
|
-
deleteGroupByGroupId:
|
|
4056
|
+
editGroupByGroupId: y,
|
|
4057
|
+
deleteGroupByGroupId: C
|
|
4053
4058
|
};
|
|
4054
4059
|
}, bl = (t) => {
|
|
4055
4060
|
const {
|
|
@@ -4059,17 +4064,17 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4059
4064
|
loadingConfigColumns: a,
|
|
4060
4065
|
columnGroups: s,
|
|
4061
4066
|
changeGroupId: l,
|
|
4062
|
-
openConfigColumnDialog:
|
|
4063
|
-
editGroupByGroupId:
|
|
4064
|
-
deleteGroupByGroupId:
|
|
4067
|
+
openConfigColumnDialog: p,
|
|
4068
|
+
editGroupByGroupId: r,
|
|
4069
|
+
deleteGroupByGroupId: m
|
|
4065
4070
|
} = Cl(t), u = G(), g = G(), v = G({
|
|
4066
4071
|
current: 1,
|
|
4067
4072
|
size: t.paginationProps?.pageSize || Ht.pageSize,
|
|
4068
4073
|
total: 0
|
|
4069
|
-
}),
|
|
4074
|
+
}), i = P(() => ({ ...Ht, ...t.paginationProps })), f = G(""), d = () => {
|
|
4070
4075
|
const F = u.value?.getBoundingClientRect();
|
|
4071
|
-
|
|
4072
|
-
},
|
|
4076
|
+
f.value = `${F?.width}px`;
|
|
4077
|
+
}, y = new ResizeObserver(() => requestAnimationFrame(d)), C = G([]), _ = P(() => {
|
|
4073
4078
|
const F = V.omit(t, [
|
|
4074
4079
|
"tableData",
|
|
4075
4080
|
"columns",
|
|
@@ -4080,9 +4085,9 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4080
4085
|
"paginationProps"
|
|
4081
4086
|
]);
|
|
4082
4087
|
return V.mergeWith({ height: "100%" }, F, (L, Q) => L && Q && V.isObject(L) && V.isObject(Q) ? V.merge(Q, L) : Q ?? L);
|
|
4083
|
-
}), k =
|
|
4088
|
+
}), k = P(
|
|
4084
4089
|
() => (F) => V.omit(F, ["_render", "renderHeader", "hidden", "className", "isOperation"])
|
|
4085
|
-
), T =
|
|
4090
|
+
), T = P(() => (Array.isArray(t.operationBtnList) ? t.operationBtnList : [t.operationBtnList])?.map((L) => V.isString(L) ? { type: L } : L)), x = P(
|
|
4086
4091
|
() => o.value.filter(
|
|
4087
4092
|
(F) => (
|
|
4088
4093
|
// 处理列的显示隐藏
|
|
@@ -4092,7 +4097,7 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4092
4097
|
const L = F.type;
|
|
4093
4098
|
return L && Reflect.has(Xe, L) ? { ...Reflect.get(Xe, L), ...F } : F;
|
|
4094
4099
|
})
|
|
4095
|
-
), w =
|
|
4100
|
+
), w = P(() => {
|
|
4096
4101
|
const F = T.value.some((Q) => Q.type === "configColumns"), L = x.value.some((Q) => Q.isOperation);
|
|
4097
4102
|
return (Q, E) => !t.columnConfig?.pageId || F ? !1 : L ? Q.isOperation : E === x.value.length - 1;
|
|
4098
4103
|
}), D = G(!1), A = async (F = v.value) => {
|
|
@@ -4106,28 +4111,28 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4106
4111
|
if (F.current > ce)
|
|
4107
4112
|
return F.current = ce, A(F);
|
|
4108
4113
|
}
|
|
4109
|
-
|
|
4114
|
+
C.value = X, v.value.total = isNaN($) ? 0 : $;
|
|
4110
4115
|
} else
|
|
4111
4116
|
$e(() => {
|
|
4112
|
-
|
|
4117
|
+
C.value = t.tableData ?? [];
|
|
4113
4118
|
});
|
|
4114
4119
|
} finally {
|
|
4115
4120
|
D.value = !1;
|
|
4116
4121
|
}
|
|
4117
|
-
},
|
|
4118
|
-
|
|
4122
|
+
}, N = G(1), j = () => {
|
|
4123
|
+
N.value++;
|
|
4119
4124
|
};
|
|
4120
4125
|
return He(() => {
|
|
4121
|
-
u.value &&
|
|
4126
|
+
u.value && y.observe(u.value);
|
|
4122
4127
|
}), Le(() => {
|
|
4123
|
-
|
|
4128
|
+
y?.disconnect();
|
|
4124
4129
|
}), {
|
|
4125
4130
|
baseTableContainerRef: u,
|
|
4126
4131
|
baseTableRef: g,
|
|
4127
4132
|
pagination: v,
|
|
4128
|
-
getPaginationProps:
|
|
4129
|
-
paginationWidth:
|
|
4130
|
-
tableData:
|
|
4133
|
+
getPaginationProps: i,
|
|
4134
|
+
paginationWidth: f,
|
|
4135
|
+
tableData: C,
|
|
4131
4136
|
getTableAttrs: _,
|
|
4132
4137
|
getColumnAttrs: k,
|
|
4133
4138
|
specialColumnMap: Xe,
|
|
@@ -4138,14 +4143,14 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4138
4143
|
loadingConfigColumns: a,
|
|
4139
4144
|
loadDataLoading: D,
|
|
4140
4145
|
groupId: e,
|
|
4141
|
-
resetKey:
|
|
4146
|
+
resetKey: N,
|
|
4142
4147
|
columnGroups: s,
|
|
4143
4148
|
changeGroupId: l,
|
|
4144
4149
|
loadData: A,
|
|
4145
|
-
openConfigColumnDialog:
|
|
4150
|
+
openConfigColumnDialog: p,
|
|
4146
4151
|
resetColumnsWidth: j,
|
|
4147
|
-
editGroupByGroupId:
|
|
4148
|
-
deleteGroupByGroupId:
|
|
4152
|
+
editGroupByGroupId: r,
|
|
4153
|
+
deleteGroupByGroupId: m
|
|
4149
4154
|
};
|
|
4150
4155
|
}, Eo = [
|
|
4151
4156
|
"select",
|
|
@@ -4178,54 +4183,54 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4178
4183
|
};
|
|
4179
4184
|
}, wl = (t) => {
|
|
4180
4185
|
const e = G(0), o = () => {
|
|
4181
|
-
const
|
|
4186
|
+
const m = [], u = t.value?.$el?.querySelector(".el-table__inner-wrapper");
|
|
4182
4187
|
if (u) {
|
|
4183
4188
|
const g = u.querySelectorAll(".el-table__header-wrapper");
|
|
4184
4189
|
if (g.length) {
|
|
4185
|
-
const
|
|
4186
|
-
const { display: d } = getComputedStyle(
|
|
4190
|
+
const i = Array.from(g).filter((f) => {
|
|
4191
|
+
const { display: d } = getComputedStyle(f);
|
|
4187
4192
|
return d !== "none";
|
|
4188
4193
|
}).pop()?.querySelectorAll(".el-table__cell");
|
|
4189
|
-
if (
|
|
4190
|
-
const
|
|
4191
|
-
let k = Math.abs(
|
|
4192
|
-
if (d !==
|
|
4193
|
-
const A =
|
|
4194
|
-
k = j + F -
|
|
4194
|
+
if (i?.length) {
|
|
4195
|
+
const f = Array.from(i), [d] = f, y = f.find((A) => !A.classList.contains("el-table-fixed-column--left")), C = y?.getBoundingClientRect().left ?? 0, _ = u.getBoundingClientRect().left;
|
|
4196
|
+
let k = Math.abs(C - _);
|
|
4197
|
+
if (d !== y) {
|
|
4198
|
+
const A = f.findLastIndex((L) => L.classList.contains("el-table-fixed-column--left")), N = f[A], { left: j, width: F } = N.getBoundingClientRect();
|
|
4199
|
+
k = j + F - C;
|
|
4195
4200
|
}
|
|
4196
4201
|
const { width: T } = t.value.$el.getBoundingClientRect(), x = u.querySelector(".el-scrollbar__thumb"), w = x ? x.getBoundingClientRect().width : 0, D = w ? w / 2 : 0;
|
|
4197
|
-
|
|
4198
|
-
const { top:
|
|
4199
|
-
|
|
4202
|
+
f.forEach((A) => {
|
|
4203
|
+
const { top: N, left: j } = A.getBoundingClientRect();
|
|
4204
|
+
m.push({ element: A, rect: { top: N, left: j + k - T / 2 - D } });
|
|
4200
4205
|
});
|
|
4201
4206
|
}
|
|
4202
4207
|
}
|
|
4203
4208
|
}
|
|
4204
|
-
return
|
|
4205
|
-
}, n = (
|
|
4206
|
-
a.forEach((
|
|
4207
|
-
}, l = ({ element:
|
|
4208
|
-
|
|
4209
|
-
|
|
4209
|
+
return m;
|
|
4210
|
+
}, n = (m, u) => m.toLowerCase().includes(u.toLowerCase()), a = [], s = () => {
|
|
4211
|
+
a.forEach((m) => m()), e.value = 0, a.length = 0;
|
|
4212
|
+
}, l = ({ element: m }) => {
|
|
4213
|
+
m.classList.add("el-table__cell__search-result"), a.push(() => {
|
|
4214
|
+
m.classList.remove("el-table__cell__search-result");
|
|
4210
4215
|
});
|
|
4211
|
-
},
|
|
4212
|
-
const { top: u, left: g } =
|
|
4216
|
+
}, p = ({ rect: m }) => {
|
|
4217
|
+
const { top: u, left: g } = m;
|
|
4213
4218
|
t.value.scrollTo(g, u);
|
|
4214
4219
|
};
|
|
4215
4220
|
return {
|
|
4216
4221
|
count: e,
|
|
4217
|
-
find: (
|
|
4218
|
-
if (s(),
|
|
4222
|
+
find: (m, u) => {
|
|
4223
|
+
if (s(), m) {
|
|
4219
4224
|
const g = o();
|
|
4220
4225
|
if (g?.length) {
|
|
4221
|
-
const v = g.filter(({ element:
|
|
4222
|
-
const
|
|
4223
|
-
return
|
|
4226
|
+
const v = g.filter(({ element: i }) => {
|
|
4227
|
+
const f = i.textContent;
|
|
4228
|
+
return f ? n(f, m) : !1;
|
|
4224
4229
|
});
|
|
4225
4230
|
if (v.length) {
|
|
4226
4231
|
v.forEach(l);
|
|
4227
|
-
const
|
|
4228
|
-
|
|
4232
|
+
const i = v[u];
|
|
4233
|
+
i && p(i), e.value = v.length;
|
|
4229
4234
|
}
|
|
4230
4235
|
}
|
|
4231
4236
|
}
|
|
@@ -4239,12 +4244,12 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4239
4244
|
const o = [], n = (l) => {
|
|
4240
4245
|
o.includes(l) || o.push(l);
|
|
4241
4246
|
}, a = new IntersectionObserver(([l]) => {
|
|
4242
|
-
let
|
|
4247
|
+
let p = "top";
|
|
4243
4248
|
if (!l.isIntersecting) {
|
|
4244
|
-
const
|
|
4245
|
-
|
|
4249
|
+
const r = l.boundingClientRect, m = l.rootBounds, u = m ? m.top : 0, g = m ? m.bottom : window.innerHeight;
|
|
4250
|
+
r.bottom <= u ? p = "top" : r.top >= g && (p = "bottom");
|
|
4246
4251
|
}
|
|
4247
|
-
o.forEach((
|
|
4252
|
+
o.forEach((r) => r(l.isIntersecting, p));
|
|
4248
4253
|
}, e);
|
|
4249
4254
|
return a.observe(t), {
|
|
4250
4255
|
onWatchVisible: n,
|
|
@@ -4281,29 +4286,29 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4281
4286
|
return o && e.push(o), e;
|
|
4282
4287
|
}, Fl = (t) => {
|
|
4283
4288
|
const e = () => kl(t.stickyTriggerSelector ?? `.${Bl}`), o = [], n = (g) => {
|
|
4284
|
-
let v,
|
|
4289
|
+
let v, i = g.style.display;
|
|
4285
4290
|
return {
|
|
4286
4291
|
insert: () => {
|
|
4287
|
-
v ? v.style.display =
|
|
4292
|
+
v ? v.style.display = i : (v = g.cloneNode(!0), g.parentElement?.insertBefore(v, g));
|
|
4288
4293
|
},
|
|
4289
4294
|
remove: () => {
|
|
4290
4295
|
v && g.parentElement?.contains(v) && g.parentElement?.removeChild(v), v = void 0;
|
|
4291
4296
|
},
|
|
4292
4297
|
hidden: () => {
|
|
4293
|
-
v && (
|
|
4298
|
+
v && (i = v.style.display, v.style.display = "none");
|
|
4294
4299
|
},
|
|
4295
4300
|
getCloneElement: () => v
|
|
4296
4301
|
};
|
|
4297
4302
|
}, a = (g) => g.style.display === "none", s = (g, v) => {
|
|
4298
|
-
const
|
|
4299
|
-
o.push(
|
|
4303
|
+
const i = V.cloneDeep(getComputedStyle(g)), { insert: f, hidden: d, remove: y, getCloneElement: C } = n(g);
|
|
4304
|
+
o.push(y);
|
|
4300
4305
|
let _;
|
|
4301
4306
|
return {
|
|
4302
4307
|
update: (k) => {
|
|
4303
4308
|
if (po(g))
|
|
4304
4309
|
return;
|
|
4305
|
-
|
|
4306
|
-
const T =
|
|
4310
|
+
f();
|
|
4311
|
+
const T = C(), { top: x } = v.getBoundingClientRect(), { left: w, width: D } = g.getBoundingClientRect();
|
|
4307
4312
|
Dl(g), Object.assign(
|
|
4308
4313
|
g.style,
|
|
4309
4314
|
{
|
|
@@ -4315,53 +4320,53 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4315
4320
|
},
|
|
4316
4321
|
k ?? {}
|
|
4317
4322
|
);
|
|
4318
|
-
const { onUpdate: A, onStop:
|
|
4323
|
+
const { onUpdate: A, onStop: N } = Tl(T);
|
|
4319
4324
|
A(() => {
|
|
4320
4325
|
if (!a(T)) {
|
|
4321
4326
|
const { width: j, left: F } = T.getBoundingClientRect();
|
|
4322
4327
|
g.style.width = `${j}px`, g.style.left = `${F}px`;
|
|
4323
4328
|
}
|
|
4324
|
-
}), _ =
|
|
4329
|
+
}), _ = N;
|
|
4325
4330
|
},
|
|
4326
4331
|
reset: () => {
|
|
4327
4332
|
El(g), Object.assign(g.style, {
|
|
4328
|
-
position:
|
|
4329
|
-
top:
|
|
4330
|
-
left:
|
|
4331
|
-
width:
|
|
4332
|
-
zIndex:
|
|
4333
|
+
position: i.position ?? "",
|
|
4334
|
+
top: i.top ?? "",
|
|
4335
|
+
left: i.left ?? "",
|
|
4336
|
+
width: i.width ?? "",
|
|
4337
|
+
zIndex: i.zIndex ?? ""
|
|
4333
4338
|
}), d(), _?.();
|
|
4334
4339
|
}
|
|
4335
4340
|
};
|
|
4336
|
-
}, l = (g, v,
|
|
4337
|
-
const { update: d, reset:
|
|
4338
|
-
v((
|
|
4339
|
-
!
|
|
4341
|
+
}, l = (g, v, i, f) => {
|
|
4342
|
+
const { update: d, reset: y } = s(g, i);
|
|
4343
|
+
v((C, _) => {
|
|
4344
|
+
!C && i && _ === "top" ? d(f) : y();
|
|
4340
4345
|
});
|
|
4341
|
-
},
|
|
4346
|
+
}, p = (g) => {
|
|
4342
4347
|
const v = e();
|
|
4343
4348
|
if (!v)
|
|
4344
4349
|
return;
|
|
4345
|
-
const { onWatchVisible:
|
|
4350
|
+
const { onWatchVisible: i, onStopWatchVisible: f } = Sl(g, { root: v }), { baseTableOperationElement: d, baseTableRef: y } = t;
|
|
4346
4351
|
if (!d.value)
|
|
4347
4352
|
return;
|
|
4348
|
-
l(d.value,
|
|
4349
|
-
const
|
|
4350
|
-
|
|
4351
|
-
(T) => l(T,
|
|
4353
|
+
l(d.value, i, v);
|
|
4354
|
+
const C = xl(y.value?.$el), { top: _ } = v.getBoundingClientRect(), { height: k } = d.value.getBoundingClientRect();
|
|
4355
|
+
C.forEach(
|
|
4356
|
+
(T) => l(T, i, v, {
|
|
4352
4357
|
top: `${_ + k}px`
|
|
4353
4358
|
})
|
|
4354
|
-
), o.push(
|
|
4355
|
-
},
|
|
4359
|
+
), o.push(f);
|
|
4360
|
+
}, r = () => {
|
|
4356
4361
|
const { baseTableOperationElement: g } = t;
|
|
4357
|
-
g.value &&
|
|
4358
|
-
},
|
|
4362
|
+
g.value && p(Gl(g.value, "base-table-watch-sticky__operation"));
|
|
4363
|
+
}, m = () => {
|
|
4359
4364
|
o.forEach((g) => g()), o.length = 0;
|
|
4360
4365
|
};
|
|
4361
|
-
return At(
|
|
4362
|
-
start:
|
|
4366
|
+
return At(m), {
|
|
4367
|
+
start: r,
|
|
4363
4368
|
reset: async () => {
|
|
4364
|
-
|
|
4369
|
+
m(), await ae(), r();
|
|
4365
4370
|
}
|
|
4366
4371
|
};
|
|
4367
4372
|
}, Ml = () => {
|
|
@@ -4374,9 +4379,9 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4374
4379
|
return;
|
|
4375
4380
|
}
|
|
4376
4381
|
const s = () => eo(n) ? c(n()) : c(n), l = () => {
|
|
4377
|
-
t = new ResizeObserver(([
|
|
4378
|
-
}, { stop:
|
|
4379
|
-
s() && (l(),
|
|
4382
|
+
t = new ResizeObserver(([r]) => a(r)), t.observe(s());
|
|
4383
|
+
}, { stop: p } = vt(() => {
|
|
4384
|
+
s() && (l(), p?.());
|
|
4380
4385
|
});
|
|
4381
4386
|
}, o = () => {
|
|
4382
4387
|
t?.disconnect();
|
|
@@ -4385,10 +4390,10 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4385
4390
|
onResize: e,
|
|
4386
4391
|
stopResize: o
|
|
4387
4392
|
};
|
|
4388
|
-
},
|
|
4393
|
+
}, Pl = {
|
|
4389
4394
|
key: 1,
|
|
4390
4395
|
class: "base-table__header-slot"
|
|
4391
|
-
},
|
|
4396
|
+
}, Nl = {
|
|
4392
4397
|
key: 2,
|
|
4393
4398
|
class: "base-table__header-operation"
|
|
4394
4399
|
}, Rl = { class: "base-table__table-header-content" }, Vl = {
|
|
@@ -4486,19 +4491,19 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4486
4491
|
"0510360a": It.value,
|
|
4487
4492
|
"18fabf36": c(v)
|
|
4488
4493
|
}));
|
|
4489
|
-
const n = t, a = xe(t, "selectList"), s = o, l = Kt(), { baseTableEventMap:
|
|
4494
|
+
const n = t, a = xe(t, "selectList"), s = o, l = Kt(), { baseTableEventMap: p } = _l(s, (O, ...Z) => {
|
|
4490
4495
|
O === "selection-change" && (a.value = Z[0]);
|
|
4491
4496
|
}), {
|
|
4492
|
-
baseTableRef:
|
|
4493
|
-
baseTableContainerRef:
|
|
4497
|
+
baseTableRef: r,
|
|
4498
|
+
baseTableContainerRef: m,
|
|
4494
4499
|
pagination: u,
|
|
4495
4500
|
getPaginationProps: g,
|
|
4496
4501
|
paginationWidth: v,
|
|
4497
|
-
tableData:
|
|
4498
|
-
getTableAttrs:
|
|
4502
|
+
tableData: i,
|
|
4503
|
+
getTableAttrs: f,
|
|
4499
4504
|
getColumnAttrs: d,
|
|
4500
|
-
specialColumnMap:
|
|
4501
|
-
getTableRenderColumns:
|
|
4505
|
+
specialColumnMap: y,
|
|
4506
|
+
getTableRenderColumns: C,
|
|
4502
4507
|
isOperationColumn: _,
|
|
4503
4508
|
configColumnsDialogRef: k,
|
|
4504
4509
|
getParseOperationBtnList: T,
|
|
@@ -4506,14 +4511,14 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4506
4511
|
loadDataLoading: w,
|
|
4507
4512
|
groupId: D,
|
|
4508
4513
|
resetKey: A,
|
|
4509
|
-
columnGroups:
|
|
4514
|
+
columnGroups: N,
|
|
4510
4515
|
changeGroupId: j,
|
|
4511
4516
|
editGroupByGroupId: F,
|
|
4512
4517
|
deleteGroupByGroupId: L,
|
|
4513
4518
|
loadData: Q,
|
|
4514
4519
|
openConfigColumnDialog: E,
|
|
4515
4520
|
resetColumnsWidth: H
|
|
4516
|
-
} = bl(n), { count: U, find: X, clear: ie } = wl(
|
|
4521
|
+
} = bl(n), { count: U, find: X, clear: ie } = wl(r);
|
|
4517
4522
|
let $ = !1;
|
|
4518
4523
|
const ce = () => {
|
|
4519
4524
|
$ || (Q(), s("paginationChange"));
|
|
@@ -4523,7 +4528,7 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4523
4528
|
}), await ae(), await Q(), s("refreshed"), await ae(), $ = !1;
|
|
4524
4529
|
}, me = G(), { start: Me, reset: ko } = Fl({
|
|
4525
4530
|
baseTableOperationElement: me,
|
|
4526
|
-
baseTableRef:
|
|
4531
|
+
baseTableRef: r,
|
|
4527
4532
|
stickyTriggerSelector: n.stickyTriggerSelector
|
|
4528
4533
|
}), Bt = async (O, Z) => {
|
|
4529
4534
|
O === D.value && !Z || (j(O, Z), await ko(), s("changeGroup", O));
|
|
@@ -4533,17 +4538,17 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4533
4538
|
} finally {
|
|
4534
4539
|
ot.value = !0;
|
|
4535
4540
|
}
|
|
4536
|
-
}, So = () => u.value, Et =
|
|
4541
|
+
}, So = () => u.value, Et = P(() => V.omit(u.value, "total")), To = $e(() => {
|
|
4537
4542
|
!x.value && ot.value && (s("loaded"), n.stickyHeader && ae(Me), To());
|
|
4538
|
-
}), Go =
|
|
4543
|
+
}), Go = P(() => (O) => {
|
|
4539
4544
|
const Z = n.enableDragProps;
|
|
4540
4545
|
return Z && (Array.isArray(Z) ? Z : [Z]).includes(O.prop || "") ? Lt : "";
|
|
4541
4546
|
}), xo = () => {
|
|
4542
|
-
|
|
4543
|
-
}, Fo =
|
|
4547
|
+
r.value?.clearSelection?.();
|
|
4548
|
+
}, Fo = P(() => !n.enableDragProps), Mo = (O) => {
|
|
4544
4549
|
const { oldIndex: Z, newIndex: ve } = O;
|
|
4545
|
-
xt(Z) || xt(ve) || Z === ve || s("drag", { oldIndex: Z, newIndex: ve },
|
|
4546
|
-
},
|
|
4550
|
+
xt(Z) || xt(ve) || Z === ve || s("drag", { oldIndex: Z, newIndex: ve }, i.value);
|
|
4551
|
+
}, Po = (O) => {
|
|
4547
4552
|
if (!Ve(O.newIndex) && !Ve(O.oldIndex)) {
|
|
4548
4553
|
const Z = document.querySelectorAll(".el-table__row"), ve = document.querySelector(".mainWrapper");
|
|
4549
4554
|
if (!Z[O.newIndex] || !ve) return;
|
|
@@ -4560,9 +4565,9 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4560
4565
|
He(async () => {
|
|
4561
4566
|
await ae(), n.formBuilder ? n.formBuilder.onColumnsLoaded(Dt) : await Dt();
|
|
4562
4567
|
});
|
|
4563
|
-
const
|
|
4564
|
-
const O = Object.values(
|
|
4565
|
-
return
|
|
4568
|
+
const No = () => {
|
|
4569
|
+
const O = Object.values(y).map((Z) => Z.prop);
|
|
4570
|
+
return C.value.reduce((Z, ve) => {
|
|
4566
4571
|
const { prop: Ce, exportProp: Be } = ve;
|
|
4567
4572
|
return Ce && !O.includes(Ce) && (Be ? (Array.isArray(Be) ? Be : [Be]).forEach((Ue) => {
|
|
4568
4573
|
Z.includes(Ue) || Z.push(Ue);
|
|
@@ -4570,9 +4575,9 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4570
4575
|
}, []);
|
|
4571
4576
|
}, It = G(""), { onResize: Ro } = Ml();
|
|
4572
4577
|
return Ro(
|
|
4573
|
-
() =>
|
|
4578
|
+
() => r?.value?.$el,
|
|
4574
4579
|
() => {
|
|
4575
|
-
const { left: O } =
|
|
4580
|
+
const { left: O } = r.value.$el.getBoundingClientRect();
|
|
4576
4581
|
It.value = `${O + 3}px`;
|
|
4577
4582
|
}
|
|
4578
4583
|
), e({
|
|
@@ -4581,17 +4586,17 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4581
4586
|
openConfigColumnDialog: E,
|
|
4582
4587
|
getPagination: So,
|
|
4583
4588
|
clearSort: () => {
|
|
4584
|
-
|
|
4589
|
+
r.value?.clearSort();
|
|
4585
4590
|
},
|
|
4586
|
-
getExportColumnsProps:
|
|
4587
|
-
elTable:
|
|
4588
|
-
getTableData: () =>
|
|
4591
|
+
getExportColumnsProps: No,
|
|
4592
|
+
elTable: r,
|
|
4593
|
+
getTableData: () => i.value
|
|
4589
4594
|
}), (O, Z) => {
|
|
4590
4595
|
const ve = S("el-icon"), Ce = S("el-table-column"), Be = S("el-table"), kt = S("el-pagination"), Ue = Ae("loading");
|
|
4591
4596
|
return h(), I(q, null, [
|
|
4592
4597
|
M("div", {
|
|
4593
4598
|
ref_key: "baseTableContainerRef",
|
|
4594
|
-
ref:
|
|
4599
|
+
ref: m,
|
|
4595
4600
|
class: re([
|
|
4596
4601
|
"base-table__container z-table",
|
|
4597
4602
|
{
|
|
@@ -4632,10 +4637,10 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4632
4637
|
], 2),
|
|
4633
4638
|
fe(O.$slots, "selectSlot", {}, void 0, !0)
|
|
4634
4639
|
], 2)) : z("", !0),
|
|
4635
|
-
!l.selectSlot || !a.value.length ? (h(), I("div",
|
|
4640
|
+
!l.selectSlot || !a.value.length ? (h(), I("div", Pl, [
|
|
4636
4641
|
fe(O.$slots, "header", { pagination: Et.value }, void 0, !0)
|
|
4637
4642
|
])) : z("", !0),
|
|
4638
|
-
O.hasDefaultOperation && (!l.selectSlot || !a.value.length) ? (h(), I("div",
|
|
4643
|
+
O.hasDefaultOperation && (!l.selectSlot || !a.value.length) ? (h(), I("div", Nl, [
|
|
4639
4644
|
fe(O.$slots, "operation", { pagination: Et.value }, void 0, !0),
|
|
4640
4645
|
(h(!0), I(q, null, se(c(T), (te) => (h(), I(q, {
|
|
4641
4646
|
key: te.type
|
|
@@ -4655,7 +4660,7 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4655
4660
|
te.type === "configColumns" && O.columnConfig?.pageId ? (h(), R(Ut, {
|
|
4656
4661
|
key: 2,
|
|
4657
4662
|
"group-id": c(D),
|
|
4658
|
-
"column-groups": c(
|
|
4663
|
+
"column-groups": c(N),
|
|
4659
4664
|
"column-config": n.columnConfig,
|
|
4660
4665
|
onChange: Bt,
|
|
4661
4666
|
onEdit: c(F),
|
|
@@ -4677,9 +4682,9 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4677
4682
|
}, [
|
|
4678
4683
|
!c(x) && ot.value ? (h(), R(c(je), {
|
|
4679
4684
|
key: 0,
|
|
4680
|
-
modelValue: c(
|
|
4685
|
+
modelValue: c(i),
|
|
4681
4686
|
"onUpdate:modelValue": [
|
|
4682
|
-
Z[1] || (Z[1] = (te) => be(
|
|
4687
|
+
Z[1] || (Z[1] = (te) => be(i) ? i.value = te : null),
|
|
4683
4688
|
Z[2] || (Z[2] = (te) => s("update:tableData", te))
|
|
4684
4689
|
],
|
|
4685
4690
|
disabled: Fo.value,
|
|
@@ -4689,31 +4694,31 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4689
4694
|
handle: `.${c(Lt)}`,
|
|
4690
4695
|
animation: O.draggableAttrs?.animation ?? 150,
|
|
4691
4696
|
onEnd: Mo,
|
|
4692
|
-
onChange:
|
|
4697
|
+
onChange: Po
|
|
4693
4698
|
}, {
|
|
4694
4699
|
default: B(() => [
|
|
4695
4700
|
b(Be, le({
|
|
4696
4701
|
ref_key: "baseTableRef",
|
|
4697
|
-
ref:
|
|
4702
|
+
ref: r,
|
|
4698
4703
|
class: [
|
|
4699
4704
|
"base-table__table",
|
|
4700
4705
|
{
|
|
4701
4706
|
"el-table__outside-border": O.border,
|
|
4702
|
-
"is-empty__table": !c(
|
|
4707
|
+
"is-empty__table": !c(i).length
|
|
4703
4708
|
}
|
|
4704
4709
|
]
|
|
4705
|
-
}, c(
|
|
4710
|
+
}, c(f), {
|
|
4706
4711
|
"header-cell-style": c(fl),
|
|
4707
|
-
data: c(
|
|
4712
|
+
data: c(i),
|
|
4708
4713
|
"show-overflow-tooltip": ""
|
|
4709
|
-
}, we(c(
|
|
4714
|
+
}, we(c(p))), {
|
|
4710
4715
|
empty: B(() => [
|
|
4711
4716
|
fe(O.$slots, "empty", {}, () => [
|
|
4712
4717
|
b(lo)
|
|
4713
4718
|
], !0)
|
|
4714
4719
|
]),
|
|
4715
4720
|
default: B(() => [
|
|
4716
|
-
(h(!0), I(q, null, se(c(
|
|
4721
|
+
(h(!0), I(q, null, se(c(C), (te, Qe) => (h(), R(Ce, le({ ref_for: !0 }, c(d)(te), {
|
|
4717
4722
|
key: te.prop,
|
|
4718
4723
|
"class-name": `${Go.value(te)} ${te.className ?? ""} ${c(_)(te, Qe) ? "base-table__table-column-operation" : ""}`
|
|
4719
4724
|
}), {
|
|
@@ -4734,7 +4739,7 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4734
4739
|
c(_)(te, Qe) ? (h(), R(Ut, {
|
|
4735
4740
|
key: 0,
|
|
4736
4741
|
"group-id": c(D),
|
|
4737
|
-
"column-groups": c(
|
|
4742
|
+
"column-groups": c(N),
|
|
4738
4743
|
"column-config": n.columnConfig,
|
|
4739
4744
|
onChange: Bt,
|
|
4740
4745
|
onEdit: c(F),
|
|
@@ -4743,11 +4748,11 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4743
4748
|
], 2)
|
|
4744
4749
|
]),
|
|
4745
4750
|
default: B(({ row: Ye, $index: nt }) => [
|
|
4746
|
-
!te.type || !c(
|
|
4751
|
+
!te.type || !c(y)[te.type] ? (h(), R(c(vl), {
|
|
4747
4752
|
key: 0,
|
|
4748
4753
|
column: te,
|
|
4749
4754
|
row: Ye,
|
|
4750
|
-
data: { ...Ye, $index: nt, $tableData: c(
|
|
4755
|
+
data: { ...Ye, $index: nt, $tableData: c(i), $defaultSort: O.defaultSort, $rowKey: O.rowKey }
|
|
4751
4756
|
}, null, 8, ["column", "row", "data"])) : z("", !0)
|
|
4752
4757
|
]),
|
|
4753
4758
|
_: 2
|
|
@@ -4812,15 +4817,15 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4812
4817
|
o("click");
|
|
4813
4818
|
};
|
|
4814
4819
|
return (a, s) => {
|
|
4815
|
-
const l = S("el-icon"),
|
|
4816
|
-
return h(), R(
|
|
4820
|
+
const l = S("el-icon"), p = S("el-tooltip"), r = S("el-form-item");
|
|
4821
|
+
return h(), R(r, {
|
|
4817
4822
|
class: "z-tips-form-item__form-item",
|
|
4818
4823
|
prop: a.prop
|
|
4819
4824
|
}, {
|
|
4820
4825
|
label: B(() => [
|
|
4821
4826
|
M("div", Ql, [
|
|
4822
4827
|
K(J(a.label) + " ", 1),
|
|
4823
|
-
a.content ? (h(), R(
|
|
4828
|
+
a.content ? (h(), R(p, {
|
|
4824
4829
|
key: 0,
|
|
4825
4830
|
content: a.content,
|
|
4826
4831
|
placement: "top",
|
|
@@ -4873,24 +4878,24 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4873
4878
|
visible: { type: Boolean }
|
|
4874
4879
|
},
|
|
4875
4880
|
setup(t) {
|
|
4876
|
-
const e = (
|
|
4877
|
-
|
|
4878
|
-
}, o = (
|
|
4881
|
+
const e = (r) => {
|
|
4882
|
+
r.style.maxHeight = "0", r.style.opacity = "0";
|
|
4883
|
+
}, o = (r) => {
|
|
4879
4884
|
requestAnimationFrame(() => {
|
|
4880
|
-
|
|
4885
|
+
r.style.maxHeight = `${r.scrollHeight}px`, r.style.opacity = "1";
|
|
4881
4886
|
});
|
|
4882
|
-
}, n = (
|
|
4883
|
-
|
|
4884
|
-
}, a = (
|
|
4885
|
-
|
|
4886
|
-
}, s = (
|
|
4887
|
+
}, n = (r) => {
|
|
4888
|
+
r.style.maxHeight = "";
|
|
4889
|
+
}, a = (r) => {
|
|
4890
|
+
r.style.maxHeight = `${r.scrollHeight}px`, r.style.opacity = "1";
|
|
4891
|
+
}, s = (r) => {
|
|
4887
4892
|
requestAnimationFrame(() => {
|
|
4888
|
-
|
|
4893
|
+
r.style.maxHeight = "0", r.style.opacity = "0";
|
|
4889
4894
|
});
|
|
4890
|
-
}, l = (
|
|
4891
|
-
|
|
4892
|
-
},
|
|
4893
|
-
return (
|
|
4895
|
+
}, l = (r) => {
|
|
4896
|
+
r.style.maxHeight = "", r.style.opacity = "";
|
|
4897
|
+
}, p = P(() => !Ve(t.visible));
|
|
4898
|
+
return (r, m) => (h(), R(qt, {
|
|
4894
4899
|
name: "z-transition-fade-height",
|
|
4895
4900
|
onBeforeEnter: e,
|
|
4896
4901
|
onEnter: o,
|
|
@@ -4900,8 +4905,8 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4900
4905
|
onAfterLeave: l
|
|
4901
4906
|
}, {
|
|
4902
4907
|
default: B(() => [
|
|
4903
|
-
!
|
|
4904
|
-
fe(
|
|
4908
|
+
!p.value || r.visible ? (h(), I("div", Xl, [
|
|
4909
|
+
fe(r.$slots, "default", {}, void 0, !0)
|
|
4905
4910
|
])) : z("", !0)
|
|
4906
4911
|
]),
|
|
4907
4912
|
_: 3
|
|
@@ -4917,7 +4922,7 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4917
4922
|
distance: { default: "top" }
|
|
4918
4923
|
},
|
|
4919
4924
|
setup(t) {
|
|
4920
|
-
const e =
|
|
4925
|
+
const e = P(() => {
|
|
4921
4926
|
let o = "0", n = "0";
|
|
4922
4927
|
switch (t.direction) {
|
|
4923
4928
|
case "top":
|
|
@@ -4977,9 +4982,9 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
4977
4982
|
if (document.execCommand)
|
|
4978
4983
|
document.execCommand("insertText", !1, s);
|
|
4979
4984
|
else {
|
|
4980
|
-
const { selectionStart: l, selectionEnd:
|
|
4981
|
-
if (
|
|
4982
|
-
e.value =
|
|
4985
|
+
const { selectionStart: l, selectionEnd: p, value: r } = e, m = r.length;
|
|
4986
|
+
if (m) {
|
|
4987
|
+
e.value = r.substring(0, l ?? 0) + s + r.substring(p ?? m);
|
|
4983
4988
|
const u = l + s.length;
|
|
4984
4989
|
ae().then(() => {
|
|
4985
4990
|
e.setSelectionRange(u, u);
|
|
@@ -5016,7 +5021,7 @@ const st = (t) => typeof t == "boolean" ? t ? "left" : void 0 : t, yl = (t) => {
|
|
|
5016
5021
|
}, ar = (t) => ({
|
|
5017
5022
|
...nr,
|
|
5018
5023
|
...t ?? {}
|
|
5019
|
-
}), sr = "0.5.
|
|
5024
|
+
}), sr = "0.5.6", lr = {
|
|
5020
5025
|
version: sr
|
|
5021
5026
|
};
|
|
5022
5027
|
function Br(t, e, o) {
|
|
@@ -5084,63 +5089,63 @@ const Wt = (t) => {
|
|
|
5084
5089
|
return `on${e.toUpperCase() + o.join("")}`;
|
|
5085
5090
|
}, Tr = () => {
|
|
5086
5091
|
Jt()?.appContext || console.warn("useOpenDialog must be called in setup");
|
|
5087
|
-
const e = G([]), { mount: o } = ir(), n = (l,
|
|
5092
|
+
const e = G([]), { mount: o } = ir(), n = (l, p) => {
|
|
5088
5093
|
if (l) {
|
|
5089
|
-
const
|
|
5090
|
-
if (
|
|
5091
|
-
if (
|
|
5092
|
-
e.value[
|
|
5094
|
+
const r = e.value.findIndex((m) => m.id === l);
|
|
5095
|
+
if (r > -1)
|
|
5096
|
+
if (p)
|
|
5097
|
+
e.value[r].cleanup(), e.value.splice(r, 1);
|
|
5093
5098
|
else {
|
|
5094
|
-
for (let
|
|
5095
|
-
e.value[
|
|
5096
|
-
e.value.splice(
|
|
5099
|
+
for (let m = r; m < e.value.length; m++)
|
|
5100
|
+
e.value[m].cleanup();
|
|
5101
|
+
e.value.splice(r);
|
|
5097
5102
|
}
|
|
5098
5103
|
} else
|
|
5099
|
-
e.value.forEach((
|
|
5100
|
-
|
|
5104
|
+
e.value.forEach((r) => {
|
|
5105
|
+
r.cleanup();
|
|
5101
5106
|
}), e.value = [];
|
|
5102
|
-
}, a = async (l,
|
|
5103
|
-
const
|
|
5107
|
+
}, a = async (l, p, r) => {
|
|
5108
|
+
const m = Ln(l) ? Wo({
|
|
5104
5109
|
loader: l,
|
|
5105
5110
|
delay: 0
|
|
5106
5111
|
// 立即加载
|
|
5107
5112
|
}) : l;
|
|
5108
5113
|
await ae();
|
|
5109
|
-
const u =
|
|
5110
|
-
return new Promise((v,
|
|
5111
|
-
const { unmount:
|
|
5112
|
-
yt(
|
|
5114
|
+
const u = r ?? Xt--, g = document.createElement("div");
|
|
5115
|
+
return new Promise((v, i) => {
|
|
5116
|
+
const { unmount: f } = o(
|
|
5117
|
+
yt(m, {
|
|
5113
5118
|
inheritAttrs: !0,
|
|
5114
|
-
...
|
|
5119
|
+
...p,
|
|
5115
5120
|
modelValue: !0,
|
|
5116
5121
|
"onUpdate:modelValue": (d) => {
|
|
5117
5122
|
d || ae(() => {
|
|
5118
|
-
e.value.find((
|
|
5123
|
+
e.value.find((y) => y.id === u) && (n(u), i());
|
|
5119
5124
|
});
|
|
5120
5125
|
},
|
|
5121
5126
|
[Wt(Yt.CONFIRM)]: (d) => {
|
|
5122
5127
|
v(d), n();
|
|
5123
5128
|
},
|
|
5124
5129
|
[Wt(Yt.CANCEL)]: (d) => {
|
|
5125
|
-
|
|
5130
|
+
i(d), n();
|
|
5126
5131
|
}
|
|
5127
5132
|
}),
|
|
5128
5133
|
g
|
|
5129
5134
|
);
|
|
5130
5135
|
e.value.push({
|
|
5131
5136
|
id: u,
|
|
5132
|
-
cleanup: () =>
|
|
5137
|
+
cleanup: () => f(g)
|
|
5133
5138
|
});
|
|
5134
5139
|
});
|
|
5135
5140
|
};
|
|
5136
5141
|
return {
|
|
5137
5142
|
openDialog: a,
|
|
5138
|
-
createDialog: (l,
|
|
5139
|
-
const
|
|
5140
|
-
confirm: (g) => (
|
|
5141
|
-
cancel: (g) => (
|
|
5142
|
-
finally: (g) => (
|
|
5143
|
-
close: () => (n(
|
|
5143
|
+
createDialog: (l, p) => {
|
|
5144
|
+
const r = Xt--, m = a(l, p, r), u = {
|
|
5145
|
+
confirm: (g) => (m.then(g), u),
|
|
5146
|
+
cancel: (g) => (m.catch(g), u),
|
|
5147
|
+
finally: (g) => (m.finally(g), u),
|
|
5148
|
+
close: () => (n(r), u)
|
|
5144
5149
|
};
|
|
5145
5150
|
return u;
|
|
5146
5151
|
},
|
|
@@ -5197,7 +5202,7 @@ export {
|
|
|
5197
5202
|
Zl as ZTipsFormItem,
|
|
5198
5203
|
Kl as ZTransitionFadeHeight,
|
|
5199
5204
|
$l as ZTransitionFadeSlide,
|
|
5200
|
-
|
|
5205
|
+
Nt as baseFormComponents,
|
|
5201
5206
|
go as createBaseFormItem,
|
|
5202
5207
|
wo as createBaseTableColumn,
|
|
5203
5208
|
_r as createBaseTableColumns,
|
|
@@ -5210,7 +5215,7 @@ export {
|
|
|
5210
5215
|
vr as formatSecond,
|
|
5211
5216
|
Ar as formatSeconds,
|
|
5212
5217
|
kr as formatSelectAndInputGroupValue,
|
|
5213
|
-
|
|
5218
|
+
Nn as getAppointDateRange,
|
|
5214
5219
|
io as getCurrentDateRange,
|
|
5215
5220
|
de as getDaysRange,
|
|
5216
5221
|
ca as handleLongMaxValue,
|