@nhdropshipping/y-components 1.0.45 → 1.0.46
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/components/ybutton.vue.d.ts +6 -6
- package/dist/components/ybutton.vue.d.ts.map +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +268 -268
- package/dist/index.esm.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as ge, computed as O, createElementBlock as u, openBlock as i, normalizeClass as H, createElementVNode as o, renderSlot as ie, Fragment as ae, renderList as fe, createCommentVNode as R, toDisplayString as ee, ref as T, watch as te, normalizeStyle as se, withKeys as ke, nextTick as le, onMounted as $e, onUnmounted as Be, resolveComponent as Ae, createVNode as re, Transition as be, withCtx as
|
|
2
|
-
const
|
|
1
|
+
import { defineComponent as ge, computed as O, createElementBlock as u, openBlock as i, normalizeClass as H, createElementVNode as o, renderSlot as ie, Fragment as ae, renderList as fe, createCommentVNode as R, toDisplayString as ee, ref as T, watch as te, normalizeStyle as se, withKeys as ke, nextTick as le, onMounted as $e, onUnmounted as Be, resolveComponent as Ae, createVNode as re, Transition as be, withCtx as ce, createTextVNode as xe, createBlock as Se, withModifiers as X, withDirectives as Ee, vModelText as lt, Teleport as Fe, vShow as ze, provide as ot, reactive as at, TransitionGroup as st, resolveDynamicComponent as it, mergeProps as rt, toHandlers as ut, onBeforeUnmount as dt, render as Xe } from "vue";
|
|
2
|
+
const ct = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "content" }, vt = {
|
|
3
3
|
key: 1,
|
|
4
4
|
class: "y-btn-group",
|
|
5
5
|
role: "group"
|
|
@@ -111,14 +111,14 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
111
111
|
o("span", ft, [
|
|
112
112
|
ie(C.$slots, "default", {}, void 0, !0)
|
|
113
113
|
])
|
|
114
|
-
], 10,
|
|
114
|
+
], 10, ct));
|
|
115
115
|
}
|
|
116
116
|
}), me = (e, $) => {
|
|
117
117
|
const t = e.__vccOpts || e;
|
|
118
118
|
for (const [n, m] of $)
|
|
119
119
|
t[n] = m;
|
|
120
120
|
return t;
|
|
121
|
-
}, Ne = /* @__PURE__ */ me(wt, [["__scopeId", "data-v-
|
|
121
|
+
}, Ne = /* @__PURE__ */ me(wt, [["__scopeId", "data-v-3ee2f15d"]]), kt = ["id", "name", "type", "placeholder", "autocomplete", "inputmode", "min", "max", "disabled", "required", "value"], bt = /* @__PURE__ */ ge({
|
|
122
122
|
__name: "yinput",
|
|
123
123
|
props: {
|
|
124
124
|
modelValue: { default: "" },
|
|
@@ -271,14 +271,14 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
271
271
|
if (l == null) return;
|
|
272
272
|
if (typeof l == "number")
|
|
273
273
|
return Number.isFinite(l) ? `${l}px` : void 0;
|
|
274
|
-
const
|
|
275
|
-
if (
|
|
276
|
-
return /^\d+(\.\d+)?$/.test(
|
|
274
|
+
const c = String(l).trim();
|
|
275
|
+
if (c)
|
|
276
|
+
return /^\d+(\.\d+)?$/.test(c) ? `${c}px` : c;
|
|
277
277
|
}
|
|
278
278
|
function Q(l) {
|
|
279
|
-
const
|
|
280
|
-
if (!
|
|
281
|
-
const D = parseFloat(
|
|
279
|
+
const c = q(l);
|
|
280
|
+
if (!c) return null;
|
|
281
|
+
const D = parseFloat(c);
|
|
282
282
|
return Number.isFinite(D) ? D : null;
|
|
283
283
|
}
|
|
284
284
|
const ne = O(() => {
|
|
@@ -288,29 +288,29 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
288
288
|
if (!t.searchKeyword || !t.searchFields.length)
|
|
289
289
|
return t.data;
|
|
290
290
|
const l = t.searchKeyword.toLowerCase();
|
|
291
|
-
return t.data.filter((
|
|
292
|
-
const S = r(
|
|
291
|
+
return t.data.filter((c) => t.searchFields.some((D) => {
|
|
292
|
+
const S = r(c, D);
|
|
293
293
|
return String(S).toLowerCase().includes(l);
|
|
294
294
|
}));
|
|
295
|
-
}), ve = O(() => (t.pagination, ue.value)),
|
|
295
|
+
}), ve = O(() => (t.pagination, ue.value)), de = O(() => {
|
|
296
296
|
if (!t.selectable) return !1;
|
|
297
|
-
const l = ve.value.map((
|
|
298
|
-
return l.length > 0 && l.every((
|
|
297
|
+
const l = ve.value.map((c, D) => d(c, D));
|
|
298
|
+
return l.length > 0 && l.every((c) => y.value.includes(c));
|
|
299
299
|
}), we = O(() => {
|
|
300
300
|
const l = [];
|
|
301
|
-
let
|
|
301
|
+
let c = t.selectable ? 40 : 0;
|
|
302
302
|
for (let D = 0; D < t.columns.length; D++) {
|
|
303
303
|
const S = t.columns[D];
|
|
304
304
|
if (S.fixed === "left") {
|
|
305
305
|
let _ = 80;
|
|
306
306
|
const z = Q(S.width);
|
|
307
|
-
z !== null ? _ = z : x.value[D] && (_ = Q(x.value[D]) ?? _), l.push(
|
|
307
|
+
z !== null ? _ = z : x.value[D] && (_ = Q(x.value[D]) ?? _), l.push(c), c += _;
|
|
308
308
|
}
|
|
309
309
|
}
|
|
310
310
|
return l;
|
|
311
311
|
}), N = O(() => {
|
|
312
312
|
const l = [];
|
|
313
|
-
let
|
|
313
|
+
let c = 0;
|
|
314
314
|
const D = [];
|
|
315
315
|
for (let S = t.columns.length - 1; S >= 0; S--) {
|
|
316
316
|
const _ = t.columns[S];
|
|
@@ -321,11 +321,11 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
321
321
|
}
|
|
322
322
|
}
|
|
323
323
|
for (let S = 0; S < D.length; S++)
|
|
324
|
-
l.push(
|
|
324
|
+
l.push(c), c += D[S].width;
|
|
325
325
|
return l;
|
|
326
326
|
});
|
|
327
|
-
function J(l,
|
|
328
|
-
if (
|
|
327
|
+
function J(l, c) {
|
|
328
|
+
if (c === "left") {
|
|
329
329
|
let D = 0;
|
|
330
330
|
for (let S = 0; S < l; S++)
|
|
331
331
|
t.columns[S].fixed === "left" && D++;
|
|
@@ -337,8 +337,8 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
337
337
|
return D;
|
|
338
338
|
}
|
|
339
339
|
}
|
|
340
|
-
function
|
|
341
|
-
return typeof t.rowKey == "function" ? t.rowKey(l) : l[t.rowKey] ||
|
|
340
|
+
function d(l, c) {
|
|
341
|
+
return typeof t.rowKey == "function" ? t.rowKey(l) : l[t.rowKey] || c;
|
|
342
342
|
}
|
|
343
343
|
function h(l) {
|
|
344
344
|
return M.value.has(l);
|
|
@@ -346,14 +346,14 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
346
346
|
function a(l) {
|
|
347
347
|
M.value.has(l) ? M.value.delete(l) : M.value.add(l);
|
|
348
348
|
}
|
|
349
|
-
function r(l,
|
|
350
|
-
return
|
|
349
|
+
function r(l, c) {
|
|
350
|
+
return c.split(".").reduce((D, S) => D == null ? void 0 : D[S], l);
|
|
351
351
|
}
|
|
352
|
-
function f(l,
|
|
352
|
+
function f(l, c = !1) {
|
|
353
353
|
const D = [];
|
|
354
|
-
return l.align && D.push(`text-${l.align}`), l.fixed === "right" && (D.push("col-fixed-right"),
|
|
354
|
+
return l.align && D.push(`text-${l.align}`), l.fixed === "right" && (D.push("col-fixed-right"), c && D.push("col-fixed-right-header")), l.fixed === "left" && (D.push("col-fixed-left"), c && D.push("col-fixed-left-header")), D.join(" ");
|
|
355
355
|
}
|
|
356
|
-
function k(l,
|
|
356
|
+
function k(l, c, D) {
|
|
357
357
|
const S = {}, _ = q(l.width);
|
|
358
358
|
if (_)
|
|
359
359
|
S.width = _, S.minWidth = _, S.maxWidth = _;
|
|
@@ -362,28 +362,28 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
362
362
|
S.width = z, S.minWidth = z, S.maxWidth = z;
|
|
363
363
|
}
|
|
364
364
|
if (l.fixed === "left") {
|
|
365
|
-
const z = J(
|
|
365
|
+
const z = J(c, "left"), Z = we.value[z] || 0;
|
|
366
366
|
S.left = `${Z}px`, S.zIndex = D ? `${10 + z}` : `${5 + z}`;
|
|
367
367
|
} else if (l.fixed === "right") {
|
|
368
|
-
const z = J(
|
|
368
|
+
const z = J(c, "right"), Z = N.value[z] || 0;
|
|
369
369
|
D ? S.right = `${Z - 3}px` : S.right = `${Z}px`, S.zIndex = D ? `${10 + z}` : `${5 + z}`;
|
|
370
370
|
}
|
|
371
371
|
return S;
|
|
372
372
|
}
|
|
373
|
-
function L(l,
|
|
374
|
-
const D = r(l,
|
|
375
|
-
return
|
|
373
|
+
function L(l, c) {
|
|
374
|
+
const D = r(l, c.key);
|
|
375
|
+
return c.formatter ? c.formatter(D, l) : D || "";
|
|
376
376
|
}
|
|
377
377
|
function K(l) {
|
|
378
|
-
y.value.includes(l) ? y.value = y.value.filter((
|
|
378
|
+
y.value.includes(l) ? y.value = y.value.filter((c) => c !== l) : y.value = [...y.value, l], n("select", y.value), n("update:selectedItems", y.value);
|
|
379
379
|
}
|
|
380
380
|
function P() {
|
|
381
|
-
const l = ve.value.map((
|
|
382
|
-
if (l.every((
|
|
383
|
-
y.value = y.value.filter((
|
|
381
|
+
const l = ve.value.map((c, D) => d(c, D));
|
|
382
|
+
if (l.every((c) => y.value.includes(c)))
|
|
383
|
+
y.value = y.value.filter((c) => !l.includes(c));
|
|
384
384
|
else {
|
|
385
|
-
const
|
|
386
|
-
y.value = Array.from(
|
|
385
|
+
const c = /* @__PURE__ */ new Set([...y.value, ...l]);
|
|
386
|
+
y.value = Array.from(c);
|
|
387
387
|
}
|
|
388
388
|
n("select", y.value), n("update:selectedItems", y.value);
|
|
389
389
|
}
|
|
@@ -402,15 +402,15 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
402
402
|
p.value = l, m.value = 1, n("page-size-change", l);
|
|
403
403
|
}
|
|
404
404
|
te(() => t.currentPage, (l) => {
|
|
405
|
-
const
|
|
406
|
-
m.value !==
|
|
405
|
+
const c = typeof l == "number" && l > 0 ? l : 1;
|
|
406
|
+
m.value !== c && (m.value = c);
|
|
407
407
|
}), te(() => t.pageSize, (l) => {
|
|
408
|
-
const
|
|
409
|
-
p.value !==
|
|
408
|
+
const c = typeof l == "number" && l > 0 ? l : 10;
|
|
409
|
+
p.value !== c && (p.value = c);
|
|
410
410
|
});
|
|
411
411
|
function Ce() {
|
|
412
412
|
B.value && le(() => {
|
|
413
|
-
const l = B.value.getBoundingClientRect(),
|
|
413
|
+
const l = B.value.getBoundingClientRect(), c = window.innerHeight, D = l.top, S = B.value.querySelector(".table-header"), _ = S ? S.offsetHeight : 40, z = B.value.querySelector(".ypagination"), Z = z ? z.offsetHeight : 60, he = B.value.querySelector(".bulk-bar"), pe = he ? he.offsetHeight : 0, Ke = _ + Z + pe + 20, oe = c - D - Ke, nt = Math.max(200, oe), Ze = B.value.querySelector(".table-body-wrap .table");
|
|
414
414
|
Ze && (Ze.offsetHeight > oe ? C.value = `${nt}px` : C.value = "none");
|
|
415
415
|
});
|
|
416
416
|
}
|
|
@@ -428,18 +428,18 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
428
428
|
function Re() {
|
|
429
429
|
le(() => {
|
|
430
430
|
if (!g.value) return;
|
|
431
|
-
const l = g.value,
|
|
431
|
+
const l = g.value, c = l.scrollHeight, D = l.clientHeight, S = l.scrollTop, _ = c > D + 1;
|
|
432
432
|
if (U.value.show = _, !_) return;
|
|
433
|
-
const z = 24, Z = D /
|
|
433
|
+
const z = 24, Z = D / c, he = W.value ? W.value.clientHeight : D, pe = Math.max(z, Math.floor(he * Z));
|
|
434
434
|
U.value.thumbHeight = pe;
|
|
435
|
-
const Ke = Math.max(0, he - pe), oe = Math.max(1,
|
|
435
|
+
const Ke = Math.max(0, he - pe), oe = Math.max(1, c - D);
|
|
436
436
|
U.value.thumbTop = Math.min(Ke, Math.floor(S / oe * Ke));
|
|
437
437
|
});
|
|
438
438
|
}
|
|
439
439
|
function Ve(l) {
|
|
440
440
|
if (!E || !g.value || !W.value) return;
|
|
441
441
|
l.preventDefault();
|
|
442
|
-
const
|
|
442
|
+
const c = W.value.clientHeight, D = Math.max(0, c - U.value.thumbHeight), S = g.value, _ = S.scrollHeight, z = S.clientHeight, Z = Math.max(1, _ - z), pe = (l.clientY - A) / Math.max(1, D) * Z;
|
|
443
443
|
S.scrollTop = Math.min(Z, Math.max(0, I + pe)), Re();
|
|
444
444
|
}
|
|
445
445
|
function Ye() {
|
|
@@ -467,9 +467,9 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
467
467
|
}
|
|
468
468
|
}
|
|
469
469
|
});
|
|
470
|
-
const
|
|
471
|
-
if (
|
|
472
|
-
const _ = t.selectable ? 1 : 0, z = Array.from(
|
|
470
|
+
const c = (D = w.value) == null ? void 0 : D.querySelector("tbody tr");
|
|
471
|
+
if (c) {
|
|
472
|
+
const _ = t.selectable ? 1 : 0, z = Array.from(c.children);
|
|
473
473
|
for (let Z = 0; Z < t.columns.length; Z++)
|
|
474
474
|
if (!l[Z]) {
|
|
475
475
|
const he = z[_ + Z];
|
|
@@ -502,15 +502,15 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
502
502
|
Ce(), Ie(), s();
|
|
503
503
|
});
|
|
504
504
|
}), te(() => t.columns, () => {
|
|
505
|
-
const l = [],
|
|
505
|
+
const l = [], c = { ...V.value };
|
|
506
506
|
t.columns.forEach((S, _) => {
|
|
507
507
|
const z = q(S.width);
|
|
508
|
-
z ? (l.push(z),
|
|
508
|
+
z ? (l.push(z), c[S.key] = z) : c[S.key] ? l.push(c[S.key]) : x.value[_] ? (l.push(x.value[_]), c[S.key] = x.value[_]) : l.push("");
|
|
509
509
|
});
|
|
510
510
|
const D = new Set(t.columns.map((S) => S.key));
|
|
511
|
-
Object.keys(
|
|
512
|
-
D.has(S) || delete
|
|
513
|
-
}), V.value =
|
|
511
|
+
Object.keys(c).forEach((S) => {
|
|
512
|
+
D.has(S) || delete c[S];
|
|
513
|
+
}), V.value = c, x.value = l, le(() => {
|
|
514
514
|
We(), Ie(), s();
|
|
515
515
|
});
|
|
516
516
|
}, { deep: !0 }), te(() => y.value, () => {
|
|
@@ -522,34 +522,34 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
522
522
|
s();
|
|
523
523
|
});
|
|
524
524
|
}), $e(() => {
|
|
525
|
-
var l,
|
|
525
|
+
var l, c;
|
|
526
526
|
le(() => {
|
|
527
527
|
Ce(), We(), s(), Re();
|
|
528
528
|
}), window.addEventListener("resize", He), window.addEventListener("scroll", He, !0), (l = g.value) == null || l.addEventListener("scroll", () => {
|
|
529
529
|
Ie(), Re(), s();
|
|
530
|
-
}, { passive: !0 }), (
|
|
530
|
+
}, { passive: !0 }), (c = b.value) == null || c.addEventListener("scroll", () => {
|
|
531
531
|
Pe();
|
|
532
532
|
}, { passive: !0 }), le(() => Ie()), g.value && typeof ResizeObserver < "u" && (v = new ResizeObserver(() => {
|
|
533
533
|
s();
|
|
534
534
|
}), v.observe(g.value));
|
|
535
535
|
}), Be(() => {
|
|
536
|
-
var l,
|
|
537
|
-
window.removeEventListener("resize", He), window.removeEventListener("scroll", He, !0), (l = g.value) == null || l.removeEventListener("scroll", Ie), (
|
|
536
|
+
var l, c;
|
|
537
|
+
window.removeEventListener("resize", He), window.removeEventListener("scroll", He, !0), (l = g.value) == null || l.removeEventListener("scroll", Ie), (c = b.value) == null || c.removeEventListener("scroll", Pe), window.removeEventListener("mousemove", Ve), window.removeEventListener("mouseup", Ye), v && (v.disconnect(), v = null);
|
|
538
538
|
});
|
|
539
539
|
let Te = -1;
|
|
540
540
|
function s() {
|
|
541
541
|
!b.value || !g.value || requestAnimationFrame(() => {
|
|
542
542
|
if (!b.value || !g.value) return;
|
|
543
|
-
const l = g.value,
|
|
544
|
-
if (Y.value =
|
|
545
|
-
Te =
|
|
543
|
+
const l = g.value, c = Math.ceil(l.offsetWidth - l.clientWidth);
|
|
544
|
+
if (Y.value = c, c !== Te) {
|
|
545
|
+
Te = c;
|
|
546
546
|
const D = b.value.querySelector(".table"), S = w.value;
|
|
547
|
-
D && S && (b.value.style.paddingRight = "0px", D.style.width = "", D.style.marginRight = "",
|
|
547
|
+
D && S && (b.value.style.paddingRight = "0px", D.style.width = "", D.style.marginRight = "", c > 0 ? (b.value.style.paddingRight = `${c}px`, D.style.width = "100%", D.style.marginRight = `-${c}px`) : (b.value.style.paddingRight = "0px", D.style.width = "100%", D.style.marginRight = "0px"));
|
|
548
548
|
}
|
|
549
549
|
});
|
|
550
550
|
}
|
|
551
551
|
let v = null;
|
|
552
|
-
return (l,
|
|
552
|
+
return (l, c) => {
|
|
553
553
|
const D = Ae("YButton"), S = Ae("YPagination");
|
|
554
554
|
return i(), u("div", {
|
|
555
555
|
class: "ytable-container",
|
|
@@ -557,7 +557,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
557
557
|
ref: B
|
|
558
558
|
}, [
|
|
559
559
|
re(be, { name: "bulk-slide" }, {
|
|
560
|
-
default:
|
|
560
|
+
default: ce(() => [
|
|
561
561
|
y.value.length && e.showBulkActions ? (i(), u("div", xt, [
|
|
562
562
|
o("div", $t, "已选择 " + ee(y.value.length) + " 项", 1),
|
|
563
563
|
o("div", Ct, [
|
|
@@ -570,7 +570,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
570
570
|
class: "btn",
|
|
571
571
|
onClick: G
|
|
572
572
|
}, {
|
|
573
|
-
default:
|
|
573
|
+
default: ce(() => [...c[2] || (c[2] = [
|
|
574
574
|
xe("清除选择", -1)
|
|
575
575
|
])]),
|
|
576
576
|
_: 1
|
|
@@ -602,7 +602,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
602
602
|
e.selectable ? (i(), u("th", It, [
|
|
603
603
|
o("input", {
|
|
604
604
|
type: "checkbox",
|
|
605
|
-
checked:
|
|
605
|
+
checked: de.value,
|
|
606
606
|
onChange: P
|
|
607
607
|
}, null, 40, Et)
|
|
608
608
|
])) : R("", !0),
|
|
@@ -621,7 +621,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
621
621
|
ref: g,
|
|
622
622
|
style: se({ maxHeight: C.value })
|
|
623
623
|
}, [
|
|
624
|
-
e.loading ? (i(), u("div", Bt, [...
|
|
624
|
+
e.loading ? (i(), u("div", Bt, [...c[3] || (c[3] = [
|
|
625
625
|
o("div", { class: "loading-spinner" }, null, -1),
|
|
626
626
|
o("div", { class: "loading-text" }, "加载中...", -1)
|
|
627
627
|
])])) : R("", !0),
|
|
@@ -645,26 +645,26 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
645
645
|
]),
|
|
646
646
|
o("tbody", null, [
|
|
647
647
|
(i(!0), u(ae, null, fe(ve.value, (_, z) => (i(), u(ae, {
|
|
648
|
-
key:
|
|
648
|
+
key: d(_, z)
|
|
649
649
|
}, [
|
|
650
650
|
o("tr", null, [
|
|
651
651
|
t.expandable ? (i(), u("td", Ht, [
|
|
652
652
|
o("button", {
|
|
653
653
|
class: "expand-btn",
|
|
654
654
|
type: "button",
|
|
655
|
-
onClick: (Z) => a(
|
|
655
|
+
onClick: (Z) => a(d(_, z))
|
|
656
656
|
}, [
|
|
657
657
|
o("span", {
|
|
658
|
-
class: H(["expand-icon", { "is-open": h(
|
|
658
|
+
class: H(["expand-icon", { "is-open": h(d(_, z)) }])
|
|
659
659
|
}, null, 2)
|
|
660
660
|
], 8, Rt)
|
|
661
661
|
])) : R("", !0),
|
|
662
662
|
e.selectable ? (i(), u("td", Vt, [
|
|
663
663
|
o("input", {
|
|
664
664
|
type: "checkbox",
|
|
665
|
-
value:
|
|
666
|
-
checked: y.value.includes(
|
|
667
|
-
onChange: (Z) => K(
|
|
665
|
+
value: d(_, z),
|
|
666
|
+
checked: y.value.includes(d(_, z)),
|
|
667
|
+
onChange: (Z) => K(d(_, z))
|
|
668
668
|
}, null, 40, Wt)
|
|
669
669
|
])) : R("", !0),
|
|
670
670
|
(i(!0), u(ae, null, fe(e.columns, (Z, he) => (i(), u("td", {
|
|
@@ -681,8 +681,8 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
681
681
|
], !0)
|
|
682
682
|
], 6))), 128))
|
|
683
683
|
]),
|
|
684
|
-
t.expandable && h(
|
|
685
|
-
key: `${
|
|
684
|
+
t.expandable && h(d(_, z)) ? (i(), u("tr", {
|
|
685
|
+
key: `${d(_, z)}-expand`,
|
|
686
686
|
class: "expand-row"
|
|
687
687
|
}, [
|
|
688
688
|
o("td", {
|
|
@@ -703,9 +703,9 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
703
703
|
key: 0,
|
|
704
704
|
class: "align-right",
|
|
705
705
|
"current-page": m.value,
|
|
706
|
-
"onUpdate:currentPage":
|
|
706
|
+
"onUpdate:currentPage": c[0] || (c[0] = (_) => m.value = _),
|
|
707
707
|
"page-size": p.value,
|
|
708
|
-
"onUpdate:pageSize":
|
|
708
|
+
"onUpdate:pageSize": c[1] || (c[1] = (_) => p.value = _),
|
|
709
709
|
loading: t.loading,
|
|
710
710
|
"page-size-options": e.pageSizeOptions,
|
|
711
711
|
onPageChange: ye,
|
|
@@ -792,7 +792,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
792
792
|
const a = t.clearTo;
|
|
793
793
|
n("update:modelValue", a), n("change", a, null), n("clear"), ne();
|
|
794
794
|
}
|
|
795
|
-
function
|
|
795
|
+
function de(a) {
|
|
796
796
|
if (!j.value || j.value.length === 0) {
|
|
797
797
|
p.value = -1;
|
|
798
798
|
return;
|
|
@@ -820,7 +820,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
820
820
|
const r = y.value.querySelectorAll(".yselect__option")[p.value];
|
|
821
821
|
r && r.scrollIntoView({ block: "nearest" });
|
|
822
822
|
}
|
|
823
|
-
function
|
|
823
|
+
function d(a) {
|
|
824
824
|
const r = a.target;
|
|
825
825
|
(!C.value || !C.value.contains(r)) && ne();
|
|
826
826
|
}
|
|
@@ -831,9 +831,9 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
831
831
|
m.value && W();
|
|
832
832
|
}
|
|
833
833
|
return $e(() => {
|
|
834
|
-
document.addEventListener("click",
|
|
834
|
+
document.addEventListener("click", d), window.addEventListener("resize", h), window.addEventListener("scroll", h, !0);
|
|
835
835
|
}), Be(() => {
|
|
836
|
-
document.removeEventListener("click",
|
|
836
|
+
document.removeEventListener("click", d), window.removeEventListener("resize", h), window.removeEventListener("scroll", h, !0);
|
|
837
837
|
}), (a, r) => (i(), u("div", {
|
|
838
838
|
class: H(["yselect", { "yselect--disabled": e.disabled, [`yselect--${e.size}`]: !0 }]),
|
|
839
839
|
style: se({ width: e.width }),
|
|
@@ -895,8 +895,8 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
895
895
|
onKeydown: [
|
|
896
896
|
r[1] || (r[1] = X(() => {
|
|
897
897
|
}, ["stop"])),
|
|
898
|
-
r[2] || (r[2] = ke(X((f) =>
|
|
899
|
-
r[3] || (r[3] = ke(X((f) =>
|
|
898
|
+
r[2] || (r[2] = ke(X((f) => de(1), ["prevent"]), ["arrow-down"])),
|
|
899
|
+
r[3] || (r[3] = ke(X((f) => de(-1), ["prevent"]), ["arrow-up"])),
|
|
900
900
|
r[4] || (r[4] = ke(X((f) => we(), ["prevent"]), ["enter"])),
|
|
901
901
|
ke(X(ne, ["prevent"]), ["esc"]),
|
|
902
902
|
ke(X(ve, ["prevent"]), ["delete"])
|
|
@@ -944,7 +944,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
944
944
|
])], 2)
|
|
945
945
|
], 42, Yt),
|
|
946
946
|
re(be, { name: "yselect-dropdown" }, {
|
|
947
|
-
default:
|
|
947
|
+
default: ce(() => [
|
|
948
948
|
(i(), Se(Fe, { to: "body" }, [
|
|
949
949
|
m.value ? (i(), u("div", {
|
|
950
950
|
key: 0,
|
|
@@ -1040,7 +1040,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1040
1040
|
disabled: y.value === 1 || e.loading,
|
|
1041
1041
|
onClick: g[0] || (g[0] = (V) => M(1))
|
|
1042
1042
|
}, {
|
|
1043
|
-
default:
|
|
1043
|
+
default: ce(() => [...g[2] || (g[2] = [
|
|
1044
1044
|
xe("首页", -1)
|
|
1045
1045
|
])]),
|
|
1046
1046
|
_: 1
|
|
@@ -1104,12 +1104,12 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1104
1104
|
class: "icon",
|
|
1105
1105
|
viewBox: "0 0 20 20",
|
|
1106
1106
|
fill: "currentColor"
|
|
1107
|
-
},
|
|
1107
|
+
}, dn = {
|
|
1108
1108
|
key: 2,
|
|
1109
1109
|
class: "icon",
|
|
1110
1110
|
viewBox: "0 0 20 20",
|
|
1111
1111
|
fill: "currentColor"
|
|
1112
|
-
},
|
|
1112
|
+
}, cn = {
|
|
1113
1113
|
key: 3,
|
|
1114
1114
|
class: "icon",
|
|
1115
1115
|
viewBox: "0 0 20 20",
|
|
@@ -1197,13 +1197,13 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1197
1197
|
d: "M16.707 5.293a1 1 0 010 1.414l-7.25 7.25a1 1 0 01-1.414 0l-4-4a1 1 0 111.414-1.414L8.75 11.086l6.543-6.543a1 1 0 011.414 0z",
|
|
1198
1198
|
"clip-rule": "evenodd"
|
|
1199
1199
|
}, null, -1)
|
|
1200
|
-
])])) : e.icon === "alert" ? (i(), u("svg",
|
|
1200
|
+
])])) : e.icon === "alert" ? (i(), u("svg", dn, [...p[5] || (p[5] = [
|
|
1201
1201
|
o("path", {
|
|
1202
1202
|
"fill-rule": "evenodd",
|
|
1203
1203
|
d: "M8.257 3.099c.765-1.36 2.721-1.36 3.486 0l6.518 11.59c.75 1.334-.214 3.011-1.743 3.011H3.482c-1.53 0-2.493-1.677-1.743-3.01L8.257 3.1zM11 14a1 1 0 10-2 0 1 1 0 002 0zm-1-2a1 1 0 01-1-1V8a1 1 0 112 0v3a1 1 0 01-1 1z",
|
|
1204
1204
|
"clip-rule": "evenodd"
|
|
1205
1205
|
}, null, -1)
|
|
1206
|
-
])])) : (i(), u("svg",
|
|
1206
|
+
])])) : (i(), u("svg", cn, [...p[6] || (p[6] = [
|
|
1207
1207
|
o("circle", {
|
|
1208
1208
|
cx: "10",
|
|
1209
1209
|
cy: "10",
|
|
@@ -1281,7 +1281,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1281
1281
|
onClick: M
|
|
1282
1282
|
}),
|
|
1283
1283
|
re(be, { name: "dialog-zoom-fade" }, {
|
|
1284
|
-
default:
|
|
1284
|
+
default: ce(() => [
|
|
1285
1285
|
Ee(o("div", {
|
|
1286
1286
|
ref_key: "panelRef",
|
|
1287
1287
|
ref: p,
|
|
@@ -1345,8 +1345,8 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1345
1345
|
if (!C.value || !B.value) return {};
|
|
1346
1346
|
const N = {};
|
|
1347
1347
|
n.width !== "auto" && (N.width = typeof n.width == "number" ? `${n.width}px` : n.width), n.maxWidth && (N.maxWidth = typeof n.maxWidth == "number" ? `${n.maxWidth}px` : n.maxWidth);
|
|
1348
|
-
const { top: J, left:
|
|
1349
|
-
return N.top = `${J}px`, N.left = `${
|
|
1348
|
+
const { top: J, left: d } = F();
|
|
1349
|
+
return N.top = `${J}px`, N.left = `${d}px`, N;
|
|
1350
1350
|
}), j = O(() => {
|
|
1351
1351
|
if (!n.showArrow) return {};
|
|
1352
1352
|
if (Object.keys(g.value).length > 0)
|
|
@@ -1357,44 +1357,44 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1357
1357
|
function F() {
|
|
1358
1358
|
var P, G;
|
|
1359
1359
|
if (!B.value) return { top: 0, left: 0 };
|
|
1360
|
-
const { width: N, height: J, top:
|
|
1360
|
+
const { width: N, height: J, top: d, left: h } = B.value, a = ((P = M.value) == null ? void 0 : P.offsetWidth) || 200, r = ((G = M.value) == null ? void 0 : G.offsetHeight) || 100;
|
|
1361
1361
|
let f = 0, k = 0;
|
|
1362
1362
|
switch (n.placement) {
|
|
1363
1363
|
case "top":
|
|
1364
|
-
f =
|
|
1364
|
+
f = d - r - n.offset, k = h + (N - a) / 2;
|
|
1365
1365
|
break;
|
|
1366
1366
|
case "top-start":
|
|
1367
|
-
f =
|
|
1367
|
+
f = d - r - n.offset, k = h;
|
|
1368
1368
|
break;
|
|
1369
1369
|
case "top-end":
|
|
1370
|
-
f =
|
|
1370
|
+
f = d - r - n.offset, k = h + N - a;
|
|
1371
1371
|
break;
|
|
1372
1372
|
case "bottom":
|
|
1373
|
-
f =
|
|
1373
|
+
f = d + J + n.offset, k = h + (N - a) / 2;
|
|
1374
1374
|
break;
|
|
1375
1375
|
case "bottom-start":
|
|
1376
|
-
f =
|
|
1376
|
+
f = d + J + n.offset, k = h;
|
|
1377
1377
|
break;
|
|
1378
1378
|
case "bottom-end":
|
|
1379
|
-
f =
|
|
1379
|
+
f = d + J + n.offset, k = h + N - a;
|
|
1380
1380
|
break;
|
|
1381
1381
|
case "left":
|
|
1382
|
-
f =
|
|
1382
|
+
f = d + (J - r) / 2, k = h - a - n.offset;
|
|
1383
1383
|
break;
|
|
1384
1384
|
case "left-start":
|
|
1385
|
-
f =
|
|
1385
|
+
f = d, k = h - a - n.offset;
|
|
1386
1386
|
break;
|
|
1387
1387
|
case "left-end":
|
|
1388
|
-
f =
|
|
1388
|
+
f = d + J - r, k = h - a - n.offset;
|
|
1389
1389
|
break;
|
|
1390
1390
|
case "right":
|
|
1391
|
-
f =
|
|
1391
|
+
f = d + (J - r) / 2, k = h + N + n.offset;
|
|
1392
1392
|
break;
|
|
1393
1393
|
case "right-start":
|
|
1394
|
-
f =
|
|
1394
|
+
f = d, k = h + N + n.offset;
|
|
1395
1395
|
break;
|
|
1396
1396
|
case "right-end":
|
|
1397
|
-
f =
|
|
1397
|
+
f = d + J - r, k = h + N + n.offset;
|
|
1398
1398
|
break;
|
|
1399
1399
|
}
|
|
1400
1400
|
const L = window.innerWidth, K = window.innerHeight;
|
|
@@ -1434,25 +1434,25 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1434
1434
|
n.placement.startsWith("top") || n.placement.startsWith("bottom") ? h.left = "50%" : h.top = "50%", g.value = h;
|
|
1435
1435
|
return;
|
|
1436
1436
|
}
|
|
1437
|
-
const
|
|
1437
|
+
const d = {};
|
|
1438
1438
|
if (n.placement.startsWith("top")) {
|
|
1439
|
-
|
|
1439
|
+
d.bottom = "-6px";
|
|
1440
1440
|
const h = N.left + N.width / 2, a = J.left, r = h - a;
|
|
1441
|
-
|
|
1441
|
+
d.left = `${Math.max(12, Math.min(r, J.width - 12))}px`;
|
|
1442
1442
|
} else if (n.placement.startsWith("bottom")) {
|
|
1443
|
-
|
|
1443
|
+
d.top = "-6px";
|
|
1444
1444
|
const h = N.left + N.width / 2, a = J.left, r = h - a;
|
|
1445
|
-
|
|
1445
|
+
d.left = `${Math.max(12, Math.min(r, J.width - 12))}px`;
|
|
1446
1446
|
} else if (n.placement.startsWith("left")) {
|
|
1447
|
-
|
|
1447
|
+
d.right = "-6px";
|
|
1448
1448
|
const h = N.top + N.height / 2, a = J.top, r = h - a;
|
|
1449
|
-
|
|
1449
|
+
d.top = `${Math.max(12, Math.min(r, J.height - 12))}px`;
|
|
1450
1450
|
} else if (n.placement.startsWith("right")) {
|
|
1451
|
-
|
|
1451
|
+
d.left = "-6px";
|
|
1452
1452
|
const h = N.top + N.height / 2, a = J.top, r = h - a;
|
|
1453
|
-
|
|
1453
|
+
d.top = `${Math.max(12, Math.min(r, J.height - 12))}px`;
|
|
1454
1454
|
}
|
|
1455
|
-
g.value =
|
|
1455
|
+
g.value = d;
|
|
1456
1456
|
}
|
|
1457
1457
|
function q() {
|
|
1458
1458
|
y.value && (B.value = y.value.getBoundingClientRect(), M.value && (b.value = M.value.getBoundingClientRect(), Y(), C.value && requestAnimationFrame(() => {
|
|
@@ -1471,7 +1471,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1471
1471
|
function ve() {
|
|
1472
1472
|
n.disabled || n.trigger !== "hover" || I();
|
|
1473
1473
|
}
|
|
1474
|
-
function
|
|
1474
|
+
function de() {
|
|
1475
1475
|
n.disabled || n.trigger !== "hover" || E();
|
|
1476
1476
|
}
|
|
1477
1477
|
function we(N) {
|
|
@@ -1513,7 +1513,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1513
1513
|
], 544),
|
|
1514
1514
|
(i(), Se(Fe, { to: "body" }, [
|
|
1515
1515
|
re(be, { name: "ypopover-fade" }, {
|
|
1516
|
-
default:
|
|
1516
|
+
default: ce(() => [
|
|
1517
1517
|
C.value ? (i(), u("div", {
|
|
1518
1518
|
key: 0,
|
|
1519
1519
|
ref_key: "contentRef",
|
|
@@ -1529,7 +1529,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1529
1529
|
onClick: J[0] || (J[0] = X(() => {
|
|
1530
1530
|
}, ["stop"])),
|
|
1531
1531
|
onMouseenter: ve,
|
|
1532
|
-
onMouseleave:
|
|
1532
|
+
onMouseleave: de
|
|
1533
1533
|
}, [
|
|
1534
1534
|
e.showArrow ? (i(), u("div", {
|
|
1535
1535
|
key: 0,
|
|
@@ -1639,12 +1639,12 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1639
1639
|
return null;
|
|
1640
1640
|
}, E = (s) => {
|
|
1641
1641
|
if (!s) return null;
|
|
1642
|
-
const v = s.getFullYear(), l = String(s.getMonth() + 1).padStart(2, "0"),
|
|
1642
|
+
const v = s.getFullYear(), l = String(s.getMonth() + 1).padStart(2, "0"), c = String(s.getDate()).padStart(2, "0");
|
|
1643
1643
|
if (t.includeTime) {
|
|
1644
1644
|
const D = String(s.getHours()).padStart(2, "0"), S = String(s.getMinutes()).padStart(2, "0"), _ = String(s.getSeconds()).padStart(2, "0");
|
|
1645
|
-
return `${v}-${l}-${
|
|
1645
|
+
return `${v}-${l}-${c} ${D}:${S}:${_}`;
|
|
1646
1646
|
} else
|
|
1647
|
-
return `${v}-${l}-${
|
|
1647
|
+
return `${v}-${l}-${c}`;
|
|
1648
1648
|
}, A = (s) => s ? s.getTime() : null, I = (s) => s ? {
|
|
1649
1649
|
startDate: U(s.startDate),
|
|
1650
1650
|
endDate: U(s.endDate)
|
|
@@ -1659,8 +1659,8 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1659
1659
|
if (!(v != null && v.startDate) || !(v != null && v.endDate))
|
|
1660
1660
|
return -1;
|
|
1661
1661
|
for (let l = 0; l < t.shortcuts.length; l++) {
|
|
1662
|
-
const
|
|
1663
|
-
if (
|
|
1662
|
+
const c = t.shortcuts[l].getValue();
|
|
1663
|
+
if (c.startDate && c.endDate && v.startDate && v.endDate) {
|
|
1664
1664
|
const D = new Date(
|
|
1665
1665
|
v.startDate.getFullYear(),
|
|
1666
1666
|
v.startDate.getMonth(),
|
|
@@ -1670,13 +1670,13 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1670
1670
|
v.endDate.getMonth(),
|
|
1671
1671
|
v.endDate.getDate()
|
|
1672
1672
|
), _ = new Date(
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1673
|
+
c.startDate.getFullYear(),
|
|
1674
|
+
c.startDate.getMonth(),
|
|
1675
|
+
c.startDate.getDate()
|
|
1676
1676
|
), z = new Date(
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1677
|
+
c.endDate.getFullYear(),
|
|
1678
|
+
c.endDate.getMonth(),
|
|
1679
|
+
c.endDate.getDate()
|
|
1680
1680
|
);
|
|
1681
1681
|
if (D.getTime() === _.getTime() && S.getTime() === z.getTime())
|
|
1682
1682
|
return l;
|
|
@@ -1684,7 +1684,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1684
1684
|
}
|
|
1685
1685
|
return -1;
|
|
1686
1686
|
}, ve = (s, v) => {
|
|
1687
|
-
const l = new Date(s, v, 1),
|
|
1687
|
+
const l = new Date(s, v, 1), c = new Date(s, v + 1, 0), D = l.getDay(), S = c.getDate(), _ = [], z = /* @__PURE__ */ new Date(), Z = D === 0 ? 6 : D - 1, he = new Date(s, v, 0);
|
|
1688
1688
|
for (let oe = Z - 1; oe >= 0; oe--) {
|
|
1689
1689
|
const De = new Date(s, v - 1, he.getDate() - oe);
|
|
1690
1690
|
_.push({
|
|
@@ -1728,7 +1728,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1728
1728
|
for (let oe = 0; oe < _.length; oe += 7)
|
|
1729
1729
|
Ke.push(_.slice(oe, oe + 7));
|
|
1730
1730
|
return Ke;
|
|
1731
|
-
},
|
|
1731
|
+
}, de = (s) => {
|
|
1732
1732
|
const v = Y(s);
|
|
1733
1733
|
n("update:modelValue", v), n("change", v);
|
|
1734
1734
|
}, we = () => {
|
|
@@ -1751,9 +1751,9 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1751
1751
|
});
|
|
1752
1752
|
}
|
|
1753
1753
|
}, J = (s) => {
|
|
1754
|
-
const v = s.target, l = C.value,
|
|
1755
|
-
l &&
|
|
1756
|
-
},
|
|
1754
|
+
const v = s.target, l = C.value, c = B.value;
|
|
1755
|
+
l && c && !l.contains(v) && !c.contains(v) && (m.value = !1, p.value = -1);
|
|
1756
|
+
}, d = (s) => {
|
|
1757
1757
|
s.key === "Enter" || s.key === " " ? (s.preventDefault(), N()) : s.key === "ArrowDown" && (s.preventDefault(), m.value = !0, le(() => {
|
|
1758
1758
|
we(), k();
|
|
1759
1759
|
}));
|
|
@@ -1775,7 +1775,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1775
1775
|
}
|
|
1776
1776
|
}, K = (s) => {
|
|
1777
1777
|
const v = s.getValue();
|
|
1778
|
-
t.includeTime && v.startDate && v.endDate && (v.startDate.setHours(0, 0, 0, 0), v.endDate.setHours(23, 59, 59, 999)),
|
|
1778
|
+
t.includeTime && v.startDate && v.endDate && (v.startDate.setHours(0, 0, 0, 0), v.endDate.setHours(23, 59, 59, 999)), de(v), y.value = t.shortcuts.findIndex((l) => l.label === s.label), p.value = -1, m.value = !1;
|
|
1779
1779
|
}, P = (s, v) => {
|
|
1780
1780
|
if (!s || s.isDisabled) return;
|
|
1781
1781
|
let l;
|
|
@@ -1785,16 +1785,16 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1785
1785
|
if (l >= F.value)
|
|
1786
1786
|
t.includeTime && l.setHours(23, 59, 59, 999), W.value = l;
|
|
1787
1787
|
else {
|
|
1788
|
-
const
|
|
1789
|
-
t.includeTime &&
|
|
1788
|
+
const c = F.value;
|
|
1789
|
+
t.includeTime && c.setHours(23, 59, 59, 999), W.value = c, F.value = l;
|
|
1790
1790
|
}
|
|
1791
1791
|
else
|
|
1792
1792
|
F.value = l, W.value = null;
|
|
1793
1793
|
if (y.value = -1, F.value && W.value) {
|
|
1794
|
-
const
|
|
1795
|
-
t.includeTime &&
|
|
1794
|
+
const c = new Date(W.value);
|
|
1795
|
+
t.includeTime && c.setHours(23, 59, 59, 999), M.value = {
|
|
1796
1796
|
startDate: F.value,
|
|
1797
|
-
endDate:
|
|
1797
|
+
endDate: c
|
|
1798
1798
|
};
|
|
1799
1799
|
} else
|
|
1800
1800
|
M.value = null;
|
|
@@ -1803,9 +1803,9 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1803
1803
|
const l = ["nh-date-table-td"];
|
|
1804
1804
|
return s.isCurrentMonth || l.push("is-prev-month"), s.isToday && l.push("is-today"), s.isDisabled && l.push("is-disabled"), F.value && Q(s.date, F.value) && l.push("is-selected", "is-start"), W.value && Q(s.date, W.value) && l.push("is-selected", "is-end"), F.value && W.value && ne(s.date, F.value, W.value) && l.push("is-in-range"), l;
|
|
1805
1805
|
}, ye = () => {
|
|
1806
|
-
M.value && (t.includeTime && M.value.endDate && M.value.endDate.setHours(23, 59, 59, 999),
|
|
1806
|
+
M.value && (t.includeTime && M.value.endDate && M.value.endDate.setHours(23, 59, 59, 999), de(M.value), y.value = ue(M.value), m.value = !1);
|
|
1807
1807
|
}, Le = () => {
|
|
1808
|
-
|
|
1808
|
+
de({ startDate: null, endDate: null }), We(), p.value = -1, m.value = !1;
|
|
1809
1809
|
}, Ce = () => {
|
|
1810
1810
|
m.value && le(() => {
|
|
1811
1811
|
we();
|
|
@@ -1817,8 +1817,8 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1817
1817
|
const v = (D) => {
|
|
1818
1818
|
const S = String(D.getFullYear()), _ = String(D.getMonth() + 1).padStart(2, "0"), z = String(D.getDate()).padStart(2, "0");
|
|
1819
1819
|
return `${S}/${_}/${z}`;
|
|
1820
|
-
}, l = v(s.startDate),
|
|
1821
|
-
return !t.includeTime && l ===
|
|
1820
|
+
}, l = v(s.startDate), c = v(s.endDate);
|
|
1821
|
+
return !t.includeTime && l === c ? l : `${l} - ${c}`;
|
|
1822
1822
|
}), Re = O(() => [
|
|
1823
1823
|
"nh-time-dropdown",
|
|
1824
1824
|
{
|
|
@@ -1865,7 +1865,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1865
1865
|
document.removeEventListener("click", J), window.removeEventListener("resize", Ce), window.removeEventListener("scroll", Ce);
|
|
1866
1866
|
});
|
|
1867
1867
|
const He = () => {
|
|
1868
|
-
t.clearable && (
|
|
1868
|
+
t.clearable && (de({ startDate: null, endDate: null }), We(), p.value = -1);
|
|
1869
1869
|
}, Te = (s, v) => {
|
|
1870
1870
|
if (s === "start") {
|
|
1871
1871
|
const l = new Date(g.value.year, g.value.month + v, 1);
|
|
@@ -1885,7 +1885,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1885
1885
|
ref_key: "trigger",
|
|
1886
1886
|
ref: C,
|
|
1887
1887
|
onClick: N,
|
|
1888
|
-
onKeydown:
|
|
1888
|
+
onKeydown: d,
|
|
1889
1889
|
class: H(["nh-time-trigger", { "is-focus": m.value, "has-value": Ve.value }]),
|
|
1890
1890
|
tabindex: "0"
|
|
1891
1891
|
}, [
|
|
@@ -1941,7 +1941,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1941
1941
|
])
|
|
1942
1942
|
], 34),
|
|
1943
1943
|
re(be, { name: "el-zoom-in-top" }, {
|
|
1944
|
-
default:
|
|
1944
|
+
default: ce(() => [
|
|
1945
1945
|
m.value ? (i(), u("div", {
|
|
1946
1946
|
key: 0,
|
|
1947
1947
|
ref_key: "dropdown",
|
|
@@ -1952,9 +1952,9 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1952
1952
|
o("div", Mn, [
|
|
1953
1953
|
v[7] || (v[7] = o("div", { class: "nh-time-shortcuts-title" }, "快捷选项", -1)),
|
|
1954
1954
|
o("ul", In, [
|
|
1955
|
-
(i(!0), u(ae, null, fe(e.shortcuts, (
|
|
1956
|
-
key:
|
|
1957
|
-
onClick: (S) => K(
|
|
1955
|
+
(i(!0), u(ae, null, fe(e.shortcuts, (c, D) => (i(), u("li", {
|
|
1956
|
+
key: c.label,
|
|
1957
|
+
onClick: (S) => K(c),
|
|
1958
1958
|
onKeydown: (S) => a(S, D),
|
|
1959
1959
|
onMouseenter: (S) => r(D),
|
|
1960
1960
|
onMouseleave: f,
|
|
@@ -1966,7 +1966,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1966
1966
|
}
|
|
1967
1967
|
]),
|
|
1968
1968
|
tabindex: "0"
|
|
1969
|
-
}, ee(
|
|
1969
|
+
}, ee(c.label), 43, En))), 128))
|
|
1970
1970
|
])
|
|
1971
1971
|
]),
|
|
1972
1972
|
o("div", Bn, [
|
|
@@ -1981,7 +1981,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1981
1981
|
o("div", An, [
|
|
1982
1982
|
o("div", Fn, [
|
|
1983
1983
|
o("button", {
|
|
1984
|
-
onClick: v[0] || (v[0] = (
|
|
1984
|
+
onClick: v[0] || (v[0] = (c) => Te("start", -1)),
|
|
1985
1985
|
class: "nh-date-picker-btn nh-date-picker-prev-btn",
|
|
1986
1986
|
type: "button"
|
|
1987
1987
|
}, [...v[9] || (v[9] = [
|
|
@@ -1998,7 +1998,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
1998
1998
|
])]),
|
|
1999
1999
|
o("span", Pn, ee(q(g.value.year, g.value.month)), 1),
|
|
2000
2000
|
o("button", {
|
|
2001
|
-
onClick: v[1] || (v[1] = (
|
|
2001
|
+
onClick: v[1] || (v[1] = (c) => Te("start", 1)),
|
|
2002
2002
|
class: "nh-date-picker-btn nh-date-picker-next-btn",
|
|
2003
2003
|
type: "button"
|
|
2004
2004
|
}, [...v[10] || (v[10] = [
|
|
@@ -2018,17 +2018,17 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2018
2018
|
o("table", Nn, [
|
|
2019
2019
|
o("thead", null, [
|
|
2020
2020
|
o("tr", null, [
|
|
2021
|
-
(i(), u(ae, null, fe(j, (
|
|
2022
|
-
key:
|
|
2021
|
+
(i(), u(ae, null, fe(j, (c) => o("th", {
|
|
2022
|
+
key: c,
|
|
2023
2023
|
class: "nh-date-table-th"
|
|
2024
|
-
}, ee(
|
|
2024
|
+
}, ee(c), 1)), 64))
|
|
2025
2025
|
])
|
|
2026
2026
|
]),
|
|
2027
2027
|
o("tbody", null, [
|
|
2028
|
-
(i(!0), u(ae, null, fe(Me.value, (
|
|
2028
|
+
(i(!0), u(ae, null, fe(Me.value, (c, D) => (i(), u("tr", {
|
|
2029
2029
|
key: `start-week-${D}`
|
|
2030
2030
|
}, [
|
|
2031
|
-
(i(!0), u(ae, null, fe(
|
|
2031
|
+
(i(!0), u(ae, null, fe(c, (S, _) => (i(), u("td", {
|
|
2032
2032
|
key: `start-day-${D}-${_}`,
|
|
2033
2033
|
class: H(G(S)),
|
|
2034
2034
|
onClick: (z) => P(S, "start")
|
|
@@ -2047,7 +2047,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2047
2047
|
o("div", Zn, [
|
|
2048
2048
|
o("div", Qn, [
|
|
2049
2049
|
o("button", {
|
|
2050
|
-
onClick: v[2] || (v[2] = (
|
|
2050
|
+
onClick: v[2] || (v[2] = (c) => Te("end", -1)),
|
|
2051
2051
|
class: "nh-date-picker-btn nh-date-picker-prev-btn",
|
|
2052
2052
|
type: "button"
|
|
2053
2053
|
}, [...v[11] || (v[11] = [
|
|
@@ -2064,7 +2064,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2064
2064
|
])]),
|
|
2065
2065
|
o("span", Jn, ee(q(w.value.year, w.value.month)), 1),
|
|
2066
2066
|
o("button", {
|
|
2067
|
-
onClick: v[3] || (v[3] = (
|
|
2067
|
+
onClick: v[3] || (v[3] = (c) => Te("end", 1)),
|
|
2068
2068
|
class: "nh-date-picker-btn nh-date-picker-next-btn",
|
|
2069
2069
|
type: "button"
|
|
2070
2070
|
}, [...v[12] || (v[12] = [
|
|
@@ -2084,17 +2084,17 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2084
2084
|
o("table", Gn, [
|
|
2085
2085
|
o("thead", null, [
|
|
2086
2086
|
o("tr", null, [
|
|
2087
|
-
(i(), u(ae, null, fe(j, (
|
|
2088
|
-
key:
|
|
2087
|
+
(i(), u(ae, null, fe(j, (c) => o("th", {
|
|
2088
|
+
key: c,
|
|
2089
2089
|
class: "nh-date-table-th"
|
|
2090
|
-
}, ee(
|
|
2090
|
+
}, ee(c), 1)), 64))
|
|
2091
2091
|
])
|
|
2092
2092
|
]),
|
|
2093
2093
|
o("tbody", null, [
|
|
2094
|
-
(i(!0), u(ae, null, fe(Ie.value, (
|
|
2094
|
+
(i(!0), u(ae, null, fe(Ie.value, (c, D) => (i(), u("tr", {
|
|
2095
2095
|
key: `end-week-${D}`
|
|
2096
2096
|
}, [
|
|
2097
|
-
(i(!0), u(ae, null, fe(
|
|
2097
|
+
(i(!0), u(ae, null, fe(c, (S, _) => (i(), u("td", {
|
|
2098
2098
|
key: `end-day-${D}-${_}`,
|
|
2099
2099
|
class: H(G(S)),
|
|
2100
2100
|
onClick: (z) => P(S, "end")
|
|
@@ -2117,7 +2117,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2117
2117
|
variant: "secondary",
|
|
2118
2118
|
size: e.size
|
|
2119
2119
|
}, {
|
|
2120
|
-
default:
|
|
2120
|
+
default: ce(() => [...v[13] || (v[13] = [
|
|
2121
2121
|
xe(" 清空 ", -1)
|
|
2122
2122
|
])]),
|
|
2123
2123
|
_: 1
|
|
@@ -2128,7 +2128,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2128
2128
|
variant: "primary",
|
|
2129
2129
|
size: e.size
|
|
2130
2130
|
}, {
|
|
2131
|
-
default:
|
|
2131
|
+
default: ce(() => [
|
|
2132
2132
|
xe(ee(F.value && !W.value ? "继续选择结束日期" : "确认"), 1)
|
|
2133
2133
|
]),
|
|
2134
2134
|
_: 1
|
|
@@ -2204,7 +2204,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2204
2204
|
}, ee(p.value ? e.activeText : e.inactiveText), 3)) : R("", !0)
|
|
2205
2205
|
], 46, al));
|
|
2206
2206
|
}
|
|
2207
|
-
}), ul = /* @__PURE__ */ me(rl, [["__scopeId", "data-v-0b157fc4"]]),
|
|
2207
|
+
}), ul = /* @__PURE__ */ me(rl, [["__scopeId", "data-v-0b157fc4"]]), dl = ["src", "alt"], cl = ["src", "alt"], fl = /* @__PURE__ */ ge({
|
|
2208
2208
|
__name: "yimage",
|
|
2209
2209
|
props: {
|
|
2210
2210
|
src: {},
|
|
@@ -2269,28 +2269,28 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2269
2269
|
}, ve = () => {
|
|
2270
2270
|
document.body.style.overflow = W.value.overflow, document.body.style.paddingRight = W.value.paddingRight;
|
|
2271
2271
|
};
|
|
2272
|
-
let
|
|
2272
|
+
let de = null;
|
|
2273
2273
|
const we = () => {
|
|
2274
|
-
!n.lazy || !p.value || (
|
|
2274
|
+
!n.lazy || !p.value || (de = new IntersectionObserver(
|
|
2275
2275
|
(K) => {
|
|
2276
2276
|
K.forEach((P) => {
|
|
2277
|
-
P.isIntersecting && (g.value = !0, x.value = n.src,
|
|
2277
|
+
P.isIntersecting && (g.value = !0, x.value = n.src, de == null || de.unobserve(P.target));
|
|
2278
2278
|
});
|
|
2279
2279
|
},
|
|
2280
2280
|
{
|
|
2281
2281
|
rootMargin: "50px"
|
|
2282
2282
|
}
|
|
2283
|
-
),
|
|
2283
|
+
), de.observe(p.value));
|
|
2284
2284
|
}, N = (K) => {
|
|
2285
2285
|
C.value = !0, B.value = !1, b.value = !1, m("load", K);
|
|
2286
2286
|
}, J = (K) => {
|
|
2287
2287
|
b.value = !0, B.value = !1, C.value = !1, m("error", K);
|
|
2288
|
-
},
|
|
2288
|
+
}, d = () => {
|
|
2289
2289
|
b.value = !1, B.value = !0, C.value = !1, le(() => {
|
|
2290
2290
|
y.value && (y.value.src = n.src);
|
|
2291
2291
|
});
|
|
2292
2292
|
}, h = () => Array.isArray(n.previewSrcList) ? n.previewSrcList.find(Boolean) || n.src : n.previewSrcList || n.src, a = () => {
|
|
2293
|
-
n.preview && (n.previewSrcList || n.src) ? r() :
|
|
2293
|
+
n.preview && (n.previewSrcList || n.src) ? r() : d();
|
|
2294
2294
|
}, r = () => {
|
|
2295
2295
|
if (!n.preview) return;
|
|
2296
2296
|
j.value = 1;
|
|
@@ -2327,13 +2327,13 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2327
2327
|
return $e(() => {
|
|
2328
2328
|
n.lazy ? we() : g.value = !0, g.value && (B.value = !0), F.value = !0;
|
|
2329
2329
|
}), Be(() => {
|
|
2330
|
-
|
|
2330
|
+
de && de.disconnect(), w.value && ve();
|
|
2331
2331
|
}), te(() => x.value, () => {
|
|
2332
2332
|
n.src && g.value && (B.value = !0, b.value = !1, C.value = !1);
|
|
2333
2333
|
}), te(() => n.src, (K) => {
|
|
2334
2334
|
x.value = K || "";
|
|
2335
2335
|
}), $({
|
|
2336
|
-
retryLoad:
|
|
2336
|
+
retryLoad: d,
|
|
2337
2337
|
closePreview: f
|
|
2338
2338
|
}), (K, P) => (i(), u("div", {
|
|
2339
2339
|
ref_key: "containerRef",
|
|
@@ -2393,7 +2393,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2393
2393
|
onError: J,
|
|
2394
2394
|
onClick: X(r, ["stop"]),
|
|
2395
2395
|
style: se(q.value)
|
|
2396
|
-
}, null, 46,
|
|
2396
|
+
}, null, 46, dl), [
|
|
2397
2397
|
[ze, C.value && !b.value]
|
|
2398
2398
|
]),
|
|
2399
2399
|
n.preview && (!C.value || B.value || b.value || !g.value) ? (i(), u("div", {
|
|
@@ -2406,7 +2406,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2406
2406
|
to: "body"
|
|
2407
2407
|
}, [
|
|
2408
2408
|
re(be, { name: "fade" }, {
|
|
2409
|
-
default:
|
|
2409
|
+
default: ce(() => [
|
|
2410
2410
|
w.value ? (i(), u("div", {
|
|
2411
2411
|
key: 0,
|
|
2412
2412
|
class: "yimage-preview-mask",
|
|
@@ -2425,7 +2425,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2425
2425
|
style: se({ transform: `scale(${j.value})` }),
|
|
2426
2426
|
onClick: P[0] || (P[0] = X(() => {
|
|
2427
2427
|
}, ["stop"]))
|
|
2428
|
-
}, null, 12,
|
|
2428
|
+
}, null, 12, cl)
|
|
2429
2429
|
], 2)
|
|
2430
2430
|
], 32)) : R("", !0)
|
|
2431
2431
|
]),
|
|
@@ -2526,7 +2526,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2526
2526
|
name: "dropdown-fade",
|
|
2527
2527
|
appear: ""
|
|
2528
2528
|
}, {
|
|
2529
|
-
default:
|
|
2529
|
+
default: ce(() => [
|
|
2530
2530
|
Ee(o("div", {
|
|
2531
2531
|
class: H(["y-dropdown__menu", p.value]),
|
|
2532
2532
|
style: se(y.value),
|
|
@@ -2608,7 +2608,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2608
2608
|
onClick: B
|
|
2609
2609
|
}),
|
|
2610
2610
|
re(be, { name: y.value }, {
|
|
2611
|
-
default:
|
|
2611
|
+
default: ce(() => [
|
|
2612
2612
|
Ee(o("div", {
|
|
2613
2613
|
ref_key: "panelRef",
|
|
2614
2614
|
ref: p,
|
|
@@ -2793,35 +2793,35 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2793
2793
|
});
|
|
2794
2794
|
ot("treeStore", y);
|
|
2795
2795
|
const M = O(() => n.restrictAutoExpandFromLevel && n.restrictAutoExpandFromLevel > 0 ? n.restrictAutoExpandFromLevel : void 0);
|
|
2796
|
-
function C(
|
|
2797
|
-
return
|
|
2796
|
+
function C(d) {
|
|
2797
|
+
return d[n.nodeKey] || d.id || Math.random();
|
|
2798
2798
|
}
|
|
2799
|
-
function B(
|
|
2799
|
+
function B(d) {
|
|
2800
2800
|
var h;
|
|
2801
|
-
return ((h = n.props) != null && h.label ?
|
|
2801
|
+
return ((h = n.props) != null && h.label ? d[n.props.label] : void 0) || d.label || "";
|
|
2802
2802
|
}
|
|
2803
|
-
function b(
|
|
2803
|
+
function b(d) {
|
|
2804
2804
|
var h;
|
|
2805
|
-
return !!((h =
|
|
2805
|
+
return !!((h = d == null ? void 0 : d.data) != null && h.isEmployee);
|
|
2806
2806
|
}
|
|
2807
|
-
function g(
|
|
2807
|
+
function g(d, h) {
|
|
2808
2808
|
var L;
|
|
2809
2809
|
const a = n.deptIconUrl || yo, r = n.personIconUrl || go, f = n.buttonIconUrl || "", k = n.childStyleIconUrl || "";
|
|
2810
|
-
return h && k && j(
|
|
2810
|
+
return h && k && j(d, h) ? k : (L = d == null ? void 0 : d.data) != null && L.isButton && f ? f : b(d) ? r : a;
|
|
2811
2811
|
}
|
|
2812
|
-
function w(
|
|
2812
|
+
function w(d) {
|
|
2813
2813
|
var a;
|
|
2814
|
-
const h = ((a = n.props) != null && a.children ?
|
|
2814
|
+
const h = ((a = n.props) != null && a.children ? d[n.props.children] : void 0) || d.children;
|
|
2815
2815
|
return h && h.length > 0;
|
|
2816
2816
|
}
|
|
2817
|
-
function x(
|
|
2817
|
+
function x(d) {
|
|
2818
2818
|
var h;
|
|
2819
|
-
return ((h = n.props) != null && h.children ?
|
|
2819
|
+
return ((h = n.props) != null && h.children ? d[n.props.children] : void 0) || d.children || [];
|
|
2820
2820
|
}
|
|
2821
|
-
function V(
|
|
2822
|
-
if (
|
|
2821
|
+
function V(d, h, a = 1) {
|
|
2822
|
+
if (d === h)
|
|
2823
2823
|
return a;
|
|
2824
|
-
const r = x(
|
|
2824
|
+
const r = x(d);
|
|
2825
2825
|
for (const f of r) {
|
|
2826
2826
|
const k = V(f, h, a + 1);
|
|
2827
2827
|
if (k > 0)
|
|
@@ -2829,50 +2829,50 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2829
2829
|
}
|
|
2830
2830
|
return 0;
|
|
2831
2831
|
}
|
|
2832
|
-
function j(
|
|
2833
|
-
return !n.childStyleLevel || n.childStyleLevel < 1 ? !1 : V(h,
|
|
2832
|
+
function j(d, h) {
|
|
2833
|
+
return !n.childStyleLevel || n.childStyleLevel < 1 ? !1 : V(h, d) === n.childStyleLevel;
|
|
2834
2834
|
}
|
|
2835
|
-
function F(
|
|
2836
|
-
const h = C(
|
|
2835
|
+
function F(d) {
|
|
2836
|
+
const h = C(d);
|
|
2837
2837
|
return y.value.expandedKeys.has(h);
|
|
2838
2838
|
}
|
|
2839
|
-
function W(
|
|
2840
|
-
const h = C(
|
|
2839
|
+
function W(d) {
|
|
2840
|
+
const h = C(d);
|
|
2841
2841
|
if (y.value.checkedKeys.has(h)) {
|
|
2842
|
-
if (w(
|
|
2843
|
-
const r = x(
|
|
2842
|
+
if (w(d)) {
|
|
2843
|
+
const r = x(d), f = r.filter((L) => W(L)), k = r.filter(
|
|
2844
2844
|
(L) => U(L)
|
|
2845
2845
|
);
|
|
2846
2846
|
return f.length === r.length && k.length === 0;
|
|
2847
2847
|
}
|
|
2848
2848
|
return !0;
|
|
2849
2849
|
}
|
|
2850
|
-
if (w(
|
|
2851
|
-
const r = x(
|
|
2850
|
+
if (w(d)) {
|
|
2851
|
+
const r = x(d);
|
|
2852
2852
|
return r.some(
|
|
2853
2853
|
(k) => U(k)
|
|
2854
2854
|
) ? !1 : r.length > 0 && r.every((k) => W(k));
|
|
2855
2855
|
}
|
|
2856
2856
|
return !1;
|
|
2857
2857
|
}
|
|
2858
|
-
function U(
|
|
2859
|
-
if (!w(
|
|
2860
|
-
const h = x(
|
|
2858
|
+
function U(d) {
|
|
2859
|
+
if (!w(d)) return !1;
|
|
2860
|
+
const h = x(d), a = h.filter((f) => W(f)), r = h.filter(
|
|
2861
2861
|
(f) => U(f)
|
|
2862
2862
|
);
|
|
2863
2863
|
return a.length === h.length ? !1 : a.length > 0 || r.length > 0;
|
|
2864
2864
|
}
|
|
2865
|
-
function E(
|
|
2866
|
-
const h = C(
|
|
2865
|
+
function E(d) {
|
|
2866
|
+
const h = C(d);
|
|
2867
2867
|
return y.value.currentKey === h;
|
|
2868
2868
|
}
|
|
2869
|
-
function A(
|
|
2870
|
-
const h = C(
|
|
2869
|
+
function A(d) {
|
|
2870
|
+
const h = C(d);
|
|
2871
2871
|
return y.value.highlightedKeys.has(h);
|
|
2872
2872
|
}
|
|
2873
|
-
function I(
|
|
2873
|
+
function I(d) {
|
|
2874
2874
|
if (n.disabled) return;
|
|
2875
|
-
const h = C(
|
|
2875
|
+
const h = C(d), r = !y.value.checkedKeys.has(h), f = new Set(y.value.expandedKeys);
|
|
2876
2876
|
r ? y.value.checkedKeys.add(h) : y.value.checkedKeys.delete(h);
|
|
2877
2877
|
function k(L, K) {
|
|
2878
2878
|
L.forEach((P) => {
|
|
@@ -2880,22 +2880,22 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2880
2880
|
K ? y.value.checkedKeys.add(G) : y.value.checkedKeys.delete(G), w(P) && k(x(P), K);
|
|
2881
2881
|
});
|
|
2882
2882
|
}
|
|
2883
|
-
k(x(
|
|
2883
|
+
k(x(d), r), r && Y(), Q(), y.value.expandedKeys = f, m("check-change", d, r, !1), m("check", d, r, !1), m("checked-keys-change", Array.from(y.value.checkedKeys));
|
|
2884
2884
|
}
|
|
2885
|
-
function Y(
|
|
2885
|
+
function Y(d) {
|
|
2886
2886
|
M.value && console.log(
|
|
2887
2887
|
`已启用从第${M.value}级开始不默认展开的限制(不主动收起已展开节点)`
|
|
2888
2888
|
);
|
|
2889
2889
|
}
|
|
2890
|
-
function q(
|
|
2891
|
-
const h = C(
|
|
2892
|
-
y.value.expandedKeys.has(h) ? (y.value.expandedKeys.delete(h), m("node-collapse",
|
|
2890
|
+
function q(d) {
|
|
2891
|
+
const h = C(d);
|
|
2892
|
+
y.value.expandedKeys.has(h) ? (y.value.expandedKeys.delete(h), m("node-collapse", d, d, null)) : (y.value.expandedKeys.add(h), m("node-expand", d, d, null));
|
|
2893
2893
|
}
|
|
2894
2894
|
function Q() {
|
|
2895
|
-
const
|
|
2895
|
+
const d = [];
|
|
2896
2896
|
function h(r) {
|
|
2897
2897
|
r.forEach((f) => {
|
|
2898
|
-
|
|
2898
|
+
d.push(f), w(f) && h(x(f));
|
|
2899
2899
|
});
|
|
2900
2900
|
}
|
|
2901
2901
|
h(p.value);
|
|
@@ -2907,29 +2907,29 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2907
2907
|
L.length === f.length && K.length === 0 || L.length > 0 || K.length > 0 ? y.value.checkedKeys.add(k) : y.value.checkedKeys.delete(k);
|
|
2908
2908
|
}
|
|
2909
2909
|
}
|
|
2910
|
-
for (let r =
|
|
2911
|
-
a(
|
|
2910
|
+
for (let r = d.length - 1; r >= 0; r--)
|
|
2911
|
+
a(d[r]);
|
|
2912
2912
|
}
|
|
2913
|
-
function ne(
|
|
2913
|
+
function ne(d, h, a, r) {
|
|
2914
2914
|
if (n.disabled) return;
|
|
2915
|
-
const f = r ? j(
|
|
2915
|
+
const f = r ? j(d, r) : !1;
|
|
2916
2916
|
if (n.enableChildStyleCustomClick && f) {
|
|
2917
|
-
m("child-node-click",
|
|
2917
|
+
m("child-node-click", d, h, a);
|
|
2918
2918
|
return;
|
|
2919
2919
|
}
|
|
2920
|
-
if (n.expandOnClickNode && w(
|
|
2921
|
-
q(
|
|
2920
|
+
if (n.expandOnClickNode && w(d)) {
|
|
2921
|
+
q(d);
|
|
2922
2922
|
return;
|
|
2923
2923
|
}
|
|
2924
|
-
y.value.currentNode =
|
|
2924
|
+
y.value.currentNode = d, y.value.currentKey = C(d), n.showCheckbox && I(d), m("node-click", d, h, a);
|
|
2925
2925
|
}
|
|
2926
|
-
function ue(
|
|
2927
|
-
n.disabled || m("node-contextmenu",
|
|
2926
|
+
function ue(d, h, a, r) {
|
|
2927
|
+
n.disabled || m("node-contextmenu", d, h, a, r);
|
|
2928
2928
|
}
|
|
2929
2929
|
te(
|
|
2930
2930
|
() => n.defaultExpandedKeys,
|
|
2931
|
-
(
|
|
2932
|
-
if (
|
|
2931
|
+
(d) => {
|
|
2932
|
+
if (d) {
|
|
2933
2933
|
const h = M.value;
|
|
2934
2934
|
if (h) {
|
|
2935
2935
|
let a = function(L, K, P = 1) {
|
|
@@ -2946,7 +2946,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2946
2946
|
K < P && w(G) ? (k.add(C(G)), r(x(G), K + 1, P)) : K < P && w(G);
|
|
2947
2947
|
});
|
|
2948
2948
|
};
|
|
2949
|
-
const f = (
|
|
2949
|
+
const f = (d || []).filter((L) => {
|
|
2950
2950
|
const K = a(L, p.value, 1);
|
|
2951
2951
|
return K > 0 && K < h;
|
|
2952
2952
|
}), k = new Set(f);
|
|
@@ -2954,38 +2954,38 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2954
2954
|
a(L, p.value, 1) >= h && k.add(L);
|
|
2955
2955
|
}), y.value.expandedKeys = k;
|
|
2956
2956
|
} else
|
|
2957
|
-
y.value.expandedKeys = new Set(
|
|
2957
|
+
y.value.expandedKeys = new Set(d);
|
|
2958
2958
|
}
|
|
2959
2959
|
},
|
|
2960
2960
|
{ immediate: !0 }
|
|
2961
2961
|
);
|
|
2962
2962
|
function ve() {
|
|
2963
2963
|
if (n.defaultExpandAll) {
|
|
2964
|
-
let
|
|
2964
|
+
let d = function(r, f = 1) {
|
|
2965
2965
|
r.forEach((k) => {
|
|
2966
2966
|
if (!w(k)) return;
|
|
2967
2967
|
const L = x(k);
|
|
2968
2968
|
if (a) {
|
|
2969
2969
|
if (f >= a) return;
|
|
2970
|
-
f + 1 === a || h.add(C(k)),
|
|
2970
|
+
f + 1 === a || h.add(C(k)), d(L, f + 1);
|
|
2971
2971
|
} else
|
|
2972
|
-
h.add(C(k)),
|
|
2972
|
+
h.add(C(k)), d(L, f + 1);
|
|
2973
2973
|
});
|
|
2974
2974
|
};
|
|
2975
2975
|
const h = /* @__PURE__ */ new Set(), a = M.value;
|
|
2976
|
-
|
|
2976
|
+
d(p.value, 1), y.value.expandedKeys = h;
|
|
2977
2977
|
}
|
|
2978
2978
|
}
|
|
2979
|
-
function
|
|
2979
|
+
function de() {
|
|
2980
2980
|
if (n.defaultCheckedKeys && n.defaultCheckedKeys.length > 0) {
|
|
2981
|
-
let
|
|
2981
|
+
let d = function(f, k = []) {
|
|
2982
2982
|
f.forEach((L) => {
|
|
2983
2983
|
const K = C(L), P = [...k, K];
|
|
2984
|
-
h.has(K) && k.forEach((G) => a.add(G)), w(L) &&
|
|
2984
|
+
h.has(K) && k.forEach((G) => a.add(G)), w(L) && d(x(L), P);
|
|
2985
2985
|
});
|
|
2986
2986
|
};
|
|
2987
2987
|
const h = new Set(n.defaultCheckedKeys), a = /* @__PURE__ */ new Set();
|
|
2988
|
-
|
|
2988
|
+
d(p.value);
|
|
2989
2989
|
const r = M.value;
|
|
2990
2990
|
if (r) {
|
|
2991
2991
|
console.log(
|
|
@@ -2998,12 +2998,12 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
2998
2998
|
}
|
|
2999
2999
|
te(() => n.defaultExpandAll, ve, { immediate: !0 }), te(() => p.value, ve, { deep: !0 }), te(
|
|
3000
3000
|
() => n.defaultCheckedKeys,
|
|
3001
|
-
(
|
|
3002
|
-
|
|
3001
|
+
(d) => {
|
|
3002
|
+
d ? (y.value.checkedKeys = new Set(d), n.enableFourthLevelSpecialHandling ? console.log("权限树模式:跳过自动展开逻辑,保持当前展开状态") : de()) : y.value.checkedKeys.clear();
|
|
3003
3003
|
},
|
|
3004
3004
|
{ immediate: !0 }
|
|
3005
3005
|
);
|
|
3006
|
-
function we(
|
|
3006
|
+
function we(d) {
|
|
3007
3007
|
try {
|
|
3008
3008
|
let h = function(f, k, L = []) {
|
|
3009
3009
|
for (const K of f) {
|
|
@@ -3016,7 +3016,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3016
3016
|
}
|
|
3017
3017
|
return null;
|
|
3018
3018
|
};
|
|
3019
|
-
const a = Array.isArray(
|
|
3019
|
+
const a = Array.isArray(d) ? d : [];
|
|
3020
3020
|
if (a.length === 0) return;
|
|
3021
3021
|
y.value.highlightedKeys.clear();
|
|
3022
3022
|
const r = new Set(y.value.expandedKeys);
|
|
@@ -3036,11 +3036,11 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3036
3036
|
}
|
|
3037
3037
|
return $({ highlightAndExpandByIds: we, clearHighlights: N, clearCurrentNode: J }), te(
|
|
3038
3038
|
() => n.defaultSelectedKeys,
|
|
3039
|
-
(
|
|
3040
|
-
|
|
3039
|
+
(d) => {
|
|
3040
|
+
d && (y.value.selectedKeys = new Set(d));
|
|
3041
3041
|
},
|
|
3042
3042
|
{ immediate: !0 }
|
|
3043
|
-
), (
|
|
3043
|
+
), (d, h) => (i(), u("div", {
|
|
3044
3044
|
class: H(["ytree", [`ytree--${e.size}`, { "ytree--disabled": e.disabled }]])
|
|
3045
3045
|
}, [
|
|
3046
3046
|
o("div", Cl, [
|
|
@@ -3113,7 +3113,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3113
3113
|
class: H(["ytree-node__label", { "is-employee": b(a) }])
|
|
3114
3114
|
}, ee(B(a)), 3),
|
|
3115
3115
|
o("div", Bl, [
|
|
3116
|
-
ie(
|
|
3116
|
+
ie(d.$slots, "node-content", {
|
|
3117
3117
|
node: a,
|
|
3118
3118
|
isCurrent: E(a),
|
|
3119
3119
|
isExpanded: F(a),
|
|
@@ -3122,7 +3122,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3122
3122
|
])
|
|
3123
3123
|
], 42, Dl),
|
|
3124
3124
|
re(be, { name: "ytree-node" }, {
|
|
3125
|
-
default:
|
|
3125
|
+
default: ce(() => [
|
|
3126
3126
|
w(a) && F(a) ? (i(), u("div", Tl, [
|
|
3127
3127
|
(i(!0), u(ae, null, fe(x(a), (r) => (i(), u("div", {
|
|
3128
3128
|
key: C(r),
|
|
@@ -3193,7 +3193,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3193
3193
|
class: H(["ytree-node__label", { "is-employee": b(r) }])
|
|
3194
3194
|
}, ee(B(r)), 3),
|
|
3195
3195
|
o("div", Fl, [
|
|
3196
|
-
ie(
|
|
3196
|
+
ie(d.$slots, "node-content", {
|
|
3197
3197
|
node: r,
|
|
3198
3198
|
isCurrent: E(r),
|
|
3199
3199
|
isExpanded: F(r),
|
|
@@ -3202,7 +3202,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3202
3202
|
])
|
|
3203
3203
|
], 42, Kl),
|
|
3204
3204
|
re(be, { name: "ytree-node" }, {
|
|
3205
|
-
default:
|
|
3205
|
+
default: ce(() => [
|
|
3206
3206
|
w(r) && F(r) ? (i(), u("div", Pl, [
|
|
3207
3207
|
(i(!0), u(ae, null, fe(x(r), (f) => (i(), u("div", {
|
|
3208
3208
|
key: C(f),
|
|
@@ -3281,7 +3281,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3281
3281
|
class: H(["ytree-node__label", { "is-employee": b(f) }])
|
|
3282
3282
|
}, ee(B(f)), 3),
|
|
3283
3283
|
o("div", Ql, [
|
|
3284
|
-
ie(
|
|
3284
|
+
ie(d.$slots, "node-content", {
|
|
3285
3285
|
node: f,
|
|
3286
3286
|
isCurrent: E(f),
|
|
3287
3287
|
isExpanded: F(f),
|
|
@@ -3290,7 +3290,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3290
3290
|
])
|
|
3291
3291
|
], 42, Yl),
|
|
3292
3292
|
re(be, { name: "ytree-node" }, {
|
|
3293
|
-
default:
|
|
3293
|
+
default: ce(() => [
|
|
3294
3294
|
w(f) && F(f) ? (i(), u("div", Jl, [
|
|
3295
3295
|
(i(!0), u(ae, null, fe(x(f), (k) => (i(), u("div", {
|
|
3296
3296
|
key: C(k),
|
|
@@ -3380,7 +3380,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3380
3380
|
}])
|
|
3381
3381
|
}, ee(B(k)), 3),
|
|
3382
3382
|
o("div", ao, [
|
|
3383
|
-
ie(
|
|
3383
|
+
ie(d.$slots, "node-content", {
|
|
3384
3384
|
node: k,
|
|
3385
3385
|
isCurrent: E(k),
|
|
3386
3386
|
isExpanded: F(k),
|
|
@@ -3389,7 +3389,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3389
3389
|
])
|
|
3390
3390
|
], 42, Xl),
|
|
3391
3391
|
re(be, { name: "ytree-node" }, {
|
|
3392
|
-
default:
|
|
3392
|
+
default: ce(() => [
|
|
3393
3393
|
w(k) && F(k) ? (i(), u("div", so, [
|
|
3394
3394
|
(i(!0), u(ae, null, fe(x(
|
|
3395
3395
|
k
|
|
@@ -3484,7 +3484,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3484
3484
|
}])
|
|
3485
3485
|
}, ee(B(L)), 3),
|
|
3486
3486
|
o("div", po, [
|
|
3487
|
-
ie(
|
|
3487
|
+
ie(d.$slots, "node-content", {
|
|
3488
3488
|
node: L,
|
|
3489
3489
|
isCurrent: E(L),
|
|
3490
3490
|
isExpanded: F(L),
|
|
@@ -3627,7 +3627,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3627
3627
|
tag: "div",
|
|
3628
3628
|
class: "query-encapsulation__fields-group"
|
|
3629
3629
|
}, {
|
|
3630
|
-
default:
|
|
3630
|
+
default: ce(() => [
|
|
3631
3631
|
(i(!0), u(ae, null, fe(M.value, (I) => (i(), u("div", {
|
|
3632
3632
|
key: I.key,
|
|
3633
3633
|
class: "query-encapsulation__field-item"
|
|
@@ -3660,7 +3660,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3660
3660
|
size: "small",
|
|
3661
3661
|
onClick: x
|
|
3662
3662
|
}, {
|
|
3663
|
-
default:
|
|
3663
|
+
default: ce(() => [
|
|
3664
3664
|
xe(ee(m.value ? "收起" : "展开") + " ", 1),
|
|
3665
3665
|
o("span", {
|
|
3666
3666
|
class: H(["query-encapsulation__toggle-icon", { "is-expanded": m.value }])
|
|
@@ -3677,7 +3677,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3677
3677
|
onClick: g,
|
|
3678
3678
|
loading: e.loading
|
|
3679
3679
|
}, {
|
|
3680
|
-
default:
|
|
3680
|
+
default: ce(() => [...A[0] || (A[0] = [
|
|
3681
3681
|
xe(" 搜索 ", -1)
|
|
3682
3682
|
])]),
|
|
3683
3683
|
_: 1
|
|
@@ -3688,7 +3688,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3688
3688
|
onClick: w,
|
|
3689
3689
|
loading: e.loading
|
|
3690
3690
|
}, {
|
|
3691
|
-
default:
|
|
3691
|
+
default: ce(() => [...A[1] || (A[1] = [
|
|
3692
3692
|
xe(" 重置 ", -1)
|
|
3693
3693
|
])]),
|
|
3694
3694
|
_: 1
|
|
@@ -3738,7 +3738,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3738
3738
|
requestAnimationFrame(() => {
|
|
3739
3739
|
t.value = !0, $.duration && $.duration > 0 && (n = window.setTimeout(() => m(), $.duration));
|
|
3740
3740
|
});
|
|
3741
|
-
}),
|
|
3741
|
+
}), dt(() => {
|
|
3742
3742
|
n && window.clearTimeout(n);
|
|
3743
3743
|
});
|
|
3744
3744
|
function m() {
|
|
@@ -3752,7 +3752,7 @@ const dt = ["type", "disabled", "aria-busy", "aria-disabled"], ft = { class: "co
|
|
|
3752
3752
|
name: "y-msg-fade",
|
|
3753
3753
|
onAfterLeave: p
|
|
3754
3754
|
}, {
|
|
3755
|
-
default:
|
|
3755
|
+
default: ce(() => [
|
|
3756
3756
|
Ee(o("div", {
|
|
3757
3757
|
class: H(["y-msg", [`y-msg--${e.type}`]]),
|
|
3758
3758
|
style: se({ zIndex: e.zIndex }),
|