joy-admin-components 0.2.64 → 0.2.66
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/joy-admin-components.es.js +131 -130
- package/dist/joy-admin-components.umd.js +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -13,12 +13,13 @@ const qn = nt({
|
|
|
13
13
|
setup(e, { slots: t, attrs: n, emit: a }) {
|
|
14
14
|
const s = P(null), o = () => t.default ? t.default().filter((r) => r.type !== Symbol.for("v-cmt")).map((r) => r.type === Symbol.for("v-fgt") ? r.children : r).flat().map(
|
|
15
15
|
(r) => {
|
|
16
|
-
var i, p, m;
|
|
16
|
+
var i, p, m, y;
|
|
17
17
|
return ze(
|
|
18
18
|
St,
|
|
19
19
|
{
|
|
20
|
-
span: ((
|
|
21
|
-
|
|
20
|
+
span: ((i = r.props) == null ? void 0 : i.span) || ((m = (p = r.props) == null ? void 0 : p.colProps) == null ? void 0 : m.span) || 24,
|
|
21
|
+
//兼容老写法
|
|
22
|
+
...(y = r.props) == null ? void 0 : y.colProps
|
|
22
23
|
},
|
|
23
24
|
{
|
|
24
25
|
default: () => r
|
|
@@ -52,11 +53,11 @@ var ht = { exports: {} };
|
|
|
52
53
|
return function(o, l, r) {
|
|
53
54
|
var i = l.prototype;
|
|
54
55
|
r.utc = function(c) {
|
|
55
|
-
var
|
|
56
|
-
return new l(
|
|
56
|
+
var v = { date: c, utc: !0, args: arguments };
|
|
57
|
+
return new l(v);
|
|
57
58
|
}, i.utc = function(c) {
|
|
58
|
-
var
|
|
59
|
-
return c ?
|
|
59
|
+
var v = r(this.toDate(), { locale: this.$L, utc: !0 });
|
|
60
|
+
return c ? v.add(this.utcOffset(), n) : v;
|
|
60
61
|
}, i.local = function() {
|
|
61
62
|
return r(this.toDate(), { locale: this.$L, utc: !1 });
|
|
62
63
|
};
|
|
@@ -72,11 +73,11 @@ var ht = { exports: {} };
|
|
|
72
73
|
} else
|
|
73
74
|
m.call(this);
|
|
74
75
|
};
|
|
75
|
-
var
|
|
76
|
-
i.utcOffset = function(c,
|
|
76
|
+
var y = i.utcOffset;
|
|
77
|
+
i.utcOffset = function(c, v) {
|
|
77
78
|
var w = this.$utils().u;
|
|
78
79
|
if (w(c))
|
|
79
|
-
return this.$u ? 0 : w(this.$offset) ?
|
|
80
|
+
return this.$u ? 0 : w(this.$offset) ? y.call(this) : this.$offset;
|
|
80
81
|
if (typeof c == "string" && (c = function(M) {
|
|
81
82
|
M === void 0 && (M = "");
|
|
82
83
|
var Y = M.match(a);
|
|
@@ -88,17 +89,17 @@ var ht = { exports: {} };
|
|
|
88
89
|
return this;
|
|
89
90
|
var x = Math.abs(c) <= 16 ? 60 * c : c;
|
|
90
91
|
if (x === 0)
|
|
91
|
-
return this.utc(
|
|
92
|
+
return this.utc(v);
|
|
92
93
|
var C = this.clone();
|
|
93
|
-
if (
|
|
94
|
+
if (v)
|
|
94
95
|
return C.$offset = x, C.$u = !1, C;
|
|
95
96
|
var S = this.$u ? this.toDate().getTimezoneOffset() : -1 * this.utcOffset();
|
|
96
97
|
return (C = this.local().add(x + S, n)).$offset = x, C.$x.$localOffset = S, C;
|
|
97
98
|
};
|
|
98
99
|
var g = i.format;
|
|
99
100
|
i.format = function(c) {
|
|
100
|
-
var
|
|
101
|
-
return g.call(this,
|
|
101
|
+
var v = c || (this.$u ? "YYYY-MM-DDTHH:mm:ss[Z]" : "");
|
|
102
|
+
return g.call(this, v);
|
|
102
103
|
}, i.valueOf = function() {
|
|
103
104
|
var c = this.$utils().u(this.$offset) ? 0 : this.$offset + (this.$x.$localOffset || this.$d.getTimezoneOffset());
|
|
104
105
|
return this.$d.valueOf() - 6e4 * c;
|
|
@@ -114,11 +115,11 @@ var ht = { exports: {} };
|
|
|
114
115
|
return c === "s" && this.$offset ? r(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate() : h.call(this);
|
|
115
116
|
};
|
|
116
117
|
var f = i.diff;
|
|
117
|
-
i.diff = function(c,
|
|
118
|
+
i.diff = function(c, v, w) {
|
|
118
119
|
if (c && this.$u === c.$u)
|
|
119
|
-
return f.call(this, c,
|
|
120
|
+
return f.call(this, c, v, w);
|
|
120
121
|
var x = this.local(), C = r(c).local();
|
|
121
|
-
return f.call(x, C,
|
|
122
|
+
return f.call(x, C, v, w);
|
|
122
123
|
};
|
|
123
124
|
};
|
|
124
125
|
});
|
|
@@ -134,15 +135,15 @@ var mt = { exports: {} };
|
|
|
134
135
|
return function(s, o, l) {
|
|
135
136
|
var r, i = function(g, h, f) {
|
|
136
137
|
f === void 0 && (f = {});
|
|
137
|
-
var c = new Date(g),
|
|
138
|
+
var c = new Date(g), v = function(w, x) {
|
|
138
139
|
x === void 0 && (x = {});
|
|
139
140
|
var C = x.timeZoneName || "short", S = w + "|" + C, M = a[S];
|
|
140
141
|
return M || (M = new Intl.DateTimeFormat("en-US", { hour12: !1, timeZone: w, year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit", timeZoneName: C }), a[S] = M), M;
|
|
141
142
|
}(h, f);
|
|
142
|
-
return
|
|
143
|
+
return v.formatToParts(c);
|
|
143
144
|
}, p = function(g, h) {
|
|
144
|
-
for (var f = i(g, h), c = [],
|
|
145
|
-
var w = f[
|
|
145
|
+
for (var f = i(g, h), c = [], v = 0; v < f.length; v += 1) {
|
|
146
|
+
var w = f[v], x = w.type, C = w.value, S = n[x];
|
|
146
147
|
S >= 0 && (c[S] = parseInt(C, 10));
|
|
147
148
|
}
|
|
148
149
|
var M = c[3], Y = M === 24 ? 0 : M, E = c[0] + "-" + c[1] + "-" + c[2] + " " + Y + ":" + c[4] + ":" + c[5] + ":000", G = +g;
|
|
@@ -150,7 +151,7 @@ var mt = { exports: {} };
|
|
|
150
151
|
}, m = o.prototype;
|
|
151
152
|
m.tz = function(g, h) {
|
|
152
153
|
g === void 0 && (g = r);
|
|
153
|
-
var f, c = this.utcOffset(),
|
|
154
|
+
var f, c = this.utcOffset(), v = this.toDate(), w = v.toLocaleString("en-US", { timeZone: g }), x = Math.round((v - new Date(w)) / 1e3 / 60), C = 15 * -Math.round(v.getTimezoneOffset() / 15) - x;
|
|
154
155
|
if (!Number(C))
|
|
155
156
|
f = this.utcOffset(0, h);
|
|
156
157
|
else if (f = l(w, { locale: this.$L }).$set("millisecond", this.$ms).utcOffset(C, !0), h) {
|
|
@@ -164,24 +165,24 @@ var mt = { exports: {} };
|
|
|
164
165
|
});
|
|
165
166
|
return f && f.value;
|
|
166
167
|
};
|
|
167
|
-
var
|
|
168
|
+
var y = m.startOf;
|
|
168
169
|
m.startOf = function(g, h) {
|
|
169
170
|
if (!this.$x || !this.$x.$timezone)
|
|
170
|
-
return
|
|
171
|
+
return y.call(this, g, h);
|
|
171
172
|
var f = l(this.format("YYYY-MM-DD HH:mm:ss:SSS"), { locale: this.$L });
|
|
172
|
-
return
|
|
173
|
+
return y.call(f, g, h).tz(this.$x.$timezone, !0);
|
|
173
174
|
}, l.tz = function(g, h, f) {
|
|
174
|
-
var c = f && h,
|
|
175
|
+
var c = f && h, v = f || h || r, w = p(+l(), v);
|
|
175
176
|
if (typeof g != "string")
|
|
176
|
-
return l(g).tz(
|
|
177
|
+
return l(g).tz(v);
|
|
177
178
|
var x = function(Y, E, G) {
|
|
178
|
-
var _ = Y - 60 * E * 1e3,
|
|
179
|
-
if (E ===
|
|
179
|
+
var _ = Y - 60 * E * 1e3, b = p(_, G);
|
|
180
|
+
if (E === b)
|
|
180
181
|
return [_, E];
|
|
181
|
-
var k = p(_ -= 60 * (
|
|
182
|
-
return
|
|
183
|
-
}(l.utc(g, c).valueOf(), w,
|
|
184
|
-
return M.$x.$timezone =
|
|
182
|
+
var k = p(_ -= 60 * (b - E) * 1e3, G);
|
|
183
|
+
return b === k ? [_, b] : [Y - 60 * Math.min(b, k) * 1e3, Math.max(b, k)];
|
|
184
|
+
}(l.utc(g, c).valueOf(), w, v), C = x[0], S = x[1], M = l(C).utcOffset(S);
|
|
185
|
+
return M.$x.$timezone = v, M;
|
|
185
186
|
}, l.tz.guess = function() {
|
|
186
187
|
return Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
187
188
|
}, l.tz.setDefault = function(g) {
|
|
@@ -299,11 +300,11 @@ async function An(e, t) {
|
|
|
299
300
|
const i = [];
|
|
300
301
|
l.eachRow(function(p, m) {
|
|
301
302
|
if (m > a) {
|
|
302
|
-
let
|
|
303
|
+
let y = {}, g = !0;
|
|
303
304
|
Object.keys(n).forEach((h) => {
|
|
304
305
|
const f = p.getCell(n[h]).value;
|
|
305
|
-
|
|
306
|
-
}), g || i.push(
|
|
306
|
+
y[h] = f, f && (g = !1);
|
|
307
|
+
}), g || i.push(y);
|
|
307
308
|
}
|
|
308
309
|
}), o[l._name] = i;
|
|
309
310
|
}), s = null, o;
|
|
@@ -405,29 +406,29 @@ async function tn(e, t) {
|
|
|
405
406
|
if (l.state == "visible") {
|
|
406
407
|
const i = [], p = n[l._name];
|
|
407
408
|
if (p) {
|
|
408
|
-
let m = Object.values(p).some((g) => g.includes("image")),
|
|
409
|
+
let m = Object.values(p).some((g) => g.includes("image")), y = {};
|
|
409
410
|
m && (l.getImages().forEach((h) => {
|
|
410
|
-
const { tl: f } = h.range, c = s.model.media.find((
|
|
411
|
+
const { tl: f } = h.range, c = s.model.media.find((v) => v.index === h.imageId);
|
|
411
412
|
if (c) {
|
|
412
|
-
const
|
|
413
|
-
|
|
413
|
+
const v = c.buffer.toString("base64"), w = `data:image/${c.extension};base64,${v}`, x = `${Math.ceil(f.row)}_${Math.ceil(f.col)}`;
|
|
414
|
+
y[x] ? y[x].push(w) : y[x] = [w];
|
|
414
415
|
}
|
|
415
|
-
}), console.log("withImages-imageMap",
|
|
416
|
+
}), console.log("withImages-imageMap", y)), l.eachRow(function(g, h) {
|
|
416
417
|
if (h > a) {
|
|
417
418
|
let f = {
|
|
418
419
|
_excelRowNumber: h
|
|
419
420
|
}, c = !0;
|
|
420
|
-
Object.keys(p).forEach((
|
|
421
|
+
Object.keys(p).forEach((v) => {
|
|
421
422
|
var M;
|
|
422
|
-
let [w, x] = p[
|
|
423
|
+
let [w, x] = p[v].split(Ue);
|
|
423
424
|
const C = g.getCell(w);
|
|
424
425
|
let S;
|
|
425
426
|
if (x == "image" && m) {
|
|
426
427
|
const Y = C._column._number, E = `${h}_${Y}`;
|
|
427
|
-
S =
|
|
428
|
+
S = y[E] || "";
|
|
428
429
|
} else
|
|
429
430
|
C.result != null ? S = C.result : (M = C.value) != null && M.richText ? S = C.value.richText.reduce((Y, E) => Y + E.text, "") : C.type == 4 && C.value ? S = $e(C.value).utc().format("YYYY-MM-DD HH:mm:ss") : S = C.value;
|
|
430
|
-
S && x == "option" && (S = S.split(Ue)[1]), f[
|
|
431
|
+
S && x == "option" && (S = S.split(Ue)[1]), f[v] = S, S && (c = !1);
|
|
431
432
|
}), c || i.push(f);
|
|
432
433
|
}
|
|
433
434
|
}), o[l._name] = i;
|
|
@@ -450,25 +451,25 @@ async function on(e, t) {
|
|
|
450
451
|
continue;
|
|
451
452
|
const { tableHeader: l, tableData: r } = o;
|
|
452
453
|
l.forEach((i) => {
|
|
453
|
-
const { style: p = {}, required: m } = i, { font:
|
|
454
|
+
const { style: p = {}, required: m } = i, { font: y = {} } = p;
|
|
454
455
|
i.style = {
|
|
455
456
|
...p,
|
|
456
457
|
font: {
|
|
457
|
-
...
|
|
458
|
+
...y,
|
|
458
459
|
color: {
|
|
459
460
|
argb: m ? "FFFF0000" : void 0
|
|
460
461
|
}
|
|
461
462
|
}
|
|
462
463
|
};
|
|
463
464
|
}), a.columns = l, a.addRows(r), l.forEach((i) => {
|
|
464
|
-
let { header: p, key: m, width:
|
|
465
|
-
const
|
|
466
|
-
if (
|
|
465
|
+
let { header: p, key: m, width: y, option: g, numFmt: h, locked: f, optionFormater: c } = i;
|
|
466
|
+
const v = a.getColumn(m);
|
|
467
|
+
if (v.numFmt = nn[h] || h, v.width = y || s, v.protection = { locked: f === !0 }, g) {
|
|
467
468
|
const w = n.addWorksheet(m);
|
|
468
469
|
w.state = "hidden", c || (c = (x) => `${x.label}${Ue}${x.value}`), w.getColumn(1).values = g.map(c), Array(100).fill("").forEach((x, C) => {
|
|
469
470
|
if (C > 0) {
|
|
470
471
|
const S = Ce();
|
|
471
|
-
a.getCell(`${
|
|
472
|
+
a.getCell(`${v.letter}${C}`).dataValidation = {
|
|
472
473
|
type: "list",
|
|
473
474
|
formulae: [`${m}!$A$1:$A$${g.length}`],
|
|
474
475
|
showErrorMessage: !0,
|
|
@@ -663,68 +664,68 @@ const Se = (e, t) => {
|
|
|
663
664
|
const n = e, a = It(), { t: s, locale: o } = pe(), l = Tt(e, "modelValue"), r = ce(() => a["value-key"] != null), i = P(""), p = ce(() => {
|
|
664
665
|
if (a.remote !== void 0)
|
|
665
666
|
return n.data;
|
|
666
|
-
const
|
|
667
|
-
if (
|
|
667
|
+
const b = pt(i.value), { data: k, labelValue: T } = n, J = k || g.value;
|
|
668
|
+
if (b.length == 0)
|
|
668
669
|
return J;
|
|
669
670
|
const { label: $, labelEn: ye } = T;
|
|
670
671
|
let O = o.value == "en_us" ? ye || "i18nName" : $;
|
|
671
|
-
return
|
|
672
|
-
(de) => de[O].toLowerCase().includes(
|
|
672
|
+
return b.length == 1 ? J.filter(
|
|
673
|
+
(de) => de[O].toLowerCase().includes(b[0].toLowerCase())
|
|
673
674
|
) : J.filter((de) => {
|
|
674
675
|
let ve = !1;
|
|
675
|
-
return ve =
|
|
676
|
+
return ve = b.some((Le) => de[O].toLowerCase() == Le.toLowerCase()), ve;
|
|
676
677
|
});
|
|
677
678
|
}), m = ce({
|
|
678
679
|
get() {
|
|
679
680
|
return a.multiple == null || l.value == null ? !1 : l.value.length == p.value.length;
|
|
680
681
|
},
|
|
681
|
-
set(
|
|
682
|
-
return
|
|
682
|
+
set(b) {
|
|
683
|
+
return b;
|
|
683
684
|
}
|
|
684
|
-
}),
|
|
685
|
-
const { data:
|
|
686
|
-
g.value = [...
|
|
685
|
+
}), y = t, g = P([]), h = async () => {
|
|
686
|
+
const { data: b } = await n.api();
|
|
687
|
+
g.value = [...b], y("success", g);
|
|
687
688
|
};
|
|
688
689
|
n.api && h();
|
|
689
|
-
function f(
|
|
690
|
-
|
|
690
|
+
function f(b) {
|
|
691
|
+
y("change", b), c.value && we(() => {
|
|
691
692
|
n.optionClick && n.optionClick(c.value), c.value = null;
|
|
692
693
|
});
|
|
693
694
|
}
|
|
694
695
|
const c = P(null);
|
|
695
|
-
function
|
|
696
|
-
c.value =
|
|
696
|
+
function v(b) {
|
|
697
|
+
c.value = b;
|
|
697
698
|
}
|
|
698
|
-
const w = n.labelValue.label.split("-"), x = (
|
|
699
|
+
const w = n.labelValue.label.split("-"), x = (b) => {
|
|
699
700
|
if (w.length == 1) {
|
|
700
701
|
if (n.changeLocal)
|
|
701
|
-
return s(
|
|
702
|
-
let k = o.value == "en_us" ?
|
|
703
|
-
return k = k ||
|
|
702
|
+
return s(b[n.labelValue.label]);
|
|
703
|
+
let k = o.value == "en_us" ? b[n.labelValue.labelEn || "i18nName"] : b[n.labelValue.label];
|
|
704
|
+
return k = k || b[n.labelValue.label], k + "";
|
|
704
705
|
} else {
|
|
705
706
|
let k = [];
|
|
706
707
|
return w.forEach((T) => {
|
|
707
|
-
k.push(
|
|
708
|
+
k.push(b[T]);
|
|
708
709
|
}), k.join("-");
|
|
709
710
|
}
|
|
710
711
|
};
|
|
711
|
-
function C(
|
|
712
|
+
function C(b) {
|
|
712
713
|
let k = n.data ? n.data : g.value;
|
|
713
|
-
l.value =
|
|
714
|
-
|
|
714
|
+
l.value = b ? k.map((T) => r.value ? T : T[n.labelValue.value]) : [], we(() => {
|
|
715
|
+
y("change", l.value), y("changeAll", l.value, k);
|
|
715
716
|
});
|
|
716
717
|
}
|
|
717
|
-
function S(
|
|
718
|
-
|
|
719
|
-
n.optionClick && n.optionClick(
|
|
718
|
+
function S(b) {
|
|
719
|
+
y("change", r.value ? b : b[n.labelValue.value]), we(() => {
|
|
720
|
+
n.optionClick && n.optionClick(b);
|
|
720
721
|
});
|
|
721
722
|
}
|
|
722
|
-
function M(
|
|
723
|
-
const k = r.value ?
|
|
723
|
+
function M(b) {
|
|
724
|
+
const k = r.value ? b : b[n.labelValue.value], T = r.value ? l.value.some((J) => J[n.labelValue.value] === b[n.labelValue.value]) : l.value.includes(k);
|
|
724
725
|
return !!(n.maxLimit > 0 && l.value.length >= n.maxLimit && !T || n.minLimit > 0 && l.value.length === n.minLimit && T);
|
|
725
726
|
}
|
|
726
|
-
function Y(
|
|
727
|
-
return
|
|
727
|
+
function Y(b) {
|
|
728
|
+
return b.map((k) => ({
|
|
728
729
|
...k,
|
|
729
730
|
label: x(k),
|
|
730
731
|
value: r.value ? k : k[n.labelValue.value]
|
|
@@ -733,9 +734,9 @@ const Se = (e, t) => {
|
|
|
733
734
|
const E = P([]), G = n.data ? n.data : g.value;
|
|
734
735
|
E.value = Y(G), Pe(
|
|
735
736
|
() => n.data ? n.data : g.value,
|
|
736
|
-
(
|
|
737
|
+
(b) => {
|
|
737
738
|
var T;
|
|
738
|
-
const k = Y(
|
|
739
|
+
const k = Y(b);
|
|
739
740
|
if (k.length !== E.value.length)
|
|
740
741
|
E.value = k;
|
|
741
742
|
else {
|
|
@@ -750,11 +751,11 @@ const Se = (e, t) => {
|
|
|
750
751
|
},
|
|
751
752
|
{ deep: !0 }
|
|
752
753
|
);
|
|
753
|
-
const _ = ce(() => a.multiple !== void 0 && (n.maxLimit > 0 || n.minLimit > 0) ? E.value.map((
|
|
754
|
-
...
|
|
755
|
-
disabled: M(
|
|
754
|
+
const _ = ce(() => a.multiple !== void 0 && (n.maxLimit > 0 || n.minLimit > 0) ? E.value.map((b) => ({
|
|
755
|
+
...b,
|
|
756
|
+
disabled: M(b)
|
|
756
757
|
})) : E.value);
|
|
757
|
-
return (
|
|
758
|
+
return (b, k) => {
|
|
758
759
|
const T = q("el-checkbox"), J = q("el-select-v2"), $ = q("el-option"), ye = q("el-select");
|
|
759
760
|
return H(a).v2 != null ? (I(), N(J, ue({
|
|
760
761
|
key: 0,
|
|
@@ -771,7 +772,7 @@ const Se = (e, t) => {
|
|
|
771
772
|
}), lt({
|
|
772
773
|
default: z(({ item: O }) => [
|
|
773
774
|
re("div", {
|
|
774
|
-
onClick: (he) =>
|
|
775
|
+
onClick: (he) => v(O)
|
|
775
776
|
}, te(O.label), 9, sn)
|
|
776
777
|
]),
|
|
777
778
|
_: 2
|
|
@@ -779,7 +780,7 @@ const Se = (e, t) => {
|
|
|
779
780
|
H(a).multiple != null ? {
|
|
780
781
|
name: "header",
|
|
781
782
|
fn: z(() => [
|
|
782
|
-
ee(
|
|
783
|
+
ee(b.$slots, "header", {}, () => [
|
|
783
784
|
V(T, {
|
|
784
785
|
class: "mgl20",
|
|
785
786
|
modelValue: m.value,
|
|
@@ -787,7 +788,7 @@ const Se = (e, t) => {
|
|
|
787
788
|
onChange: C
|
|
788
789
|
}, {
|
|
789
790
|
default: z(() => [
|
|
790
|
-
ne(te(
|
|
791
|
+
ne(te(b.$t("quan-xuan")), 1)
|
|
791
792
|
]),
|
|
792
793
|
_: 1
|
|
793
794
|
}, 8, ["modelValue"])
|
|
@@ -806,7 +807,7 @@ const Se = (e, t) => {
|
|
|
806
807
|
clearable: ""
|
|
807
808
|
}, H(a), { onClear: e.optionClick }), {
|
|
808
809
|
default: z(() => [
|
|
809
|
-
H(a).multiple != null && e.showCheckAll && e.maxLimit == null ? ee(
|
|
810
|
+
H(a).multiple != null && e.showCheckAll && e.maxLimit == null ? ee(b.$slots, "header", { key: 0 }, () => [
|
|
810
811
|
V(T, {
|
|
811
812
|
class: "mgl20",
|
|
812
813
|
modelValue: m.value,
|
|
@@ -814,7 +815,7 @@ const Se = (e, t) => {
|
|
|
814
815
|
onChange: C
|
|
815
816
|
}, {
|
|
816
817
|
default: z(() => [
|
|
817
|
-
ne(te(
|
|
818
|
+
ne(te(b.$t("quan-xuan")), 1)
|
|
818
819
|
]),
|
|
819
820
|
_: 1
|
|
820
821
|
}, 8, ["modelValue"])
|
|
@@ -944,8 +945,8 @@ function je(e) {
|
|
|
944
945
|
else if (s == "date")
|
|
945
946
|
if (r.includes("range")) {
|
|
946
947
|
const [i, p] = a;
|
|
947
|
-
let [m,
|
|
948
|
-
m && r == "daterange" && (m = $e(m).format("YYYY-MM-DD 00:00:00"),
|
|
948
|
+
let [m, y] = l || [];
|
|
949
|
+
m && r == "daterange" && (m = $e(m).format("YYYY-MM-DD 00:00:00"), y = $e(y).format("YYYY-MM-DD 23:59:59")), t[i] = m, t[p] = y;
|
|
949
950
|
} else
|
|
950
951
|
t[a] = l;
|
|
951
952
|
else
|
|
@@ -970,7 +971,7 @@ const mn = { key: 0 }, gn = { class: "btns" }, pn = { class: "left" }, yn = { cl
|
|
|
970
971
|
function m() {
|
|
971
972
|
s("confirm");
|
|
972
973
|
}
|
|
973
|
-
function
|
|
974
|
+
function y(w) {
|
|
974
975
|
w.option.onClear && w.option.onClear(), s("confirm");
|
|
975
976
|
}
|
|
976
977
|
function g() {
|
|
@@ -983,13 +984,13 @@ const mn = { key: 0 }, gn = { class: "btns" }, pn = { class: "left" }, yn = { cl
|
|
|
983
984
|
return je(a.form.items);
|
|
984
985
|
}
|
|
985
986
|
const c = ct(a.form.items);
|
|
986
|
-
function
|
|
987
|
+
function v() {
|
|
987
988
|
a.form.items.forEach((w) => {
|
|
988
989
|
const x = c.find((C) => C.key == w.key);
|
|
989
990
|
x && (w.value = x.value);
|
|
990
991
|
});
|
|
991
992
|
}
|
|
992
|
-
return t({ getPrm: f, reset:
|
|
993
|
+
return t({ getPrm: f, reset: v }), (w, x) => {
|
|
993
994
|
const C = q("el-input"), S = q("el-date-picker"), M = q("el-form-item"), Y = q("el-form"), E = q("el-link"), G = q("el-button");
|
|
994
995
|
return I(), ie("div", {
|
|
995
996
|
class: "searchBar-container mgt10 mgb10",
|
|
@@ -1012,13 +1013,13 @@ const mn = { key: 0 }, gn = { class: "btns" }, pn = { class: "left" }, yn = { cl
|
|
|
1012
1013
|
label: _.name
|
|
1013
1014
|
}, {
|
|
1014
1015
|
default: z(() => {
|
|
1015
|
-
var
|
|
1016
|
+
var b, k;
|
|
1016
1017
|
return [
|
|
1017
1018
|
_.type === "input" ? (I(), N(C, {
|
|
1018
1019
|
key: 0,
|
|
1019
1020
|
modelValue: _.value,
|
|
1020
1021
|
"onUpdate:modelValue": (T) => _.value = T,
|
|
1021
|
-
class: rt(((
|
|
1022
|
+
class: rt(((b = _.option) == null ? void 0 : b.class) || "w150"),
|
|
1022
1023
|
placeholder: w.$t("qing-shu-ru"),
|
|
1023
1024
|
clearable: ""
|
|
1024
1025
|
}, null, 8, ["modelValue", "onUpdate:modelValue", "class", "placeholder"])) : _.type === "custom" ? (I(), N(st(_.render), { key: 1 })) : fe("", !0),
|
|
@@ -1029,7 +1030,7 @@ const mn = { key: 0 }, gn = { class: "btns" }, pn = { class: "left" }, yn = { cl
|
|
|
1029
1030
|
"onUpdate:modelValue": (T) => _.value = T
|
|
1030
1031
|
}, { ref_for: !0 }, _.option, {
|
|
1031
1032
|
onChange: m,
|
|
1032
|
-
onClear: (T) =>
|
|
1033
|
+
onClear: (T) => y(_)
|
|
1033
1034
|
}), null, 16, ["class", "modelValue", "onUpdate:modelValue", "onClear"])) : fe("", !0),
|
|
1034
1035
|
_.type === "date" ? (I(), N(S, ue({
|
|
1035
1036
|
key: 3,
|
|
@@ -1097,7 +1098,7 @@ const mn = { key: 0 }, gn = { class: "btns" }, pn = { class: "left" }, yn = { cl
|
|
|
1097
1098
|
], 32);
|
|
1098
1099
|
};
|
|
1099
1100
|
}
|
|
1100
|
-
}, bn = /* @__PURE__ */ Se(vn, [["__scopeId", "data-v-
|
|
1101
|
+
}, bn = /* @__PURE__ */ Se(vn, [["__scopeId", "data-v-5c7eeed9"]]), vt = {
|
|
1101
1102
|
// 分页参数名
|
|
1102
1103
|
pageNoKey: "pageNo",
|
|
1103
1104
|
// 页码参数名
|
|
@@ -1186,16 +1187,16 @@ const Cn = { class: "center" }, xn = {
|
|
|
1186
1187
|
const p = ce(() => {
|
|
1187
1188
|
const d = s.path.replace(/\//g, "-").replace(/^-/, "") || "default-table";
|
|
1188
1189
|
return l.id ? `listPageId-${d}-${l.id}` : `listPageId-${d}`;
|
|
1189
|
-
}), m = ct(l.searchForm.items),
|
|
1190
|
-
[
|
|
1190
|
+
}), m = ct(l.searchForm.items), y = l.searchForm.pageNoKey || o.pageNoKey, g = l.searchForm.pageSizeKey || o.pageSizeKey, h = Ee({
|
|
1191
|
+
[y]: 1,
|
|
1191
1192
|
[g]: l.searchForm.defaultPageSize || o.defaultPageSize,
|
|
1192
1193
|
total: 0
|
|
1193
|
-
}), f = P(null), c = P(null),
|
|
1194
|
+
}), f = P(null), c = P(null), v = P(450), w = Re(() => {
|
|
1194
1195
|
we(() => {
|
|
1195
1196
|
if (!c.value)
|
|
1196
1197
|
return;
|
|
1197
1198
|
const u = c.value.getBoundingClientRect(), L = window.innerHeight, D = u.top, R = 100, Z = L - D - R, A = 200;
|
|
1198
|
-
|
|
1199
|
+
v.value = Math.max(Z, A);
|
|
1199
1200
|
});
|
|
1200
1201
|
}, 100), x = () => {
|
|
1201
1202
|
w();
|
|
@@ -1226,11 +1227,11 @@ const Cn = { class: "center" }, xn = {
|
|
|
1226
1227
|
}
|
|
1227
1228
|
}
|
|
1228
1229
|
});
|
|
1229
|
-
const S = ce(() => J.value.height ||
|
|
1230
|
+
const S = ce(() => J.value.height || v.value);
|
|
1230
1231
|
let M;
|
|
1231
1232
|
async function Y(d) {
|
|
1232
1233
|
const { dataFormat: u } = l.tableConfig;
|
|
1233
|
-
d[
|
|
1234
|
+
d[y] != 1 && (d.nextSearchAfter = M), r.value = !0;
|
|
1234
1235
|
const { code: L, data: D = {} } = await l.api(d).finally(() => {
|
|
1235
1236
|
r.value = !1, l.searchForm.selections = [];
|
|
1236
1237
|
});
|
|
@@ -1274,7 +1275,7 @@ const Cn = { class: "center" }, xn = {
|
|
|
1274
1275
|
function _() {
|
|
1275
1276
|
return { ...h, ...je(l.searchForm.items) };
|
|
1276
1277
|
}
|
|
1277
|
-
const
|
|
1278
|
+
const b = () => {
|
|
1278
1279
|
const d = f.value;
|
|
1279
1280
|
d && d.clearSort();
|
|
1280
1281
|
}, k = Ee({
|
|
@@ -1510,9 +1511,9 @@ const Cn = { class: "center" }, xn = {
|
|
|
1510
1511
|
return;
|
|
1511
1512
|
u.$el.contains(d.target) || ve();
|
|
1512
1513
|
}, Ct = (d) => {
|
|
1513
|
-
h[
|
|
1514
|
+
h[y] = d, E();
|
|
1514
1515
|
}, xt = (d) => {
|
|
1515
|
-
h[g] = d, h[
|
|
1516
|
+
h[g] = d, h[y] = 1, E();
|
|
1516
1517
|
};
|
|
1517
1518
|
function We() {
|
|
1518
1519
|
const d = f.value.getCheckboxRecords();
|
|
@@ -1526,7 +1527,7 @@ const Cn = { class: "center" }, xn = {
|
|
|
1526
1527
|
l.searchForm.selections = L;
|
|
1527
1528
|
}
|
|
1528
1529
|
};
|
|
1529
|
-
return t({ tableRef: f, getList: E, getPrm: _, clearSort:
|
|
1530
|
+
return t({ tableRef: f, getList: E, getPrm: _, clearSort: b, calculateTableHeight: w }), (d, u) => {
|
|
1530
1531
|
var U;
|
|
1531
1532
|
const L = q("el-button"), D = q("el-checkbox"), R = q("el-text"), Z = q("vxe-column"), A = q("VxeTable"), se = q("el-pagination");
|
|
1532
1533
|
return I(), ie("div", {
|
|
@@ -1616,8 +1617,8 @@ const Cn = { class: "center" }, xn = {
|
|
|
1616
1617
|
], 512),
|
|
1617
1618
|
e.searchForm.showPage ? (I(), N(se, {
|
|
1618
1619
|
key: 1,
|
|
1619
|
-
"current-page": h[H(
|
|
1620
|
-
"onUpdate:currentPage": u[2] || (u[2] = (F) => h[H(
|
|
1620
|
+
"current-page": h[H(y)],
|
|
1621
|
+
"onUpdate:currentPage": u[2] || (u[2] = (F) => h[H(y)] = F),
|
|
1621
1622
|
class: "myPagination mgt10",
|
|
1622
1623
|
background: "",
|
|
1623
1624
|
layout: "total, sizes, prev, pager, next",
|
|
@@ -1706,7 +1707,7 @@ async function et(e) {
|
|
|
1706
1707
|
y: 0
|
|
1707
1708
|
}
|
|
1708
1709
|
};
|
|
1709
|
-
n.addEventListener("mousedown", i), document.addEventListener("mousemove", p), document.addEventListener("mouseup", m), window.addEventListener("resize",
|
|
1710
|
+
n.addEventListener("mousedown", i), document.addEventListener("mousemove", p), document.addEventListener("mouseup", m), window.addEventListener("resize", y);
|
|
1710
1711
|
function l() {
|
|
1711
1712
|
o.mouse.x - o.drag.x >= o.dialog.x && (o.drag.x = o.mouse.x - o.dialog.x), o.drag.x - o.mouse.x >= o.window.width - (o.dialog.x + o.dialog.width) && (o.drag.x = o.mouse.x + o.window.width - o.dialog.x - o.dialog.width), o.mouse.y - o.drag.y >= o.dialog.y && (o.drag.y = o.mouse.y - o.dialog.y), o.drag.y - o.mouse.y >= o.window.height - (o.dialog.y + o.dialog.height) && (o.drag.y = o.mouse.y + o.window.height - o.dialog.y - o.dialog.height), r();
|
|
1712
1713
|
}
|
|
@@ -1732,7 +1733,7 @@ async function et(e) {
|
|
|
1732
1733
|
function m(h) {
|
|
1733
1734
|
a.style.userSelect = "auto", s = !1;
|
|
1734
1735
|
}
|
|
1735
|
-
function
|
|
1736
|
+
function y(h) {
|
|
1736
1737
|
}
|
|
1737
1738
|
function g() {
|
|
1738
1739
|
return new Promise((h, f) => {
|
|
@@ -1741,7 +1742,7 @@ async function et(e) {
|
|
|
1741
1742
|
}, 500);
|
|
1742
1743
|
});
|
|
1743
1744
|
}
|
|
1744
|
-
e.__mouseDown__ = i, e.__mouseUp__ = m, e.__mouseMove__ = p, e.__sizeChange__ =
|
|
1745
|
+
e.__mouseDown__ = i, e.__mouseUp__ = m, e.__mouseMove__ = p, e.__sizeChange__ = y;
|
|
1745
1746
|
}
|
|
1746
1747
|
function tt(e) {
|
|
1747
1748
|
document.removeEventListener("mousedown", e.__mouseDown__), document.removeEventListener("mousemove", e.__mouseMove__), document.removeEventListener("mouseup", e.__mouseUp__), window.removeEventListener("resize", e.__sizeChange__);
|
|
@@ -1781,7 +1782,7 @@ const _n = {
|
|
|
1781
1782
|
}) == "confirm" && (n.layer.show = !1) : n.layer.show = !1 : n.layer.show = !1;
|
|
1782
1783
|
}
|
|
1783
1784
|
return (r, i) => {
|
|
1784
|
-
const p = q("el-button"), m = q("el-drawer"),
|
|
1785
|
+
const p = q("el-button"), m = q("el-drawer"), y = q("el-dialog");
|
|
1785
1786
|
return e.layer.type ? (I(), N(m, {
|
|
1786
1787
|
key: 0,
|
|
1787
1788
|
modelValue: e.layer.show,
|
|
@@ -1819,7 +1820,7 @@ const _n = {
|
|
|
1819
1820
|
]),
|
|
1820
1821
|
_: 3
|
|
1821
1822
|
}, 8, ["modelValue", "size", "title"])) : Vt((I(), ie("div", $n, [
|
|
1822
|
-
V(
|
|
1823
|
+
V(y, {
|
|
1823
1824
|
"close-on-click-modal": !1,
|
|
1824
1825
|
modelValue: e.layer.show,
|
|
1825
1826
|
"onUpdate:modelValue": i[1] || (i[1] = (g) => e.layer.show = g),
|
|
@@ -1872,12 +1873,12 @@ function oo(e, t = {}) {
|
|
|
1872
1873
|
password: /(?=.*\d)(?=.*[a-zA-Z])(?=.*[^a-zA-Z0-9]).{8,12}/,
|
|
1873
1874
|
email: /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/
|
|
1874
1875
|
}[e], { inForm: o, value: l, required: r, msg: i = n("validate.invalidInput") } = a;
|
|
1875
|
-
return o ? function(p, m,
|
|
1876
|
+
return o ? function(p, m, y) {
|
|
1876
1877
|
if (r) {
|
|
1877
|
-
s.test(m) ?
|
|
1878
|
+
s.test(m) ? y() : y(new Error(i));
|
|
1878
1879
|
return;
|
|
1879
1880
|
}
|
|
1880
|
-
m && !s.test(m) ?
|
|
1881
|
+
m && !s.test(m) ? y(new Error(i)) : y();
|
|
1881
1882
|
} : s.test(l);
|
|
1882
1883
|
}
|
|
1883
1884
|
class lo {
|
|
@@ -2093,20 +2094,20 @@ function ao(e, t = {}) {
|
|
|
2093
2094
|
log: !1,
|
|
2094
2095
|
params: null,
|
|
2095
2096
|
format: null
|
|
2096
|
-
}, t), { manual: s, log: o, params: l = {}, cb: r, format: i } = a, p = P([]), m = P(!1),
|
|
2097
|
+
}, t), { manual: s, log: o, params: l = {}, cb: r, format: i } = a, p = P([]), m = P(!1), y = (g) => {
|
|
2097
2098
|
const h = g || l;
|
|
2098
2099
|
m.value = !0, e(h).then((f) => {
|
|
2099
|
-
const { code: c, data:
|
|
2100
|
+
const { code: c, data: v, msg: w } = f;
|
|
2100
2101
|
if (r) {
|
|
2101
|
-
const { records: x, rows: C } =
|
|
2102
|
+
const { records: x, rows: C } = v || {}, S = x || C ? x || C : v;
|
|
2102
2103
|
p.value = Me(S, i), r(f);
|
|
2103
2104
|
}
|
|
2104
|
-
if (
|
|
2105
|
-
if (
|
|
2106
|
-
const { records: x, rows: C, total: S = 0 } =
|
|
2105
|
+
if (v) {
|
|
2106
|
+
if (v.records != null || v.rows != null) {
|
|
2107
|
+
const { records: x, rows: C, total: S = 0 } = v || {};
|
|
2107
2108
|
h && h.total != null && (l.total = parseInt(S)), p.value = Me(x || C || [], i);
|
|
2108
2109
|
} else
|
|
2109
|
-
p.value = Me(
|
|
2110
|
+
p.value = Me(v, i);
|
|
2110
2111
|
o && console.log("useRequest-res", p.value);
|
|
2111
2112
|
}
|
|
2112
2113
|
}).catch((f) => {
|
|
@@ -2115,7 +2116,7 @@ function ao(e, t = {}) {
|
|
|
2115
2116
|
m.value = !1;
|
|
2116
2117
|
});
|
|
2117
2118
|
};
|
|
2118
|
-
return s ||
|
|
2119
|
+
return s || y(), [m, p, y];
|
|
2119
2120
|
}
|
|
2120
2121
|
function so(e) {
|
|
2121
2122
|
const t = P(e), n = P(""), a = P("");
|
|
@@ -2254,13 +2255,13 @@ function mo() {
|
|
|
2254
2255
|
}
|
|
2255
2256
|
if (s) {
|
|
2256
2257
|
const p = (r == null ? void 0 : r.split(",")) || [];
|
|
2257
|
-
return p.map((m,
|
|
2258
|
+
return p.map((m, y) => V("span", null, [V(Ge, {
|
|
2258
2259
|
underline: "never",
|
|
2259
2260
|
type: "primary",
|
|
2260
2261
|
onclick: () => i(l == "stystem" ? o : m, m)
|
|
2261
2262
|
}, Fe(m) ? m : {
|
|
2262
2263
|
default: () => [m]
|
|
2263
|
-
}),
|
|
2264
|
+
}), y < p.length - 1 ? "," : ""]));
|
|
2264
2265
|
}
|
|
2265
2266
|
return V(Ge, {
|
|
2266
2267
|
underline: "never",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
(function(g,Z){typeof exports=="object"&&typeof module<"u"?Z(exports,require("element-plus"),require("vue"),require("file-saver"),require("exceljs"),require("dayjs"),require("vue-i18n"),require("lodash"),require("vue-router"),require("vuex"),require("vxe-pc-ui")):typeof define=="function"&&define.amd?define(["exports","element-plus","vue","file-saver","exceljs","dayjs","vue-i18n","lodash","vue-router","vuex","vxe-pc-ui"],Z):(g=typeof globalThis<"u"?globalThis:g||self,Z(g.JoyAdminComponents={},g.ElementPlus,g.Vue,g.fileSaver,g.ExcelJS,g.dayjs,g.VueI18n,g._,g.VueRouter,g.Vuex,g.VxeUI))})(this,function(g,Z,e,Ie,pe,ue,ee,ne,ve,te,fe){"use strict";const Qe=e.defineComponent({name:"LayOutForm",setup(t,{slots:o,attrs:n,emit:r}){const s=e.ref(null),l=()=>o.default?o.default().filter(i=>i.type!==Symbol.for("v-cmt")).map(i=>i.type===Symbol.for("v-fgt")?i.children:i).flat().map(i=>{var c,C,p;return e.h(Z.ElCol,{span:((C=(c=i.props)==null?void 0:c.colProps)==null?void 0:C.span)||24,...(p=i.props)==null?void 0:p.colProps},{default:()=>i})}):null;e.onMounted(()=>{r("ref",s.value)});function a(){return e.h(Z.ElForm,{...n,ref:s},()=>e.h(Z.ElRow,{gutter:n.gutter??20},{default:()=>l()}))}return a}});var Fe=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function De(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Be={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(Fe,function(){var n="minute",r=/[+-]\d\d(?::?\d\d)?/g,s=/([+-]|\d\d)/g;return function(l,a,i){var c=a.prototype;i.utc=function(d){var b={date:d,utc:!0,args:arguments};return new a(b)},c.utc=function(d){var b=i(this.toDate(),{locale:this.$L,utc:!0});return d?b.add(this.utcOffset(),n):b},c.local=function(){return i(this.toDate(),{locale:this.$L,utc:!1})};var C=c.parse;c.parse=function(d){d.utc&&(this.$u=!0),this.$utils().u(d.$offset)||(this.$offset=d.$offset),C.call(this,d)};var p=c.init;c.init=function(){if(this.$u){var d=this.$d;this.$y=d.getUTCFullYear(),this.$M=d.getUTCMonth(),this.$D=d.getUTCDate(),this.$W=d.getUTCDay(),this.$H=d.getUTCHours(),this.$m=d.getUTCMinutes(),this.$s=d.getUTCSeconds(),this.$ms=d.getUTCMilliseconds()}else p.call(this)};var x=c.utcOffset;c.utcOffset=function(d,b){var k=this.$utils().u;if(k(d))return this.$u?0:k(this.$offset)?x.call(this):this.$offset;if(typeof d=="string"&&(d=function(B){B===void 0&&(B="");var P=B.match(r);if(!P)return null;var I=(""+P[0]).match(s)||["-",0,0],Y=I[0],V=60*+I[1]+ +I[2];return V===0?0:Y==="+"?V:-V}(d),d===null))return this;var _=Math.abs(d)<=16?60*d:d;if(_===0)return this.utc(b);var S=this.clone();if(b)return S.$offset=_,S.$u=!1,S;var T=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();return(S=this.local().add(_+T,n)).$offset=_,S.$x.$localOffset=T,S};var y=c.format;c.format=function(d){var b=d||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return y.call(this,b)},c.valueOf=function(){var d=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*d},c.isUTC=function(){return!!this.$u},c.toISOString=function(){return this.toDate().toISOString()},c.toString=function(){return this.toDate().toUTCString()};var h=c.toDate;c.toDate=function(d){return d==="s"&&this.$offset?i(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():h.call(this)};var m=c.diff;c.diff=function(d,b,k){if(d&&this.$u===d.$u)return m.call(this,d,b,k);var _=this.local(),S=i(d).local();return m.call(_,S,b,k)}}})})(Be);var et=Be.exports;const tt=De(et);var Me={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(Fe,function(){var n={year:0,month:1,day:2,hour:3,minute:4,second:5},r={};return function(s,l,a){var i,c=function(y,h,m){m===void 0&&(m={});var d=new Date(y),b=function(k,_){_===void 0&&(_={});var S=_.timeZoneName||"short",T=k+"|"+S,B=r[T];return B||(B=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:k,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",timeZoneName:S}),r[T]=B),B}(h,m);return b.formatToParts(d)},C=function(y,h){for(var m=c(y,h),d=[],b=0;b<m.length;b+=1){var k=m[b],_=k.type,S=k.value,T=n[_];T>=0&&(d[T]=parseInt(S,10))}var B=d[3],P=B===24?0:B,I=d[0]+"-"+d[1]+"-"+d[2]+" "+P+":"+d[4]+":"+d[5]+":000",Y=+y;return(a.utc(I).valueOf()-(Y-=Y%1e3))/6e4},p=l.prototype;p.tz=function(y,h){y===void 0&&(y=i);var m,d=this.utcOffset(),b=this.toDate(),k=b.toLocaleString("en-US",{timeZone:y}),_=Math.round((b-new Date(k))/1e3/60),S=15*-Math.round(b.getTimezoneOffset()/15)-_;if(!Number(S))m=this.utcOffset(0,h);else if(m=a(k,{locale:this.$L}).$set("millisecond",this.$ms).utcOffset(S,!0),h){var T=m.utcOffset();m=m.add(d-T,"minute")}return m.$x.$timezone=y,m},p.offsetName=function(y){var h=this.$x.$timezone||a.tz.guess(),m=c(this.valueOf(),h,{timeZoneName:y}).find(function(d){return d.type.toLowerCase()==="timezonename"});return m&&m.value};var x=p.startOf;p.startOf=function(y,h){if(!this.$x||!this.$x.$timezone)return x.call(this,y,h);var m=a(this.format("YYYY-MM-DD HH:mm:ss:SSS"),{locale:this.$L});return x.call(m,y,h).tz(this.$x.$timezone,!0)},a.tz=function(y,h,m){var d=m&&h,b=m||h||i,k=C(+a(),b);if(typeof y!="string")return a(y).tz(b);var _=function(P,I,Y){var V=P-60*I*1e3,w=C(V,Y);if(I===w)return[V,I];var $=C(V-=60*(w-I)*1e3,Y);return w===$?[V,w]:[P-60*Math.min(w,$)*1e3,Math.max(w,$)]}(a.utc(y,d).valueOf(),k,b),S=_[0],T=_[1],B=a(S).utcOffset(T);return B.$x.$timezone=b,B},a.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},a.tz.setDefault=function(y){i=y}}})})(Me);var ot=Me.exports;const nt=De(ot),ye={"dao-ru":"导入","quan-xuan":"全选","xia-zai-dao-ru-mo-ban":"下载导入模板","xu-hao":"序号","qing-shu-ru":"请输入","qing-xuan-ze":"请选择","kai-shi-shi-jian":"开始时间","jie-shu-shi-jian":"结束时间","shai-xuan":"筛选","chong-zhi":"重置","guan-bi":"关闭","zhan-kai":"展开","qu-xiao":"取消","ti-jiao":"提交","que-ding":"确定","que-ding-guan-bi-ma":"确定关闭吗","xia-zai-dao-ru-mo-ban":"下载导入模板",excel:{fieldsMappingRequired:"请输入列字段映射",invalidInput:"非法输入",invalidOption:"请输入有效选项!",copyFailed:"复制失败",sheetNameTooLong:'Sheet名称 "{0}" 长度超过31个字符,已自动截断为 "{1}"'},validate:{invalidInput:"请输入正确内容"},tools:{keysLengthError:"keys 长度必须大于2 默认前两位为 label value"}},Ce={"dao-ru":"Import","quan-xuan":"Select All","xia-zai-dao-ru-mo-ban":"Download Import Template","xu-hao":"No.","qing-shu-ru":"Please enter","qing-xuan-ze":"Please select","kai-shi-shi-jian":"Start Time","jie-shu-shi-jian":"End Time","shai-xuan":"Filter","chong-zhi":"Reset","guan-bi":"Collapse","zhan-kai":"Expand","qu-xiao":"Cancel","ti-jiao":"Submit","que-ding":"Confirm","que-ding-guan-bi-ma":"Are you sure to close?","xia-zai-dao-ru-mo-ban":"Download Import Template",excel:{fieldsMappingRequired:"Please enter column field mapping",invalidInput:"Invalid input",invalidOption:"Please enter a valid option!",copyFailed:"Copy failed",sheetNameTooLong:'Sheet name "{0}" exceeds 31 characters, automatically truncated to "{1}"'},validate:{invalidInput:"Please enter valid content"},tools:{keysLengthError:"Keys length must be greater than 2, default first two are label and value"}},ze={zh_cn:ye,en_us:Ce};let ie=null;function Oe(t=null){if(t){const{global:o}=t;return o.messages.value.zh_cn?o.mergeLocaleMessage("zh_cn",ye):o.setLocaleMessage("zh_cn",ye),o.messages.value.en_us?o.mergeLocaleMessage("en_us",Ce):o.setLocaleMessage("en_us",Ce),ie=t,t}return ie||(ie=ee.createI18n({legacy:!1,locale:"zh_cn",fallbackLocale:"zh_cn",messages:ze})),ie}function be(){return ie||Oe()}function le(){return be().global.t}ue.extend(tt),ue.extend(nt);async function lt(t,o){const{fields:n,range:r=1}=o;if(!n){const a=le();throw new Error(a("excel.fieldsMappingRequired"))}let s=new pe.Workbook;await s.xlsx.load(t);const l={};return s.eachSheet(function(a,i){const c=[];a.eachRow(function(C,p){if(p>r){let x={},y=!0;Object.keys(n).forEach(h=>{const m=C.getCell(n[h]).value;x[h]=m,m&&(y=!1)}),y||c.push(x)}}),l[a._name]=c}),s=null,l}const Ne={columnWidth:30};async function at(t,o,n=[],r={}){if(!t||!o)return;const{columnStyle:s}=r,{columnWidth:l}=Ne;o.forEach(c=>{c.width=c.width?c.width:l});const{workbook:a,worksheet:i}=rt();i.columns=o,i.addRows(n),s&&await st(a,i,s);try{const c=await a.xlsx.writeBuffer(),C=new File([c],t,{type:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"});Ie.saveAs(C)}catch(c){console.log(c)}}function rt(){const t=new pe.Workbook;t.creator="distributor System",t.lastModifiedBy="distributor System",t.created=new Date,t.modified=new Date,t.lastPrinted=new Date;const o=t.addWorksheet("Sheet1");return{workbook:t,worksheet:o}}async function st(t,o,n){const r=Object.keys(n);for(const s of r){const l=n[s],{type:a}=l;switch(a){case"IMG":await it(t,o,s);break}}}async function it(t,o,n,r){const s=o.getColumn(n),l=s.values;o.getColumn(n).width=20,o.eachRow((a,i)=>{i>1&&(a.height=40)});for(let a=0,i=l.length;a<i;a++){if(a<2)continue;let c=l[a];c&&(o.getCell(s.letter+a).value="",await ct(t,o,c,{width:100,height:50,col:s._number-1,row:a-1}))}}async function ct(t,o,n,r){const{col:s,row:l,width:a,height:i}=r,{success:c,base64:C}=await dt(n,.3);if(c){const p=t.addImage({base64:C,extension:"jpeg"});o.addImage(p,{tl:{col:s,row:l},ext:{width:a,height:i}})}}function dt(t,o=1){const n=new Image;return n.setAttribute("crossOrigin","anonymous"),n.crossOrigin="anonymous",n.src=t,new Promise((r,s)=>{n.onload=()=>{const l=document.createElement("canvas");l.width=n.width,l.height=n.height,l.getContext("2d").drawImage(n,0,0,l.width,l.height),r({success:!0,base64:l.toDataURL("image/jpeg",o)})},n.onerror=()=>{r({success:!1})}})}const ke="---";async function qe(t,o){const{fields:n,range:r=1}=o;if(!n){const a=le();throw new Error(a("excel.fieldsMappingRequired"))}let s=new pe.Workbook;await s.xlsx.load(t);const l={};return s.eachSheet(function(a,i){if(a.state=="visible"){const c=[],C=n[a._name];if(C){let p=Object.values(C).some(y=>y.includes("image")),x={};p&&(a.getImages().forEach(h=>{const{tl:m}=h.range,d=s.model.media.find(b=>b.index===h.imageId);if(d){const b=d.buffer.toString("base64"),k=`data:image/${d.extension};base64,${b}`,_=`${Math.ceil(m.row)}_${Math.ceil(m.col)}`;x[_]?x[_].push(k):x[_]=[k]}}),console.log("withImages-imageMap",x)),a.eachRow(function(y,h){if(h>r){let m={_excelRowNumber:h},d=!0;Object.keys(C).forEach(b=>{var B;let[k,_]=C[b].split(ke);const S=y.getCell(k);let T;if(_=="image"&&p){const P=S._column._number,I=`${h}_${P}`;T=x[I]||""}else S.result!=null?T=S.result:(B=S.value)!=null&&B.richText?T=S.value.richText.reduce((P,I)=>P+I.text,""):S.type==4&&S.value?T=ue(S.value).utc().format("YYYY-MM-DD HH:mm:ss"):T=S.value;T&&_=="option"&&(T=T.split(ke)[1]),m[b]=T,T&&(d=!1)}),d||c.push(m)}}),l[a._name]=c}}}),s=null,l}const ut={date:"yyyy-mm-dd",number:"0",string:"@"};async function Ae(t,o){if(!t||o.length==0)return;const n=ft(o);for(const r of n.worksheets){const{columnWidth:s}=Ne,l=o[r.name];if(!l)continue;const{tableHeader:a,tableData:i}=l;a.forEach(c=>{const{style:C={},required:p}=c,{font:x={}}=C;c.style={...C,font:{...x,color:{argb:p?"FFFF0000":void 0}}}}),r.columns=a,r.addRows(i),a.forEach(c=>{let{header:C,key:p,width:x,option:y,numFmt:h,locked:m,optionFormater:d}=c;const b=r.getColumn(p);if(b.numFmt=ut[h]||h,b.width=x||s,b.protection={locked:m===!0},y){const k=n.addWorksheet(p);k.state="hidden",d||(d=_=>`${_.label}${ke}${_.value}`),k.getColumn(1).values=y.map(d),Array(100).fill("").forEach((_,S)=>{if(S>0){const T=le();r.getCell(`${b.letter}${S}`).dataValidation={type:"list",formulae:[`${p}!$A$1:$A$${y.length}`],showErrorMessage:!0,error:T("excel.invalidInput"),errorStyle:"stop",errorMessage:T("excel.invalidOption")}}})}}),a.some(c=>c.locked)&&await r.protect("6737187214",{selectLockedCells:!0,selectUnlockedCells:!0})}try{const r=await n.xlsx.writeBuffer(),s=new File([r],t,{type:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"});Ie.saveAs(s)}catch(r){console.log(r)}}function ft(t){const o=le(),n=new pe.Workbook;return n.creator="distributor System",n.lastModifiedBy="distributor System",n.created=new Date,n.modified=new Date,n.lastPrinted=new Date,Object.keys(t).sort((s,l)=>{const a=t[s].sort??0,i=t[l].sort??0;return a-i}).forEach(s=>{let l=s,a=!1;/[\\/:*?\[\]]/g.test(s)&&(s=s.replace(/[\\/:*?\[\]]/g,""),a=!0),s.length>31&&(s=s.substring(0,31).trim(),a=!0,console.warn(o("excel.sheetNameTooLong",[l,s]))),a&&(t[s]=t[l],delete t[l]),n.addWorksheet(s)}),n}function mt(t){if(t<26)return String.fromCharCode(65+t);{const o=String.fromCharCode(65+Math.floor((t-26)/26)),n=String.fromCharCode(65+(t-26)%26);return o+n}}function ht(t){return new Promise(o=>{setTimeout(()=>{o()},t)})}function gt(t){return JSON.parse(JSON.stringify(t))}function pt(t){let o=[],n={},r=(s,l)=>Object.prototype.hasOwnProperty.call(s,l);for(const s of t){n[s.id]={...s,children:r(n,s.id)?n[s.id].children:[]};const l=n[s.id];s.pid==-1?o.push(l):(r(n,s.pid)||(n[s.pid]={children:[]}),n[s.pid].children.push(l))}return o}function Se(t,o=" "){return t?t.split(o).filter(n=>n.trim()):[]}class _e{constructor(o,n=["label","value","labelEn"]){this.list=o.map(r=>({...r,label:r[n[0]],labelEn:r[n[2]]??r[n[0]]??"",value:r[n[1]]})),this.map=new Map(this.list.map(r=>[r[n[1]],r]))}getName(o){if(!this.has(o))return"-";const n=be().global.locale,{label:r,labelEn:s}=this.map.get(o);return(n.value=="zh_cn"?r:s)??r??"-"}getTag(o){if(!this.has(o))return"info";const{tag:n="info"}=this.map.get(o);return n}getItem(o){return this.has(o)?this.map.get(o):null}getColor(o){if(!this.has(o))return null;const{color:n}=this.map.get(o);return n}has(o){return this.map.has(o)}}function yt(t,o=[],n="i18nName"){if(t.length==0)return new _e([]);if(o.length<2){const s=le();throw new Error(s("tools.keysLengthError"))}let r=t.map(s=>{let l={};return n&&(l.labelEn=s[n]),o.forEach((a,i)=>{i===0?l.label=s[a]:i===1?l.value=s[a]:l[a]=s[a]}),l});return new _e(r)}function Ct(t){return t?t.replace(/<[^>]+>/g,""):""}function bt(t){return t?(t.includes("\\\\u")&&(t=t.replace(/\\/g,"")),t.replace(/\\u[\dA-F]{4}/gi,o=>String.fromCharCode(parseInt(o.replace(/\\u/g,""),16)))):""}function wt(t,o=10){let n=1048576*o;return!(t.size>n)}function xt(t){return Array.from(10).fill(0).map((n,r)=>t+"_"+r)}function kt(t){let o={};return t.map((n,r)=>{let{key:s,option:l,type:a,optionFormater:i}=n,c=mt(r);l&&!i?o[s]=`${c}---option`:a==="image"?o[s]=`${c}---image`:o[s]=c}),o}function St(t,o){return o.split(".").reduce((n,r)=>n&&n[r],t)}const ao="",me=(t,o)=>{const n=t.__vccOpts||t;for(const[r,s]of o)n[r]=s;return n},_t=["onClick"],Pe=me({__name:"index",props:e.mergeModels({api:{type:Function},showCheckAll:{type:Boolean,default:!0},maxLimit:{type:Number,default:void 0},minLimit:{type:Number,default:void 0},optionClick:{type:Function,default:()=>{}},data:{type:Array},labelValue:{type:Object,default:()=>({label:"label",labelEn:"labelEn",value:"value"})},changeLocal:{type:Boolean,default:!1}},{modelValue:{},modelModifiers:{}}),emits:e.mergeModels(["success","change","changeAll"],["update:modelValue"]),setup(t,{emit:o}){const n=t,r=e.useAttrs(),{t:s,locale:l}=ee.useI18n(),a=e.useModel(t,"modelValue"),i=e.computed(()=>r["value-key"]!=null),c=e.ref(""),C=e.computed(()=>{if(r.remote!==void 0)return n.data;const w=Se(c.value),{data:$,labelValue:F}=n,H=$||y.value;if(w.length==0)return H;const{label:E,labelEn:ce}=F;let M=l.value=="en_us"?ce||"i18nName":E;return w.length==1?H.filter(oe=>oe[M].toLowerCase().includes(w[0].toLowerCase())):H.filter(oe=>{let de=!1;return de=w.some(xe=>oe[M].toLowerCase()==xe.toLowerCase()),de})}),p=e.computed({get(){return r.multiple==null||a.value==null?!1:a.value.length==C.value.length},set(w){return w}}),x=o,y=e.ref([]),h=async()=>{const{data:w}=await n.api();y.value=[...w],x("success",y)};n.api&&h();function m(w){x("change",w),d.value&&e.nextTick(()=>{n.optionClick&&n.optionClick(d.value),d.value=null})}const d=e.ref(null);function b(w){d.value=w}const k=n.labelValue.label.split("-"),_=w=>{if(k.length==1){if(n.changeLocal)return s(w[n.labelValue.label]);let $=l.value=="en_us"?w[n.labelValue.labelEn||"i18nName"]:w[n.labelValue.label];return $=$||w[n.labelValue.label],$+""}else{let $=[];return k.forEach(F=>{$.push(w[F])}),$.join("-")}};function S(w){let $=n.data?n.data:y.value;a.value=w?$.map(F=>i.value?F:F[n.labelValue.value]):[],e.nextTick(()=>{x("change",a.value),x("changeAll",a.value,$)})}function T(w){x("change",i.value?w:w[n.labelValue.value]),e.nextTick(()=>{n.optionClick&&n.optionClick(w)})}function B(w){const $=i.value?w:w[n.labelValue.value],F=i.value?a.value.some(H=>H[n.labelValue.value]===w[n.labelValue.value]):a.value.includes($);return!!(n.maxLimit>0&&a.value.length>=n.maxLimit&&!F||n.minLimit>0&&a.value.length===n.minLimit&&F)}function P(w){return w.map($=>({...$,label:_($),value:i.value?$:$[n.labelValue.value]}))}const I=e.ref([]),Y=n.data?n.data:y.value;I.value=P(Y),e.watch(()=>n.data?n.data:y.value,w=>{var F;const $=P(w);if($.length!==I.value.length)I.value=$;else{let H=!1;for(let E=0;E<$.length;E++)if($[E].value!==((F=I.value[E])==null?void 0:F.value)){H=!0;break}H&&(I.value=$)}},{deep:!0});const V=e.computed(()=>r.multiple!==void 0&&(n.maxLimit>0||n.minLimit>0)?I.value.map(w=>({...w,disabled:B(w)})):I.value);return(w,$)=>{const F=e.resolveComponent("el-checkbox"),H=e.resolveComponent("el-select-v2"),E=e.resolveComponent("el-option"),ce=e.resolveComponent("el-select");return e.unref(r).v2!=null?(e.openBlock(),e.createBlock(H,e.mergeProps({key:0,options:V.value,modelValue:a.value,"onUpdate:modelValue":$[1]||($[1]=M=>a.value=M)},e.unref(r),{filterable:"","collapse-tags":"","collapse-tags-tooltip":"",clearable:"",onChange:m,onClear:m}),e.createSlots({default:e.withCtx(({item:M})=>[e.createElementVNode("div",{onClick:ae=>b(M)},e.toDisplayString(M.label),9,_t)]),_:2},[e.unref(r).multiple!=null?{name:"header",fn:e.withCtx(()=>[e.renderSlot(w.$slots,"header",{},()=>[e.createVNode(F,{class:"mgl20",modelValue:p.value,"onUpdate:modelValue":$[0]||($[0]=M=>p.value=M),onChange:S},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(w.$t("quan-xuan")),1)]),_:1},8,["modelValue"])],!0)]),key:"0"}:void 0]),1040,["options","modelValue"])):(e.openBlock(),e.createBlock(ce,e.mergeProps({key:1,modelValue:a.value,"onUpdate:modelValue":$[3]||($[3]=M=>a.value=M),filterable:"","collapse-tags":"","collapse-tags-tooltip":"","filter-method":e.unref(r).remote!=null?void 0:M=>c.value=M,clearable:""},e.unref(r),{onClear:t.optionClick}),{default:e.withCtx(()=>[e.unref(r).multiple!=null&&t.showCheckAll&&t.maxLimit==null?e.renderSlot(w.$slots,"header",{key:0},()=>[e.createVNode(F,{class:"mgl20",modelValue:p.value,"onUpdate:modelValue":$[2]||($[2]=M=>p.value=M),onChange:S},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(w.$t("quan-xuan")),1)]),_:1},8,["modelValue"])],!0):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(C.value,(M,ae)=>(e.openBlock(),e.createBlock(E,{key:ae,label:_(M),disabled:e.unref(r).multiple!=null&&(t.maxLimit>0||t.minLimit>0)?B(M):!1,onClick:e.withModifiers(oe=>T(M),["stop"]),value:i.value?M:M[t.labelValue.value]},null,8,["label","disabled","onClick","value"]))),128))]),_:3},16,["modelValue","filter-method","onClear"]))}}},[["__scopeId","data-v-078a95a6"]]),so="",$t=e.defineComponent({props:{name:{tyepe:String,required:!0}}});function Vt(t,o,n,r,s,l){const a=e.resolveComponent("el-icon");return e.openBlock(),e.createBlock(a,{class:"cmp-icon"},{default:e.withCtx(()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t.name)))]),_:1})}const $e=me($t,[["render",Vt],["__scopeId","data-v-733f9daa"]]),Et={__name:"index",emits:["ok","no"],setup(t,{emit:o}){const n=o,r=ne.debounce(()=>{n("ok")},500);function s(){n("no")}return(l,a)=>{const i=e.resolveComponent("el-popconfirm");return e.openBlock(),e.createElementBlock("span",null,[e.createVNode(i,e.mergeProps(l.$attrs,{onConfirm:e.unref(r),onCancel:s}),{reference:e.withCtx(()=>[e.renderSlot(l.$slots,"default")]),_:3},16,["onConfirm"])])}}},io="",Tt=["accept"],Lt=me({__name:"index",props:{accept:{type:String,default:".xlsx,.xls"},fields:{type:Object,default:()=>({})},fileChange:{type:Function,required:!0}},emits:["fileChange"],setup(t,{emit:o}){const n=t,r=e.ref(null),s=e.ref(!1);async function l(a){s.value=!0;let i=a.target.files[0];const c=await qe(i,n.fields).catch(()=>{s.value=!1}).finally(()=>{r.value.value=null});await n.fileChange(c).finally(()=>{s.value=!1})}return(a,i)=>{const c=e.resolveComponent("el-button");return e.openBlock(),e.createElementBlock("span",null,[e.createVNode(c,e.mergeProps({type:"primary",loading:s.value,class:"mgr10",onClick:i[0]||(i[0]=C=>r.value.click())},a.$attrs),{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(a.$t("dao-ru")),1)],!0)]),_:3},16,["loading"]),e.createElementVNode("input",{onChange:l,ref_key:"input",ref:r,accept:t.accept,style:{position:"absolute",width:"0px",height:"0px",opacity:"0"},type:"file"},null,40,Tt)])}}},[["__scopeId","data-v-f5e86876"]]);function Ve(t){let o={};return t.forEach(n=>{const{key:r,type:s,option:l={},value:a,dateType:i="date"}=n;if(r)if(s=="input"&&(l!=null&&l.multiple))o[r]=Se(a);else if(s=="date")if(i.includes("range")){const[c,C]=r;let[p,x]=a||[];p&&i=="daterange"&&(p=ue(p).format("YYYY-MM-DD 00:00:00"),x=ue(x).format("YYYY-MM-DD 23:59:59")),o[c]=p,o[C]=x}else o[r]=a;else o[r]=a}),o}const uo="",It={key:0},vt={class:"btns"},Ft={class:"left"},Dt={class:"right"},je=me({__name:"index",props:{form:{type:Object,required:!0}},emits:["confirm","reset","visibleChange"],setup(t,{expose:o,emit:n}){const r=t,s=n,l=e.ref(!0),a=e.ref(null),{t:i}=ee.useI18n(),c={datetimerange:"YYYY-MM-DD HH:mm:ss",daterange:"YYYY-MM-DD",month:"YYYY-MM"},C=e.computed(()=>l.value?i("guan-bi"):i("zhan-kai"));function p(){s("confirm")}function x(k){k.option.onClear&&k.option.onClear(),s("confirm")}function y(){s("reset")}function h(){s("confirm")}function m(){return Ve(r.form.items)}const d=ne.cloneDeep(r.form.items);function b(){r.form.items.forEach(k=>{const _=d.find(S=>S.key==k.key);_&&(k.value=_.value)})}return o({getPrm:m,reset:b}),(k,_)=>{const S=e.resolveComponent("el-input"),T=e.resolveComponent("el-date-picker"),B=e.resolveComponent("el-form-item"),P=e.resolveComponent("el-form"),I=e.resolveComponent("el-link"),Y=e.resolveComponent("el-button");return e.openBlock(),e.createElementBlock("div",{class:"searchBar-container mgt10 mgb10",onKeydown:e.withKeys(p,["enter"])},[e.createElementVNode("div",{class:"searchBar",style:e.normalizeStyle({height:l.value?"auto":"42px"})},[e.createVNode(P,{inline:"",model:t.form.data},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.form.items.filter(V=>!V.hidden),V=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:V.key},[V.type=="br"?(e.openBlock(),e.createElementBlock("br",It)):(e.openBlock(),e.createBlock(B,{key:1,label:V.name},{default:e.withCtx(()=>{var w,$;return[V.type==="input"?(e.openBlock(),e.createBlock(S,{key:0,modelValue:V.value,"onUpdate:modelValue":F=>V.value=F,class:e.normalizeClass(((w=V.option)==null?void 0:w.class)||"w150"),placeholder:k.$t("qing-shu-ru"),clearable:""},null,8,["modelValue","onUpdate:modelValue","class","placeholder"])):V.type==="custom"?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(V.render),{key:1})):e.createCommentVNode("",!0),V.type==="select"?(e.openBlock(),e.createBlock(Pe,e.mergeProps({key:2,class:(($=V.option)==null?void 0:$.class)||"w150",modelValue:V.value,"onUpdate:modelValue":F=>V.value=F},{ref_for:!0},V.option,{onChange:p,onClear:F=>x(V)}),null,16,["class","modelValue","onUpdate:modelValue","onClear"])):e.createCommentVNode("",!0),V.type==="date"?(e.openBlock(),e.createBlock(T,e.mergeProps({key:3,class:{datetimerange:"w300",daterange:"w200"}[V.dateType]||"w100",modelValue:V.value,"onUpdate:modelValue":F=>V.value=F,"value-format":c[V.dateType]||"YYYY-MM-DD",type:V.dateType||"date",onFocus:F=>a.value=V,onChange:F=>h(),placeholder:k.$t("qing-xuan-ze"),"start-placeholder":k.$t("kai-shi-shi-jian"),"end-placeholder":k.$t("jie-shu-shi-jian")},{ref_for:!0},V.option),null,16,["class","modelValue","onUpdate:modelValue","value-format","type","onFocus","onChange","placeholder","start-placeholder","end-placeholder"])):e.createCommentVNode("",!0)]}),_:2},1032,["label"]))],64))),128))]),_:1},8,["model"])],4),e.createElementVNode("div",vt,[e.createElementVNode("div",Ft,[e.renderSlot(k.$slots,"table-header-left",{},void 0,!0)]),e.createElementVNode("div",Dt,[e.createVNode(I,{underline:"never",class:"mgr10",onClick:_[0]||(_[0]=()=>{s("visibleChange",!l.value),l.value=!l.value})},{default:e.withCtx(()=>[e.createVNode($e,{name:l.value?"ArrowUp":"ArrowDown"},null,8,["name"]),e.createTextVNode(" "+e.toDisplayString(C.value),1)]),_:1}),e.createVNode(Y,{type:"primary",onClick:p},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(k.$t("shai-xuan")),1)]),_:1}),e.createVNode(Y,{type:"primary",onClick:y},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(k.$t("chong-zhi")),1)]),_:1}),e.renderSlot(k.$slots,"btn",{},void 0,!0)])])],32)}}},[["__scopeId","data-v-6c7679eb"]]),Re={pageNoKey:"pageNo",pageSizeKey:"pageSize",totalKey:"total",defaultPageSize:10,pageSizes:[10,50,100,500],responseDataKeys:{rows:["rows","records","list"],total:["totalRows","total"]},showSearch:!1,showPage:!1,showShadow:!1,showCheckBox:!1,enableCellCopy:!0};let he={...Re};function Bt(t){he={...he,...t,responseDataKeys:{...he.responseDataKeys,...t.responseDataKeys||{}}}}function Ue(){return he}function Mt(){he={...Re}}const mo="",zt={class:"center"},Ot=me({__name:"index",props:{id:{type:String,required:!1},loading:{type:Boolean,default:!1},immediate:{type:Boolean,default:!0},searchForm:{type:Object,default:()=>({items:[],selections:[]})},api:{type:Function},data:{type:Array},tableConfig:{type:Object,default:()=>({})}},setup(t,{expose:o}){const{t:n,locale:r}=ee.useI18n(),s=ve.useRoute(),l=Ue(),a=t,i=e.ref(!1),c=e.ref([]);a.searchForm.showSearch===void 0&&(a.searchForm.showSearch=l.showSearch),a.searchForm.showPage===void 0&&(a.searchForm.showPage=l.showPage),a.searchForm.showShadow===void 0&&(a.searchForm.showShadow=l.showShadow),a.searchForm.showCheckBox===void 0&&(a.searchForm.showCheckBox=l.showCheckBox),a.searchForm.enableCellCopy===void 0&&(a.searchForm.enableCellCopy=l.enableCellCopy),a.searchForm.selections||(a.searchForm.selections=[]);const C=e.computed(()=>{const f=s.path.replace(/\//g,"-").replace(/^-/,"")||"default-table";return a.id?`listPageId-${f}-${a.id}`:`listPageId-${f}`}),p=ne.cloneDeep(a.searchForm.items),x=a.searchForm.pageNoKey||l.pageNoKey,y=a.searchForm.pageSizeKey||l.pageSizeKey,h=e.reactive({[x]:1,[y]:a.searchForm.defaultPageSize||l.defaultPageSize,total:0}),m=e.ref(null),d=e.ref(null),b=e.ref(450),k=ne.debounce(()=>{e.nextTick(()=>{if(!d.value)return;const u=d.value.getBoundingClientRect(),L=window.innerHeight,D=u.top,q=100,U=L-D-q,z=200;b.value=Math.max(U,z)})},100),_=()=>{k()},S=()=>{if(!a.searchForm.enableCellCopy&&!l.enableCellCopy)return!1;const f=m.value;if(!f||!f.$el)return!1;const u=f.$el;return u.classList.add("cell-copy-enabled"),u.setAttribute("tabindex","-1"),u.removeEventListener("mousedown",M),u.removeEventListener("mousemove",ae),u.removeEventListener("mouseup",oe),u.removeEventListener("keydown",Te),u.addEventListener("mousedown",M),u.addEventListener("mousemove",ae),u.addEventListener("mouseup",oe),u.addEventListener("keydown",Te),!0};e.onMounted(()=>{k(),window.addEventListener("resize",_),(a.searchForm.enableCellCopy||l.enableCellCopy)&&(document.addEventListener("mouseup",Ze),document.addEventListener("mousedown",Ge),setTimeout(()=>{S()},500))}),e.onUpdated(()=>{(a.searchForm.enableCellCopy||l.enableCellCopy)&&setTimeout(()=>{S()},500)}),e.onUnmounted(()=>{if(window.removeEventListener("resize",_),a.searchForm.enableCellCopy||l.enableCellCopy){document.removeEventListener("mouseup",Ze),document.removeEventListener("mousedown",Ge);const f=m.value;if(f&&f.$el){const u=f.$el;u.removeEventListener("mousedown",M),u.removeEventListener("mousemove",ae),u.removeEventListener("mouseup",oe),u.removeEventListener("keydown",Te)}}});const T=e.computed(()=>H.value.height||b.value);let B;async function P(f){const{dataFormat:u}=a.tableConfig;f[x]!=1&&(f.nextSearchAfter=B),i.value=!0;const{code:L,data:D={}}=await a.api(f).finally(()=>{i.value=!1,a.searchForm.selections=[]});if(L==200){let q=[];for(const z of l.responseDataKeys.rows)if(D[z]){q=D[z];break}let U=0;for(const z of l.responseDataKeys.total)if(D[z]!==void 0){U=D[z];break}c.value=u?u(q):q,h.total=U,B=D.nextSearchAfter,(a.searchForm.enableCellCopy||l.enableCellCopy)&&e.nextTick(()=>{setTimeout(()=>{S()},100)})}}function I(f={}){const{searchData:u=()=>({})}=a.tableConfig,L=u();P({...h,...Ve(a.searchForm.items),...f,...L})}function Y(){const{reset:f}=a.tableConfig;f&&f(),a.searchForm.items.forEach(u=>{const L=p.find(D=>ne.isArray(u.key)&&ne.isArray(D.key)?u.key.join(",")==D.key.join(","):D.key==u.key);L&&(u.value=L.value)}),I()}a.api&&a.immediate&&I();function V(){return{...h,...Ve(a.searchForm.items)}}const w=()=>{const f=m.value;f&&f.clearSort()},$=e.reactive({storage:!0}),F=e.reactive({drag:!0,resizable:!0,maxFixedSize:0}),H=e.computed(()=>{const{customConfig:f,columnConfig:u,...L}=a.tableConfig;return{headerAlign:"left",align:"center",customConfig:{...$,...f},columnConfig:{...F,...u},"virtual-x-config":{enabled:!1,scrollToLeftOnChange:!1},"virtual-y-config":{enabled:!0,gt:100},...L}}),E=e.reactive({isSelecting:!1,startCell:null,endCell:null,selectedCells:[]}),ce=f=>{const u=f.closest(".vxe-body--column");if(!u||u.classList.contains("col--checkbox")||u.classList.contains("col--seq"))return null;const L=u.closest(".vxe-body--row");if(!L)return null;const D=m.value;if(!D)return null;let q=-1;const U=L.getAttribute("data-rowid");if(U!=null)q=parseInt(U,10);else{const O=L.parentElement;q=Array.from(O.querySelectorAll(".vxe-body--row")).indexOf(L)}if(q<0)return null;let z=-1;const Q=u.getAttribute("data-colid");if(Q&&(z=D.getColumns().findIndex(v=>v.id===Q)),z<0){const v=Array.from(L.querySelectorAll(".vxe-body--column")).indexOf(u),j=!!u.closest(".vxe-table--fixed-left-wrapper"),K=!!u.closest(".vxe-table--fixed-right-wrapper"),A=D.getColumns();if(j){const W=A.filter(R=>R.fixed==="left");v<W.length&&(z=A.indexOf(W[v]))}else if(K){const W=A.filter(R=>R.fixed==="right");v<W.length&&(z=A.indexOf(W[v]))}else{const W=a.searchForm.showCheckBox?1:0;z=A.filter(G=>G.fixed==="left").length+v-W}}return z<0?null:{rowIndex:q,colIndex:z,cell:u}},M=f=>{const u=ce(f.target);if(!u){de();return}E.isSelecting=!0,E.startCell={rowIndex:u.rowIndex,colIndex:u.colIndex},E.endCell={...E.startCell},xe(),We()},ae=f=>{if(!E.isSelecting)return;const u=ce(f.target);u&&(E.endCell={rowIndex:u.rowIndex,colIndex:u.colIndex},xe(),We())},oe=()=>{E.isSelecting=!1},de=()=>{E.selectedCells=[],E.startCell=null,E.endCell=null;const f=m.value;if(!f)return;f.$el.querySelectorAll(".cell-selected, .cell-border-top, .cell-border-right, .cell-border-bottom, .cell-border-left").forEach(L=>{L.classList.remove("cell-selected","cell-border-top","cell-border-right","cell-border-bottom","cell-border-left")})},xe=()=>{if(!E.startCell||!E.endCell){E.selectedCells=[];return}const f=E.startCell.rowIndex,u=E.endCell.rowIndex,L=E.startCell.colIndex,D=E.endCell.colIndex,q=Math.min(f,u),U=Math.max(f,u),z=Math.min(L,D),Q=Math.max(L,D);E.selectedCells=[];for(let O=q;O<=U;O++)for(let v=z;v<=Q;v++)E.selectedCells.push({rowIndex:O,colIndex:v})},We=()=>{e.nextTick(()=>{const f=m.value;if(!f)return;const u=f.$el;if(u.querySelectorAll(".cell-selected, .cell-border-top, .cell-border-right, .cell-border-bottom, .cell-border-left").forEach(j=>{j.classList.remove("cell-selected","cell-border-top","cell-border-right","cell-border-bottom","cell-border-left")}),E.selectedCells.length===0)return;const L=f.getColumns(),D=E.selectedCells.map(j=>j.rowIndex),q=E.selectedCells.map(j=>j.colIndex),U=Math.min(...D),z=Math.max(...D),Q=Math.min(...q),O=Math.max(...q),v=[u.querySelector(".vxe-table--body-wrapper tbody"),u.querySelector(".vxe-table--fixed-left-wrapper tbody"),u.querySelector(".vxe-table--fixed-right-wrapper tbody")].filter(Boolean);E.selectedCells.forEach(({rowIndex:j,colIndex:K})=>{const A=L[K];if(!A)return;const W=A.fixed==="left",R=A.fixed==="right";for(const G of v){const ge=G.querySelectorAll(".vxe-body--row")[j];if(!ge)continue;const re=Array.from(ge.querySelectorAll(".vxe-body--column"));let N=null;if(W&&G.closest(".vxe-table--fixed-left-wrapper")){const J=L.filter(X=>X.fixed==="left").indexOf(A);N=re[J]}else if(R&&G.closest(".vxe-table--fixed-right-wrapper")){const J=L.filter(X=>X.fixed==="right").indexOf(A);N=re[J]}else if(!W&&!R&&G.closest(".vxe-table--body-wrapper")){const se=a.searchForm.showCheckBox?1:0,J=L.filter(Le=>Le.fixed==="left").length,X=K-J;N=re[X+se]}if(N&&!N.classList.contains("col--checkbox")&&!N.classList.contains("col--seq")){N.classList.add("cell-selected"),j===U&&N.classList.add("cell-border-top"),j===z&&N.classList.add("cell-border-bottom"),K===Q&&N.classList.add("cell-border-left"),K===O&&N.classList.add("cell-border-right");break}}})})},to=async()=>{if(E.selectedCells.length===0)return;const f=m.value;if(!f)return;const u=f.$el,L=f.getColumns(),D=[...new Set(E.selectedCells.map(O=>O.rowIndex))].sort((O,v)=>O-v),q=[...new Set(E.selectedCells.map(O=>O.colIndex))].sort((O,v)=>O-v),U=[u.querySelector(".vxe-table--body-wrapper tbody"),u.querySelector(".vxe-table--fixed-left-wrapper tbody"),u.querySelector(".vxe-table--fixed-right-wrapper tbody")].filter(Boolean),z=[];D.forEach(O=>{const v=[];q.forEach(j=>{const K=L[j];if(!K){v.push("");return}const A=K.fixed==="left",W=K.fixed==="right";let R="";for(const G of U){const ge=G.querySelectorAll(".vxe-body--row")[O];if(!ge)continue;const re=Array.from(ge.querySelectorAll(".vxe-body--column"));let N=null;if(A&&G.closest(".vxe-table--fixed-left-wrapper")){const J=L.filter(X=>X.fixed==="left").indexOf(K);N=re[J]}else if(W&&G.closest(".vxe-table--fixed-right-wrapper")){const J=L.filter(X=>X.fixed==="right").indexOf(K);N=re[J]}else if(!A&&!W&&G.closest(".vxe-table--body-wrapper")){const se=a.searchForm.showCheckBox?1:0,J=L.filter(Le=>Le.fixed==="left").length,X=j-J;N=re[X+se]}if(N&&!N.classList.contains("col--checkbox")&&!N.classList.contains("col--seq")){R=N.innerText||N.textContent||"",R=R.trim(),R=R.replace(/\n/g," ").replace(/\s+/g," ");break}}v.push(R)}),z.push(v.join(" "))});const Q=z.join(`
|
|
2
|
-
`);try{await navigator.clipboard.writeText(Q)}catch(O){console.error("复制失败:",O)}},Te=f=>{!a.searchForm.enableCellCopy&&!l.enableCellCopy||((f.ctrlKey||f.metaKey)&&f.key==="c"?E.selectedCells.length>0&&(f.preventDefault(),f.stopPropagation(),to()):f.key==="Escape"&&de())},Ze=()=>{E.isSelecting=!1},Ge=f=>{const u=m.value;if(!u||!u.$el)return;u.$el.contains(f.target)||de()},oo=f=>{h[x]=f,I()},no=f=>{h[y]=f,h[x]=1,I()};function Je(){const f=m.value.getCheckboxRecords();a.searchForm.selections=f}const Xe=f=>{const u=m.value;if(u){u.toggleCheckboxRow(f);const L=m.value.getCheckboxRecords();a.searchForm.selections=L}};return o({tableRef:m,getList:I,getPrm:V,clearSort:w,calculateTableHeight:k}),(f,u)=>{var O;const L=e.resolveComponent("el-button"),D=e.resolveComponent("el-checkbox"),q=e.resolveComponent("el-text"),U=e.resolveComponent("vxe-column"),z=e.resolveComponent("VxeTable"),Q=e.resolveComponent("el-pagination");return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass({box:t.searchForm.showShadow})},[t.searchForm.showSearch?(e.openBlock(),e.createBlock(je,{key:0,form:t.searchForm,onReset:Y,onConfirm:u[1]||(u[1]=v=>I()),onVisibleChange:e.unref(k)},{btn:e.withCtx(()=>[u[3]||(u[3]=e.createElementVNode("span",{class:"mgr10"},null,-1)),e.renderSlot(f.$slots,"search-bar-btn",{},void 0,!0),e.createVNode(L,{class:"mgl10",round:"",onClick:u[0]||(u[0]=v=>m.value.openCustom())},{default:e.withCtx(()=>[e.createVNode($e,{name:"Tools"})]),_:1})]),_:3},8,["form","onVisibleChange"])):e.createCommentVNode("",!0),e.renderSlot(f.$slots,"table-header-left",{},void 0,!0),e.createElementVNode("div",{ref_key:"tableContentRef",ref:d},[e.createVNode(z,e.mergeProps({id:C.value,ref_key:"tableRef",ref:m,loading:t.loading||i.value,data:t.api?c.value:t.data,border:""},H.value,{height:T.value,onCheckboxChange:Je,onCheckboxAll:Je,onSortChange:(O=H.value["sort-config"])==null?void 0:O.sortChange}),{default:e.withCtx(()=>[t.searchForm.showCheckBox==null||t.searchForm.showCheckBox?(e.openBlock(),e.createBlock(U,{key:0,type:"checkbox",width:e.unref(r)=="zh_cn"?80:150,title:f.$t("xu-hao"),fixed:"left"},{checkbox:e.withCtx(({rowIndex:v,row:j,checked:K,disabled:A,indeterminate:W})=>[e.createElementVNode("div",zt,[K?(e.openBlock(),e.createBlock(D,{key:0,checked:!0,disabled:A,size:"default",onClick:e.withModifiers(R=>!A&&Xe(j),["stop"])},null,8,["disabled","onClick"])):(e.openBlock(),e.createBlock(D,{key:1,disabled:A,checked:!1,size:"default",onClick:e.withModifiers(R=>!A&&Xe(j),["stop"])},null,8,["disabled","onClick"])),e.createVNode(q,{type:"info",class:"mgl5"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(v+1),1)]),_:2},1024)])]),_:1},8,["width","title"])):e.createCommentVNode("",!0),e.renderSlot(f.$slots,"default",{},void 0,!0)]),_:3},16,["id","loading","data","height","onSortChange"])],512),t.searchForm.showPage?(e.openBlock(),e.createBlock(Q,{key:1,"current-page":h[e.unref(x)],"onUpdate:currentPage":u[2]||(u[2]=v=>h[e.unref(x)]=v),class:"myPagination mgt10",background:"",layout:"total, sizes, prev, pager, next",total:h.total,"page-size":h[e.unref(y)],"page-sizes":t.searchForm.pageSizes||e.unref(l).pageSizes,onCurrentChange:oo,onSizeChange:no},null,8,["current-page","total","page-size","page-sizes"])):e.createCommentVNode("",!0)],2)}}},[["__scopeId","data-v-c022c16d"]]),Nt={__name:"index",props:{sheetsConfig:{type:Object,required:!0},fileName:{type:String,required:!0}},setup(t){const o=t;function n(){Ae(o.fileName,o.sheetsConfig)}return(r,s)=>{const l=e.resolveComponent("el-link");return e.openBlock(),e.createBlock(l,e.mergeProps({type:"primary",underline:"never"},r.$attrs,{onClick:n}),{default:e.withCtx(()=>[e.renderSlot(r.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(r.$t("xia-zai-dao-ru-mo-ban")),1)])]),_:3},16)}}},qt={mounted(t,o){o.value&&Ye(t)},updated(t,o){o.value?Ye(t):He(t)},beforeUnmount(t){He(t)}};async function Ye(t){await y();const o=t.querySelector(".el-dialog");if(!o)return;const n=t.querySelector(".el-dialog__header"),r=t.querySelector(".el-overlay");r.style.cssText+="overflow: hidden;",n.style.cursor="move";let s=!1,l={window:{width:0,height:0},dialog:{x:0,y:0,width:0,height:0,marginTop:""},mouse:{x:0,y:0},drag:{x:0,y:0}};n.addEventListener("mousedown",c),document.addEventListener("mousemove",C),document.addEventListener("mouseup",p),window.addEventListener("resize",x);function a(){l.mouse.x-l.drag.x>=l.dialog.x&&(l.drag.x=l.mouse.x-l.dialog.x),l.drag.x-l.mouse.x>=l.window.width-(l.dialog.x+l.dialog.width)&&(l.drag.x=l.mouse.x+l.window.width-l.dialog.x-l.dialog.width),l.mouse.y-l.drag.y>=l.dialog.y&&(l.drag.y=l.mouse.y-l.dialog.y),l.drag.y-l.mouse.y>=l.window.height-(l.dialog.y+l.dialog.height)&&(l.drag.y=l.mouse.y+l.window.height-l.dialog.y-l.dialog.height),i()}function i(){let h=l.drag.y-l.mouse.y+l.dialog.y,m=l.drag.x-l.mouse.x+l.dialog.x;o.style.cssText+=`position: absolute; top: calc(${h}px - ${l.dialog.marginTop}); left: ${m}px;`}function c(h){h.button===0&&(l.window={width:document.body.clientWidth,height:document.body.clientHeight},l.dialog=o.getBoundingClientRect(),l.dialog.marginTop=window.getComputedStyle(o).marginTop,l.mouse={x:h.clientX,y:h.clientY},s=!0)}function C(h){s&&(l.drag={x:h.clientX,y:h.clientY},r.style.userSelect="none",a())}function p(h){r.style.userSelect="auto",s=!1}function x(h){}function y(){return new Promise((h,m)=>{setTimeout(()=>{h()},500)})}t.__mouseDown__=c,t.__mouseUp__=p,t.__mouseMove__=C,t.__sizeChange__=x}function He(t){document.removeEventListener("mousedown",t.__mouseDown__),document.removeEventListener("mousemove",t.__mouseMove__),document.removeEventListener("mouseup",t.__mouseUp__),window.removeEventListener("resize",t.__sizeChange__)}const go="",At={key:0,class:"drawer-btn"},Pt={key:1},jt={__name:"index",props:{layer:{type:Object,default:()=>({show:!1,type:"layer",title:"",showButton:!1}),required:!0},loading:{type:Boolean,default:!1}},emits:["confirm"],setup(t,{emit:o}){const n=t,r=o,{t:s}=ee.useI18n(),l=ne.debounce(()=>{r("confirm")},300);async function a(){n.layer.type=="drawer"?n.layer.onClose?n.layer.onClose():n.layer.closeConfirm?await Z.ElMessageBox.confirm(s("que-ding-guan-bi-ma"),{confirmButtonText:s("que-ding"),cancelButtonText:s("qu-xiao"),type:"warning"}).catch(()=>{})=="confirm"&&(n.layer.show=!1):n.layer.show=!1:n.layer.show=!1}return(i,c)=>{const C=e.resolveComponent("el-button"),p=e.resolveComponent("el-drawer"),x=e.resolveComponent("el-dialog");return t.layer.type?(e.openBlock(),e.createBlock(p,{key:0,modelValue:t.layer.show,"onUpdate:modelValue":c[0]||(c[0]=y=>t.layer.show=y),size:t.layer.width||"100%",title:t.layer.title,direction:"rtl","append-to-body":"","before-close":a,class:"drawer-content"},{default:e.withCtx(()=>[e.renderSlot(i.$slots,"default"),c[2]||(c[2]=e.createElementVNode("p",{class:"mgt50"},null,-1)),t.layer.showButton?(e.openBlock(),e.createElementBlock("div",At,[e.renderSlot(i.$slots,"btn",{},()=>[e.createVNode(C,{onClick:a},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.$t("qu-xiao")),1)]),_:1}),e.createVNode(C,{type:"primary",loading:t.loading,onClick:e.unref(l)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.$t("ti-jiao")),1)]),_:1},8,["loading","onClick"])])])):e.createCommentVNode("",!0)]),_:3},8,["modelValue","size","title"])):e.withDirectives((e.openBlock(),e.createElementBlock("div",Pt,[e.createVNode(x,{"close-on-click-modal":!1,modelValue:t.layer.show,"onUpdate:modelValue":c[1]||(c[1]=y=>t.layer.show=y),title:t.layer.title,width:t.layer.width||500,center:""},e.createSlots({default:e.withCtx(()=>[e.renderSlot(i.$slots,"default")]),_:2},[t.layer.showButton?{name:"footer",fn:e.withCtx(()=>[e.renderSlot(i.$slots,"btn",{},()=>[e.createVNode(C,{onClick:a},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.$t("qu-xiao")),1)]),_:1}),e.createVNode(C,{type:"primary",onClick:e.unref(l)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.$t("ti-jiao")),1)]),_:1},8,["onClick"])])]),key:"0"}:void 0]),1032,["modelValue","title","width"])])),[[e.unref(qt),t.layer.show]])}}};function Rt(t,o={}){const n=le(),r={inForm:!0,required:!0,...o},s={phone:/^1(3[0-9]|4[01456879]|5[0-35-9]|6[2567]|7[0-8]|8[0-9]|9[0-35-9])\d{8}$/,password:/(?=.*\d)(?=.*[a-zA-Z])(?=.*[^a-zA-Z0-9]).{8,12}/,email:/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/}[t],{inForm:l,value:a,required:i,msg:c=n("validate.invalidInput")}=r;return l?function(C,p,x){if(i){s.test(p)?x():x(new Error(c));return}p&&!s.test(p)?x(new Error(c)):x()}:s.test(a)}class Ut{constructor(o={}){this.config={clientCode:o.clientCode||"one-portal",casServerUrl:`https://one-portal${o.isTest?"-test":""}.joy-group.com/api`,casPortalUrl:`https://one-portal${o.isTest?"-test":""}.joy-group.com`,serviceUrl:o.serviceUrl||window.location.origin+"/cas/callback",tokenKey:o.tokenKey||"one_portal_token",userKey:o.userKey||"one_portal_user",debug:o.debug||!1,autoLogin:o.autoLogin!==!1,loginCallback:o.loginCallback||null,logoutCallback:o.logoutCallback||null,errorCallback:o.errorCallback||null},this.token=null,this.user=null,this.init()}init(){this.log("OnePortal CAS SDK 初始化中..."),this.loadFromStorage();const n=new URLSearchParams(window.location.search).get("ticket");this.isLoggedIn()&&this.config.loginCallback?this.config.loginCallback(this.user,this.token):n?(this.log("检测到ST票据:",n),this.validateTicket(n)):this.config.autoLogin&&!this.isLoggedIn()&&(this.log("用户未登录,准备跳转到CAS登录页面"),this.login())}loadFromStorage(){try{this.token=localStorage.getItem(this.config.tokenKey);const o=localStorage.getItem(this.config.userKey);o&&(this.user=JSON.parse(o)),this.log("从本地存储加载数据:",{token:!!this.token,user:!!this.user})}catch(o){this.log("加载本地存储数据失败:",o)}}saveToStorage(){try{this.token&&localStorage.setItem(this.config.tokenKey,this.token),this.user&&localStorage.setItem(this.config.userKey,JSON.stringify(this.user)),this.log("数据已保存到本地存储")}catch(o){this.log("保存到本地存储失败:",o)}}clearStorage(){try{localStorage.removeItem(this.config.tokenKey),localStorage.removeItem(this.config.userKey),this.log("本地存储已清除")}catch(o){this.log("清除本地存储失败:",o)}}isLoggedIn(){return!!(this.token&&this.user)}getUser(){return this.user}getToken(){return this.token}login(){const o=`${this.config.casPortalUrl}?appCode=${this.config.clientCode}&redirectUrl=${encodeURIComponent(this.config.serviceUrl)}`;this.log("跳转到CAS登录页面:",o),window.location.href=o}async validateTicket(o){try{this.log("验证ST票据:",o);const n=await fetch(`${this.config.casServerUrl}/auth/validateST?ticket=${o}`,{method:"GET",headers:{"Content-Type":"application/json"}});if(!n.ok)throw new Error(`HTTP ${n.status}: ${n.statusText}`);const r=await n.json();if(r.success&&r.data)return this.token=r.data.token,this.user=r.data.user,this.saveToStorage(),this.clearTicketFromUrl(),this.log("ST票据验证成功,用户登录成功:",this.user),this.config.loginCallback&&this.config.loginCallback(this.user,this.token),!0;throw new Error(r.message||"ST票据验证失败")}catch(n){return this.log("ST票据验证失败:",n),this.handleError(n),!1}}clearTicketFromUrl(){const o=new URL(window.location);o.searchParams.delete("ticket"),window.history.replaceState({},document.title,o.toString())}async logout(o=!0){try{if(this.log("用户登出"),this.token)try{await fetch(`${this.config.casServerUrl}/auth/logout`,{method:"POST",headers:{AppId:this.config.clientCode,Authorization:`Bearer ${this.token}`,"Content-Type":"application/json"}})}catch(n){this.log("调用服务端登出接口失败:",n)}this.token=null,this.user=null,this.clearStorage(),this.config.logoutCallback&&this.config.logoutCallback(),o&&this.login()}catch(n){this.log("登出失败:",n),this.handleError(n)}}async request(o,n={}){const r={headers:{"Content-Type":"application/json",...n.headers},...n};r.headers.appId=this.config.clientCode,this.token&&(r.headers.Authorization=`Bearer ${this.token}`);try{const s=await fetch(o,r);return s.status===401?(this.log("Token已过期,需要重新登录"),this.logout(),null):s}catch(s){throw this.log("请求失败:",s),s}}async fetchUserInfo(){try{const o=await this.request(`${this.config.casServerUrl}/auth/user`);if(o&&o.ok){const n=await o.json();if(n.success&&n.data)return this.user=n.data,this.saveToStorage(),this.user}return null}catch(o){return this.log("获取用户信息失败:",o),null}}async refreshToken(){this.log("Token刷新功能暂未实现")}handleError(o){this.log("发生错误:",o),this.config.errorCallback&&this.config.errorCallback(o)}log(...o){this.config.debug&&console.log("[OnePortal CAS SDK]",...o)}checkLoginStatus(){return!this.isLoggedIn()&&this.config.autoLogin?(this.login(),!1):this.isLoggedIn()}setConfig(o,n){this.config[o]=n}getConfig(o){return this.config[o]}}function Yt(t,o={}){const r=Object.assign({manual:!1,log:!1,params:null,format:null},o),{manual:s,log:l,params:a={},cb:i,format:c}=r,C=e.ref([]),p=e.ref(!1),x=y=>{const h=y||a;p.value=!0,t(h).then(m=>{const{code:d,data:b,msg:k}=m;if(i){const{records:_,rows:S}=b||{},T=_||S?_||S:b;C.value=Ee(T,c),i(m)}if(b){if(b.records!=null||b.rows!=null){const{records:_,rows:S,total:T=0}=b||{};h&&h.total!=null&&(a.total=parseInt(T)),C.value=Ee(_||S||[],c)}else C.value=Ee(b,c);l&&console.log("useRequest-res",C.value)}}).catch(m=>{i&&(console.log("useRequestErr",m),i({code:500}))}).finally(()=>{p.value=!1})};return s||x(),[p,C,x]}function Ht(t){const o=e.ref(t),n=e.ref(""),r=e.ref("");return e.watch(o,s=>{const l=s||["",""];n.value=l[0],r.value=l[1]}),[o,n,r]}function Kt(t){return Object.prototype.toString.call(t).slice(8,-1).toLowerCase()}function Ee(t,o){if(!o)return t;if(t instanceof Array)return t.map(r=>{let s={};return o.forEach(l=>s[l]=r[l]),s});let n={};return o.forEach(r=>n[r]=t[r]),n}function Wt(t,o=[]){const{locale:n}=ee.useI18n(),r=e.ref(t());return e.watch([n,...o],()=>{r.value=t()},{immediate:!0}),r}function Zt(t,o="zh_cn",n="en_us"){if(!t)return"-";const r={en_us:n,zh_cn:o},l=be().global.locale.value;return t[r[l]]||t[o]||"-"}function Gt(t,o){let n=te.mapState;return typeof t=="string"&&t.length>0&&(n=te.createNamespacedHelpers(t).mapState),Ke(o,n)}function Jt(t,o){let n=te.mapGetters;return typeof t=="string"&&t.length>0&&(n=te.createNamespacedHelpers(t).mapGetters),Ke(o,n)}function Xt(t,o){let n=te.mapActions;return typeof t=="string"&&t.length>0&&(n=te.createNamespacedHelpers(t).mapActions),Qt(o,n)}function Ke(t,o){const n=te.useStore(),r=o(t),s={};return Object.keys(r).forEach(l=>{const a=r[l].bind({$store:n});s[l]=e.computed(a)}),s}function Qt(t,o){const n=te.useStore(),r=o(t),s={};return Object.keys(r).forEach(l=>{s[l]=r[l].bind({$store:n})}),s}function we(t){return typeof t=="function"||Object.prototype.toString.call(t)==="[object Object]"&&!e.isVNode(t)}function eo(){fe.VxeUI.renderer.add("Enum",{renderTableDefault(t,o){let n;if([null,void 0].includes(o.row[o.column.field]))return"-";const r=o.row[o.column.field];if(t.type=="tag"){let s;return e.createVNode(e.resolveComponent("el-text"),{type:t.enum.getTag(r)},we(s=t.enum.getName(r))?s:{default:()=>[s]})}return e.createVNode(e.resolveComponent("el-text"),null,we(n=t.enum.getName(r))?n:{default:()=>[n]})}}),fe.VxeUI.renderer.add("InputNumber",{renderTableDefault(t,o){return e.createVNode(Z.ElInputNumber,e.mergeProps({modelValue:o.row[o.column.field],"onUpdate:modelValue":n=>o.row[o.column.field]=n},t.props,{"step-strictly":!0,"value-on-clear":0}),null)}}),fe.VxeUI.renderer.add("TrueFalse",{renderTableDefault(t,o){const{locale:n}=ee.useI18n();let r=n.value=="zh_cn";return e.createVNode(Z.ElText,{type:o.row[o.column.field]?"success":"danger"},{default:()=>[o.row[o.column.field]?r?"是":"YES":r?"否":"NO"]})}}),fe.VxeUI.renderer.add("I18n",{renderTableDefault(t,o){const{locale:n}=ee.useI18n();let r=n.value=="zh_cn"?o.column.field:t.fieldEn;return o.row[r]||o.row[o.column.field]}}),fe.VxeUI.renderer.add("Link",{renderTableDefault(t,o){let n=o.column.field;const r=ve.useRouter(),{multiple:s,to:l,openType:a="system"}=t,i=o.row[n];function c(C,p){a=="blank"?window.open(C):r.push({path:C,query:{[n]:p}})}if(s){const C=(i==null?void 0:i.split(","))||[];return C.map((p,x)=>e.createVNode("span",null,[e.createVNode(Z.ElLink,{underline:"never",type:"primary",onclick:()=>c(a=="stystem"?l:p,p)},we(p)?p:{default:()=>[p]}),x<C.length-1?",":""]))}return e.createVNode(Z.ElLink,{underline:"never",type:"primary",onclick:()=>c(a=="stystem"?l:i,i)},we(i)?i:{default:()=>[i]})}})}g.CmpDictionary=Pe,g.CmpIcon=$e,g.ConfrimButton=Et,g.DownExcelTemp=Nt,g.ImportButton=Lt,g.LayOutForm=Qe,g.Layer=jt,g.ListPage=Ot,g.OnePortalCasSDK=Ut,g.SearchBar=je,g.StatusMap=_e,g._toRaw=gt,g._typeOf=Kt,g.arrToStatusMap=yt,g.arrayToTree=pt,g.checkFileSize=wt,g.creatValidator=Rt,g.createImportFields=kt,g.createListPageId=xt,g.en_us=Ce,g.exportExcel=at,g.exportExcelMuilti=Ae,g.getI18n=be,g.getI18nT=le,g.getListPageConfig=Ue,g.getLocaleValue=Zt,g.getValueBykey=St,g.importExcel=lt,g.importExcelMuilti=qe,g.messages=ze,g.registerVxeRenderers=eo,g.resetListPageConfig=Mt,g.setListPageConfig=Bt,g.setupI18n=Oe,g.sleep=ht,g.stringToArray=Se,g.stripHtmlTags=Ct,g.unicode2Str=bt,g.useActions=Xt,g.useDatePicker=Ht,g.useGetters=Jt,g.useI18nReState=Wt,g.useRequest=Yt,g.useState=Gt,g.zh_cn=ye,Object.defineProperty(g,Symbol.toStringTag,{value:"Module"})});
|
|
1
|
+
(function(g,Z){typeof exports=="object"&&typeof module<"u"?Z(exports,require("element-plus"),require("vue"),require("file-saver"),require("exceljs"),require("dayjs"),require("vue-i18n"),require("lodash"),require("vue-router"),require("vuex"),require("vxe-pc-ui")):typeof define=="function"&&define.amd?define(["exports","element-plus","vue","file-saver","exceljs","dayjs","vue-i18n","lodash","vue-router","vuex","vxe-pc-ui"],Z):(g=typeof globalThis<"u"?globalThis:g||self,Z(g.JoyAdminComponents={},g.ElementPlus,g.Vue,g.fileSaver,g.ExcelJS,g.dayjs,g.VueI18n,g._,g.VueRouter,g.Vuex,g.VxeUI))})(this,function(g,Z,e,Ie,pe,ue,ee,ne,Fe,te,fe){"use strict";const Qe=e.defineComponent({name:"LayOutForm",setup(t,{slots:o,attrs:n,emit:r}){const s=e.ref(null),l=()=>o.default?o.default().filter(i=>i.type!==Symbol.for("v-cmt")).map(i=>i.type===Symbol.for("v-fgt")?i.children:i).flat().map(i=>{var c,C,p,b;return e.h(Z.ElCol,{span:((c=i.props)==null?void 0:c.span)||((p=(C=i.props)==null?void 0:C.colProps)==null?void 0:p.span)||24,...(b=i.props)==null?void 0:b.colProps},{default:()=>i})}):null;e.onMounted(()=>{r("ref",s.value)});function a(){return e.h(Z.ElForm,{...n,ref:s},()=>e.h(Z.ElRow,{gutter:n.gutter??20},{default:()=>l()}))}return a}});var ve=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function De(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Be={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(ve,function(){var n="minute",r=/[+-]\d\d(?::?\d\d)?/g,s=/([+-]|\d\d)/g;return function(l,a,i){var c=a.prototype;i.utc=function(d){var w={date:d,utc:!0,args:arguments};return new a(w)},c.utc=function(d){var w=i(this.toDate(),{locale:this.$L,utc:!0});return d?w.add(this.utcOffset(),n):w},c.local=function(){return i(this.toDate(),{locale:this.$L,utc:!1})};var C=c.parse;c.parse=function(d){d.utc&&(this.$u=!0),this.$utils().u(d.$offset)||(this.$offset=d.$offset),C.call(this,d)};var p=c.init;c.init=function(){if(this.$u){var d=this.$d;this.$y=d.getUTCFullYear(),this.$M=d.getUTCMonth(),this.$D=d.getUTCDate(),this.$W=d.getUTCDay(),this.$H=d.getUTCHours(),this.$m=d.getUTCMinutes(),this.$s=d.getUTCSeconds(),this.$ms=d.getUTCMilliseconds()}else p.call(this)};var b=c.utcOffset;c.utcOffset=function(d,w){var k=this.$utils().u;if(k(d))return this.$u?0:k(this.$offset)?b.call(this):this.$offset;if(typeof d=="string"&&(d=function(B){B===void 0&&(B="");var P=B.match(r);if(!P)return null;var I=(""+P[0]).match(s)||["-",0,0],Y=I[0],V=60*+I[1]+ +I[2];return V===0?0:Y==="+"?V:-V}(d),d===null))return this;var _=Math.abs(d)<=16?60*d:d;if(_===0)return this.utc(w);var S=this.clone();if(w)return S.$offset=_,S.$u=!1,S;var T=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();return(S=this.local().add(_+T,n)).$offset=_,S.$x.$localOffset=T,S};var y=c.format;c.format=function(d){var w=d||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return y.call(this,w)},c.valueOf=function(){var d=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*d},c.isUTC=function(){return!!this.$u},c.toISOString=function(){return this.toDate().toISOString()},c.toString=function(){return this.toDate().toUTCString()};var h=c.toDate;c.toDate=function(d){return d==="s"&&this.$offset?i(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():h.call(this)};var m=c.diff;c.diff=function(d,w,k){if(d&&this.$u===d.$u)return m.call(this,d,w,k);var _=this.local(),S=i(d).local();return m.call(_,S,w,k)}}})})(Be);var et=Be.exports;const tt=De(et);var Me={exports:{}};(function(t,o){(function(n,r){t.exports=r()})(ve,function(){var n={year:0,month:1,day:2,hour:3,minute:4,second:5},r={};return function(s,l,a){var i,c=function(y,h,m){m===void 0&&(m={});var d=new Date(y),w=function(k,_){_===void 0&&(_={});var S=_.timeZoneName||"short",T=k+"|"+S,B=r[T];return B||(B=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:k,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",timeZoneName:S}),r[T]=B),B}(h,m);return w.formatToParts(d)},C=function(y,h){for(var m=c(y,h),d=[],w=0;w<m.length;w+=1){var k=m[w],_=k.type,S=k.value,T=n[_];T>=0&&(d[T]=parseInt(S,10))}var B=d[3],P=B===24?0:B,I=d[0]+"-"+d[1]+"-"+d[2]+" "+P+":"+d[4]+":"+d[5]+":000",Y=+y;return(a.utc(I).valueOf()-(Y-=Y%1e3))/6e4},p=l.prototype;p.tz=function(y,h){y===void 0&&(y=i);var m,d=this.utcOffset(),w=this.toDate(),k=w.toLocaleString("en-US",{timeZone:y}),_=Math.round((w-new Date(k))/1e3/60),S=15*-Math.round(w.getTimezoneOffset()/15)-_;if(!Number(S))m=this.utcOffset(0,h);else if(m=a(k,{locale:this.$L}).$set("millisecond",this.$ms).utcOffset(S,!0),h){var T=m.utcOffset();m=m.add(d-T,"minute")}return m.$x.$timezone=y,m},p.offsetName=function(y){var h=this.$x.$timezone||a.tz.guess(),m=c(this.valueOf(),h,{timeZoneName:y}).find(function(d){return d.type.toLowerCase()==="timezonename"});return m&&m.value};var b=p.startOf;p.startOf=function(y,h){if(!this.$x||!this.$x.$timezone)return b.call(this,y,h);var m=a(this.format("YYYY-MM-DD HH:mm:ss:SSS"),{locale:this.$L});return b.call(m,y,h).tz(this.$x.$timezone,!0)},a.tz=function(y,h,m){var d=m&&h,w=m||h||i,k=C(+a(),w);if(typeof y!="string")return a(y).tz(w);var _=function(P,I,Y){var V=P-60*I*1e3,x=C(V,Y);if(I===x)return[V,I];var $=C(V-=60*(x-I)*1e3,Y);return x===$?[V,x]:[P-60*Math.min(x,$)*1e3,Math.max(x,$)]}(a.utc(y,d).valueOf(),k,w),S=_[0],T=_[1],B=a(S).utcOffset(T);return B.$x.$timezone=w,B},a.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},a.tz.setDefault=function(y){i=y}}})})(Me);var ot=Me.exports;const nt=De(ot),ye={"dao-ru":"导入","quan-xuan":"全选","xia-zai-dao-ru-mo-ban":"下载导入模板","xu-hao":"序号","qing-shu-ru":"请输入","qing-xuan-ze":"请选择","kai-shi-shi-jian":"开始时间","jie-shu-shi-jian":"结束时间","shai-xuan":"筛选","chong-zhi":"重置","guan-bi":"关闭","zhan-kai":"展开","qu-xiao":"取消","ti-jiao":"提交","que-ding":"确定","que-ding-guan-bi-ma":"确定关闭吗","xia-zai-dao-ru-mo-ban":"下载导入模板",excel:{fieldsMappingRequired:"请输入列字段映射",invalidInput:"非法输入",invalidOption:"请输入有效选项!",copyFailed:"复制失败",sheetNameTooLong:'Sheet名称 "{0}" 长度超过31个字符,已自动截断为 "{1}"'},validate:{invalidInput:"请输入正确内容"},tools:{keysLengthError:"keys 长度必须大于2 默认前两位为 label value"}},Ce={"dao-ru":"Import","quan-xuan":"Select All","xia-zai-dao-ru-mo-ban":"Download Import Template","xu-hao":"No.","qing-shu-ru":"Please enter","qing-xuan-ze":"Please select","kai-shi-shi-jian":"Start Time","jie-shu-shi-jian":"End Time","shai-xuan":"Filter","chong-zhi":"Reset","guan-bi":"Collapse","zhan-kai":"Expand","qu-xiao":"Cancel","ti-jiao":"Submit","que-ding":"Confirm","que-ding-guan-bi-ma":"Are you sure to close?","xia-zai-dao-ru-mo-ban":"Download Import Template",excel:{fieldsMappingRequired:"Please enter column field mapping",invalidInput:"Invalid input",invalidOption:"Please enter a valid option!",copyFailed:"Copy failed",sheetNameTooLong:'Sheet name "{0}" exceeds 31 characters, automatically truncated to "{1}"'},validate:{invalidInput:"Please enter valid content"},tools:{keysLengthError:"Keys length must be greater than 2, default first two are label and value"}},ze={zh_cn:ye,en_us:Ce};let ie=null;function Oe(t=null){if(t){const{global:o}=t;return o.messages.value.zh_cn?o.mergeLocaleMessage("zh_cn",ye):o.setLocaleMessage("zh_cn",ye),o.messages.value.en_us?o.mergeLocaleMessage("en_us",Ce):o.setLocaleMessage("en_us",Ce),ie=t,t}return ie||(ie=ee.createI18n({legacy:!1,locale:"zh_cn",fallbackLocale:"zh_cn",messages:ze})),ie}function be(){return ie||Oe()}function le(){return be().global.t}ue.extend(tt),ue.extend(nt);async function lt(t,o){const{fields:n,range:r=1}=o;if(!n){const a=le();throw new Error(a("excel.fieldsMappingRequired"))}let s=new pe.Workbook;await s.xlsx.load(t);const l={};return s.eachSheet(function(a,i){const c=[];a.eachRow(function(C,p){if(p>r){let b={},y=!0;Object.keys(n).forEach(h=>{const m=C.getCell(n[h]).value;b[h]=m,m&&(y=!1)}),y||c.push(b)}}),l[a._name]=c}),s=null,l}const Ne={columnWidth:30};async function at(t,o,n=[],r={}){if(!t||!o)return;const{columnStyle:s}=r,{columnWidth:l}=Ne;o.forEach(c=>{c.width=c.width?c.width:l});const{workbook:a,worksheet:i}=rt();i.columns=o,i.addRows(n),s&&await st(a,i,s);try{const c=await a.xlsx.writeBuffer(),C=new File([c],t,{type:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"});Ie.saveAs(C)}catch(c){console.log(c)}}function rt(){const t=new pe.Workbook;t.creator="distributor System",t.lastModifiedBy="distributor System",t.created=new Date,t.modified=new Date,t.lastPrinted=new Date;const o=t.addWorksheet("Sheet1");return{workbook:t,worksheet:o}}async function st(t,o,n){const r=Object.keys(n);for(const s of r){const l=n[s],{type:a}=l;switch(a){case"IMG":await it(t,o,s);break}}}async function it(t,o,n,r){const s=o.getColumn(n),l=s.values;o.getColumn(n).width=20,o.eachRow((a,i)=>{i>1&&(a.height=40)});for(let a=0,i=l.length;a<i;a++){if(a<2)continue;let c=l[a];c&&(o.getCell(s.letter+a).value="",await ct(t,o,c,{width:100,height:50,col:s._number-1,row:a-1}))}}async function ct(t,o,n,r){const{col:s,row:l,width:a,height:i}=r,{success:c,base64:C}=await dt(n,.3);if(c){const p=t.addImage({base64:C,extension:"jpeg"});o.addImage(p,{tl:{col:s,row:l},ext:{width:a,height:i}})}}function dt(t,o=1){const n=new Image;return n.setAttribute("crossOrigin","anonymous"),n.crossOrigin="anonymous",n.src=t,new Promise((r,s)=>{n.onload=()=>{const l=document.createElement("canvas");l.width=n.width,l.height=n.height,l.getContext("2d").drawImage(n,0,0,l.width,l.height),r({success:!0,base64:l.toDataURL("image/jpeg",o)})},n.onerror=()=>{r({success:!1})}})}const ke="---";async function qe(t,o){const{fields:n,range:r=1}=o;if(!n){const a=le();throw new Error(a("excel.fieldsMappingRequired"))}let s=new pe.Workbook;await s.xlsx.load(t);const l={};return s.eachSheet(function(a,i){if(a.state=="visible"){const c=[],C=n[a._name];if(C){let p=Object.values(C).some(y=>y.includes("image")),b={};p&&(a.getImages().forEach(h=>{const{tl:m}=h.range,d=s.model.media.find(w=>w.index===h.imageId);if(d){const w=d.buffer.toString("base64"),k=`data:image/${d.extension};base64,${w}`,_=`${Math.ceil(m.row)}_${Math.ceil(m.col)}`;b[_]?b[_].push(k):b[_]=[k]}}),console.log("withImages-imageMap",b)),a.eachRow(function(y,h){if(h>r){let m={_excelRowNumber:h},d=!0;Object.keys(C).forEach(w=>{var B;let[k,_]=C[w].split(ke);const S=y.getCell(k);let T;if(_=="image"&&p){const P=S._column._number,I=`${h}_${P}`;T=b[I]||""}else S.result!=null?T=S.result:(B=S.value)!=null&&B.richText?T=S.value.richText.reduce((P,I)=>P+I.text,""):S.type==4&&S.value?T=ue(S.value).utc().format("YYYY-MM-DD HH:mm:ss"):T=S.value;T&&_=="option"&&(T=T.split(ke)[1]),m[w]=T,T&&(d=!1)}),d||c.push(m)}}),l[a._name]=c}}}),s=null,l}const ut={date:"yyyy-mm-dd",number:"0",string:"@"};async function Ae(t,o){if(!t||o.length==0)return;const n=ft(o);for(const r of n.worksheets){const{columnWidth:s}=Ne,l=o[r.name];if(!l)continue;const{tableHeader:a,tableData:i}=l;a.forEach(c=>{const{style:C={},required:p}=c,{font:b={}}=C;c.style={...C,font:{...b,color:{argb:p?"FFFF0000":void 0}}}}),r.columns=a,r.addRows(i),a.forEach(c=>{let{header:C,key:p,width:b,option:y,numFmt:h,locked:m,optionFormater:d}=c;const w=r.getColumn(p);if(w.numFmt=ut[h]||h,w.width=b||s,w.protection={locked:m===!0},y){const k=n.addWorksheet(p);k.state="hidden",d||(d=_=>`${_.label}${ke}${_.value}`),k.getColumn(1).values=y.map(d),Array(100).fill("").forEach((_,S)=>{if(S>0){const T=le();r.getCell(`${w.letter}${S}`).dataValidation={type:"list",formulae:[`${p}!$A$1:$A$${y.length}`],showErrorMessage:!0,error:T("excel.invalidInput"),errorStyle:"stop",errorMessage:T("excel.invalidOption")}}})}}),a.some(c=>c.locked)&&await r.protect("6737187214",{selectLockedCells:!0,selectUnlockedCells:!0})}try{const r=await n.xlsx.writeBuffer(),s=new File([r],t,{type:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"});Ie.saveAs(s)}catch(r){console.log(r)}}function ft(t){const o=le(),n=new pe.Workbook;return n.creator="distributor System",n.lastModifiedBy="distributor System",n.created=new Date,n.modified=new Date,n.lastPrinted=new Date,Object.keys(t).sort((s,l)=>{const a=t[s].sort??0,i=t[l].sort??0;return a-i}).forEach(s=>{let l=s,a=!1;/[\\/:*?\[\]]/g.test(s)&&(s=s.replace(/[\\/:*?\[\]]/g,""),a=!0),s.length>31&&(s=s.substring(0,31).trim(),a=!0,console.warn(o("excel.sheetNameTooLong",[l,s]))),a&&(t[s]=t[l],delete t[l]),n.addWorksheet(s)}),n}function mt(t){if(t<26)return String.fromCharCode(65+t);{const o=String.fromCharCode(65+Math.floor((t-26)/26)),n=String.fromCharCode(65+(t-26)%26);return o+n}}function ht(t){return new Promise(o=>{setTimeout(()=>{o()},t)})}function gt(t){return JSON.parse(JSON.stringify(t))}function pt(t){let o=[],n={},r=(s,l)=>Object.prototype.hasOwnProperty.call(s,l);for(const s of t){n[s.id]={...s,children:r(n,s.id)?n[s.id].children:[]};const l=n[s.id];s.pid==-1?o.push(l):(r(n,s.pid)||(n[s.pid]={children:[]}),n[s.pid].children.push(l))}return o}function Se(t,o=" "){return t?t.split(o).filter(n=>n.trim()):[]}class _e{constructor(o,n=["label","value","labelEn"]){this.list=o.map(r=>({...r,label:r[n[0]],labelEn:r[n[2]]??r[n[0]]??"",value:r[n[1]]})),this.map=new Map(this.list.map(r=>[r[n[1]],r]))}getName(o){if(!this.has(o))return"-";const n=be().global.locale,{label:r,labelEn:s}=this.map.get(o);return(n.value=="zh_cn"?r:s)??r??"-"}getTag(o){if(!this.has(o))return"info";const{tag:n="info"}=this.map.get(o);return n}getItem(o){return this.has(o)?this.map.get(o):null}getColor(o){if(!this.has(o))return null;const{color:n}=this.map.get(o);return n}has(o){return this.map.has(o)}}function yt(t,o=[],n="i18nName"){if(t.length==0)return new _e([]);if(o.length<2){const s=le();throw new Error(s("tools.keysLengthError"))}let r=t.map(s=>{let l={};return n&&(l.labelEn=s[n]),o.forEach((a,i)=>{i===0?l.label=s[a]:i===1?l.value=s[a]:l[a]=s[a]}),l});return new _e(r)}function Ct(t){return t?t.replace(/<[^>]+>/g,""):""}function bt(t){return t?(t.includes("\\\\u")&&(t=t.replace(/\\/g,"")),t.replace(/\\u[\dA-F]{4}/gi,o=>String.fromCharCode(parseInt(o.replace(/\\u/g,""),16)))):""}function wt(t,o=10){let n=1048576*o;return!(t.size>n)}function xt(t){return Array.from(10).fill(0).map((n,r)=>t+"_"+r)}function kt(t){let o={};return t.map((n,r)=>{let{key:s,option:l,type:a,optionFormater:i}=n,c=mt(r);l&&!i?o[s]=`${c}---option`:a==="image"?o[s]=`${c}---image`:o[s]=c}),o}function St(t,o){return o.split(".").reduce((n,r)=>n&&n[r],t)}const ao="",me=(t,o)=>{const n=t.__vccOpts||t;for(const[r,s]of o)n[r]=s;return n},_t=["onClick"],Pe=me({__name:"index",props:e.mergeModels({api:{type:Function},showCheckAll:{type:Boolean,default:!0},maxLimit:{type:Number,default:void 0},minLimit:{type:Number,default:void 0},optionClick:{type:Function,default:()=>{}},data:{type:Array},labelValue:{type:Object,default:()=>({label:"label",labelEn:"labelEn",value:"value"})},changeLocal:{type:Boolean,default:!1}},{modelValue:{},modelModifiers:{}}),emits:e.mergeModels(["success","change","changeAll"],["update:modelValue"]),setup(t,{emit:o}){const n=t,r=e.useAttrs(),{t:s,locale:l}=ee.useI18n(),a=e.useModel(t,"modelValue"),i=e.computed(()=>r["value-key"]!=null),c=e.ref(""),C=e.computed(()=>{if(r.remote!==void 0)return n.data;const x=Se(c.value),{data:$,labelValue:v}=n,H=$||y.value;if(x.length==0)return H;const{label:E,labelEn:ce}=v;let M=l.value=="en_us"?ce||"i18nName":E;return x.length==1?H.filter(oe=>oe[M].toLowerCase().includes(x[0].toLowerCase())):H.filter(oe=>{let de=!1;return de=x.some(xe=>oe[M].toLowerCase()==xe.toLowerCase()),de})}),p=e.computed({get(){return r.multiple==null||a.value==null?!1:a.value.length==C.value.length},set(x){return x}}),b=o,y=e.ref([]),h=async()=>{const{data:x}=await n.api();y.value=[...x],b("success",y)};n.api&&h();function m(x){b("change",x),d.value&&e.nextTick(()=>{n.optionClick&&n.optionClick(d.value),d.value=null})}const d=e.ref(null);function w(x){d.value=x}const k=n.labelValue.label.split("-"),_=x=>{if(k.length==1){if(n.changeLocal)return s(x[n.labelValue.label]);let $=l.value=="en_us"?x[n.labelValue.labelEn||"i18nName"]:x[n.labelValue.label];return $=$||x[n.labelValue.label],$+""}else{let $=[];return k.forEach(v=>{$.push(x[v])}),$.join("-")}};function S(x){let $=n.data?n.data:y.value;a.value=x?$.map(v=>i.value?v:v[n.labelValue.value]):[],e.nextTick(()=>{b("change",a.value),b("changeAll",a.value,$)})}function T(x){b("change",i.value?x:x[n.labelValue.value]),e.nextTick(()=>{n.optionClick&&n.optionClick(x)})}function B(x){const $=i.value?x:x[n.labelValue.value],v=i.value?a.value.some(H=>H[n.labelValue.value]===x[n.labelValue.value]):a.value.includes($);return!!(n.maxLimit>0&&a.value.length>=n.maxLimit&&!v||n.minLimit>0&&a.value.length===n.minLimit&&v)}function P(x){return x.map($=>({...$,label:_($),value:i.value?$:$[n.labelValue.value]}))}const I=e.ref([]),Y=n.data?n.data:y.value;I.value=P(Y),e.watch(()=>n.data?n.data:y.value,x=>{var v;const $=P(x);if($.length!==I.value.length)I.value=$;else{let H=!1;for(let E=0;E<$.length;E++)if($[E].value!==((v=I.value[E])==null?void 0:v.value)){H=!0;break}H&&(I.value=$)}},{deep:!0});const V=e.computed(()=>r.multiple!==void 0&&(n.maxLimit>0||n.minLimit>0)?I.value.map(x=>({...x,disabled:B(x)})):I.value);return(x,$)=>{const v=e.resolveComponent("el-checkbox"),H=e.resolveComponent("el-select-v2"),E=e.resolveComponent("el-option"),ce=e.resolveComponent("el-select");return e.unref(r).v2!=null?(e.openBlock(),e.createBlock(H,e.mergeProps({key:0,options:V.value,modelValue:a.value,"onUpdate:modelValue":$[1]||($[1]=M=>a.value=M)},e.unref(r),{filterable:"","collapse-tags":"","collapse-tags-tooltip":"",clearable:"",onChange:m,onClear:m}),e.createSlots({default:e.withCtx(({item:M})=>[e.createElementVNode("div",{onClick:ae=>w(M)},e.toDisplayString(M.label),9,_t)]),_:2},[e.unref(r).multiple!=null?{name:"header",fn:e.withCtx(()=>[e.renderSlot(x.$slots,"header",{},()=>[e.createVNode(v,{class:"mgl20",modelValue:p.value,"onUpdate:modelValue":$[0]||($[0]=M=>p.value=M),onChange:S},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(x.$t("quan-xuan")),1)]),_:1},8,["modelValue"])],!0)]),key:"0"}:void 0]),1040,["options","modelValue"])):(e.openBlock(),e.createBlock(ce,e.mergeProps({key:1,modelValue:a.value,"onUpdate:modelValue":$[3]||($[3]=M=>a.value=M),filterable:"","collapse-tags":"","collapse-tags-tooltip":"","filter-method":e.unref(r).remote!=null?void 0:M=>c.value=M,clearable:""},e.unref(r),{onClear:t.optionClick}),{default:e.withCtx(()=>[e.unref(r).multiple!=null&&t.showCheckAll&&t.maxLimit==null?e.renderSlot(x.$slots,"header",{key:0},()=>[e.createVNode(v,{class:"mgl20",modelValue:p.value,"onUpdate:modelValue":$[2]||($[2]=M=>p.value=M),onChange:S},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(x.$t("quan-xuan")),1)]),_:1},8,["modelValue"])],!0):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(C.value,(M,ae)=>(e.openBlock(),e.createBlock(E,{key:ae,label:_(M),disabled:e.unref(r).multiple!=null&&(t.maxLimit>0||t.minLimit>0)?B(M):!1,onClick:e.withModifiers(oe=>T(M),["stop"]),value:i.value?M:M[t.labelValue.value]},null,8,["label","disabled","onClick","value"]))),128))]),_:3},16,["modelValue","filter-method","onClear"]))}}},[["__scopeId","data-v-078a95a6"]]),so="",$t=e.defineComponent({props:{name:{tyepe:String,required:!0}}});function Vt(t,o,n,r,s,l){const a=e.resolveComponent("el-icon");return e.openBlock(),e.createBlock(a,{class:"cmp-icon"},{default:e.withCtx(()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(t.name)))]),_:1})}const $e=me($t,[["render",Vt],["__scopeId","data-v-733f9daa"]]),Et={__name:"index",emits:["ok","no"],setup(t,{emit:o}){const n=o,r=ne.debounce(()=>{n("ok")},500);function s(){n("no")}return(l,a)=>{const i=e.resolveComponent("el-popconfirm");return e.openBlock(),e.createElementBlock("span",null,[e.createVNode(i,e.mergeProps(l.$attrs,{onConfirm:e.unref(r),onCancel:s}),{reference:e.withCtx(()=>[e.renderSlot(l.$slots,"default")]),_:3},16,["onConfirm"])])}}},io="",Tt=["accept"],Lt=me({__name:"index",props:{accept:{type:String,default:".xlsx,.xls"},fields:{type:Object,default:()=>({})},fileChange:{type:Function,required:!0}},emits:["fileChange"],setup(t,{emit:o}){const n=t,r=e.ref(null),s=e.ref(!1);async function l(a){s.value=!0;let i=a.target.files[0];const c=await qe(i,n.fields).catch(()=>{s.value=!1}).finally(()=>{r.value.value=null});await n.fileChange(c).finally(()=>{s.value=!1})}return(a,i)=>{const c=e.resolveComponent("el-button");return e.openBlock(),e.createElementBlock("span",null,[e.createVNode(c,e.mergeProps({type:"primary",loading:s.value,class:"mgr10",onClick:i[0]||(i[0]=C=>r.value.click())},a.$attrs),{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(a.$t("dao-ru")),1)],!0)]),_:3},16,["loading"]),e.createElementVNode("input",{onChange:l,ref_key:"input",ref:r,accept:t.accept,style:{position:"absolute",width:"0px",height:"0px",opacity:"0"},type:"file"},null,40,Tt)])}}},[["__scopeId","data-v-f5e86876"]]);function Ve(t){let o={};return t.forEach(n=>{const{key:r,type:s,option:l={},value:a,dateType:i="date"}=n;if(r)if(s=="input"&&(l!=null&&l.multiple))o[r]=Se(a);else if(s=="date")if(i.includes("range")){const[c,C]=r;let[p,b]=a||[];p&&i=="daterange"&&(p=ue(p).format("YYYY-MM-DD 00:00:00"),b=ue(b).format("YYYY-MM-DD 23:59:59")),o[c]=p,o[C]=b}else o[r]=a;else o[r]=a}),o}const uo="",It={key:0},Ft={class:"btns"},vt={class:"left"},Dt={class:"right"},je=me({__name:"index",props:{form:{type:Object,required:!0}},emits:["confirm","reset","visibleChange"],setup(t,{expose:o,emit:n}){const r=t,s=n,l=e.ref(!0),a=e.ref(null),{t:i}=ee.useI18n(),c={datetimerange:"YYYY-MM-DD HH:mm:ss",daterange:"YYYY-MM-DD",month:"YYYY-MM"},C=e.computed(()=>l.value?i("guan-bi"):i("zhan-kai"));function p(){s("confirm")}function b(k){k.option.onClear&&k.option.onClear(),s("confirm")}function y(){s("reset")}function h(){s("confirm")}function m(){return Ve(r.form.items)}const d=ne.cloneDeep(r.form.items);function w(){r.form.items.forEach(k=>{const _=d.find(S=>S.key==k.key);_&&(k.value=_.value)})}return o({getPrm:m,reset:w}),(k,_)=>{const S=e.resolveComponent("el-input"),T=e.resolveComponent("el-date-picker"),B=e.resolveComponent("el-form-item"),P=e.resolveComponent("el-form"),I=e.resolveComponent("el-link"),Y=e.resolveComponent("el-button");return e.openBlock(),e.createElementBlock("div",{class:"searchBar-container mgt10 mgb10",onKeydown:e.withKeys(p,["enter"])},[e.createElementVNode("div",{class:"searchBar",style:e.normalizeStyle({height:l.value?"auto":"42px"})},[e.createVNode(P,{inline:"",model:t.form.data},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.form.items.filter(V=>!V.hidden),V=>(e.openBlock(),e.createElementBlock(e.Fragment,{key:V.key},[V.type=="br"?(e.openBlock(),e.createElementBlock("br",It)):(e.openBlock(),e.createBlock(B,{key:1,label:V.name},{default:e.withCtx(()=>{var x,$;return[V.type==="input"?(e.openBlock(),e.createBlock(S,{key:0,modelValue:V.value,"onUpdate:modelValue":v=>V.value=v,class:e.normalizeClass(((x=V.option)==null?void 0:x.class)||"w150"),placeholder:k.$t("qing-shu-ru"),clearable:""},null,8,["modelValue","onUpdate:modelValue","class","placeholder"])):V.type==="custom"?(e.openBlock(),e.createBlock(e.resolveDynamicComponent(V.render),{key:1})):e.createCommentVNode("",!0),V.type==="select"?(e.openBlock(),e.createBlock(Pe,e.mergeProps({key:2,class:(($=V.option)==null?void 0:$.class)||"w150",modelValue:V.value,"onUpdate:modelValue":v=>V.value=v},{ref_for:!0},V.option,{onChange:p,onClear:v=>b(V)}),null,16,["class","modelValue","onUpdate:modelValue","onClear"])):e.createCommentVNode("",!0),V.type==="date"?(e.openBlock(),e.createBlock(T,e.mergeProps({key:3,class:{datetimerange:"w300",daterange:"w200"}[V.dateType]||"w100",modelValue:V.value,"onUpdate:modelValue":v=>V.value=v,"value-format":c[V.dateType]||"YYYY-MM-DD",type:V.dateType||"date",onFocus:v=>a.value=V,onChange:v=>h(),placeholder:k.$t("qing-xuan-ze"),"start-placeholder":k.$t("kai-shi-shi-jian"),"end-placeholder":k.$t("jie-shu-shi-jian")},{ref_for:!0},V.option),null,16,["class","modelValue","onUpdate:modelValue","value-format","type","onFocus","onChange","placeholder","start-placeholder","end-placeholder"])):e.createCommentVNode("",!0)]}),_:2},1032,["label"]))],64))),128))]),_:1},8,["model"])],4),e.createElementVNode("div",Ft,[e.createElementVNode("div",vt,[e.renderSlot(k.$slots,"table-header-left",{},void 0,!0)]),e.createElementVNode("div",Dt,[e.createVNode(I,{underline:"never",class:"mgr10",onClick:_[0]||(_[0]=()=>{s("visibleChange",!l.value),l.value=!l.value})},{default:e.withCtx(()=>[e.createVNode($e,{name:l.value?"ArrowUp":"ArrowDown"},null,8,["name"]),e.createTextVNode(" "+e.toDisplayString(C.value),1)]),_:1}),e.createVNode(Y,{type:"primary",onClick:p},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(k.$t("shai-xuan")),1)]),_:1}),e.createVNode(Y,{type:"primary",onClick:y},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(k.$t("chong-zhi")),1)]),_:1}),e.renderSlot(k.$slots,"btn",{},void 0,!0)])])],32)}}},[["__scopeId","data-v-5c7eeed9"]]),Re={pageNoKey:"pageNo",pageSizeKey:"pageSize",totalKey:"total",defaultPageSize:10,pageSizes:[10,50,100,500],responseDataKeys:{rows:["rows","records","list"],total:["totalRows","total"]},showSearch:!1,showPage:!1,showShadow:!1,showCheckBox:!1,enableCellCopy:!0};let he={...Re};function Bt(t){he={...he,...t,responseDataKeys:{...he.responseDataKeys,...t.responseDataKeys||{}}}}function Ue(){return he}function Mt(){he={...Re}}const mo="",zt={class:"center"},Ot=me({__name:"index",props:{id:{type:String,required:!1},loading:{type:Boolean,default:!1},immediate:{type:Boolean,default:!0},searchForm:{type:Object,default:()=>({items:[],selections:[]})},api:{type:Function},data:{type:Array},tableConfig:{type:Object,default:()=>({})}},setup(t,{expose:o}){const{t:n,locale:r}=ee.useI18n(),s=Fe.useRoute(),l=Ue(),a=t,i=e.ref(!1),c=e.ref([]);a.searchForm.showSearch===void 0&&(a.searchForm.showSearch=l.showSearch),a.searchForm.showPage===void 0&&(a.searchForm.showPage=l.showPage),a.searchForm.showShadow===void 0&&(a.searchForm.showShadow=l.showShadow),a.searchForm.showCheckBox===void 0&&(a.searchForm.showCheckBox=l.showCheckBox),a.searchForm.enableCellCopy===void 0&&(a.searchForm.enableCellCopy=l.enableCellCopy),a.searchForm.selections||(a.searchForm.selections=[]);const C=e.computed(()=>{const f=s.path.replace(/\//g,"-").replace(/^-/,"")||"default-table";return a.id?`listPageId-${f}-${a.id}`:`listPageId-${f}`}),p=ne.cloneDeep(a.searchForm.items),b=a.searchForm.pageNoKey||l.pageNoKey,y=a.searchForm.pageSizeKey||l.pageSizeKey,h=e.reactive({[b]:1,[y]:a.searchForm.defaultPageSize||l.defaultPageSize,total:0}),m=e.ref(null),d=e.ref(null),w=e.ref(450),k=ne.debounce(()=>{e.nextTick(()=>{if(!d.value)return;const u=d.value.getBoundingClientRect(),L=window.innerHeight,D=u.top,q=100,U=L-D-q,z=200;w.value=Math.max(U,z)})},100),_=()=>{k()},S=()=>{if(!a.searchForm.enableCellCopy&&!l.enableCellCopy)return!1;const f=m.value;if(!f||!f.$el)return!1;const u=f.$el;return u.classList.add("cell-copy-enabled"),u.setAttribute("tabindex","-1"),u.removeEventListener("mousedown",M),u.removeEventListener("mousemove",ae),u.removeEventListener("mouseup",oe),u.removeEventListener("keydown",Te),u.addEventListener("mousedown",M),u.addEventListener("mousemove",ae),u.addEventListener("mouseup",oe),u.addEventListener("keydown",Te),!0};e.onMounted(()=>{k(),window.addEventListener("resize",_),(a.searchForm.enableCellCopy||l.enableCellCopy)&&(document.addEventListener("mouseup",Ze),document.addEventListener("mousedown",Ge),setTimeout(()=>{S()},500))}),e.onUpdated(()=>{(a.searchForm.enableCellCopy||l.enableCellCopy)&&setTimeout(()=>{S()},500)}),e.onUnmounted(()=>{if(window.removeEventListener("resize",_),a.searchForm.enableCellCopy||l.enableCellCopy){document.removeEventListener("mouseup",Ze),document.removeEventListener("mousedown",Ge);const f=m.value;if(f&&f.$el){const u=f.$el;u.removeEventListener("mousedown",M),u.removeEventListener("mousemove",ae),u.removeEventListener("mouseup",oe),u.removeEventListener("keydown",Te)}}});const T=e.computed(()=>H.value.height||w.value);let B;async function P(f){const{dataFormat:u}=a.tableConfig;f[b]!=1&&(f.nextSearchAfter=B),i.value=!0;const{code:L,data:D={}}=await a.api(f).finally(()=>{i.value=!1,a.searchForm.selections=[]});if(L==200){let q=[];for(const z of l.responseDataKeys.rows)if(D[z]){q=D[z];break}let U=0;for(const z of l.responseDataKeys.total)if(D[z]!==void 0){U=D[z];break}c.value=u?u(q):q,h.total=U,B=D.nextSearchAfter,(a.searchForm.enableCellCopy||l.enableCellCopy)&&e.nextTick(()=>{setTimeout(()=>{S()},100)})}}function I(f={}){const{searchData:u=()=>({})}=a.tableConfig,L=u();P({...h,...Ve(a.searchForm.items),...f,...L})}function Y(){const{reset:f}=a.tableConfig;f&&f(),a.searchForm.items.forEach(u=>{const L=p.find(D=>ne.isArray(u.key)&&ne.isArray(D.key)?u.key.join(",")==D.key.join(","):D.key==u.key);L&&(u.value=L.value)}),I()}a.api&&a.immediate&&I();function V(){return{...h,...Ve(a.searchForm.items)}}const x=()=>{const f=m.value;f&&f.clearSort()},$=e.reactive({storage:!0}),v=e.reactive({drag:!0,resizable:!0,maxFixedSize:0}),H=e.computed(()=>{const{customConfig:f,columnConfig:u,...L}=a.tableConfig;return{headerAlign:"left",align:"center",customConfig:{...$,...f},columnConfig:{...v,...u},"virtual-x-config":{enabled:!1,scrollToLeftOnChange:!1},"virtual-y-config":{enabled:!0,gt:100},...L}}),E=e.reactive({isSelecting:!1,startCell:null,endCell:null,selectedCells:[]}),ce=f=>{const u=f.closest(".vxe-body--column");if(!u||u.classList.contains("col--checkbox")||u.classList.contains("col--seq"))return null;const L=u.closest(".vxe-body--row");if(!L)return null;const D=m.value;if(!D)return null;let q=-1;const U=L.getAttribute("data-rowid");if(U!=null)q=parseInt(U,10);else{const O=L.parentElement;q=Array.from(O.querySelectorAll(".vxe-body--row")).indexOf(L)}if(q<0)return null;let z=-1;const Q=u.getAttribute("data-colid");if(Q&&(z=D.getColumns().findIndex(F=>F.id===Q)),z<0){const F=Array.from(L.querySelectorAll(".vxe-body--column")).indexOf(u),j=!!u.closest(".vxe-table--fixed-left-wrapper"),K=!!u.closest(".vxe-table--fixed-right-wrapper"),A=D.getColumns();if(j){const W=A.filter(R=>R.fixed==="left");F<W.length&&(z=A.indexOf(W[F]))}else if(K){const W=A.filter(R=>R.fixed==="right");F<W.length&&(z=A.indexOf(W[F]))}else{const W=a.searchForm.showCheckBox?1:0;z=A.filter(G=>G.fixed==="left").length+F-W}}return z<0?null:{rowIndex:q,colIndex:z,cell:u}},M=f=>{const u=ce(f.target);if(!u){de();return}E.isSelecting=!0,E.startCell={rowIndex:u.rowIndex,colIndex:u.colIndex},E.endCell={...E.startCell},xe(),We()},ae=f=>{if(!E.isSelecting)return;const u=ce(f.target);u&&(E.endCell={rowIndex:u.rowIndex,colIndex:u.colIndex},xe(),We())},oe=()=>{E.isSelecting=!1},de=()=>{E.selectedCells=[],E.startCell=null,E.endCell=null;const f=m.value;if(!f)return;f.$el.querySelectorAll(".cell-selected, .cell-border-top, .cell-border-right, .cell-border-bottom, .cell-border-left").forEach(L=>{L.classList.remove("cell-selected","cell-border-top","cell-border-right","cell-border-bottom","cell-border-left")})},xe=()=>{if(!E.startCell||!E.endCell){E.selectedCells=[];return}const f=E.startCell.rowIndex,u=E.endCell.rowIndex,L=E.startCell.colIndex,D=E.endCell.colIndex,q=Math.min(f,u),U=Math.max(f,u),z=Math.min(L,D),Q=Math.max(L,D);E.selectedCells=[];for(let O=q;O<=U;O++)for(let F=z;F<=Q;F++)E.selectedCells.push({rowIndex:O,colIndex:F})},We=()=>{e.nextTick(()=>{const f=m.value;if(!f)return;const u=f.$el;if(u.querySelectorAll(".cell-selected, .cell-border-top, .cell-border-right, .cell-border-bottom, .cell-border-left").forEach(j=>{j.classList.remove("cell-selected","cell-border-top","cell-border-right","cell-border-bottom","cell-border-left")}),E.selectedCells.length===0)return;const L=f.getColumns(),D=E.selectedCells.map(j=>j.rowIndex),q=E.selectedCells.map(j=>j.colIndex),U=Math.min(...D),z=Math.max(...D),Q=Math.min(...q),O=Math.max(...q),F=[u.querySelector(".vxe-table--body-wrapper tbody"),u.querySelector(".vxe-table--fixed-left-wrapper tbody"),u.querySelector(".vxe-table--fixed-right-wrapper tbody")].filter(Boolean);E.selectedCells.forEach(({rowIndex:j,colIndex:K})=>{const A=L[K];if(!A)return;const W=A.fixed==="left",R=A.fixed==="right";for(const G of F){const ge=G.querySelectorAll(".vxe-body--row")[j];if(!ge)continue;const re=Array.from(ge.querySelectorAll(".vxe-body--column"));let N=null;if(W&&G.closest(".vxe-table--fixed-left-wrapper")){const J=L.filter(X=>X.fixed==="left").indexOf(A);N=re[J]}else if(R&&G.closest(".vxe-table--fixed-right-wrapper")){const J=L.filter(X=>X.fixed==="right").indexOf(A);N=re[J]}else if(!W&&!R&&G.closest(".vxe-table--body-wrapper")){const se=a.searchForm.showCheckBox?1:0,J=L.filter(Le=>Le.fixed==="left").length,X=K-J;N=re[X+se]}if(N&&!N.classList.contains("col--checkbox")&&!N.classList.contains("col--seq")){N.classList.add("cell-selected"),j===U&&N.classList.add("cell-border-top"),j===z&&N.classList.add("cell-border-bottom"),K===Q&&N.classList.add("cell-border-left"),K===O&&N.classList.add("cell-border-right");break}}})})},to=async()=>{if(E.selectedCells.length===0)return;const f=m.value;if(!f)return;const u=f.$el,L=f.getColumns(),D=[...new Set(E.selectedCells.map(O=>O.rowIndex))].sort((O,F)=>O-F),q=[...new Set(E.selectedCells.map(O=>O.colIndex))].sort((O,F)=>O-F),U=[u.querySelector(".vxe-table--body-wrapper tbody"),u.querySelector(".vxe-table--fixed-left-wrapper tbody"),u.querySelector(".vxe-table--fixed-right-wrapper tbody")].filter(Boolean),z=[];D.forEach(O=>{const F=[];q.forEach(j=>{const K=L[j];if(!K){F.push("");return}const A=K.fixed==="left",W=K.fixed==="right";let R="";for(const G of U){const ge=G.querySelectorAll(".vxe-body--row")[O];if(!ge)continue;const re=Array.from(ge.querySelectorAll(".vxe-body--column"));let N=null;if(A&&G.closest(".vxe-table--fixed-left-wrapper")){const J=L.filter(X=>X.fixed==="left").indexOf(K);N=re[J]}else if(W&&G.closest(".vxe-table--fixed-right-wrapper")){const J=L.filter(X=>X.fixed==="right").indexOf(K);N=re[J]}else if(!A&&!W&&G.closest(".vxe-table--body-wrapper")){const se=a.searchForm.showCheckBox?1:0,J=L.filter(Le=>Le.fixed==="left").length,X=j-J;N=re[X+se]}if(N&&!N.classList.contains("col--checkbox")&&!N.classList.contains("col--seq")){R=N.innerText||N.textContent||"",R=R.trim(),R=R.replace(/\n/g," ").replace(/\s+/g," ");break}}F.push(R)}),z.push(F.join(" "))});const Q=z.join(`
|
|
2
|
+
`);try{await navigator.clipboard.writeText(Q)}catch(O){console.error("复制失败:",O)}},Te=f=>{!a.searchForm.enableCellCopy&&!l.enableCellCopy||((f.ctrlKey||f.metaKey)&&f.key==="c"?E.selectedCells.length>0&&(f.preventDefault(),f.stopPropagation(),to()):f.key==="Escape"&&de())},Ze=()=>{E.isSelecting=!1},Ge=f=>{const u=m.value;if(!u||!u.$el)return;u.$el.contains(f.target)||de()},oo=f=>{h[b]=f,I()},no=f=>{h[y]=f,h[b]=1,I()};function Je(){const f=m.value.getCheckboxRecords();a.searchForm.selections=f}const Xe=f=>{const u=m.value;if(u){u.toggleCheckboxRow(f);const L=m.value.getCheckboxRecords();a.searchForm.selections=L}};return o({tableRef:m,getList:I,getPrm:V,clearSort:x,calculateTableHeight:k}),(f,u)=>{var O;const L=e.resolveComponent("el-button"),D=e.resolveComponent("el-checkbox"),q=e.resolveComponent("el-text"),U=e.resolveComponent("vxe-column"),z=e.resolveComponent("VxeTable"),Q=e.resolveComponent("el-pagination");return e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass({box:t.searchForm.showShadow})},[t.searchForm.showSearch?(e.openBlock(),e.createBlock(je,{key:0,form:t.searchForm,onReset:Y,onConfirm:u[1]||(u[1]=F=>I()),onVisibleChange:e.unref(k)},{btn:e.withCtx(()=>[u[3]||(u[3]=e.createElementVNode("span",{class:"mgr10"},null,-1)),e.renderSlot(f.$slots,"search-bar-btn",{},void 0,!0),e.createVNode(L,{class:"mgl10",round:"",onClick:u[0]||(u[0]=F=>m.value.openCustom())},{default:e.withCtx(()=>[e.createVNode($e,{name:"Tools"})]),_:1})]),_:3},8,["form","onVisibleChange"])):e.createCommentVNode("",!0),e.renderSlot(f.$slots,"table-header-left",{},void 0,!0),e.createElementVNode("div",{ref_key:"tableContentRef",ref:d},[e.createVNode(z,e.mergeProps({id:C.value,ref_key:"tableRef",ref:m,loading:t.loading||i.value,data:t.api?c.value:t.data,border:""},H.value,{height:T.value,onCheckboxChange:Je,onCheckboxAll:Je,onSortChange:(O=H.value["sort-config"])==null?void 0:O.sortChange}),{default:e.withCtx(()=>[t.searchForm.showCheckBox==null||t.searchForm.showCheckBox?(e.openBlock(),e.createBlock(U,{key:0,type:"checkbox",width:e.unref(r)=="zh_cn"?80:150,title:f.$t("xu-hao"),fixed:"left"},{checkbox:e.withCtx(({rowIndex:F,row:j,checked:K,disabled:A,indeterminate:W})=>[e.createElementVNode("div",zt,[K?(e.openBlock(),e.createBlock(D,{key:0,checked:!0,disabled:A,size:"default",onClick:e.withModifiers(R=>!A&&Xe(j),["stop"])},null,8,["disabled","onClick"])):(e.openBlock(),e.createBlock(D,{key:1,disabled:A,checked:!1,size:"default",onClick:e.withModifiers(R=>!A&&Xe(j),["stop"])},null,8,["disabled","onClick"])),e.createVNode(q,{type:"info",class:"mgl5"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(F+1),1)]),_:2},1024)])]),_:1},8,["width","title"])):e.createCommentVNode("",!0),e.renderSlot(f.$slots,"default",{},void 0,!0)]),_:3},16,["id","loading","data","height","onSortChange"])],512),t.searchForm.showPage?(e.openBlock(),e.createBlock(Q,{key:1,"current-page":h[e.unref(b)],"onUpdate:currentPage":u[2]||(u[2]=F=>h[e.unref(b)]=F),class:"myPagination mgt10",background:"",layout:"total, sizes, prev, pager, next",total:h.total,"page-size":h[e.unref(y)],"page-sizes":t.searchForm.pageSizes||e.unref(l).pageSizes,onCurrentChange:oo,onSizeChange:no},null,8,["current-page","total","page-size","page-sizes"])):e.createCommentVNode("",!0)],2)}}},[["__scopeId","data-v-c022c16d"]]),Nt={__name:"index",props:{sheetsConfig:{type:Object,required:!0},fileName:{type:String,required:!0}},setup(t){const o=t;function n(){Ae(o.fileName,o.sheetsConfig)}return(r,s)=>{const l=e.resolveComponent("el-link");return e.openBlock(),e.createBlock(l,e.mergeProps({type:"primary",underline:"never"},r.$attrs,{onClick:n}),{default:e.withCtx(()=>[e.renderSlot(r.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(r.$t("xia-zai-dao-ru-mo-ban")),1)])]),_:3},16)}}},qt={mounted(t,o){o.value&&Ye(t)},updated(t,o){o.value?Ye(t):He(t)},beforeUnmount(t){He(t)}};async function Ye(t){await y();const o=t.querySelector(".el-dialog");if(!o)return;const n=t.querySelector(".el-dialog__header"),r=t.querySelector(".el-overlay");r.style.cssText+="overflow: hidden;",n.style.cursor="move";let s=!1,l={window:{width:0,height:0},dialog:{x:0,y:0,width:0,height:0,marginTop:""},mouse:{x:0,y:0},drag:{x:0,y:0}};n.addEventListener("mousedown",c),document.addEventListener("mousemove",C),document.addEventListener("mouseup",p),window.addEventListener("resize",b);function a(){l.mouse.x-l.drag.x>=l.dialog.x&&(l.drag.x=l.mouse.x-l.dialog.x),l.drag.x-l.mouse.x>=l.window.width-(l.dialog.x+l.dialog.width)&&(l.drag.x=l.mouse.x+l.window.width-l.dialog.x-l.dialog.width),l.mouse.y-l.drag.y>=l.dialog.y&&(l.drag.y=l.mouse.y-l.dialog.y),l.drag.y-l.mouse.y>=l.window.height-(l.dialog.y+l.dialog.height)&&(l.drag.y=l.mouse.y+l.window.height-l.dialog.y-l.dialog.height),i()}function i(){let h=l.drag.y-l.mouse.y+l.dialog.y,m=l.drag.x-l.mouse.x+l.dialog.x;o.style.cssText+=`position: absolute; top: calc(${h}px - ${l.dialog.marginTop}); left: ${m}px;`}function c(h){h.button===0&&(l.window={width:document.body.clientWidth,height:document.body.clientHeight},l.dialog=o.getBoundingClientRect(),l.dialog.marginTop=window.getComputedStyle(o).marginTop,l.mouse={x:h.clientX,y:h.clientY},s=!0)}function C(h){s&&(l.drag={x:h.clientX,y:h.clientY},r.style.userSelect="none",a())}function p(h){r.style.userSelect="auto",s=!1}function b(h){}function y(){return new Promise((h,m)=>{setTimeout(()=>{h()},500)})}t.__mouseDown__=c,t.__mouseUp__=p,t.__mouseMove__=C,t.__sizeChange__=b}function He(t){document.removeEventListener("mousedown",t.__mouseDown__),document.removeEventListener("mousemove",t.__mouseMove__),document.removeEventListener("mouseup",t.__mouseUp__),window.removeEventListener("resize",t.__sizeChange__)}const go="",At={key:0,class:"drawer-btn"},Pt={key:1},jt={__name:"index",props:{layer:{type:Object,default:()=>({show:!1,type:"layer",title:"",showButton:!1}),required:!0},loading:{type:Boolean,default:!1}},emits:["confirm"],setup(t,{emit:o}){const n=t,r=o,{t:s}=ee.useI18n(),l=ne.debounce(()=>{r("confirm")},300);async function a(){n.layer.type=="drawer"?n.layer.onClose?n.layer.onClose():n.layer.closeConfirm?await Z.ElMessageBox.confirm(s("que-ding-guan-bi-ma"),{confirmButtonText:s("que-ding"),cancelButtonText:s("qu-xiao"),type:"warning"}).catch(()=>{})=="confirm"&&(n.layer.show=!1):n.layer.show=!1:n.layer.show=!1}return(i,c)=>{const C=e.resolveComponent("el-button"),p=e.resolveComponent("el-drawer"),b=e.resolveComponent("el-dialog");return t.layer.type?(e.openBlock(),e.createBlock(p,{key:0,modelValue:t.layer.show,"onUpdate:modelValue":c[0]||(c[0]=y=>t.layer.show=y),size:t.layer.width||"100%",title:t.layer.title,direction:"rtl","append-to-body":"","before-close":a,class:"drawer-content"},{default:e.withCtx(()=>[e.renderSlot(i.$slots,"default"),c[2]||(c[2]=e.createElementVNode("p",{class:"mgt50"},null,-1)),t.layer.showButton?(e.openBlock(),e.createElementBlock("div",At,[e.renderSlot(i.$slots,"btn",{},()=>[e.createVNode(C,{onClick:a},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.$t("qu-xiao")),1)]),_:1}),e.createVNode(C,{type:"primary",loading:t.loading,onClick:e.unref(l)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.$t("ti-jiao")),1)]),_:1},8,["loading","onClick"])])])):e.createCommentVNode("",!0)]),_:3},8,["modelValue","size","title"])):e.withDirectives((e.openBlock(),e.createElementBlock("div",Pt,[e.createVNode(b,{"close-on-click-modal":!1,modelValue:t.layer.show,"onUpdate:modelValue":c[1]||(c[1]=y=>t.layer.show=y),title:t.layer.title,width:t.layer.width||500,center:""},e.createSlots({default:e.withCtx(()=>[e.renderSlot(i.$slots,"default")]),_:2},[t.layer.showButton?{name:"footer",fn:e.withCtx(()=>[e.renderSlot(i.$slots,"btn",{},()=>[e.createVNode(C,{onClick:a},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.$t("qu-xiao")),1)]),_:1}),e.createVNode(C,{type:"primary",onClick:e.unref(l)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.$t("ti-jiao")),1)]),_:1},8,["onClick"])])]),key:"0"}:void 0]),1032,["modelValue","title","width"])])),[[e.unref(qt),t.layer.show]])}}};function Rt(t,o={}){const n=le(),r={inForm:!0,required:!0,...o},s={phone:/^1(3[0-9]|4[01456879]|5[0-35-9]|6[2567]|7[0-8]|8[0-9]|9[0-35-9])\d{8}$/,password:/(?=.*\d)(?=.*[a-zA-Z])(?=.*[^a-zA-Z0-9]).{8,12}/,email:/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/}[t],{inForm:l,value:a,required:i,msg:c=n("validate.invalidInput")}=r;return l?function(C,p,b){if(i){s.test(p)?b():b(new Error(c));return}p&&!s.test(p)?b(new Error(c)):b()}:s.test(a)}class Ut{constructor(o={}){this.config={clientCode:o.clientCode||"one-portal",casServerUrl:`https://one-portal${o.isTest?"-test":""}.joy-group.com/api`,casPortalUrl:`https://one-portal${o.isTest?"-test":""}.joy-group.com`,serviceUrl:o.serviceUrl||window.location.origin+"/cas/callback",tokenKey:o.tokenKey||"one_portal_token",userKey:o.userKey||"one_portal_user",debug:o.debug||!1,autoLogin:o.autoLogin!==!1,loginCallback:o.loginCallback||null,logoutCallback:o.logoutCallback||null,errorCallback:o.errorCallback||null},this.token=null,this.user=null,this.init()}init(){this.log("OnePortal CAS SDK 初始化中..."),this.loadFromStorage();const n=new URLSearchParams(window.location.search).get("ticket");this.isLoggedIn()&&this.config.loginCallback?this.config.loginCallback(this.user,this.token):n?(this.log("检测到ST票据:",n),this.validateTicket(n)):this.config.autoLogin&&!this.isLoggedIn()&&(this.log("用户未登录,准备跳转到CAS登录页面"),this.login())}loadFromStorage(){try{this.token=localStorage.getItem(this.config.tokenKey);const o=localStorage.getItem(this.config.userKey);o&&(this.user=JSON.parse(o)),this.log("从本地存储加载数据:",{token:!!this.token,user:!!this.user})}catch(o){this.log("加载本地存储数据失败:",o)}}saveToStorage(){try{this.token&&localStorage.setItem(this.config.tokenKey,this.token),this.user&&localStorage.setItem(this.config.userKey,JSON.stringify(this.user)),this.log("数据已保存到本地存储")}catch(o){this.log("保存到本地存储失败:",o)}}clearStorage(){try{localStorage.removeItem(this.config.tokenKey),localStorage.removeItem(this.config.userKey),this.log("本地存储已清除")}catch(o){this.log("清除本地存储失败:",o)}}isLoggedIn(){return!!(this.token&&this.user)}getUser(){return this.user}getToken(){return this.token}login(){const o=`${this.config.casPortalUrl}?appCode=${this.config.clientCode}&redirectUrl=${encodeURIComponent(this.config.serviceUrl)}`;this.log("跳转到CAS登录页面:",o),window.location.href=o}async validateTicket(o){try{this.log("验证ST票据:",o);const n=await fetch(`${this.config.casServerUrl}/auth/validateST?ticket=${o}`,{method:"GET",headers:{"Content-Type":"application/json"}});if(!n.ok)throw new Error(`HTTP ${n.status}: ${n.statusText}`);const r=await n.json();if(r.success&&r.data)return this.token=r.data.token,this.user=r.data.user,this.saveToStorage(),this.clearTicketFromUrl(),this.log("ST票据验证成功,用户登录成功:",this.user),this.config.loginCallback&&this.config.loginCallback(this.user,this.token),!0;throw new Error(r.message||"ST票据验证失败")}catch(n){return this.log("ST票据验证失败:",n),this.handleError(n),!1}}clearTicketFromUrl(){const o=new URL(window.location);o.searchParams.delete("ticket"),window.history.replaceState({},document.title,o.toString())}async logout(o=!0){try{if(this.log("用户登出"),this.token)try{await fetch(`${this.config.casServerUrl}/auth/logout`,{method:"POST",headers:{AppId:this.config.clientCode,Authorization:`Bearer ${this.token}`,"Content-Type":"application/json"}})}catch(n){this.log("调用服务端登出接口失败:",n)}this.token=null,this.user=null,this.clearStorage(),this.config.logoutCallback&&this.config.logoutCallback(),o&&this.login()}catch(n){this.log("登出失败:",n),this.handleError(n)}}async request(o,n={}){const r={headers:{"Content-Type":"application/json",...n.headers},...n};r.headers.appId=this.config.clientCode,this.token&&(r.headers.Authorization=`Bearer ${this.token}`);try{const s=await fetch(o,r);return s.status===401?(this.log("Token已过期,需要重新登录"),this.logout(),null):s}catch(s){throw this.log("请求失败:",s),s}}async fetchUserInfo(){try{const o=await this.request(`${this.config.casServerUrl}/auth/user`);if(o&&o.ok){const n=await o.json();if(n.success&&n.data)return this.user=n.data,this.saveToStorage(),this.user}return null}catch(o){return this.log("获取用户信息失败:",o),null}}async refreshToken(){this.log("Token刷新功能暂未实现")}handleError(o){this.log("发生错误:",o),this.config.errorCallback&&this.config.errorCallback(o)}log(...o){this.config.debug&&console.log("[OnePortal CAS SDK]",...o)}checkLoginStatus(){return!this.isLoggedIn()&&this.config.autoLogin?(this.login(),!1):this.isLoggedIn()}setConfig(o,n){this.config[o]=n}getConfig(o){return this.config[o]}}function Yt(t,o={}){const r=Object.assign({manual:!1,log:!1,params:null,format:null},o),{manual:s,log:l,params:a={},cb:i,format:c}=r,C=e.ref([]),p=e.ref(!1),b=y=>{const h=y||a;p.value=!0,t(h).then(m=>{const{code:d,data:w,msg:k}=m;if(i){const{records:_,rows:S}=w||{},T=_||S?_||S:w;C.value=Ee(T,c),i(m)}if(w){if(w.records!=null||w.rows!=null){const{records:_,rows:S,total:T=0}=w||{};h&&h.total!=null&&(a.total=parseInt(T)),C.value=Ee(_||S||[],c)}else C.value=Ee(w,c);l&&console.log("useRequest-res",C.value)}}).catch(m=>{i&&(console.log("useRequestErr",m),i({code:500}))}).finally(()=>{p.value=!1})};return s||b(),[p,C,b]}function Ht(t){const o=e.ref(t),n=e.ref(""),r=e.ref("");return e.watch(o,s=>{const l=s||["",""];n.value=l[0],r.value=l[1]}),[o,n,r]}function Kt(t){return Object.prototype.toString.call(t).slice(8,-1).toLowerCase()}function Ee(t,o){if(!o)return t;if(t instanceof Array)return t.map(r=>{let s={};return o.forEach(l=>s[l]=r[l]),s});let n={};return o.forEach(r=>n[r]=t[r]),n}function Wt(t,o=[]){const{locale:n}=ee.useI18n(),r=e.ref(t());return e.watch([n,...o],()=>{r.value=t()},{immediate:!0}),r}function Zt(t,o="zh_cn",n="en_us"){if(!t)return"-";const r={en_us:n,zh_cn:o},l=be().global.locale.value;return t[r[l]]||t[o]||"-"}function Gt(t,o){let n=te.mapState;return typeof t=="string"&&t.length>0&&(n=te.createNamespacedHelpers(t).mapState),Ke(o,n)}function Jt(t,o){let n=te.mapGetters;return typeof t=="string"&&t.length>0&&(n=te.createNamespacedHelpers(t).mapGetters),Ke(o,n)}function Xt(t,o){let n=te.mapActions;return typeof t=="string"&&t.length>0&&(n=te.createNamespacedHelpers(t).mapActions),Qt(o,n)}function Ke(t,o){const n=te.useStore(),r=o(t),s={};return Object.keys(r).forEach(l=>{const a=r[l].bind({$store:n});s[l]=e.computed(a)}),s}function Qt(t,o){const n=te.useStore(),r=o(t),s={};return Object.keys(r).forEach(l=>{s[l]=r[l].bind({$store:n})}),s}function we(t){return typeof t=="function"||Object.prototype.toString.call(t)==="[object Object]"&&!e.isVNode(t)}function eo(){fe.VxeUI.renderer.add("Enum",{renderTableDefault(t,o){let n;if([null,void 0].includes(o.row[o.column.field]))return"-";const r=o.row[o.column.field];if(t.type=="tag"){let s;return e.createVNode(e.resolveComponent("el-text"),{type:t.enum.getTag(r)},we(s=t.enum.getName(r))?s:{default:()=>[s]})}return e.createVNode(e.resolveComponent("el-text"),null,we(n=t.enum.getName(r))?n:{default:()=>[n]})}}),fe.VxeUI.renderer.add("InputNumber",{renderTableDefault(t,o){return e.createVNode(Z.ElInputNumber,e.mergeProps({modelValue:o.row[o.column.field],"onUpdate:modelValue":n=>o.row[o.column.field]=n},t.props,{"step-strictly":!0,"value-on-clear":0}),null)}}),fe.VxeUI.renderer.add("TrueFalse",{renderTableDefault(t,o){const{locale:n}=ee.useI18n();let r=n.value=="zh_cn";return e.createVNode(Z.ElText,{type:o.row[o.column.field]?"success":"danger"},{default:()=>[o.row[o.column.field]?r?"是":"YES":r?"否":"NO"]})}}),fe.VxeUI.renderer.add("I18n",{renderTableDefault(t,o){const{locale:n}=ee.useI18n();let r=n.value=="zh_cn"?o.column.field:t.fieldEn;return o.row[r]||o.row[o.column.field]}}),fe.VxeUI.renderer.add("Link",{renderTableDefault(t,o){let n=o.column.field;const r=Fe.useRouter(),{multiple:s,to:l,openType:a="system"}=t,i=o.row[n];function c(C,p){a=="blank"?window.open(C):r.push({path:C,query:{[n]:p}})}if(s){const C=(i==null?void 0:i.split(","))||[];return C.map((p,b)=>e.createVNode("span",null,[e.createVNode(Z.ElLink,{underline:"never",type:"primary",onclick:()=>c(a=="stystem"?l:p,p)},we(p)?p:{default:()=>[p]}),b<C.length-1?",":""]))}return e.createVNode(Z.ElLink,{underline:"never",type:"primary",onclick:()=>c(a=="stystem"?l:i,i)},we(i)?i:{default:()=>[i]})}})}g.CmpDictionary=Pe,g.CmpIcon=$e,g.ConfrimButton=Et,g.DownExcelTemp=Nt,g.ImportButton=Lt,g.LayOutForm=Qe,g.Layer=jt,g.ListPage=Ot,g.OnePortalCasSDK=Ut,g.SearchBar=je,g.StatusMap=_e,g._toRaw=gt,g._typeOf=Kt,g.arrToStatusMap=yt,g.arrayToTree=pt,g.checkFileSize=wt,g.creatValidator=Rt,g.createImportFields=kt,g.createListPageId=xt,g.en_us=Ce,g.exportExcel=at,g.exportExcelMuilti=Ae,g.getI18n=be,g.getI18nT=le,g.getListPageConfig=Ue,g.getLocaleValue=Zt,g.getValueBykey=St,g.importExcel=lt,g.importExcelMuilti=qe,g.messages=ze,g.registerVxeRenderers=eo,g.resetListPageConfig=Mt,g.setListPageConfig=Bt,g.setupI18n=Oe,g.sleep=ht,g.stringToArray=Se,g.stripHtmlTags=Ct,g.unicode2Str=bt,g.useActions=Xt,g.useDatePicker=Ht,g.useGetters=Jt,g.useI18nReState=Wt,g.useRequest=Yt,g.useState=Gt,g.zh_cn=ye,Object.defineProperty(g,Symbol.toStringTag,{value:"Module"})});
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.cmp-icon[data-v-078a95a6],.cmp-icon[data-v-733f9daa],.cmp-icon[data-v-f5e86876]{padding:0!important}.searchBar-container .searchBar[data-v-
|
|
1
|
+
.cmp-icon[data-v-078a95a6],.cmp-icon[data-v-733f9daa],.cmp-icon[data-v-f5e86876]{padding:0!important}.searchBar-container .searchBar[data-v-5c7eeed9]{overflow:hidden;transition:all .3s}.searchBar-container[data-v-5c7eeed9] .el-form-item{margin-bottom:8px!important}.searchBar-container .btns[data-v-5c7eeed9]{display:flex;justify-content:space-between;align-items:center}.searchBar-container .btns .left[data-v-5c7eeed9]{display:flex;align-items:center}.searchBar-container .btns .left[data-v-5c7eeed9] .el-tabs__header{margin:0}.searchBar-container .btns .right[data-v-5c7eeed9]{display:flex;align-items:center;text-align:right}[data-v-c022c16d] .vxe-table-custom-wrapper.placement--top-right.is--active{max-height:400px!important}[data-v-c022c16d] .vxe-table.cell-copy-enabled .vxe-body--column{-webkit-user-select:none;user-select:none}[data-v-c022c16d] .vxe-table.cell-copy-enabled .vxe-body--column.cell-selected{background-color:#409eff26!important;position:relative}[data-v-c022c16d] .vxe-table.cell-copy-enabled .vxe-body--column.cell-border-top:before{content:"";position:absolute;top:0;left:0;right:0;height:1px;background-color:#409eff;pointer-events:none;z-index:10}[data-v-c022c16d] .vxe-table.cell-copy-enabled .vxe-body--column.cell-border-bottom:after{content:"";position:absolute;bottom:0;left:0;right:0;height:1px;background-color:#409eff;pointer-events:none;z-index:10}[data-v-c022c16d] .vxe-table.cell-copy-enabled .vxe-body--column.cell-border-left{border-left:1px solid #409eff!important}[data-v-c022c16d] .vxe-table.cell-copy-enabled .vxe-body--column.cell-border-right{border-right:1px solid #409eff!important}.drawer-content .drawer-btn{position:absolute;box-sizing:border-box;bottom:0;width:100%;text-align:right;padding:10px 60px 20px 20px;background-color:#fff;z-index:10}
|