erp-plus 1.0.49 → 1.0.51
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/erp-plus.es.js +455 -447
- package/dist/erp-plus.umd.js +2 -2
- package/dist/packages/Avatar/Avatar.vue.d.ts +1 -1
- package/dist/packages/Button/Button.vue.d.ts +7 -7
- package/dist/packages/DatePicker/DatePicker.vue.d.ts +24 -9
- package/dist/packages/Dialog/Dialog.vue.d.ts +6 -6
- package/dist/packages/Input/Input.vue.d.ts +10 -10
- package/dist/packages/InputNumber/InputNumber.vue.d.ts +2 -2
- package/dist/packages/Loading/Loading.vue.d.ts +1 -1
- package/dist/packages/Select/Select.vue.d.ts +5 -5
- package/dist/packages/Table/Table.vue.d.ts +1 -1
- package/dist/packages/Tree/Tree.vue.d.ts +1 -1
- package/package.json +1 -1
package/dist/erp-plus.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as U, resolveComponent as Z, createBlock as
|
|
1
|
+
import { defineComponent as U, resolveComponent as Z, createBlock as y, openBlock as n, mergeProps as W, createSlots as l1, renderList as j, withCtx as I, renderSlot as T, normalizeProps as i1, guardReactiveProps as n1, computed as S, createElementBlock as z, normalizeStyle as e1, normalizeClass as c1, useSlots as f1, unref as u, createCommentVNode as K, createElementVNode as _, Fragment as X, toDisplayString as $, h as Y, createVNode as q, createTextVNode as w1, isRef as a1, ref as N, watch as m1, withKeys as _1, resolveDynamicComponent as K1, Transition as T1 } from "vue";
|
|
2
2
|
import Y1, { ElOption as G1, ElSelect as U1 } from "element-plus";
|
|
3
3
|
const u1 = /* @__PURE__ */ U({
|
|
4
4
|
__name: "Avatar",
|
|
@@ -34,16 +34,16 @@ const u1 = /* @__PURE__ */ U({
|
|
|
34
34
|
},
|
|
35
35
|
emits: ["error"],
|
|
36
36
|
setup(t, { emit: g }) {
|
|
37
|
-
const l = t, e = g, s = (
|
|
38
|
-
e("error",
|
|
37
|
+
const l = t, e = g, s = (w) => {
|
|
38
|
+
e("error", w);
|
|
39
39
|
};
|
|
40
|
-
return (
|
|
40
|
+
return (w, r) => {
|
|
41
41
|
const i = Z("el-avatar");
|
|
42
|
-
return n(),
|
|
43
|
-
j(
|
|
44
|
-
name:
|
|
45
|
-
fn:
|
|
46
|
-
|
|
42
|
+
return n(), y(i, W(l, { onError: s }), l1({ _: 2 }, [
|
|
43
|
+
j(w.$slots, (A, h) => ({
|
|
44
|
+
name: h,
|
|
45
|
+
fn: I((d) => [
|
|
46
|
+
T(w.$slots, h, i1(n1(d || {})))
|
|
47
47
|
])
|
|
48
48
|
}))
|
|
49
49
|
]), 1040);
|
|
@@ -380,13 +380,13 @@ const q3 = ["innerHTML"], S3 = /* @__PURE__ */ U({
|
|
|
380
380
|
const g = t, l = S(() => g.className ? `erp-svg-icon ${g.className}` : "erp-svg-icon"), e = S(() => {
|
|
381
381
|
if (g.iconClass.trim().startsWith("<svg"))
|
|
382
382
|
return g.iconClass;
|
|
383
|
-
const
|
|
384
|
-
return
|
|
383
|
+
const w = k1[g.iconClass];
|
|
384
|
+
return w || (console.warn(`[ErpPlus] 图标 "${g.iconClass}" 不存在`), "");
|
|
385
385
|
}), s = S(() => {
|
|
386
|
-
const
|
|
386
|
+
const w = typeof g.size == "number" ? g.size + "px" : g.size;
|
|
387
387
|
return {
|
|
388
|
-
width:
|
|
389
|
-
height:
|
|
388
|
+
width: w,
|
|
389
|
+
height: w,
|
|
390
390
|
color: g.color,
|
|
391
391
|
display: "inline-flex",
|
|
392
392
|
alignItems: "center",
|
|
@@ -394,7 +394,7 @@ const q3 = ["innerHTML"], S3 = /* @__PURE__ */ U({
|
|
|
394
394
|
verticalAlign: "middle"
|
|
395
395
|
};
|
|
396
396
|
});
|
|
397
|
-
return (
|
|
397
|
+
return (w, r) => (n(), z("i", {
|
|
398
398
|
class: c1(l.value),
|
|
399
399
|
innerHTML: e.value,
|
|
400
400
|
style: e1(s.value),
|
|
@@ -489,53 +489,53 @@ const q3 = ["innerHTML"], S3 = /* @__PURE__ */ U({
|
|
|
489
489
|
},
|
|
490
490
|
emits: ["click"],
|
|
491
491
|
setup(t, { emit: g }) {
|
|
492
|
-
const l = t, e = g, s = f1(),
|
|
493
|
-
e("click",
|
|
492
|
+
const l = t, e = g, s = f1(), w = (r) => {
|
|
493
|
+
e("click", r);
|
|
494
494
|
};
|
|
495
|
-
return (
|
|
495
|
+
return (r, i) => {
|
|
496
496
|
const A = Z("el-button");
|
|
497
|
-
return n(),
|
|
497
|
+
return n(), y(A, W(l, {
|
|
498
498
|
class: ["yw-button-" + t.type, "yw-button"],
|
|
499
|
-
onClick:
|
|
499
|
+
onClick: w
|
|
500
500
|
}), l1({ _: 2 }, [
|
|
501
|
-
j(u(s), (
|
|
502
|
-
name:
|
|
503
|
-
fn:
|
|
504
|
-
|
|
505
|
-
t.icon === "Plus" ? (n(),
|
|
501
|
+
j(u(s), (h, d) => ({
|
|
502
|
+
name: d,
|
|
503
|
+
fn: I((E) => [
|
|
504
|
+
T(r.$slots, "icon", {}, () => [
|
|
505
|
+
t.icon === "Plus" ? (n(), y(k, {
|
|
506
506
|
key: 0,
|
|
507
507
|
"icon-class": "button_add"
|
|
508
508
|
})) : K("", !0),
|
|
509
|
-
t.icon === "Save" ? (n(),
|
|
509
|
+
t.icon === "Save" ? (n(), y(k, {
|
|
510
510
|
key: 1,
|
|
511
511
|
"icon-class": "button_save"
|
|
512
512
|
})) : K("", !0),
|
|
513
|
-
t.icon === "Edit" ? (n(),
|
|
513
|
+
t.icon === "Edit" ? (n(), y(k, {
|
|
514
514
|
key: 2,
|
|
515
515
|
"icon-class": "button_edit"
|
|
516
516
|
})) : K("", !0),
|
|
517
|
-
t.icon === "Upload" ? (n(),
|
|
517
|
+
t.icon === "Upload" ? (n(), y(k, {
|
|
518
518
|
key: 3,
|
|
519
519
|
"icon-class": "button_import"
|
|
520
520
|
})) : K("", !0),
|
|
521
|
-
t.icon === "Download" ? (n(),
|
|
521
|
+
t.icon === "Download" ? (n(), y(k, {
|
|
522
522
|
key: 4,
|
|
523
523
|
"icon-class": "button_export"
|
|
524
524
|
})) : K("", !0),
|
|
525
|
-
t.icon === "Delete" ? (n(),
|
|
525
|
+
t.icon === "Delete" ? (n(), y(k, {
|
|
526
526
|
key: 5,
|
|
527
527
|
"icon-class": "button_trash"
|
|
528
528
|
})) : K("", !0),
|
|
529
|
-
t.icon === "Arrow_t" ? (n(),
|
|
529
|
+
t.icon === "Arrow_t" ? (n(), y(k, {
|
|
530
530
|
key: 6,
|
|
531
531
|
"icon-class": "arrowTop"
|
|
532
532
|
})) : K("", !0),
|
|
533
|
-
t.icon === "Arrow_b" ? (n(),
|
|
533
|
+
t.icon === "Arrow_b" ? (n(), y(k, {
|
|
534
534
|
key: 7,
|
|
535
535
|
"icon-class": "arrowBottom"
|
|
536
536
|
})) : K("", !0)
|
|
537
537
|
]),
|
|
538
|
-
|
|
538
|
+
T(r.$slots, d, i1(n1(E || {})))
|
|
539
539
|
])
|
|
540
540
|
}))
|
|
541
541
|
]), 1040, ["class"]);
|
|
@@ -569,29 +569,29 @@ const H3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
569
569
|
const g = f1();
|
|
570
570
|
return (l, e) => {
|
|
571
571
|
const s = Z("el-card");
|
|
572
|
-
return n(),
|
|
572
|
+
return n(), y(s, {
|
|
573
573
|
class: "box-card",
|
|
574
574
|
shadow: "never",
|
|
575
575
|
"header-class": t.headerClass,
|
|
576
576
|
"body-class": t.bodyClass,
|
|
577
577
|
"footer-class": t.footerClass
|
|
578
578
|
}, l1({
|
|
579
|
-
default:
|
|
580
|
-
|
|
581
|
-
|
|
579
|
+
default: I(() => [
|
|
580
|
+
_("div", Y3, [
|
|
581
|
+
T(l.$slots, "default", {}, void 0, !0)
|
|
582
582
|
])
|
|
583
583
|
]),
|
|
584
584
|
_: 2
|
|
585
585
|
}, [
|
|
586
586
|
u(g).title ? {
|
|
587
587
|
name: "header",
|
|
588
|
-
fn:
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
588
|
+
fn: I(() => [
|
|
589
|
+
_("div", _3, [
|
|
590
|
+
_("div", K3, [
|
|
591
|
+
T(l.$slots, "title", {}, void 0, !0)
|
|
592
592
|
]),
|
|
593
|
-
|
|
594
|
-
|
|
593
|
+
_("div", T3, [
|
|
594
|
+
T(l.$slots, "btns", {}, void 0, !0)
|
|
595
595
|
])
|
|
596
596
|
])
|
|
597
597
|
]),
|
|
@@ -616,33 +616,33 @@ const O3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
616
616
|
},
|
|
617
617
|
emits: ["update:modelValue", "change"],
|
|
618
618
|
setup(t, { emit: g }) {
|
|
619
|
-
const l = t, e = g, s = (
|
|
619
|
+
const l = t, e = g, s = (r) => Array.isArray(l.modelValue) ? l.modelValue.includes(r) : l.modelValue === r, w = (r, i) => {
|
|
620
620
|
if (i || l.disabled) return;
|
|
621
621
|
let A;
|
|
622
|
-
Array.isArray(l.modelValue) ? s(
|
|
622
|
+
Array.isArray(l.modelValue) ? s(r) ? A = l.modelValue.filter((h) => h !== r) : A = [...l.modelValue, r] : s(r) ? A = "" : A = r, e("update:modelValue", A), e("change", A);
|
|
623
623
|
};
|
|
624
|
-
return (
|
|
624
|
+
return (r, i) => {
|
|
625
625
|
const A = Z("svg-icon");
|
|
626
626
|
return n(), z("div", P3, [
|
|
627
|
-
(n(!0), z(
|
|
628
|
-
key:
|
|
627
|
+
(n(!0), z(X, null, j(t.options, (h, d) => (n(), z("div", {
|
|
628
|
+
key: d,
|
|
629
629
|
class: c1(["custom-checkbox-wrapper", {
|
|
630
|
-
"is-checked": s(
|
|
631
|
-
"is-disabled":
|
|
630
|
+
"is-checked": s(h.value),
|
|
631
|
+
"is-disabled": h.disabled || t.disabled
|
|
632
632
|
}]),
|
|
633
|
-
onClick: (
|
|
633
|
+
onClick: (E) => w(h.value, h.disabled)
|
|
634
634
|
}, [
|
|
635
|
-
|
|
636
|
-
s(
|
|
635
|
+
_("span", F3, [
|
|
636
|
+
s(h.value) ? (n(), y(A, {
|
|
637
637
|
key: 0,
|
|
638
638
|
style: { width: "16px", height: "16px" },
|
|
639
|
-
"icon-class":
|
|
640
|
-
}, null, 8, ["icon-class"])) : (n(),
|
|
639
|
+
"icon-class": h.disabled || t.disabled ? "checked_disabled_fill" : "checked_fill"
|
|
640
|
+
}, null, 8, ["icon-class"])) : (n(), y(A, {
|
|
641
641
|
key: 1,
|
|
642
642
|
style: { width: "16px", height: "16px" },
|
|
643
|
-
"icon-class":
|
|
643
|
+
"icon-class": h.disabled || t.disabled ? "unchecked_disabled" : "unchecked"
|
|
644
644
|
}, null, 8, ["icon-class"])),
|
|
645
|
-
|
|
645
|
+
_("span", J3, $(h.label), 1)
|
|
646
646
|
])
|
|
647
647
|
], 10, Z3))), 128))
|
|
648
648
|
]);
|
|
@@ -733,7 +733,7 @@ const N3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
733
733
|
},
|
|
734
734
|
prefixIcon: {
|
|
735
735
|
type: [String, Object],
|
|
736
|
-
default: () =>
|
|
736
|
+
default: () => Y("svg", {
|
|
737
737
|
viewBox: "0 0 1024 1024",
|
|
738
738
|
width: "16",
|
|
739
739
|
height: "16",
|
|
@@ -742,20 +742,20 @@ const N3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
742
742
|
"aria-hidden": "true",
|
|
743
743
|
style: { color: "#838599" }
|
|
744
744
|
}, [
|
|
745
|
-
|
|
745
|
+
Y("path", {
|
|
746
746
|
d: "M640 53.312a32 32 0 0 1 32 32V256a32 32 0 0 1-64 0v-53.312H448a32 32 0 0 1 0-64h160v-53.312a32 32 0 0 1 32-32zM96 426.688a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32v384c0 64.768-52.48 117.312-117.312 117.312H213.312A117.312 117.312 0 0 1 96 810.688v-384z m64 32v352c0 29.44 23.872 53.312 53.312 53.312h597.376c29.44 0 53.312-23.872 53.312-53.312v-352h-704z"
|
|
747
747
|
}),
|
|
748
|
-
|
|
748
|
+
Y("path", {
|
|
749
749
|
d: "M213.312 202.688A53.312 53.312 0 0 0 160 256v170.688a32 32 0 0 1-64 0V256c0-64.768 52.48-117.312 117.312-117.312h85.376a32 32 0 0 1 0 64H213.312z"
|
|
750
750
|
}),
|
|
751
|
-
|
|
751
|
+
Y("path", {
|
|
752
752
|
d: "M298.688 53.312a32 32 0 0 1 32 32V256a32 32 0 1 1-64 0V85.312a32 32 0 0 1 32-32zM757.312 170.688a32 32 0 0 1 32-32h21.376c64.768 0 117.312 52.48 117.312 117.312v170.688a32 32 0 0 1-64 0V256a53.312 53.312 0 0 0-53.312-53.312h-21.376a32 32 0 0 1-32-32z"
|
|
753
753
|
})
|
|
754
754
|
])
|
|
755
755
|
},
|
|
756
756
|
clearIcon: {
|
|
757
757
|
type: [String, Object],
|
|
758
|
-
default: () =>
|
|
758
|
+
default: () => Y("svg", {
|
|
759
759
|
viewBox: "0 0 1024 1024",
|
|
760
760
|
width: "12",
|
|
761
761
|
height: "12",
|
|
@@ -763,7 +763,7 @@ const N3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
763
763
|
class: "your-prefix-clear-icon",
|
|
764
764
|
style: { color: "#b2b4c6" }
|
|
765
765
|
}, [
|
|
766
|
-
|
|
766
|
+
Y("path", {
|
|
767
767
|
d: "M0 512a512 512 0 1 0 1024 0A512 512 0 0 0 0 512z m631.210667-179.541333a42.666667 42.666667 0 0 1 60.330666 60.416L572.330667 512l119.210666 119.125333a42.666667 42.666667 0 0 1-60.330666 60.416L512 572.330667 392.874667 691.541333a42.666667 42.666667 0 0 1-60.330667-60.416L451.669333 512 332.544 392.874667a42.666667 42.666667 0 1 1 60.330667-60.416L512 451.669333l119.210667-119.210666z"
|
|
768
768
|
})
|
|
769
769
|
])
|
|
@@ -815,71 +815,74 @@ const N3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
815
815
|
},
|
|
816
816
|
emits: ["update:modelValue", "change", "clear", "blur", "focus", "calendar-change", "visible-change", "panel-change"],
|
|
817
817
|
setup(t, { emit: g }) {
|
|
818
|
-
const l = t, e = S(() => l.type === "daterange" || l.type === "datetimerange" ? `yw-daterange-picker ${l.popperClass}` : `yw-date-picker ${l.popperClass}`), s = g,
|
|
818
|
+
const l = t, e = S(() => l.type === "daterange" || l.type === "datetimerange" ? `yw-daterange-picker ${l.popperClass}` : `yw-date-picker ${l.popperClass}`), s = g, w = S({
|
|
819
819
|
get() {
|
|
820
820
|
return l.modelValue;
|
|
821
821
|
},
|
|
822
|
-
set(
|
|
823
|
-
s("update:modelValue",
|
|
822
|
+
set(D) {
|
|
823
|
+
s("update:modelValue", D);
|
|
824
824
|
}
|
|
825
|
-
}),
|
|
826
|
-
s("change",
|
|
827
|
-
}, i = (
|
|
828
|
-
s("clear",
|
|
829
|
-
}, A = (
|
|
830
|
-
s("blur",
|
|
831
|
-
},
|
|
832
|
-
s("focus",
|
|
833
|
-
},
|
|
834
|
-
s("calendar-change",
|
|
835
|
-
},
|
|
836
|
-
s("visible-change",
|
|
837
|
-
}, Q = (
|
|
838
|
-
s("panel-change",
|
|
825
|
+
}), r = (D) => {
|
|
826
|
+
s("change", D);
|
|
827
|
+
}, i = (D) => {
|
|
828
|
+
s("clear", D);
|
|
829
|
+
}, A = (D) => {
|
|
830
|
+
s("blur", D);
|
|
831
|
+
}, h = (D) => {
|
|
832
|
+
s("focus", D);
|
|
833
|
+
}, d = (D) => {
|
|
834
|
+
s("calendar-change", D);
|
|
835
|
+
}, E = (D) => {
|
|
836
|
+
s("visible-change", D);
|
|
837
|
+
}, Q = (D) => {
|
|
838
|
+
s("panel-change", D);
|
|
839
839
|
};
|
|
840
|
-
return (
|
|
840
|
+
return (D, O) => {
|
|
841
841
|
const F = Z("el-date-picker");
|
|
842
|
-
return n(),
|
|
843
|
-
modelValue:
|
|
844
|
-
"onUpdate:modelValue": O[0] || (O[0] = (
|
|
842
|
+
return n(), y(F, W(l, {
|
|
843
|
+
modelValue: w.value,
|
|
844
|
+
"onUpdate:modelValue": O[0] || (O[0] = (p) => w.value = p),
|
|
845
845
|
popperClass: e.value,
|
|
846
|
-
onChange:
|
|
846
|
+
onChange: r,
|
|
847
847
|
onClear: i,
|
|
848
848
|
onBlur: A,
|
|
849
|
-
onFocus:
|
|
850
|
-
onCalendarChange:
|
|
851
|
-
onVisibleChange:
|
|
849
|
+
onFocus: h,
|
|
850
|
+
onCalendarChange: d,
|
|
851
|
+
onVisibleChange: E,
|
|
852
852
|
onPanelChange: Q
|
|
853
853
|
}), {
|
|
854
|
-
"prev-month":
|
|
854
|
+
"prev-month": I(() => [
|
|
855
855
|
q(k, {
|
|
856
856
|
iconClass: "16_16_arrow_left",
|
|
857
857
|
color: "#1a1a1a",
|
|
858
858
|
style: { width: "16px", height: "16px" }
|
|
859
859
|
})
|
|
860
860
|
]),
|
|
861
|
-
"next-month":
|
|
861
|
+
"next-month": I(() => [
|
|
862
862
|
q(k, {
|
|
863
863
|
iconClass: "16_16_arrow_right",
|
|
864
864
|
color: "#1a1a1a",
|
|
865
865
|
style: { width: "16px", height: "16px" }
|
|
866
866
|
})
|
|
867
867
|
]),
|
|
868
|
-
"prev-year":
|
|
868
|
+
"prev-year": I(() => [
|
|
869
869
|
q(k, {
|
|
870
870
|
iconClass: "16_16_arrow_2left",
|
|
871
871
|
color: "#1a1a1a",
|
|
872
872
|
style: { width: "16px", height: "16px" }
|
|
873
873
|
})
|
|
874
874
|
]),
|
|
875
|
-
"next-year":
|
|
875
|
+
"next-year": I(() => [
|
|
876
876
|
q(k, {
|
|
877
877
|
iconClass: "16_16_arrow_2right",
|
|
878
878
|
color: "#1a1a1a",
|
|
879
879
|
style: { width: "16px", height: "16px" }
|
|
880
880
|
})
|
|
881
881
|
]),
|
|
882
|
-
|
|
882
|
+
default: I(() => [
|
|
883
|
+
T(D.$slots, "default")
|
|
884
|
+
]),
|
|
885
|
+
_: 3
|
|
883
886
|
}, 16, ["modelValue", "popperClass"]);
|
|
884
887
|
};
|
|
885
888
|
}
|
|
@@ -1012,7 +1015,7 @@ const j3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1012
1015
|
},
|
|
1013
1016
|
closeIcon: {
|
|
1014
1017
|
type: Function,
|
|
1015
|
-
default: () =>
|
|
1018
|
+
default: () => Y(k, { iconClass: "16_16_close", color: "#1a1a1a" })
|
|
1016
1019
|
// 设置默认参数
|
|
1017
1020
|
},
|
|
1018
1021
|
zIndex: {
|
|
@@ -1030,46 +1033,46 @@ const j3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1030
1033
|
},
|
|
1031
1034
|
emits: ["open", "opened", "close", "closed", "open-auto-focus", "close-auto-focus", "submit"],
|
|
1032
1035
|
setup(t, { emit: g }) {
|
|
1033
|
-
const l = t, e = S(() => l.width && l.width !== "680" ? l.width : l.size === "small" ? "400" : l.size === "default" ? "680" : l.size === "large" ? "960" : l.size === "huge" ? "1200" : l.size === "full" ? "100%" : "680"), s = g,
|
|
1036
|
+
const l = t, e = S(() => l.width && l.width !== "680" ? l.width : l.size === "small" ? "400" : l.size === "default" ? "680" : l.size === "large" ? "960" : l.size === "huge" ? "1200" : l.size === "full" ? "100%" : "680"), s = g, w = () => {
|
|
1034
1037
|
s("open");
|
|
1035
|
-
},
|
|
1038
|
+
}, r = () => {
|
|
1036
1039
|
s("opened");
|
|
1037
1040
|
}, i = () => {
|
|
1038
1041
|
s("close");
|
|
1039
1042
|
}, A = () => {
|
|
1040
1043
|
console.log("handleClosed"), s("closed");
|
|
1041
|
-
},
|
|
1044
|
+
}, h = () => {
|
|
1042
1045
|
console.log("openAutoFocus"), s("open-auto-focus");
|
|
1043
|
-
},
|
|
1046
|
+
}, d = () => {
|
|
1044
1047
|
console.log("closeAutoFocus"), s("close-auto-focus");
|
|
1045
|
-
},
|
|
1048
|
+
}, E = () => {
|
|
1046
1049
|
s("submit");
|
|
1047
1050
|
};
|
|
1048
|
-
return (Q,
|
|
1051
|
+
return (Q, D) => {
|
|
1049
1052
|
const O = Z("el-dialog");
|
|
1050
|
-
return n(),
|
|
1053
|
+
return n(), y(O, W({ class: "yw-dialog" }, Q.$props, {
|
|
1051
1054
|
width: u(e),
|
|
1052
|
-
onOpen:
|
|
1053
|
-
onOpened:
|
|
1055
|
+
onOpen: w,
|
|
1056
|
+
onOpened: r,
|
|
1054
1057
|
onClose: i,
|
|
1055
1058
|
onClosed: A,
|
|
1056
|
-
onOpenAutoFocus:
|
|
1057
|
-
onCloseAutoFocus:
|
|
1059
|
+
onOpenAutoFocus: h,
|
|
1060
|
+
onCloseAutoFocus: d
|
|
1058
1061
|
}), l1({
|
|
1059
|
-
footer:
|
|
1060
|
-
Q.$slots.footer ?
|
|
1062
|
+
footer: I(() => [
|
|
1063
|
+
Q.$slots.footer ? T(Q.$slots, "footer", { key: 0 }) : (n(), z("div", R3, [
|
|
1061
1064
|
q(g1, { onClick: i }, {
|
|
1062
|
-
default:
|
|
1063
|
-
w1(
|
|
1065
|
+
default: I(() => [
|
|
1066
|
+
w1($(t.cancelText), 1)
|
|
1064
1067
|
]),
|
|
1065
1068
|
_: 1
|
|
1066
1069
|
}),
|
|
1067
1070
|
q(g1, {
|
|
1068
1071
|
type: "primary",
|
|
1069
|
-
onClick:
|
|
1072
|
+
onClick: E
|
|
1070
1073
|
}, {
|
|
1071
|
-
default:
|
|
1072
|
-
w1(
|
|
1074
|
+
default: I(() => [
|
|
1075
|
+
w1($(t.confirmText), 1)
|
|
1073
1076
|
]),
|
|
1074
1077
|
_: 1
|
|
1075
1078
|
})
|
|
@@ -1077,10 +1080,10 @@ const j3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1077
1080
|
]),
|
|
1078
1081
|
_: 2
|
|
1079
1082
|
}, [
|
|
1080
|
-
j(Q.$slots, (F,
|
|
1081
|
-
name:
|
|
1082
|
-
fn:
|
|
1083
|
-
|
|
1083
|
+
j(Q.$slots, (F, p) => ({
|
|
1084
|
+
name: p,
|
|
1085
|
+
fn: I((x) => [
|
|
1086
|
+
T(Q.$slots, p, i1(n1(x || {})))
|
|
1084
1087
|
])
|
|
1085
1088
|
}))
|
|
1086
1089
|
]), 1040, ["width"]);
|
|
@@ -1118,7 +1121,7 @@ const X3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1118
1121
|
},
|
|
1119
1122
|
clearIcon: {
|
|
1120
1123
|
type: [String, Object],
|
|
1121
|
-
default: () =>
|
|
1124
|
+
default: () => Y("svg", {
|
|
1122
1125
|
viewBox: "0 0 1024 1024",
|
|
1123
1126
|
width: "12",
|
|
1124
1127
|
height: "12",
|
|
@@ -1126,7 +1129,7 @@ const X3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1126
1129
|
class: "your-prefix-clear-icon",
|
|
1127
1130
|
style: { color: "#b2b4c6" }
|
|
1128
1131
|
}, [
|
|
1129
|
-
|
|
1132
|
+
Y("path", {
|
|
1130
1133
|
d: "M0 512a512 512 0 1 0 1024 0A512 512 0 0 0 0 512z m631.210667-179.541333a42.666667 42.666667 0 0 1 60.330666 60.416L572.330667 512l119.210666 119.125333a42.666667 42.666667 0 0 1-60.330666 60.416L512 572.330667 392.874667 691.541333a42.666667 42.666667 0 0 1-60.330667-60.416L451.669333 512 332.544 392.874667a42.666667 42.666667 0 1 1 60.330667-60.416L512 451.669333l119.210667-119.210666z"
|
|
1131
1134
|
})
|
|
1132
1135
|
])
|
|
@@ -1242,54 +1245,54 @@ const X3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1242
1245
|
get() {
|
|
1243
1246
|
return l.modelValue;
|
|
1244
1247
|
},
|
|
1245
|
-
set(
|
|
1246
|
-
e("update:modelValue",
|
|
1248
|
+
set(p) {
|
|
1249
|
+
e("update:modelValue", p);
|
|
1247
1250
|
}
|
|
1248
|
-
}),
|
|
1249
|
-
e("input",
|
|
1250
|
-
},
|
|
1251
|
-
e("change",
|
|
1252
|
-
}, i = (
|
|
1253
|
-
e("blur",
|
|
1254
|
-
}, A = (
|
|
1255
|
-
e("focus",
|
|
1256
|
-
},
|
|
1251
|
+
}), w = (p) => {
|
|
1252
|
+
e("input", p);
|
|
1253
|
+
}, r = (p) => {
|
|
1254
|
+
e("change", p);
|
|
1255
|
+
}, i = (p) => {
|
|
1256
|
+
e("blur", p);
|
|
1257
|
+
}, A = (p) => {
|
|
1258
|
+
e("focus", p);
|
|
1259
|
+
}, h = () => {
|
|
1257
1260
|
e("clear");
|
|
1258
|
-
},
|
|
1259
|
-
e("keydown",
|
|
1260
|
-
},
|
|
1261
|
-
e("mouseleave",
|
|
1262
|
-
}, Q = (
|
|
1263
|
-
e("mouseenter",
|
|
1264
|
-
},
|
|
1265
|
-
e("compositionstart",
|
|
1266
|
-
}, O = (
|
|
1267
|
-
e("compositionupdate",
|
|
1268
|
-
}, F = (
|
|
1269
|
-
e("compositionend",
|
|
1261
|
+
}, d = (p) => {
|
|
1262
|
+
e("keydown", p);
|
|
1263
|
+
}, E = (p) => {
|
|
1264
|
+
e("mouseleave", p);
|
|
1265
|
+
}, Q = (p) => {
|
|
1266
|
+
e("mouseenter", p);
|
|
1267
|
+
}, D = (p) => {
|
|
1268
|
+
e("compositionstart", p);
|
|
1269
|
+
}, O = (p) => {
|
|
1270
|
+
e("compositionupdate", p);
|
|
1271
|
+
}, F = (p) => {
|
|
1272
|
+
e("compositionend", p);
|
|
1270
1273
|
};
|
|
1271
|
-
return (
|
|
1274
|
+
return (p, x) => {
|
|
1272
1275
|
const P = Z("el-input");
|
|
1273
|
-
return n(),
|
|
1276
|
+
return n(), y(P, W(l, {
|
|
1274
1277
|
modelValue: u(s),
|
|
1275
|
-
"onUpdate:modelValue":
|
|
1278
|
+
"onUpdate:modelValue": x[0] || (x[0] = (V) => a1(s) ? s.value = V : null),
|
|
1276
1279
|
class: "yw-input",
|
|
1277
|
-
onInput:
|
|
1278
|
-
onChange:
|
|
1280
|
+
onInput: w,
|
|
1281
|
+
onChange: r,
|
|
1279
1282
|
onBlur: i,
|
|
1280
1283
|
onFocus: A,
|
|
1281
|
-
onClear:
|
|
1282
|
-
onKeydown:
|
|
1283
|
-
onMouseleave:
|
|
1284
|
+
onClear: h,
|
|
1285
|
+
onKeydown: d,
|
|
1286
|
+
onMouseleave: E,
|
|
1284
1287
|
onMouseenter: Q,
|
|
1285
|
-
onCompositionstart:
|
|
1288
|
+
onCompositionstart: D,
|
|
1286
1289
|
onCompositionupdate: O,
|
|
1287
1290
|
onCompositionend: F
|
|
1288
1291
|
}), l1({ _: 2 }, [
|
|
1289
|
-
j(
|
|
1290
|
-
name:
|
|
1291
|
-
fn:
|
|
1292
|
-
|
|
1292
|
+
j(p.$slots, (V, C) => ({
|
|
1293
|
+
name: C,
|
|
1294
|
+
fn: I((f) => [
|
|
1295
|
+
T(p.$slots, C, i1(n1(f || {})))
|
|
1293
1296
|
])
|
|
1294
1297
|
}))
|
|
1295
1298
|
]), 1040, ["modelValue"]);
|
|
@@ -1385,15 +1388,15 @@ const $3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1385
1388
|
get() {
|
|
1386
1389
|
return l.modelValue;
|
|
1387
1390
|
},
|
|
1388
|
-
set(
|
|
1389
|
-
s("update:modelValue",
|
|
1391
|
+
set(w) {
|
|
1392
|
+
s("update:modelValue", w);
|
|
1390
1393
|
}
|
|
1391
1394
|
}), s = g;
|
|
1392
|
-
return (
|
|
1395
|
+
return (w, r) => {
|
|
1393
1396
|
const i = Z("el-input-number");
|
|
1394
|
-
return n(),
|
|
1397
|
+
return n(), y(i, W({
|
|
1395
1398
|
modelValue: u(e),
|
|
1396
|
-
"onUpdate:modelValue":
|
|
1399
|
+
"onUpdate:modelValue": r[0] || (r[0] = (A) => a1(e) ? e.value = A : null)
|
|
1397
1400
|
}, l, { class: "yw-input-number" }), null, 16, ["modelValue"]);
|
|
1398
1401
|
};
|
|
1399
1402
|
}
|
|
@@ -1425,13 +1428,13 @@ const t4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1425
1428
|
setup(t) {
|
|
1426
1429
|
const g = t, l = S(() => g.modelValue);
|
|
1427
1430
|
return (e, s) => u(l) ? (n(), z("div", s4, [
|
|
1428
|
-
|
|
1429
|
-
s[0] || (s[0] =
|
|
1431
|
+
_("div", l4, [
|
|
1432
|
+
s[0] || (s[0] = _("img", {
|
|
1430
1433
|
src: e4,
|
|
1431
1434
|
alt: "Loading animation",
|
|
1432
1435
|
class: "gif-animation"
|
|
1433
1436
|
}, null, -1)),
|
|
1434
|
-
t.title ? (n(), z("div", a4,
|
|
1437
|
+
t.title ? (n(), z("div", a4, $(t.title), 1)) : K("", !0)
|
|
1435
1438
|
])
|
|
1436
1439
|
])) : K("", !0);
|
|
1437
1440
|
}
|
|
@@ -1463,7 +1466,7 @@ const o4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1463
1466
|
},
|
|
1464
1467
|
emits: ["update:currentPage", "update:pageSize", "page-change"],
|
|
1465
1468
|
setup(t, { emit: g }) {
|
|
1466
|
-
const l = t, e = S(() => l.layouts.includes("Total")), s = S(() => l.layouts.includes("Sizes")),
|
|
1469
|
+
const l = t, e = S(() => l.layouts.includes("Total")), s = S(() => l.layouts.includes("Sizes")), w = S(() => l.layouts.includes("Jumper")), r = g, i = Y("svg", {
|
|
1467
1470
|
viewBox: "0 0 1024 1024",
|
|
1468
1471
|
width: "12",
|
|
1469
1472
|
height: "12",
|
|
@@ -1472,62 +1475,62 @@ const o4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1472
1475
|
"aria-hidden": "true",
|
|
1473
1476
|
style: { color: "#1a1a1a" }
|
|
1474
1477
|
}, [
|
|
1475
|
-
|
|
1478
|
+
Y("path", {
|
|
1476
1479
|
d: "M396.458667 396.458667a42.666667 42.666667 0 0 1 60.416 0L682.666667 622.336l225.792-225.877333a42.666667 42.666667 0 0 1 60.416 60.416l-256 256a42.666667 42.666667 0 0 1-60.416 0l-256-256a42.666667 42.666667 0 0 1 0-60.416z"
|
|
1477
1480
|
})
|
|
1478
|
-
]), A = N(!1),
|
|
1479
|
-
m1(() => l.currentPage, (
|
|
1480
|
-
|
|
1481
|
-
}), m1(() => l.pageSize, (
|
|
1482
|
-
|
|
1481
|
+
]), A = N(!1), h = N(!1), d = N(l.currentPage), E = N(l.pageSize), Q = N(1), D = S(() => Math.max(1, Math.ceil(l.total / E.value)));
|
|
1482
|
+
m1(() => l.currentPage, (m) => {
|
|
1483
|
+
d.value = m;
|
|
1484
|
+
}), m1(() => l.pageSize, (m) => {
|
|
1485
|
+
E.value = m;
|
|
1483
1486
|
});
|
|
1484
1487
|
const O = S(() => {
|
|
1485
|
-
const
|
|
1486
|
-
if (
|
|
1487
|
-
return F(1,
|
|
1488
|
-
const
|
|
1489
|
-
let L =
|
|
1490
|
-
L < 1 ? (L = 1, J =
|
|
1488
|
+
const m = d.value, c = D.value, H = l.pagerCount;
|
|
1489
|
+
if (c <= H)
|
|
1490
|
+
return F(1, c);
|
|
1491
|
+
const R = (H - 1) / 2;
|
|
1492
|
+
let L = m - R, J = m + R;
|
|
1493
|
+
L < 1 ? (L = 1, J = H) : J > c && (J = c, L = c - H + 1);
|
|
1491
1494
|
let s1 = F(L, J);
|
|
1492
|
-
return L > 2 ? s1.unshift(1, "...") : L === 2 && s1.unshift(1), J <
|
|
1495
|
+
return L > 2 ? s1.unshift(1, "...") : L === 2 && s1.unshift(1), J < c - 1 ? s1.push("....", c) : J === c - 1 && s1.push(c), console.log("显示的页码:", s1), s1;
|
|
1493
1496
|
});
|
|
1494
|
-
function F(
|
|
1495
|
-
const
|
|
1496
|
-
for (let
|
|
1497
|
-
|
|
1498
|
-
return
|
|
1497
|
+
function F(m, c) {
|
|
1498
|
+
const H = [];
|
|
1499
|
+
for (let R = m; R <= c; R++)
|
|
1500
|
+
H.push(R);
|
|
1501
|
+
return H;
|
|
1499
1502
|
}
|
|
1500
|
-
const
|
|
1501
|
-
|
|
1502
|
-
},
|
|
1503
|
-
|
|
1503
|
+
const p = () => {
|
|
1504
|
+
d.value > 1 && (d.value--, B());
|
|
1505
|
+
}, x = () => {
|
|
1506
|
+
d.value = Math.max(1, d.value - 4), B();
|
|
1504
1507
|
}, P = () => {
|
|
1505
|
-
|
|
1508
|
+
d.value = Math.min(D.value, d.value + 4), B();
|
|
1506
1509
|
}, V = () => {
|
|
1507
|
-
|
|
1508
|
-
},
|
|
1509
|
-
typeof
|
|
1510
|
-
},
|
|
1511
|
-
|
|
1510
|
+
d.value < D.value && (d.value++, B());
|
|
1511
|
+
}, C = (m) => {
|
|
1512
|
+
typeof m == "number" && m !== d.value && (d.value = m, B());
|
|
1513
|
+
}, f = () => {
|
|
1514
|
+
d.value = 1, r("update:pageSize", E.value), B();
|
|
1512
1515
|
}, o = () => {
|
|
1513
1516
|
if (Q.value !== null) {
|
|
1514
|
-
const
|
|
1515
|
-
|
|
1517
|
+
const m = Math.max(1, Math.min(D.value, Q.value));
|
|
1518
|
+
m !== d.value ? (d.value = m, B()) : Q.value = 1;
|
|
1516
1519
|
}
|
|
1517
|
-
},
|
|
1518
|
-
|
|
1519
|
-
currentPage:
|
|
1520
|
-
pageSize:
|
|
1520
|
+
}, B = () => {
|
|
1521
|
+
r("update:currentPage", d.value), r("page-change", {
|
|
1522
|
+
currentPage: d.value,
|
|
1523
|
+
pageSize: E.value
|
|
1521
1524
|
});
|
|
1522
1525
|
};
|
|
1523
|
-
return (
|
|
1524
|
-
const
|
|
1526
|
+
return (m, c) => {
|
|
1527
|
+
const H = Z("el-option"), R = Z("el-select");
|
|
1525
1528
|
return n(), z("div", i4, [
|
|
1526
|
-
u(e) ? (n(), z("span", n4, " 共 " +
|
|
1527
|
-
|
|
1529
|
+
u(e) ? (n(), z("span", n4, " 共 " + $(t.total) + " 条 ", 1)) : K("", !0),
|
|
1530
|
+
_("div", {
|
|
1528
1531
|
class: "btn-prev btn-number",
|
|
1529
1532
|
style: e1({ cursor: t.currentPage === 1 ? "not-allowed" : "pointer" }),
|
|
1530
|
-
onClick:
|
|
1533
|
+
onClick: p
|
|
1531
1534
|
}, [
|
|
1532
1535
|
q(u(k), {
|
|
1533
1536
|
"icon-class": "12_12_arrow_left",
|
|
@@ -1535,14 +1538,14 @@ const o4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1535
1538
|
style: e1({ color: t.currentPage == 1 ? "#B3B5C7" : "#1A1A1A" })
|
|
1536
1539
|
}, null, 8, ["style"])
|
|
1537
1540
|
], 4),
|
|
1538
|
-
(n(!0), z(
|
|
1541
|
+
(n(!0), z(X, null, j(u(O), (L) => (n(), z(X, { key: L }, [
|
|
1539
1542
|
L === "..." ? (n(), z("div", {
|
|
1540
1543
|
key: 0,
|
|
1541
1544
|
class: "btn-number custom-pagination__btn custom-pagination__more",
|
|
1542
1545
|
style: e1({ paddingLeft: u(A) ? "9px" : "" }),
|
|
1543
|
-
onMouseenter:
|
|
1544
|
-
onMouseleave:
|
|
1545
|
-
onClick:
|
|
1546
|
+
onMouseenter: c[0] || (c[0] = (J) => A.value = !0),
|
|
1547
|
+
onMouseleave: c[1] || (c[1] = (J) => A.value = !1),
|
|
1548
|
+
onClick: x
|
|
1546
1549
|
}, [
|
|
1547
1550
|
q(u(k), {
|
|
1548
1551
|
"icon-class": u(A) ? "arrow_2left" : "more",
|
|
@@ -1552,42 +1555,42 @@ const o4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1552
1555
|
], 36)) : L === "...." ? (n(), z("div", {
|
|
1553
1556
|
key: 1,
|
|
1554
1557
|
class: "btn-number custom-pagination__btn custom-pagination__more",
|
|
1555
|
-
style: e1({ paddingRight: u(
|
|
1556
|
-
onMouseenter:
|
|
1557
|
-
onMouseleave:
|
|
1558
|
+
style: e1({ paddingRight: u(h) ? "9px" : "" }),
|
|
1559
|
+
onMouseenter: c[2] || (c[2] = (J) => h.value = !0),
|
|
1560
|
+
onMouseleave: c[3] || (c[3] = (J) => h.value = !1),
|
|
1558
1561
|
onClick: P
|
|
1559
1562
|
}, [
|
|
1560
1563
|
q(u(k), {
|
|
1561
|
-
"icon-class": u(
|
|
1564
|
+
"icon-class": u(h) ? "arrow_2right" : "more",
|
|
1562
1565
|
class: "svg-icon-page",
|
|
1563
|
-
style: e1({ color: u(
|
|
1566
|
+
style: e1({ color: u(h) ? "#1951FA" : "" })
|
|
1564
1567
|
}, null, 8, ["icon-class", "style"])
|
|
1565
1568
|
], 36)) : (n(), z("div", {
|
|
1566
1569
|
key: 2,
|
|
1567
1570
|
class: c1(["btn-number custom-pagination__btn", { "is-active": t.currentPage === L }]),
|
|
1568
|
-
onClick: (J) =>
|
|
1569
|
-
},
|
|
1571
|
+
onClick: (J) => C(L)
|
|
1572
|
+
}, $(L), 11, g4))
|
|
1570
1573
|
], 64))), 128)),
|
|
1571
|
-
|
|
1574
|
+
_("div", {
|
|
1572
1575
|
class: "btn-prev btn-number",
|
|
1573
|
-
style: e1({ cursor: t.currentPage === u(
|
|
1576
|
+
style: e1({ cursor: t.currentPage === u(D) ? "not-allowed" : "pointer" }),
|
|
1574
1577
|
onClick: V
|
|
1575
1578
|
}, [
|
|
1576
1579
|
q(u(k), {
|
|
1577
1580
|
"icon-class": "12_12_arrow_right",
|
|
1578
1581
|
class: "svg-icon-page",
|
|
1579
|
-
style: e1({ color: t.currentPage == u(
|
|
1582
|
+
style: e1({ color: t.currentPage == u(D) ? "#B3B5C7" : "#1A1A1A" })
|
|
1580
1583
|
}, null, 8, ["style"])
|
|
1581
1584
|
], 4),
|
|
1582
1585
|
u(s) ? (n(), z("div", A4, [
|
|
1583
|
-
q(
|
|
1584
|
-
modelValue: u(
|
|
1585
|
-
"onUpdate:modelValue":
|
|
1586
|
+
q(R, {
|
|
1587
|
+
modelValue: u(E),
|
|
1588
|
+
"onUpdate:modelValue": c[4] || (c[4] = (L) => a1(E) ? E.value = L : null),
|
|
1586
1589
|
"suffix-icon": u(i),
|
|
1587
|
-
onChange:
|
|
1590
|
+
onChange: f
|
|
1588
1591
|
}, {
|
|
1589
|
-
default:
|
|
1590
|
-
(n(!0), z(
|
|
1592
|
+
default: I(() => [
|
|
1593
|
+
(n(!0), z(X, null, j(t.pageSizes, (L) => (n(), y(H, {
|
|
1591
1594
|
key: L,
|
|
1592
1595
|
label: `${L} 条/页`,
|
|
1593
1596
|
value: L
|
|
@@ -1596,16 +1599,16 @@ const o4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1596
1599
|
_: 1
|
|
1597
1600
|
}, 8, ["modelValue", "suffix-icon"])
|
|
1598
1601
|
])) : K("", !0),
|
|
1599
|
-
u(
|
|
1600
|
-
|
|
1602
|
+
u(w) ? (n(), z("div", c4, [
|
|
1603
|
+
c[6] || (c[6] = _("span", null, "前往", -1)),
|
|
1601
1604
|
q(r1, {
|
|
1602
1605
|
modelValue: u(Q),
|
|
1603
|
-
"onUpdate:modelValue":
|
|
1606
|
+
"onUpdate:modelValue": c[5] || (c[5] = (L) => a1(Q) ? Q.value = L : null),
|
|
1604
1607
|
min: 1,
|
|
1605
|
-
max: u(
|
|
1608
|
+
max: u(D),
|
|
1606
1609
|
onKeyup: _1(o, ["enter"])
|
|
1607
1610
|
}, null, 8, ["modelValue", "max"]),
|
|
1608
|
-
|
|
1611
|
+
c[7] || (c[7] = _("span", null, "页", -1))
|
|
1609
1612
|
])) : K("", !0)
|
|
1610
1613
|
]);
|
|
1611
1614
|
};
|
|
@@ -1626,33 +1629,33 @@ const h4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1626
1629
|
},
|
|
1627
1630
|
emits: ["update:modelValue", "change"],
|
|
1628
1631
|
setup(t, { emit: g }) {
|
|
1629
|
-
const l = t, e = g, s = (
|
|
1632
|
+
const l = t, e = g, s = (r) => Array.isArray(l.modelValue) ? l.modelValue.includes(r) : l.modelValue === r, w = (r, i) => {
|
|
1630
1633
|
if (i || l.disabled) return;
|
|
1631
1634
|
let A;
|
|
1632
|
-
Array.isArray(l.modelValue) ? s(
|
|
1635
|
+
Array.isArray(l.modelValue) ? s(r) ? A = l.modelValue.filter((h) => h !== r) : A = [...l.modelValue, r] : s(r) ? A = "" : A = r, e("update:modelValue", A), e("change", A);
|
|
1633
1636
|
};
|
|
1634
|
-
return (
|
|
1637
|
+
return (r, i) => {
|
|
1635
1638
|
const A = Z("svg-icon");
|
|
1636
1639
|
return n(), z("div", r4, [
|
|
1637
|
-
(n(!0), z(
|
|
1638
|
-
key:
|
|
1640
|
+
(n(!0), z(X, null, j(t.options, (h, d) => (n(), z("div", {
|
|
1641
|
+
key: d,
|
|
1639
1642
|
class: c1(["custom-checkbox-wrapper", {
|
|
1640
|
-
"is-checked": s(
|
|
1641
|
-
"is-disabled":
|
|
1643
|
+
"is-checked": s(h.value),
|
|
1644
|
+
"is-disabled": h.disabled || t.disabled
|
|
1642
1645
|
}]),
|
|
1643
|
-
onClick: (
|
|
1646
|
+
onClick: (E) => w(h.value, h.disabled)
|
|
1644
1647
|
}, [
|
|
1645
|
-
|
|
1646
|
-
s(
|
|
1648
|
+
_("span", d4, [
|
|
1649
|
+
s(h.value) ? (n(), y(A, {
|
|
1647
1650
|
key: 0,
|
|
1648
1651
|
style: { width: "16px", height: "16px" },
|
|
1649
|
-
"icon-class":
|
|
1650
|
-
}, null, 8, ["icon-class"])) : (n(),
|
|
1652
|
+
"icon-class": h.disabled || t.disabled ? "checked_disabled_fill" : "checked_fill"
|
|
1653
|
+
}, null, 8, ["icon-class"])) : (n(), y(A, {
|
|
1651
1654
|
key: 1,
|
|
1652
1655
|
style: { width: "16px", height: "16px" },
|
|
1653
|
-
"icon-class":
|
|
1656
|
+
"icon-class": h.disabled || t.disabled ? "unchecked_disabled" : "unchecked"
|
|
1654
1657
|
}, null, 8, ["icon-class"])),
|
|
1655
|
-
|
|
1658
|
+
_("span", p4, $(h.label), 1)
|
|
1656
1659
|
])
|
|
1657
1660
|
], 10, v4))), 128))
|
|
1658
1661
|
]);
|
|
@@ -1803,7 +1806,7 @@ const C4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1803
1806
|
},
|
|
1804
1807
|
clearIcon: {
|
|
1805
1808
|
type: [String, Object],
|
|
1806
|
-
default: () =>
|
|
1809
|
+
default: () => Y("svg", {
|
|
1807
1810
|
viewBox: "0 0 1024 1024",
|
|
1808
1811
|
width: "12",
|
|
1809
1812
|
height: "12",
|
|
@@ -1811,7 +1814,7 @@ const C4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1811
1814
|
class: "your-prefix-clear-icon",
|
|
1812
1815
|
style: { color: "#b2b4c6" }
|
|
1813
1816
|
}, [
|
|
1814
|
-
|
|
1817
|
+
Y("path", {
|
|
1815
1818
|
d: "M0 512a512 512 0 1 0 1024 0A512 512 0 0 0 0 512z m631.210667-179.541333a42.666667 42.666667 0 0 1 60.330666 60.416L572.330667 512l119.210666 119.125333a42.666667 42.666667 0 0 1-60.330666 60.416L512 572.330667 392.874667 691.541333a42.666667 42.666667 0 0 1-60.330667-60.416L451.669333 512 332.544 392.874667a42.666667 42.666667 0 1 1 60.330667-60.416L512 451.669333l119.210667-119.210666z"
|
|
1816
1819
|
})
|
|
1817
1820
|
])
|
|
@@ -1822,7 +1825,7 @@ const C4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1822
1825
|
},
|
|
1823
1826
|
suffixIcon: {
|
|
1824
1827
|
type: [String, Object],
|
|
1825
|
-
default: () =>
|
|
1828
|
+
default: () => Y("svg", {
|
|
1826
1829
|
viewBox: "0 0 1024 1024",
|
|
1827
1830
|
width: "12",
|
|
1828
1831
|
height: "12",
|
|
@@ -1831,7 +1834,7 @@ const C4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1831
1834
|
"aria-hidden": "true",
|
|
1832
1835
|
style: { color: "#1a1a1a" }
|
|
1833
1836
|
}, [
|
|
1834
|
-
|
|
1837
|
+
Y("path", {
|
|
1835
1838
|
d: "M396.458667 396.458667a42.666667 42.666667 0 0 1 60.416 0L682.666667 622.336l225.792-225.877333a42.666667 42.666667 0 0 1 60.416 60.416l-256 256a42.666667 42.666667 0 0 1-60.416 0l-256-256a42.666667 42.666667 0 0 1 0-60.416z"
|
|
1836
1839
|
})
|
|
1837
1840
|
])
|
|
@@ -1875,75 +1878,75 @@ const C4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1875
1878
|
},
|
|
1876
1879
|
emits: ["update:modelValue", "change", "visible-change", "remove-tag", "clear", "focus", "blur", "popup-scroll"],
|
|
1877
1880
|
setup(t, { expose: g, emit: l }) {
|
|
1878
|
-
const e = t, s = S(() => e.config),
|
|
1879
|
-
const P = String(
|
|
1881
|
+
const e = t, s = S(() => e.config), w = f1(), r = S(() => w.default?.().length === 0 ? [] : w.default?.().flatMap((x) => {
|
|
1882
|
+
const P = String(x.type);
|
|
1880
1883
|
if (P.includes("yw-option") || P.includes("ywOption")) {
|
|
1881
|
-
const V =
|
|
1884
|
+
const V = x.children;
|
|
1882
1885
|
return {
|
|
1883
1886
|
type: G1,
|
|
1884
|
-
props:
|
|
1887
|
+
props: x.props || {},
|
|
1885
1888
|
children: V && V[0].children,
|
|
1886
|
-
key:
|
|
1889
|
+
key: x.key
|
|
1887
1890
|
};
|
|
1888
1891
|
}
|
|
1889
|
-
return
|
|
1892
|
+
return x;
|
|
1890
1893
|
})), i = l, A = S({
|
|
1891
1894
|
get() {
|
|
1892
1895
|
return e.modelValue;
|
|
1893
1896
|
},
|
|
1894
|
-
set(
|
|
1895
|
-
i("update:modelValue",
|
|
1897
|
+
set(x) {
|
|
1898
|
+
i("update:modelValue", x);
|
|
1896
1899
|
}
|
|
1897
|
-
}),
|
|
1898
|
-
i("change",
|
|
1899
|
-
},
|
|
1900
|
-
i("visible-change",
|
|
1901
|
-
},
|
|
1902
|
-
i("remove-tag",
|
|
1900
|
+
}), h = (x) => {
|
|
1901
|
+
i("change", x);
|
|
1902
|
+
}, d = (x) => {
|
|
1903
|
+
i("visible-change", x);
|
|
1904
|
+
}, E = (x) => {
|
|
1905
|
+
i("remove-tag", x);
|
|
1903
1906
|
}, Q = () => {
|
|
1904
1907
|
i("clear");
|
|
1905
|
-
},
|
|
1906
|
-
i("focus",
|
|
1907
|
-
}, O = (
|
|
1908
|
-
i("blur",
|
|
1909
|
-
}, F = (
|
|
1910
|
-
i("popup-scroll",
|
|
1911
|
-
},
|
|
1908
|
+
}, D = (x) => {
|
|
1909
|
+
i("focus", x);
|
|
1910
|
+
}, O = (x) => {
|
|
1911
|
+
i("blur", x);
|
|
1912
|
+
}, F = (x) => {
|
|
1913
|
+
i("popup-scroll", x);
|
|
1914
|
+
}, p = N(null);
|
|
1912
1915
|
return g({
|
|
1913
1916
|
/** 使选择器的输入框获取焦点 */
|
|
1914
1917
|
focus: () => {
|
|
1915
|
-
|
|
1918
|
+
p.value?.focus();
|
|
1916
1919
|
},
|
|
1917
1920
|
/** 使选择器的输入框失去焦点,并隐藏下拉框 */
|
|
1918
1921
|
blur: () => {
|
|
1919
|
-
|
|
1922
|
+
p.value?.blur();
|
|
1920
1923
|
},
|
|
1921
1924
|
/** 暴露当前选中的 label 属性 */
|
|
1922
|
-
selectedLabel: S(() =>
|
|
1923
|
-
}), (
|
|
1925
|
+
selectedLabel: S(() => p.value?.selectedLabel)
|
|
1926
|
+
}), (x, P) => (n(), y(u(U1), W(e, {
|
|
1924
1927
|
modelValue: A.value,
|
|
1925
1928
|
"onUpdate:modelValue": P[0] || (P[0] = (V) => A.value = V),
|
|
1926
1929
|
ref_key: "selectInstance",
|
|
1927
|
-
ref:
|
|
1930
|
+
ref: p,
|
|
1928
1931
|
class: "yw-select",
|
|
1929
1932
|
"popper-class": "yw-select-popper",
|
|
1930
|
-
onChange:
|
|
1931
|
-
onVisibleChange:
|
|
1932
|
-
onRemoveTag:
|
|
1933
|
+
onChange: h,
|
|
1934
|
+
onVisibleChange: d,
|
|
1935
|
+
onRemoveTag: E,
|
|
1933
1936
|
onClear: Q,
|
|
1934
1937
|
onBlur: O,
|
|
1935
|
-
onFocus:
|
|
1938
|
+
onFocus: D,
|
|
1936
1939
|
onPopupScroll: F
|
|
1937
1940
|
}), {
|
|
1938
|
-
default:
|
|
1939
|
-
|
|
1940
|
-
key: V.key ||
|
|
1941
|
+
default: I(() => [
|
|
1942
|
+
x.$slots.default ? (n(!0), z(X, { key: 0 }, j(r.value, (V, C) => (n(), y(K1(V.type), W({ ref_for: !0 }, V.props, {
|
|
1943
|
+
key: V.key || C
|
|
1941
1944
|
}), {
|
|
1942
|
-
default:
|
|
1943
|
-
w1(
|
|
1945
|
+
default: I(() => [
|
|
1946
|
+
w1($(V.children), 1)
|
|
1944
1947
|
]),
|
|
1945
1948
|
_: 2
|
|
1946
|
-
}, 1040))), 128)) : (n(!0), z(
|
|
1949
|
+
}, 1040))), 128)) : (n(!0), z(X, { key: 1 }, j(t.options, (V) => (n(), y(u(G1), {
|
|
1947
1950
|
key: V[s.value.value],
|
|
1948
1951
|
label: V[s.value.label],
|
|
1949
1952
|
value: V[s.value.value],
|
|
@@ -2035,32 +2038,32 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2035
2038
|
"scroll"
|
|
2036
2039
|
],
|
|
2037
2040
|
setup(t, { expose: g, emit: l }) {
|
|
2038
|
-
const e = l, s = (a) => a == null || typeof a == "string" && a.trim() === "",
|
|
2041
|
+
const e = l, s = (a) => a == null || typeof a == "string" && a.trim() === "", w = t, r = S(() => w.loading ? "" : w.emptyText || "暂无数据"), i = N({}), A = N(), h = (a, v) => i.value[a]?.[v], d = (a, v, M) => {
|
|
2039
2042
|
i.value[a] || (i.value[a] = {}), M ? i.value[a][v] = M : (delete i.value[a][v], Object.keys(i.value[a]).length === 0 && delete i.value[a]);
|
|
2040
|
-
},
|
|
2041
|
-
const M =
|
|
2042
|
-
if (!M || !M.required || !v || !
|
|
2043
|
-
return
|
|
2044
|
-
const o1 =
|
|
2045
|
-
return o1 == null || o1 === "" ? (
|
|
2043
|
+
}, E = (a, v) => {
|
|
2044
|
+
const M = w.columns?.find((b) => b.prop === v), G = w.data?.[a];
|
|
2045
|
+
if (!M || !M.required || !v || !G)
|
|
2046
|
+
return d(a, v, null), !0;
|
|
2047
|
+
const o1 = G[v];
|
|
2048
|
+
return o1 == null || o1 === "" ? (d(a, v, `${M.label || M.prop} 为必填项`), !1) : (d(a, v, null), !0);
|
|
2046
2049
|
}, Q = (a, v) => {
|
|
2047
2050
|
if (!(!v || !a))
|
|
2048
|
-
return v.includes(".") ? v.split(".").reduce((M,
|
|
2051
|
+
return v.includes(".") ? v.split(".").reduce((M, G) => M && M[G] !== void 0 ? M[G] : void 0, a) : a[v];
|
|
2049
2052
|
};
|
|
2050
2053
|
g({
|
|
2051
2054
|
validate: async () => {
|
|
2052
|
-
if (!
|
|
2055
|
+
if (!w.columns || !w.data) return !0;
|
|
2053
2056
|
let a = !0;
|
|
2054
|
-
return
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
+
return w.data.forEach((v, M) => {
|
|
2058
|
+
w.columns.forEach((G) => {
|
|
2059
|
+
G.required && G.prop && G.slotName && (E(M, G.prop) || (a = !1));
|
|
2057
2060
|
});
|
|
2058
2061
|
}), a;
|
|
2059
2062
|
},
|
|
2060
2063
|
clearValidate: () => {
|
|
2061
2064
|
i.value = {};
|
|
2062
2065
|
},
|
|
2063
|
-
validateCell:
|
|
2066
|
+
validateCell: E,
|
|
2064
2067
|
// 暴露给父组件,以便在插槽组件的事件中手动触发单项校验
|
|
2065
2068
|
toggleRowExpansion: (a, v) => {
|
|
2066
2069
|
A.value.toggleRowExpansion(a, v);
|
|
@@ -2068,29 +2071,29 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2068
2071
|
tableRef: A
|
|
2069
2072
|
// 暴露 el-table 实例
|
|
2070
2073
|
});
|
|
2071
|
-
const
|
|
2074
|
+
const p = (a, v) => {
|
|
2072
2075
|
e("select", a, v);
|
|
2073
|
-
},
|
|
2076
|
+
}, x = (a) => {
|
|
2074
2077
|
e("select-all", a);
|
|
2075
2078
|
}, P = (a) => {
|
|
2076
2079
|
e("selection-change", a);
|
|
2077
|
-
}, V = (a, v, M,
|
|
2078
|
-
e("cell-mouse-enter", a, v, M,
|
|
2079
|
-
},
|
|
2080
|
-
e("cell-mouse-leave", a, v, M,
|
|
2081
|
-
},
|
|
2082
|
-
e("cell-click", a, v, M,
|
|
2083
|
-
}, o = (a, v, M,
|
|
2084
|
-
e("cell-dblclick", a, v, M,
|
|
2085
|
-
},
|
|
2086
|
-
e("cell-contextmenu", a, v, M,
|
|
2087
|
-
},
|
|
2088
|
-
e("row-click", a, v, M,
|
|
2089
|
-
},
|
|
2090
|
-
e("row-dblclick", a, v, M,
|
|
2091
|
-
},
|
|
2092
|
-
e("row-contextmenu", a, v, M,
|
|
2093
|
-
},
|
|
2080
|
+
}, V = (a, v, M, G) => {
|
|
2081
|
+
e("cell-mouse-enter", a, v, M, G);
|
|
2082
|
+
}, C = (a, v, M, G) => {
|
|
2083
|
+
e("cell-mouse-leave", a, v, M, G);
|
|
2084
|
+
}, f = (a, v, M, G) => {
|
|
2085
|
+
e("cell-click", a, v, M, G);
|
|
2086
|
+
}, o = (a, v, M, G) => {
|
|
2087
|
+
e("cell-dblclick", a, v, M, G);
|
|
2088
|
+
}, B = (a, v, M, G) => {
|
|
2089
|
+
e("cell-contextmenu", a, v, M, G);
|
|
2090
|
+
}, m = (a, v, M, G) => {
|
|
2091
|
+
e("row-click", a, v, M, G);
|
|
2092
|
+
}, c = (a, v, M, G) => {
|
|
2093
|
+
e("row-dblclick", a, v, M, G);
|
|
2094
|
+
}, H = (a, v, M, G) => {
|
|
2095
|
+
e("row-contextmenu", a, v, M, G);
|
|
2096
|
+
}, R = (a, v) => {
|
|
2094
2097
|
e("header-click", a, v);
|
|
2095
2098
|
}, L = (a, v) => {
|
|
2096
2099
|
e("header-contextmenu", a, v);
|
|
@@ -2108,12 +2111,12 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2108
2111
|
e("scroll", a);
|
|
2109
2112
|
};
|
|
2110
2113
|
return (a, v) => {
|
|
2111
|
-
const M = Z("el-tooltip"),
|
|
2114
|
+
const M = Z("el-tooltip"), G = Z("el-table-column"), o1 = Z("el-table");
|
|
2112
2115
|
return n(), z("div", u4, [
|
|
2113
2116
|
q(T1, { name: "fade" }, {
|
|
2114
|
-
default:
|
|
2117
|
+
default: I(() => [
|
|
2115
2118
|
q(v1, {
|
|
2116
|
-
"model-value":
|
|
2119
|
+
"model-value": w.loading,
|
|
2117
2120
|
class: "yw-table-body-loading"
|
|
2118
2121
|
}, null, 8, ["model-value"])
|
|
2119
2122
|
]),
|
|
@@ -2123,21 +2126,21 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2123
2126
|
ref_key: "tableRef",
|
|
2124
2127
|
ref: A,
|
|
2125
2128
|
class: "yw-table"
|
|
2126
|
-
},
|
|
2127
|
-
data:
|
|
2128
|
-
"empty-text": u(
|
|
2129
|
-
onSelect:
|
|
2130
|
-
onSelectAll:
|
|
2129
|
+
}, w, {
|
|
2130
|
+
data: w.data,
|
|
2131
|
+
"empty-text": u(r),
|
|
2132
|
+
onSelect: p,
|
|
2133
|
+
onSelectAll: x,
|
|
2131
2134
|
onSelectionChange: P,
|
|
2132
2135
|
onCellMouseEnter: V,
|
|
2133
|
-
onCellMouseLeave:
|
|
2134
|
-
onCellClick:
|
|
2136
|
+
onCellMouseLeave: C,
|
|
2137
|
+
onCellClick: f,
|
|
2135
2138
|
onCellDblclick: o,
|
|
2136
|
-
onCellContextmenu:
|
|
2137
|
-
onRowClick:
|
|
2138
|
-
onRowContextmenu:
|
|
2139
|
-
onRowDblclick:
|
|
2140
|
-
onHeaderClick:
|
|
2139
|
+
onCellContextmenu: B,
|
|
2140
|
+
onRowClick: m,
|
|
2141
|
+
onRowContextmenu: H,
|
|
2142
|
+
onRowDblclick: c,
|
|
2143
|
+
onHeaderClick: R,
|
|
2141
2144
|
onHeaderContextmenu: L,
|
|
2142
2145
|
onSortChange: J,
|
|
2143
2146
|
onFilterChange: s1,
|
|
@@ -2146,38 +2149,38 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2146
2149
|
onExpandChange: S1,
|
|
2147
2150
|
onScroll: b1
|
|
2148
2151
|
}), {
|
|
2149
|
-
default:
|
|
2150
|
-
(n(!0), z(
|
|
2152
|
+
default: I(() => [
|
|
2153
|
+
(n(!0), z(X, null, j(w.columns.filter((b) => b.visible !== !1), (b, H1) => (n(), y(G, W({ key: H1 }, { ref_for: !0 }, b, {
|
|
2151
2154
|
"show-overflow-tooltip": b.showOverflowTooltip !== !1
|
|
2152
2155
|
}), l1({
|
|
2153
|
-
default:
|
|
2154
|
-
b.slotName ? (n(),
|
|
2156
|
+
default: I((t1) => [
|
|
2157
|
+
b.slotName ? (n(), y(M, {
|
|
2155
2158
|
key: 0,
|
|
2156
|
-
visible: !!
|
|
2159
|
+
visible: !!h(t1.$index, b.prop),
|
|
2157
2160
|
"show-arrow": !1,
|
|
2158
|
-
content:
|
|
2161
|
+
content: h(t1.$index, b.prop),
|
|
2159
2162
|
placement: "bottom-start",
|
|
2160
2163
|
manual: "",
|
|
2161
2164
|
effect: "light",
|
|
2162
2165
|
"popper-class": "yw-table-error-tip"
|
|
2163
2166
|
}, {
|
|
2164
|
-
default:
|
|
2165
|
-
|
|
2166
|
-
class: c1(["yw-table-cell-content", { "is-error":
|
|
2167
|
+
default: I(() => [
|
|
2168
|
+
_("div", {
|
|
2169
|
+
class: c1(["yw-table-cell-content", { "is-error": h(t1.$index, b.prop) }])
|
|
2167
2170
|
}, [
|
|
2168
|
-
b.prop && !b.isEdit && s(Q(t1.row, b.prop)) && t.emptyState ? (n(), z(
|
|
2171
|
+
b.prop && !b.isEdit && s(Q(t1.row, b.prop)) && t.emptyState ? (n(), z(X, { key: 0 }, [
|
|
2169
2172
|
w1(" - ")
|
|
2170
|
-
], 64)) :
|
|
2173
|
+
], 64)) : T(a.$slots, b.slotName, W({
|
|
2171
2174
|
key: 1,
|
|
2172
2175
|
ref_for: !0
|
|
2173
2176
|
}, t1), void 0, !0)
|
|
2174
2177
|
], 2)
|
|
2175
2178
|
]),
|
|
2176
2179
|
_: 2
|
|
2177
|
-
}, 1032, ["visible", "content"])) : (n(), z(
|
|
2178
|
-
["selection", "index", "expand"].includes(b.type) ? (n(), z(
|
|
2179
|
-
b.type === "index" ? (n(), z("span", B4,
|
|
2180
|
-
], 64)) : (n(), z("div", D4,
|
|
2180
|
+
}, 1032, ["visible", "content"])) : (n(), z(X, { key: 1 }, [
|
|
2181
|
+
["selection", "index", "expand"].includes(b.type) ? (n(), z(X, { key: 0 }, [
|
|
2182
|
+
b.type === "index" ? (n(), z("span", B4, $(t1.$index + 1), 1)) : K("", !0)
|
|
2183
|
+
], 64)) : (n(), z("div", D4, $(s(Q(t1.row, b.prop)) && t.emptyState ? "-" : Q(
|
|
2181
2184
|
t1.row,
|
|
2182
2185
|
b.prop
|
|
2183
2186
|
)), 1))
|
|
@@ -2187,8 +2190,8 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2187
2190
|
}, [
|
|
2188
2191
|
b.slotHeaderName ? {
|
|
2189
2192
|
name: "header",
|
|
2190
|
-
fn:
|
|
2191
|
-
|
|
2193
|
+
fn: I((t1) => [
|
|
2194
|
+
T(a.$slots, b.slotHeaderName, W({ ref_for: !0 }, t1), void 0, !0)
|
|
2192
2195
|
]),
|
|
2193
2196
|
key: "0"
|
|
2194
2197
|
} : void 0
|
|
@@ -2284,7 +2287,7 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2284
2287
|
},
|
|
2285
2288
|
icon: {
|
|
2286
2289
|
type: Object,
|
|
2287
|
-
default: () =>
|
|
2290
|
+
default: () => Y(k, { iconClass: "12_12_fill_arrow_right" })
|
|
2288
2291
|
// 设置默认参数
|
|
2289
2292
|
},
|
|
2290
2293
|
lazy: {
|
|
@@ -2304,63 +2307,63 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2304
2307
|
},
|
|
2305
2308
|
emits: ["node-click", "node-contextmenu", "check-change", "check", "current-change", "node-expand", "node-collapse", "node-drag-start", "node-drag-enter", "node-drag-leave", "node-drag-over", "node-drag-end", "node-drop"],
|
|
2306
2309
|
setup(t, { expose: g, emit: l }) {
|
|
2307
|
-
const e = t, s = l,
|
|
2308
|
-
s("node-click",
|
|
2309
|
-
}, i = (
|
|
2310
|
-
s("node-contextmenu",
|
|
2311
|
-
}, A = (
|
|
2312
|
-
s("check-change",
|
|
2313
|
-
},
|
|
2314
|
-
s("check",
|
|
2315
|
-
},
|
|
2316
|
-
s("current-change",
|
|
2317
|
-
},
|
|
2318
|
-
s("node-expand",
|
|
2319
|
-
}, Q = (
|
|
2320
|
-
s("node-collapse",
|
|
2321
|
-
},
|
|
2322
|
-
s("node-drag-start",
|
|
2323
|
-
}, O = (
|
|
2324
|
-
s("node-drag-enter",
|
|
2325
|
-
}, F = (
|
|
2326
|
-
s("node-drag-leave",
|
|
2327
|
-
},
|
|
2328
|
-
s("node-drag-over",
|
|
2329
|
-
},
|
|
2330
|
-
s("node-drag-end",
|
|
2331
|
-
}, P = (
|
|
2332
|
-
s("node-drop",
|
|
2310
|
+
const e = t, s = l, w = N(), r = (C, f, o) => {
|
|
2311
|
+
s("node-click", C, f, o);
|
|
2312
|
+
}, i = (C, f, o) => {
|
|
2313
|
+
s("node-contextmenu", C, f, o);
|
|
2314
|
+
}, A = (C, f, o) => {
|
|
2315
|
+
s("check-change", C, f, o);
|
|
2316
|
+
}, h = (C, f) => {
|
|
2317
|
+
s("check", C, f);
|
|
2318
|
+
}, d = (C) => {
|
|
2319
|
+
s("current-change", C);
|
|
2320
|
+
}, E = (C) => {
|
|
2321
|
+
s("node-expand", C);
|
|
2322
|
+
}, Q = (C) => {
|
|
2323
|
+
s("node-collapse", C);
|
|
2324
|
+
}, D = (C, f) => {
|
|
2325
|
+
s("node-drag-start", C, f);
|
|
2326
|
+
}, O = (C, f, o) => {
|
|
2327
|
+
s("node-drag-enter", C, f, o);
|
|
2328
|
+
}, F = (C, f, o) => {
|
|
2329
|
+
s("node-drag-leave", C, f, o);
|
|
2330
|
+
}, p = (C, f, o) => {
|
|
2331
|
+
s("node-drag-over", C, f, o);
|
|
2332
|
+
}, x = (C, f, o) => {
|
|
2333
|
+
s("node-drag-end", C, f, o);
|
|
2334
|
+
}, P = (C, f, o, B) => {
|
|
2335
|
+
s("node-drop", C, f, o, B);
|
|
2333
2336
|
};
|
|
2334
2337
|
return g({
|
|
2335
2338
|
clearSelection: () => {
|
|
2336
|
-
const
|
|
2337
|
-
|
|
2339
|
+
const C = w.value;
|
|
2340
|
+
C && C.setCurrentKey(null);
|
|
2338
2341
|
}
|
|
2339
|
-
}), (
|
|
2342
|
+
}), (C, f) => {
|
|
2340
2343
|
const o = Z("el-tree");
|
|
2341
|
-
return n(),
|
|
2344
|
+
return n(), y(o, W({
|
|
2342
2345
|
ref_key: "treeRef",
|
|
2343
|
-
ref:
|
|
2346
|
+
ref: w,
|
|
2344
2347
|
class: "custom-tree"
|
|
2345
2348
|
}, e, {
|
|
2346
|
-
onNodeClick:
|
|
2349
|
+
onNodeClick: r,
|
|
2347
2350
|
onNodeContextmenu: i,
|
|
2348
2351
|
onCheckChange: A,
|
|
2349
|
-
onCheck:
|
|
2350
|
-
onCurrentChange:
|
|
2351
|
-
onNodeExpand:
|
|
2352
|
+
onCheck: h,
|
|
2353
|
+
onCurrentChange: d,
|
|
2354
|
+
onNodeExpand: E,
|
|
2352
2355
|
onNodeCollapse: Q,
|
|
2353
|
-
onNodeDragStart:
|
|
2356
|
+
onNodeDragStart: D,
|
|
2354
2357
|
onNodeDragEnter: O,
|
|
2355
2358
|
onNodeDragLeave: F,
|
|
2356
|
-
onNodeDragOver:
|
|
2357
|
-
onNodeDragEnd:
|
|
2359
|
+
onNodeDragOver: p,
|
|
2360
|
+
onNodeDragEnd: x,
|
|
2358
2361
|
onNodeDrop: P
|
|
2359
2362
|
}), {
|
|
2360
|
-
default:
|
|
2361
|
-
|
|
2362
|
-
node:
|
|
2363
|
-
data:
|
|
2363
|
+
default: I(({ node: B, data: m }) => [
|
|
2364
|
+
T(C.$slots, "default", {
|
|
2365
|
+
node: B,
|
|
2366
|
+
data: m
|
|
2364
2367
|
})
|
|
2365
2368
|
]),
|
|
2366
2369
|
_: 3
|
|
@@ -2398,6 +2401,10 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2398
2401
|
type: Boolean,
|
|
2399
2402
|
default: !1
|
|
2400
2403
|
},
|
|
2404
|
+
emptyState: {
|
|
2405
|
+
type: Boolean,
|
|
2406
|
+
default: !0
|
|
2407
|
+
},
|
|
2401
2408
|
size: {
|
|
2402
2409
|
type: String,
|
|
2403
2410
|
default: "huge"
|
|
@@ -2456,63 +2463,64 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2456
2463
|
},
|
|
2457
2464
|
emits: ["update:modelValue", "update:selectedIds", "node-click", "page-change", "submit"],
|
|
2458
2465
|
setup(t, { expose: g, emit: l }) {
|
|
2459
|
-
const e = t, s = l,
|
|
2466
|
+
const e = t, s = l, w = N(1), r = N(15), i = N([]), A = N([]), h = S({
|
|
2460
2467
|
get() {
|
|
2461
2468
|
return e.modelValue;
|
|
2462
2469
|
},
|
|
2463
2470
|
set(o) {
|
|
2464
2471
|
s("update:modelValue", o);
|
|
2465
2472
|
}
|
|
2466
|
-
}),
|
|
2473
|
+
}), d = () => e.isTree ? e.multiple ? { width: "calc(100% - 544px)" } : { width: "calc(100% - 232px)", marginRight: "16px" } : e.multiple ? { width: "calc(100% - 332px)", marginLeft: "16px" } : { width: "calc(100% - 32px)", marginLeft: "16px" };
|
|
2467
2474
|
m1(() => e.modelValue, (o) => {
|
|
2468
2475
|
o && (i.value = [...e.selectedIds], A.value = [...e.allOption]);
|
|
2469
2476
|
}, { immediate: !0 });
|
|
2470
|
-
const
|
|
2477
|
+
const E = S(() => A.value.filter(
|
|
2471
2478
|
(o) => i.value.includes(o[e.rowKey])
|
|
2472
2479
|
)), Q = (o) => {
|
|
2473
2480
|
console.log("node-click", o), s("node-click", o);
|
|
2474
|
-
},
|
|
2481
|
+
}, D = (o) => {
|
|
2475
2482
|
s("page-change", o);
|
|
2476
|
-
}, O = (o) => i.value.includes(o[e.rowKey]) ? "16_16_checkbox_select" : e.disabledLogic(o) ? "16_16_checkbox_normal_disable" : "16_16_checkbox_normal", F = (o) => i.value.includes(o[e.rowKey]) ? "16_16_radio_select" : e.disabledLogic(o) ? "16_16_radio_normal_disable" : "16_16_radio_normal",
|
|
2477
|
-
const
|
|
2483
|
+
}, O = (o) => i.value.includes(o[e.rowKey]) ? "16_16_checkbox_select" : e.disabledLogic(o) ? "16_16_checkbox_normal_disable" : "16_16_checkbox_normal", F = (o) => i.value.includes(o[e.rowKey]) ? "16_16_radio_select" : e.disabledLogic(o) ? "16_16_radio_normal_disable" : "16_16_radio_normal", p = (o) => {
|
|
2484
|
+
const B = o[e.rowKey];
|
|
2478
2485
|
if (!e.disabledLogic(o))
|
|
2479
2486
|
if (e.multiple)
|
|
2480
|
-
i.value.includes(
|
|
2487
|
+
i.value.includes(B) ? i.value = i.value.filter((m) => m !== B) : (i.value.push(B), A.value.some((m) => m[e.rowKey] === B) || A.value.push(o));
|
|
2481
2488
|
else {
|
|
2482
|
-
if (i.value.includes(
|
|
2483
|
-
i.value = [
|
|
2489
|
+
if (i.value.includes(B)) return;
|
|
2490
|
+
i.value = [B], A.value = [o];
|
|
2484
2491
|
}
|
|
2485
|
-
},
|
|
2486
|
-
const o = e.tableData.map((
|
|
2487
|
-
return o.some((
|
|
2492
|
+
}, x = () => {
|
|
2493
|
+
const o = e.tableData.map((c) => c[e.rowKey]), B = o.every((c) => i.value.includes(c));
|
|
2494
|
+
return o.some((c) => i.value.includes(c)) && !B ? "16_16_checkbox_halfselect" : o.length == 0 ? "16_16_checkbox_normal" : B ? "16_16_checkbox_select" : "16_16_checkbox_normal";
|
|
2488
2495
|
}, P = () => {
|
|
2489
|
-
const o = e.tableData.map((
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2496
|
+
const o = e.tableData.filter((c) => !e.disabledLogic(c)), B = o.map((c) => c[e.rowKey]);
|
|
2497
|
+
if (B.length === 0) return;
|
|
2498
|
+
B.every((c) => i.value.includes(c)) ? i.value = i.value.filter((c) => !B.includes(c)) : o.forEach((c) => {
|
|
2499
|
+
const H = c[e.rowKey];
|
|
2500
|
+
i.value.includes(H) || (i.value.push(H), A.value.some((R) => R[e.rowKey] === H) || A.value.push(c));
|
|
2493
2501
|
});
|
|
2494
2502
|
}, V = (o) => {
|
|
2495
|
-
const
|
|
2496
|
-
i.value = i.value.filter((
|
|
2497
|
-
},
|
|
2498
|
-
|
|
2499
|
-
},
|
|
2500
|
-
const o = [...
|
|
2501
|
-
s("update:selectedIds", [...i.value]), s("submit", o, i.value),
|
|
2503
|
+
const B = o[e.rowKey];
|
|
2504
|
+
i.value = i.value.filter((m) => m !== B);
|
|
2505
|
+
}, C = () => {
|
|
2506
|
+
h.value = !1;
|
|
2507
|
+
}, f = () => {
|
|
2508
|
+
const o = [...E.value];
|
|
2509
|
+
s("update:selectedIds", [...i.value]), s("submit", o, i.value), h.value = !1;
|
|
2502
2510
|
};
|
|
2503
2511
|
return g({
|
|
2504
2512
|
handleDeleteSelected: V
|
|
2505
|
-
}), (o,
|
|
2513
|
+
}), (o, B) => (n(), y(h1, {
|
|
2506
2514
|
class: "selector-dialog",
|
|
2507
|
-
modelValue: u(
|
|
2508
|
-
"onUpdate:modelValue":
|
|
2515
|
+
modelValue: u(h),
|
|
2516
|
+
"onUpdate:modelValue": B[2] || (B[2] = (m) => a1(h) ? h.value = m : null),
|
|
2509
2517
|
title: t.title,
|
|
2510
2518
|
size: t.size,
|
|
2511
|
-
onClose:
|
|
2512
|
-
onSubmit:
|
|
2519
|
+
onClose: C,
|
|
2520
|
+
onSubmit: f
|
|
2513
2521
|
}, {
|
|
2514
|
-
default:
|
|
2515
|
-
|
|
2522
|
+
default: I(() => [
|
|
2523
|
+
_("div", M4, [
|
|
2516
2524
|
t.isTree ? (n(), z("div", z4, [
|
|
2517
2525
|
q(p1, {
|
|
2518
2526
|
ref: "treeRef",
|
|
@@ -2527,16 +2535,16 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2527
2535
|
onNodeClick: Q
|
|
2528
2536
|
}, null, 8, ["data", "props"])
|
|
2529
2537
|
])) : K("", !0),
|
|
2530
|
-
|
|
2538
|
+
_("div", {
|
|
2531
2539
|
class: "center",
|
|
2532
|
-
style: e1(
|
|
2540
|
+
style: e1(d())
|
|
2533
2541
|
}, [
|
|
2534
2542
|
o.$slots.search ? (n(), z("div", I4, [
|
|
2535
|
-
|
|
2543
|
+
T(o.$slots, "search")
|
|
2536
2544
|
])) : K("", !0),
|
|
2537
2545
|
o.$slots.table ? (n(), z("div", E4, [
|
|
2538
|
-
|
|
2539
|
-
])) : (n(),
|
|
2546
|
+
T(o.$slots, "table")
|
|
2547
|
+
])) : (n(), y(A1, {
|
|
2540
2548
|
key: 2,
|
|
2541
2549
|
class: "selector-dialog-table",
|
|
2542
2550
|
ref: "tableRef",
|
|
@@ -2546,62 +2554,62 @@ const m4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
2546
2554
|
height: 400,
|
|
2547
2555
|
"max-height": 400,
|
|
2548
2556
|
loading: t.loading,
|
|
2549
|
-
"empty-state":
|
|
2550
|
-
onRowClick:
|
|
2557
|
+
"empty-state": t.emptyState,
|
|
2558
|
+
onRowClick: p
|
|
2551
2559
|
}, l1({
|
|
2552
|
-
"header-selection":
|
|
2560
|
+
"header-selection": I((m) => [
|
|
2553
2561
|
q(u(k), {
|
|
2554
|
-
"icon-class":
|
|
2562
|
+
"icon-class": x(),
|
|
2555
2563
|
style: { width: "16px", height: "16px" },
|
|
2556
2564
|
onClick: P
|
|
2557
2565
|
}, null, 8, ["icon-class"])
|
|
2558
2566
|
]),
|
|
2559
|
-
selection:
|
|
2567
|
+
selection: I((m) => [
|
|
2560
2568
|
q(u(k), {
|
|
2561
|
-
"icon-class": O(
|
|
2569
|
+
"icon-class": O(m.row),
|
|
2562
2570
|
style: { width: "16px", height: "16px" }
|
|
2563
2571
|
}, null, 8, ["icon-class"])
|
|
2564
2572
|
]),
|
|
2565
|
-
radio:
|
|
2573
|
+
radio: I((m) => [
|
|
2566
2574
|
q(u(k), {
|
|
2567
|
-
"icon-class": F(
|
|
2575
|
+
"icon-class": F(m.row),
|
|
2568
2576
|
style: { width: "16px", height: "16px" }
|
|
2569
2577
|
}, null, 8, ["icon-class"])
|
|
2570
2578
|
]),
|
|
2571
2579
|
_: 2
|
|
2572
2580
|
}, [
|
|
2573
|
-
j(o.$slots, (
|
|
2574
|
-
name:
|
|
2575
|
-
fn:
|
|
2576
|
-
|
|
2581
|
+
j(o.$slots, (m, c) => ({
|
|
2582
|
+
name: c,
|
|
2583
|
+
fn: I((H) => [
|
|
2584
|
+
T(o.$slots, c, i1(n1(H)))
|
|
2577
2585
|
])
|
|
2578
2586
|
}))
|
|
2579
|
-
]), 1032, ["columns", "data", "loading"])),
|
|
2587
|
+
]), 1032, ["columns", "data", "loading", "empty-state"])),
|
|
2580
2588
|
q(d1, {
|
|
2581
2589
|
class: "selector-pagination",
|
|
2582
2590
|
total: t.tableTotal,
|
|
2583
2591
|
pagerCount: 3,
|
|
2584
2592
|
layouts: ["Total", "PrevPage", "Number", "NextPage", "Sizes", "FullJump"],
|
|
2585
|
-
"current-page": u(
|
|
2586
|
-
"onUpdate:currentPage":
|
|
2587
|
-
"page-size": u(
|
|
2588
|
-
"onUpdate:pageSize":
|
|
2589
|
-
onPageChange:
|
|
2593
|
+
"current-page": u(w),
|
|
2594
|
+
"onUpdate:currentPage": B[0] || (B[0] = (m) => a1(w) ? w.value = m : null),
|
|
2595
|
+
"page-size": u(r),
|
|
2596
|
+
"onUpdate:pageSize": B[1] || (B[1] = (m) => a1(r) ? r.value = m : null),
|
|
2597
|
+
onPageChange: D
|
|
2590
2598
|
}, null, 8, ["total", "current-page", "page-size"])
|
|
2591
2599
|
], 4),
|
|
2592
2600
|
t.multiple ? (n(), z("div", f4, [
|
|
2593
|
-
|
|
2601
|
+
_("div", G4, "已选(" + $(u(E).length) + ")", 1),
|
|
2594
2602
|
q(A1, {
|
|
2595
2603
|
border: !0,
|
|
2596
2604
|
columns: t.selectedTableColumns,
|
|
2597
|
-
data: u(
|
|
2605
|
+
data: u(E),
|
|
2598
2606
|
height: 454,
|
|
2599
2607
|
"max-height": 454
|
|
2600
2608
|
}, l1({ _: 2 }, [
|
|
2601
|
-
j(o.$slots, (
|
|
2602
|
-
name:
|
|
2603
|
-
fn:
|
|
2604
|
-
|
|
2609
|
+
j(o.$slots, (m, c) => ({
|
|
2610
|
+
name: c,
|
|
2611
|
+
fn: I((H) => [
|
|
2612
|
+
T(o.$slots, c, i1(n1(H)))
|
|
2605
2613
|
])
|
|
2606
2614
|
}))
|
|
2607
2615
|
]), 1032, ["columns", "data"])
|