yahee-components 0.0.30 → 0.0.32
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/es/_virtual/_plugin-vue_export-helper.js +9 -0
- package/es/annex-upload/annex-upload.vue.js +69 -154
- package/es/annex-upload/annex-upload.vue2.js +119 -2
- package/es/annex-upload/index.js +3 -3
- package/es/api/tool.js +1 -1
- package/es/complex-search/complex-search.vue.js +228 -282
- package/es/complex-search/complex-search.vue2.js +130 -2
- package/es/complex-search/index.js +5 -5
- package/es/copy/copy.vue.js +39 -55
- package/es/copy/copy.vue2.js +34 -2
- package/es/copy/index.js +3 -3
- package/es/country-platform-shop-condition/country-platform-shop-condition.vue.js +158 -204
- package/es/country-platform-shop-condition/country-platform-shop-condition.vue2.js +125 -2
- package/es/country-platform-shop-condition/style/index.css +3 -4
- package/es/drop-down-condition/drop-down-condition.vue.js +193 -211
- package/es/drop-down-condition/drop-down-condition.vue2.js +127 -2
- package/es/drop-down-condition/style/index.css +21 -12
- package/es/image-upload/image-upload.vue.js +76 -113
- package/es/image-upload/image-upload.vue2.js +91 -2
- package/es/image-upload/index.js +3 -3
- package/es/input/index.js +3 -3
- package/es/input/input.vue.js +17 -38
- package/es/input/input.vue2.js +33 -2
- package/es/left-condition/index.js +5 -5
- package/es/left-condition/left-condition-sub.vue.js +55 -86
- package/es/left-condition/left-condition-sub.vue2.js +76 -2
- package/es/left-condition/left-condition.vue.js +91 -209
- package/es/left-condition/left-condition.vue2.js +152 -2
- package/es/left-condition-enum/index.js +3 -3
- package/es/left-condition-enum/left-condition-enum.vue.js +19 -77
- package/es/left-condition-enum/left-condition-enum.vue2.js +69 -2
- package/es/operation-log/operation-log-content.vue.js +78 -88
- package/es/operation-log/operation-log-content.vue2.js +35 -2
- package/es/operation-log/operation-log-dialog.vue.js +57 -68
- package/es/operation-log/operation-log-dialog.vue2.js +38 -2
- package/es/operation-log/operation-log-form.vue.js +132 -179
- package/es/operation-log/operation-log-form.vue2.js +100 -2
- package/es/operation-log/operation-log.vue.js +183 -221
- package/es/operation-log/operation-log.vue2.js +133 -2
- package/es/packages/components/api/log-server.js +4 -4
- package/es/packages/components/api/upload-server.js +5 -5
- package/es/packages/components/hooks/useImg.js +8 -8
- package/es/style.css +24 -16
- package/es/utils/translate.js +13 -13
- package/lib/country-platform-shop-condition/style/index.css +3 -4
- package/lib/drop-down-condition/style/index.css +21 -12
- package/lib/style.css +24 -16
- package/package.json +1 -1
- package/types/src/installs.d.ts +2 -1
- package/types/src/operation-log/index.d.ts +2 -1
- package/types/src/operation-log/operation-log-form.vue.d.ts +3 -3
- package/types/src/operation-log/operation-log.d.ts +2 -1
- package/types/src/operation-log/operation-log.vue.d.ts +2 -1
|
@@ -1,4 +1,127 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { defineComponent as R, toRefs as D, reactive as _, ref as c, watch as M } from "vue";
|
|
2
|
+
import { stylesUtils as T } from "../utils/style.js";
|
|
3
|
+
import { M2 as H } from "../utils/translate.js";
|
|
4
|
+
import L from "../_virtual/lodash.js";
|
|
5
|
+
import { ElButton as U, ElCheckbox as Y, ElCheckboxGroup as z, ElPopover as I } from "element-plus";
|
|
6
|
+
import "element-plus/theme-chalk/src/base.scss";
|
|
7
|
+
import "element-plus/theme-chalk/src/button.scss";
|
|
8
|
+
import "element-plus/theme-chalk/src/checkbox.scss";
|
|
9
|
+
import "element-plus/theme-chalk/src/checkbox-group.scss";
|
|
10
|
+
import "element-plus/theme-chalk/src/popper.scss";
|
|
11
|
+
import "element-plus/theme-chalk/src/popover.scss";
|
|
12
|
+
const ae = /* @__PURE__ */ R({
|
|
13
|
+
name: "YaheeCountryPlatformShopCondition",
|
|
14
|
+
__name: "country-platform-shop-condition",
|
|
15
|
+
props: {
|
|
16
|
+
xyFilters: { type: Object, required: !1 },
|
|
17
|
+
filterKey: { type: String, required: !0 }
|
|
18
|
+
},
|
|
19
|
+
emits: ["filterChange"],
|
|
20
|
+
setup(j, { expose: K, emit: O }) {
|
|
21
|
+
K();
|
|
22
|
+
const G = j, { filterKey: m, xyFilters: a } = D(G), d = O, t = _({});
|
|
23
|
+
let f = _({});
|
|
24
|
+
const p = c({}), v = c({}), i = c(!0), y = c({}), h = c({}), x = c();
|
|
25
|
+
a.value && (x.value = [...a.value.xGroup]);
|
|
26
|
+
function A(e, o) {
|
|
27
|
+
var u;
|
|
28
|
+
return (u = a.value) == null ? void 0 : u.items.filter((l) => l.xGroupValue === e && l.yGroupValue === o);
|
|
29
|
+
}
|
|
30
|
+
function F(e) {
|
|
31
|
+
var u;
|
|
32
|
+
const o = e.xGroupValue;
|
|
33
|
+
if (y.value[o]) {
|
|
34
|
+
for (const l in t)
|
|
35
|
+
l.startsWith(o) && delete t[l];
|
|
36
|
+
y.value[o] = !1;
|
|
37
|
+
} else {
|
|
38
|
+
for (const l of (u = a.value) == null ? void 0 : u.items)
|
|
39
|
+
if (l.xGroupValue === o) {
|
|
40
|
+
let n = t[`${l.xGroupValue}-${l.yGroupValue}`];
|
|
41
|
+
n ? (n.push(l.value), n = [...new Set(n)]) : n = [l.value], t[`${l.xGroupValue}-${l.yGroupValue}`] = n;
|
|
42
|
+
}
|
|
43
|
+
y.value[o] = !0;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
const P = (e) => T.getBackgroundColor(e), W = () => {
|
|
47
|
+
L.isEqual(f, t) || d("filterChange", [
|
|
48
|
+
{
|
|
49
|
+
filterKey: m.value,
|
|
50
|
+
checkedValues: Object.values(Object.values(t)).flat()
|
|
51
|
+
}
|
|
52
|
+
]);
|
|
53
|
+
}, q = () => {
|
|
54
|
+
f = L.cloneDeep(t);
|
|
55
|
+
};
|
|
56
|
+
function w() {
|
|
57
|
+
if (i.value)
|
|
58
|
+
i.value = !1, Object.keys(t).forEach((e) => {
|
|
59
|
+
delete t[e];
|
|
60
|
+
});
|
|
61
|
+
else {
|
|
62
|
+
i.value = !0;
|
|
63
|
+
for (const e of a.value.items) {
|
|
64
|
+
let o = t[`${e.xGroupValue}-${e.yGroupValue}`];
|
|
65
|
+
o ? o.push(e.value) : o = [e.value], t[`${e.xGroupValue}-${e.yGroupValue}`] = o;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
console.log(t);
|
|
69
|
+
}
|
|
70
|
+
function B(e) {
|
|
71
|
+
const o = e.yGroupValue;
|
|
72
|
+
if (h.value[o]) {
|
|
73
|
+
for (const u in t)
|
|
74
|
+
u.endsWith(o) && delete t[u];
|
|
75
|
+
h.value[o] = !1;
|
|
76
|
+
} else {
|
|
77
|
+
for (const u of a.value.items)
|
|
78
|
+
if (u.yGroupValue === o) {
|
|
79
|
+
let l = t[`${u.xGroupValue}-${u.yGroupValue}`];
|
|
80
|
+
l ? (l.push(u.value), l = [...new Set(l)]) : l = [u.value], t[`${u.xGroupValue}-${u.yGroupValue}`] = l;
|
|
81
|
+
}
|
|
82
|
+
h.value[o] = !0;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
M(
|
|
86
|
+
t,
|
|
87
|
+
(e, o) => {
|
|
88
|
+
var S, k, E, $;
|
|
89
|
+
Object.keys(e).forEach((r) => {
|
|
90
|
+
Array.isArray(e[r]) && e[r].length === 0 && delete e[r];
|
|
91
|
+
}), console.log("新的数组:", e), console.log("旧的数组:", o);
|
|
92
|
+
const u = { backgroundColor: "#3366CC", color: "#fff", borderColor: "#3366CC" }, l = { backgroundColor: "#00bfff", borderColor: "#00bfff" }, n = {}, V = (S = a.value) == null ? void 0 : S.xGroup.length, b = (k = a.value) == null ? void 0 : k.yGroup.length;
|
|
93
|
+
(E = a.value) == null || E.xGroup.forEach((r) => {
|
|
94
|
+
let s = 0;
|
|
95
|
+
for (const g in t)
|
|
96
|
+
g.startsWith(r.xGroupValue) && s++;
|
|
97
|
+
s === 0 ? p.value[r.xGroupValue] = n : s === b ? p.value[r.xGroupValue] = u : p.value[r.xGroupValue] = l;
|
|
98
|
+
}), ($ = a.value) == null || $.yGroup.forEach((r) => {
|
|
99
|
+
let s = 0;
|
|
100
|
+
for (const g in t)
|
|
101
|
+
g.endsWith(r.yGroupValue) && s++;
|
|
102
|
+
s === 0 ? v.value[r.yGroupValue] = n : s === V ? v.value[r.yGroupValue] = u : v.value[r.yGroupValue] = l;
|
|
103
|
+
}), i.value = Object.keys(e).length === V * b;
|
|
104
|
+
},
|
|
105
|
+
{ deep: !0 }
|
|
106
|
+
);
|
|
107
|
+
const C = { props: G, filterKey: m, xyFilters: a, emit: d, checkList: t, get backupCheckList() {
|
|
108
|
+
return f;
|
|
109
|
+
}, set backupCheckList(e) {
|
|
110
|
+
f = e;
|
|
111
|
+
}, rowTitleStyle: p, columnTitleStyle: v, isSelectedAll: i, toggleRowSelectionFlags: y, toggleColumnSelectionFlags: h, selectList: x, getContentForCell: A, toggleRowSelection: F, getDefaultSelectedAllStyle: P, handleHide: W, handleShow: q, selectAll: w, toggleColumnSelection: B, get M2() {
|
|
112
|
+
return H;
|
|
113
|
+
}, get ElButton() {
|
|
114
|
+
return U;
|
|
115
|
+
}, get ElCheckbox() {
|
|
116
|
+
return Y;
|
|
117
|
+
}, get ElCheckboxGroup() {
|
|
118
|
+
return z;
|
|
119
|
+
}, get ElPopover() {
|
|
120
|
+
return I;
|
|
121
|
+
} };
|
|
122
|
+
return Object.defineProperty(C, "__isScriptSetup", { enumerable: !1, value: !0 }), C;
|
|
123
|
+
}
|
|
124
|
+
});
|
|
2
125
|
export {
|
|
3
|
-
|
|
126
|
+
ae as default
|
|
4
127
|
};
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
}
|
|
26
26
|
.custom-popover .popover-table td span {
|
|
27
27
|
display: block;
|
|
28
|
-
border: 1px solid transparent;
|
|
29
28
|
}
|
|
30
29
|
.custom-popover .custom-total-button {
|
|
31
30
|
margin-right: 0;
|
|
@@ -42,15 +41,15 @@
|
|
|
42
41
|
color: blue;
|
|
43
42
|
}
|
|
44
43
|
.yahee-country-platform-shop-condition .custom-total-button {
|
|
45
|
-
margin-right:
|
|
44
|
+
margin-right: 5px;
|
|
46
45
|
padding: 1px 4px;
|
|
47
46
|
height: 22px;
|
|
48
47
|
}
|
|
49
48
|
.yahee-country-platform-shop-condition .custom-button {
|
|
50
49
|
min-height: 22px;
|
|
51
|
-
min-width:
|
|
50
|
+
min-width: 48px;
|
|
52
51
|
height: 22px;
|
|
53
|
-
margin:
|
|
52
|
+
margin: 0 5px 0 0;
|
|
54
53
|
}
|
|
55
54
|
.yahee-country-platform-shop-condition .custom-button.inner-el-button {
|
|
56
55
|
margin-top: 5px;
|
|
@@ -1,225 +1,207 @@
|
|
|
1
|
-
import
|
|
2
|
-
import s from "
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
function q(t) {
|
|
35
|
-
const { text: o, value: e } = t, l = n[o];
|
|
36
|
-
s.isNil(l) || s.isEmpty(l) ? n[o] = [e] : n[o] = [], p[o] = !p[o], p[o] ? (oe(o), r[o] = U.getBackgroundColor(!0), h.value = !1) : (ne(o), r[t.text] = {}, h.value = !0), h.value = L(), D();
|
|
37
|
-
}
|
|
38
|
-
function L() {
|
|
39
|
-
const t = c.value.filter((l) => !s.isEmpty(l.subs)).flatMap((l) => l.subs).length, o = c.value.filter((l) => s.isEmpty(l.subs)).length;
|
|
40
|
-
return Object.values(n).map((l) => l.length).reduce((l, f) => l + f, 0) === t + o || s.isEmpty(Object.values(n).flat());
|
|
41
|
-
}
|
|
42
|
-
function X(t) {
|
|
43
|
-
s.isEmpty(n[t.text]) ? (r[t.text] = {}, p[t.text] = !1) : n[t.text].length === s.get(t, "subs.length", 1) ? (r[t.text] = U.getBackgroundColor(!0), p[t.text] = !0) : r[t.text] = {
|
|
44
|
-
backgroundColor: "#0F7535",
|
|
45
|
-
color: "#fff",
|
|
46
|
-
borderColor: "#0F7535"
|
|
47
|
-
}, h.value = L(), D();
|
|
48
|
-
}
|
|
49
|
-
function Z() {
|
|
50
|
-
h.value = L(), D();
|
|
51
|
-
}
|
|
52
|
-
function D() {
|
|
53
|
-
$("setNoNeedRefreshNumFilterName", V.value);
|
|
54
|
-
}
|
|
55
|
-
function ee() {
|
|
56
|
-
h.value = !0;
|
|
57
|
-
for (const t in r)
|
|
58
|
-
r[t] = {};
|
|
59
|
-
for (const t in n)
|
|
60
|
-
delete n[t];
|
|
61
|
-
for (const t in p)
|
|
62
|
-
delete p[t];
|
|
63
|
-
I();
|
|
64
|
-
}
|
|
65
|
-
const te = (t) => U.getBackgroundColor(t);
|
|
66
|
-
function le(t) {
|
|
67
|
-
if (t)
|
|
68
|
-
K = s.cloneDeep(n);
|
|
69
|
-
else {
|
|
70
|
-
if (s.isEqual(K, n))
|
|
71
|
-
return;
|
|
72
|
-
I();
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
function I() {
|
|
76
|
-
$("filterChange", [
|
|
77
|
-
{
|
|
78
|
-
filterKey: V.value,
|
|
79
|
-
checkedValues: Object.values(n).flat()
|
|
80
|
-
}
|
|
81
|
-
]);
|
|
82
|
-
}
|
|
83
|
-
function oe(t) {
|
|
84
|
-
const o = c.value.find((e) => e.text === t);
|
|
85
|
-
o && o.subs && (n[t] = o.subs.map((e) => e.value));
|
|
86
|
-
}
|
|
87
|
-
function ne(t) {
|
|
88
|
-
n[t] = [];
|
|
89
|
-
}
|
|
90
|
-
function ue() {
|
|
91
|
-
const t = `filter-key-${x.enumEntity}`, o = G.getWithExpireTime(t);
|
|
92
|
-
o ? c.value = o : (console.log(x.enumEntity), x.initFilters(x.enumEntity).then((e) => {
|
|
93
|
-
console.log(e), c.value = e.data, G.setWithExpireTime(t, c.value, 1200 * 1e3), console.log(c.value);
|
|
94
|
-
}).catch((e) => {
|
|
95
|
-
console.log(e);
|
|
96
|
-
}));
|
|
97
|
-
}
|
|
98
|
-
return ce(
|
|
99
|
-
[() => C.value, () => w.value, () => F.value],
|
|
100
|
-
([t, o, e], [l, f, A]) => {
|
|
101
|
-
console.log(t, o, e), console.log(l, f, A), (!O.value || !s.eq(O.value, V.value)) && (T.value = C.value, S.value = w.value, B.value = F.value);
|
|
102
|
-
}
|
|
103
|
-
), re(() => {
|
|
104
|
-
ue();
|
|
105
|
-
}), (t, o) => (a(), i("div", de, [
|
|
106
|
-
W(u(P), {
|
|
107
|
-
size: "small",
|
|
108
|
-
class: "el-button el-button--small custom-total-button",
|
|
109
|
-
style: R(te(h.value)),
|
|
110
|
-
onClick: ee
|
|
111
|
-
}, {
|
|
112
|
-
default: d(() => [
|
|
113
|
-
k(v(u(y)("全部")) + " ", 1),
|
|
114
|
-
u(C) ? (a(), i("span", ve, "(" + v(T.value) + ")", 1)) : N("", !0)
|
|
115
|
-
]),
|
|
116
|
-
_: 1
|
|
117
|
-
}, 8, ["style"]),
|
|
118
|
-
W(u(ie), {
|
|
119
|
-
ref_key: "dropdown1",
|
|
120
|
-
ref: Q,
|
|
1
|
+
import v from "./drop-down-condition.vue2.js";
|
|
2
|
+
import { openBlock as l, createElementBlock as n, createVNode as _, normalizeStyle as x, withCtx as a, createTextVNode as r, toDisplayString as c, createCommentVNode as i, createElementVNode as k, Fragment as s, renderList as h, createBlock as d } from "vue";
|
|
3
|
+
import C from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const f = { class: "yahee-drop-down-condition" }, y = { key: 0 }, m = { style: { display: "flex", "align-items": "center", outline: "none" } }, E = { key: 0 }, g = { style: { display: "flex", width: "auto", padding: "10px" } }, w = ["onClick"], V = { class: "scrollable-container" }, p = { key: 0 };
|
|
5
|
+
function S(N, B, D, e, M, z) {
|
|
6
|
+
return l(), n("div", f, [
|
|
7
|
+
_(e.ElButton, {
|
|
8
|
+
size: "small",
|
|
9
|
+
class: "el-button el-button--small custom-total-button",
|
|
10
|
+
style: x(e.getDefaultSelectedAllStyle(e.isSelectedAll)),
|
|
11
|
+
onClick: e.selectAll
|
|
12
|
+
}, {
|
|
13
|
+
default: a(() => [
|
|
14
|
+
r(
|
|
15
|
+
c(e.M2("全部")) + " ",
|
|
16
|
+
1
|
|
17
|
+
/* TEXT */
|
|
18
|
+
),
|
|
19
|
+
e.totalCount ? (l(), n(
|
|
20
|
+
"span",
|
|
21
|
+
y,
|
|
22
|
+
"(" + c(e.totalNum) + ")",
|
|
23
|
+
1
|
|
24
|
+
/* TEXT */
|
|
25
|
+
)) : i("v-if", !0)
|
|
26
|
+
]),
|
|
27
|
+
_: 1
|
|
28
|
+
/* STABLE */
|
|
29
|
+
}, 8, ["style"]),
|
|
30
|
+
_(
|
|
31
|
+
e.ElDropdown,
|
|
32
|
+
{
|
|
33
|
+
ref: "dropdown1",
|
|
121
34
|
"popper-class": "custom-dropdown",
|
|
122
|
-
onVisibleChange:
|
|
123
|
-
},
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
default: d(() => [
|
|
135
|
-
u(s).isNil(e.subs) ? (a(), g(u(j), {
|
|
136
|
-
key: 1,
|
|
137
|
-
value: e.value,
|
|
138
|
-
class: "checkbox custom-button",
|
|
139
|
-
border: ""
|
|
140
|
-
}, {
|
|
141
|
-
default: d(() => [
|
|
142
|
-
k(v(u(y)(e.text)), 1)
|
|
143
|
-
]),
|
|
144
|
-
_: 2
|
|
145
|
-
}, 1032, ["value"])) : (a(), i(b, { key: 0 }, [
|
|
146
|
-
E("span", {
|
|
147
|
-
class: "el-button custom-button el-button--small inner-el-button",
|
|
148
|
-
style: R(r[e.text]),
|
|
149
|
-
onClick: (l) => q(e)
|
|
150
|
-
}, v(u(y)(e.text)), 13, me),
|
|
151
|
-
E("div", ge, [
|
|
152
|
-
(a(!0), i(b, null, z(e.subs, (l) => (a(), g(u(j), {
|
|
153
|
-
key: l.value,
|
|
154
|
-
class: "checkbox custom-button",
|
|
155
|
-
value: l.value,
|
|
156
|
-
border: ""
|
|
157
|
-
}, {
|
|
158
|
-
default: d(() => {
|
|
159
|
-
var f;
|
|
160
|
-
return [
|
|
161
|
-
k(v(u(y)(l.text)), 1),
|
|
162
|
-
u(s).isEmpty(B.value) ? N("", !0) : (a(), i("span", ye, "(" + v((f = B.value.filter((A) => A.value == l.value)[0]) == null ? void 0 : f.count) + ")", 1))
|
|
163
|
-
];
|
|
164
|
-
}),
|
|
165
|
-
_: 2
|
|
166
|
-
}, 1032, ["value"]))), 128))
|
|
167
|
-
])
|
|
168
|
-
], 64))
|
|
169
|
-
]),
|
|
170
|
-
_: 2
|
|
171
|
-
}, 1032, ["modelValue", "onUpdate:modelValue", "onChange"]))), 128))
|
|
172
|
-
])
|
|
173
|
-
]),
|
|
174
|
-
default: d(() => [
|
|
175
|
-
E("div", fe, [
|
|
176
|
-
(a(!0), i(b, null, z(c.value, (e) => (a(), i(b, null, [
|
|
177
|
-
e.isCheckbox ? (a(), g(u(Y), {
|
|
178
|
-
key: e.value,
|
|
179
|
-
modelValue: n[e.text],
|
|
180
|
-
"onUpdate:modelValue": (l) => n[e.text] = l,
|
|
181
|
-
class: "checkbox-group",
|
|
35
|
+
onVisibleChange: e.handleVisible
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
dropdown: a(() => [
|
|
39
|
+
k("div", g, [
|
|
40
|
+
(l(!0), n(
|
|
41
|
+
s,
|
|
42
|
+
null,
|
|
43
|
+
h(e.selectList, (o) => (l(), d(e.ElCheckboxGroup, {
|
|
44
|
+
key: o.value,
|
|
45
|
+
modelValue: e.totalCheckBoxStatus[o.text],
|
|
46
|
+
"onUpdate:modelValue": (t) => e.totalCheckBoxStatus[o.text] = t,
|
|
182
47
|
size: "small",
|
|
183
|
-
|
|
48
|
+
class: "checkbox-group inner-checkbox-group custom-dropdown-checkbox-group",
|
|
49
|
+
onChange: (t) => e.changeCheckbox(o)
|
|
184
50
|
}, {
|
|
185
|
-
default:
|
|
186
|
-
e.
|
|
187
|
-
key:
|
|
188
|
-
|
|
189
|
-
|
|
51
|
+
default: a(() => [
|
|
52
|
+
e._.isNil(o.subs) ? (l(), d(e.ElCheckbox, {
|
|
53
|
+
key: 1,
|
|
54
|
+
value: o.value,
|
|
55
|
+
class: "checkbox custom-dropdown-button",
|
|
190
56
|
border: ""
|
|
191
57
|
}, {
|
|
192
|
-
default:
|
|
193
|
-
|
|
58
|
+
default: a(() => [
|
|
59
|
+
r(
|
|
60
|
+
c(e.M2(o.text)),
|
|
61
|
+
1
|
|
62
|
+
/* TEXT */
|
|
63
|
+
)
|
|
194
64
|
]),
|
|
195
65
|
_: 2
|
|
196
|
-
|
|
66
|
+
/* DYNAMIC */
|
|
67
|
+
}, 1032, ["value"])) : (l(), n(
|
|
68
|
+
s,
|
|
69
|
+
{ key: 0 },
|
|
70
|
+
[
|
|
71
|
+
k("span", {
|
|
72
|
+
class: "el-button custom-dropdown-button el-button--small inner-el-button",
|
|
73
|
+
style: x(e.selectedStyles[o.text]),
|
|
74
|
+
onClick: (t) => e.onClick(o)
|
|
75
|
+
}, c(e.M2(o.text)), 13, w),
|
|
76
|
+
k("div", V, [
|
|
77
|
+
(l(!0), n(
|
|
78
|
+
s,
|
|
79
|
+
null,
|
|
80
|
+
h(o.subs, (t) => (l(), d(e.ElCheckbox, {
|
|
81
|
+
key: t.value,
|
|
82
|
+
class: "checkbox custom-dropdown-button",
|
|
83
|
+
value: t.value,
|
|
84
|
+
border: ""
|
|
85
|
+
}, {
|
|
86
|
+
default: a(() => {
|
|
87
|
+
var u;
|
|
88
|
+
return [
|
|
89
|
+
r(
|
|
90
|
+
c(e.M2(t.text)),
|
|
91
|
+
1
|
|
92
|
+
/* TEXT */
|
|
93
|
+
),
|
|
94
|
+
e._.isEmpty(e.level2Num) ? i("v-if", !0) : (l(), n(
|
|
95
|
+
"span",
|
|
96
|
+
p,
|
|
97
|
+
"(" + c((u = e.level2Num.filter((b) => b.value == t.value)[0]) == null ? void 0 : u.count) + ")",
|
|
98
|
+
1
|
|
99
|
+
/* TEXT */
|
|
100
|
+
))
|
|
101
|
+
];
|
|
102
|
+
}),
|
|
103
|
+
_: 2
|
|
104
|
+
/* DYNAMIC */
|
|
105
|
+
}, 1032, ["value"]))),
|
|
106
|
+
128
|
|
107
|
+
/* KEYED_FRAGMENT */
|
|
108
|
+
))
|
|
109
|
+
])
|
|
110
|
+
],
|
|
111
|
+
64
|
|
112
|
+
/* STABLE_FRAGMENT */
|
|
113
|
+
))
|
|
197
114
|
]),
|
|
198
115
|
_: 2
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
116
|
+
/* DYNAMIC */
|
|
117
|
+
}, 1032, ["modelValue", "onUpdate:modelValue", "onChange"]))),
|
|
118
|
+
128
|
|
119
|
+
/* KEYED_FRAGMENT */
|
|
120
|
+
))
|
|
121
|
+
])
|
|
122
|
+
]),
|
|
123
|
+
default: a(() => [
|
|
124
|
+
k("div", m, [
|
|
125
|
+
(l(!0), n(
|
|
126
|
+
s,
|
|
127
|
+
null,
|
|
128
|
+
h(e.selectList, (o) => (l(), n(
|
|
129
|
+
s,
|
|
130
|
+
null,
|
|
131
|
+
[
|
|
132
|
+
o.isCheckbox ? (l(), d(e.ElCheckboxGroup, {
|
|
133
|
+
key: o.value,
|
|
134
|
+
modelValue: e.totalCheckBoxStatus[o.text],
|
|
135
|
+
"onUpdate:modelValue": (t) => e.totalCheckBoxStatus[o.text] = t,
|
|
136
|
+
class: "checkbox-group",
|
|
137
|
+
size: "small",
|
|
138
|
+
onChange: e.singleChangeCheckbox
|
|
139
|
+
}, {
|
|
140
|
+
default: a(() => [
|
|
141
|
+
o.isCheckbox ? (l(), d(e.ElCheckbox, {
|
|
142
|
+
key: 0,
|
|
143
|
+
class: "custom-dropdown-button",
|
|
144
|
+
value: o.value,
|
|
145
|
+
border: ""
|
|
146
|
+
}, {
|
|
147
|
+
default: a(() => [
|
|
148
|
+
r(
|
|
149
|
+
c(e.M2(o.text)),
|
|
150
|
+
1
|
|
151
|
+
/* TEXT */
|
|
152
|
+
)
|
|
153
|
+
]),
|
|
154
|
+
_: 2
|
|
155
|
+
/* DYNAMIC */
|
|
156
|
+
}, 1032, ["value"])) : i("v-if", !0)
|
|
157
|
+
]),
|
|
158
|
+
_: 2
|
|
159
|
+
/* DYNAMIC */
|
|
160
|
+
}, 1032, ["modelValue", "onUpdate:modelValue"])) : (l(), d(e.ElButton, {
|
|
161
|
+
key: o.text,
|
|
162
|
+
style: x(e.selectedStyles[o.text]),
|
|
163
|
+
class: "custom-dropdown-button",
|
|
164
|
+
size: "small",
|
|
165
|
+
onClick: (t) => e.onClick(o)
|
|
166
|
+
}, {
|
|
167
|
+
default: a(() => {
|
|
168
|
+
var t;
|
|
169
|
+
return [
|
|
170
|
+
r(
|
|
171
|
+
c(e.M2(o.text)) + " ",
|
|
172
|
+
1
|
|
173
|
+
/* TEXT */
|
|
174
|
+
),
|
|
175
|
+
e._.isEmpty(e.level1Num) ? i("v-if", !0) : (l(), n(
|
|
176
|
+
"span",
|
|
177
|
+
E,
|
|
178
|
+
"(" + c((t = e.level1Num.filter((u) => u.value == o.value)[0]) == null ? void 0 : t.count) + ")",
|
|
179
|
+
1
|
|
180
|
+
/* TEXT */
|
|
181
|
+
))
|
|
182
|
+
];
|
|
183
|
+
}),
|
|
184
|
+
_: 2
|
|
185
|
+
/* DYNAMIC */
|
|
186
|
+
}, 1032, ["style", "onClick"]))
|
|
187
|
+
],
|
|
188
|
+
64
|
|
189
|
+
/* STABLE_FRAGMENT */
|
|
190
|
+
))),
|
|
191
|
+
256
|
|
192
|
+
/* UNKEYED_FRAGMENT */
|
|
193
|
+
))
|
|
216
194
|
])
|
|
217
195
|
]),
|
|
218
196
|
_: 1
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
197
|
+
/* STABLE */
|
|
198
|
+
},
|
|
199
|
+
512
|
|
200
|
+
/* NEED_PATCH */
|
|
201
|
+
)
|
|
202
|
+
]);
|
|
203
|
+
}
|
|
204
|
+
const F = /* @__PURE__ */ C(v, [["render", S], ["__file", "E:/工作/项目代码/common_componentsweb/packages/components/src/drop-down-condition/drop-down-condition.vue"]]);
|
|
223
205
|
export {
|
|
224
|
-
|
|
206
|
+
F as default
|
|
225
207
|
};
|