@jt-home/mfe-components 1.7.0 → 1.8.0
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/package/JtAttachmentPreview/index.cjs +1 -1
- package/dist/package/JtAttachmentPreview/index.mjs +4 -2
- package/dist/package/index.cjs +2 -1
- package/dist/package/index.mjs +1356 -1127
- package/dist/package/style.css +1 -1
- package/dist/package/types/components/JtTab/types.d.ts +7 -0
- package/dist/package/types/components/form/index.d.ts +2 -1
- package/dist/package/types/components/form/item/JtSearchSelect/index.d.ts +2 -0
- package/dist/package/types/components/form/item/JtSearchSelect/index.vue.d.ts +53 -0
- package/dist/package/types/components/form/item/JtSearchSelect/searchSelectUtils.d.ts +3 -0
- package/dist/package/types/components/form/item/JtSearchSelect/types.d.ts +17 -0
- package/dist/package/types/components/form/item/index.d.ts +2 -0
- package/dist/package/types/components/index.d.ts +2 -2
- package/dist/package/types/components/table/JtCrudTable.vue.d.ts +6 -4
- package/dist/package/types/components/table/JtTable.vue.d.ts +6 -4
- package/dist/package/types/main.d.ts +2 -2
- package/package.json +9 -5
package/dist/package/index.mjs
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
import './style.css';
|
|
2
|
-
import { t as
|
|
3
|
-
import { getLocale as
|
|
4
|
-
import { ElButton as
|
|
5
|
-
import { defineComponent as I, useAttrs as
|
|
6
|
-
import { cascaderEmits as
|
|
7
|
-
import { _ as
|
|
8
|
-
const
|
|
9
|
-
function
|
|
10
|
-
return
|
|
2
|
+
import { t as B } from "./locale/index.mjs";
|
|
3
|
+
import { getLocale as xo, install as ko, installLocale as Bo, normalizeLocale as jo, resetLocale as So, setLocale as To } from "./locale/index.mjs";
|
|
4
|
+
import { ElButton as at, ElIcon as Ke, ElCascader as nt, ElDatePicker as lt, ElInput as st, ElSelect as Ue, ElOption as Ge, ElFormItem as rt, ElForm as it, ElTable as ct, ElTableColumn as dt, ElPagination as ut, ElLoadingDirective as pt, ElDropdown as mt, ElDropdownMenu as ft, ElDropdownItem as ht, ElDialog as vt, ElDrawer as gt, ElTooltip as _t, ElTree as yt } from "element-plus/es";
|
|
5
|
+
import { defineComponent as I, useAttrs as Ee, computed as m, openBlock as c, createBlock as P, mergeProps as J, toHandlers as le, withCtx as L, renderSlot as C, resolveDynamicComponent as $e, createCommentVNode as z, ref as R, watch as ue, mergeDefaults as Ct, withKeys as Ve, getCurrentInstance as bt, createElementBlock as _, Fragment as Y, renderList as U, createElementVNode as b, toDisplayString as F, createVNode as K, unref as V, withModifiers as re, useSlots as ce, normalizeStyle as te, createSlots as ie, nextTick as be, normalizeClass as X, normalizeProps as fe, guardReactiveProps as he, useModel as ye, withDirectives as wt, mergeModels as we, createTextVNode as Q, onMounted as Ne, onBeforeUnmount as ze, h as Oe, shallowReactive as Lt, provide as Je, inject as Ze } from "vue";
|
|
6
|
+
import { cascaderEmits as $t, inputEmits as Re, selectEmits as Le, ElMessageBox as xt } from "element-plus";
|
|
7
|
+
import { _ as O } from "./_plugin-vue_export-helper-CHgC5LLL.js";
|
|
8
|
+
const Ie = 2, kt = 3;
|
|
9
|
+
function Bt(l) {
|
|
10
|
+
return l.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
|
|
11
11
|
}
|
|
12
|
-
function
|
|
13
|
-
if (!
|
|
12
|
+
function qe(l) {
|
|
13
|
+
if (!l.startsWith("on") || l.length <= Ie)
|
|
14
14
|
return !1;
|
|
15
|
-
const e =
|
|
15
|
+
const e = l.charCodeAt(Ie);
|
|
16
16
|
return e < 97 || e > 122;
|
|
17
17
|
}
|
|
18
|
-
function
|
|
19
|
-
if (
|
|
20
|
-
return
|
|
21
|
-
const [e, t] =
|
|
18
|
+
function jt(l) {
|
|
19
|
+
if (l.startsWith("on-"))
|
|
20
|
+
return l.slice(kt);
|
|
21
|
+
const [e, t] = l.slice(Ie).split(":"), o = Bt(e);
|
|
22
22
|
return t ? `${o}:${t}` : o;
|
|
23
23
|
}
|
|
24
|
-
function
|
|
24
|
+
function xe(l, e = /* @__PURE__ */ new Set()) {
|
|
25
25
|
return Object.fromEntries(
|
|
26
|
-
Object.entries(
|
|
26
|
+
Object.entries(l).filter(([t, o]) => !e.has(t) && qe(t) && typeof o == "function").map(([t, o]) => [jt(t), o])
|
|
27
27
|
);
|
|
28
28
|
}
|
|
29
|
-
function
|
|
29
|
+
function ke(l, e = /* @__PURE__ */ new Set()) {
|
|
30
30
|
return Object.fromEntries(
|
|
31
|
-
Object.entries(
|
|
31
|
+
Object.entries(l).filter(([t]) => !e.has(t) && !qe(t))
|
|
32
32
|
);
|
|
33
33
|
}
|
|
34
|
-
const
|
|
34
|
+
const St = /* @__PURE__ */ I({
|
|
35
35
|
name: "JtButton",
|
|
36
36
|
__name: "index",
|
|
37
37
|
props: {
|
|
@@ -56,70 +56,70 @@ const $2 = /* @__PURE__ */ I({
|
|
|
56
56
|
size: {},
|
|
57
57
|
gray: { type: Boolean }
|
|
58
58
|
},
|
|
59
|
-
setup(
|
|
60
|
-
const e =
|
|
61
|
-
[`jt-button--size-${
|
|
59
|
+
setup(l) {
|
|
60
|
+
const e = l, t = Ee(), o = m(() => e.type === "primary"), s = m(() => e.plain === !0), a = m(() => e.size ?? "default"), n = m(() => ({
|
|
61
|
+
[`jt-button--size-${a.value}`]: !0,
|
|
62
62
|
"jt-button--type-primary": o.value,
|
|
63
|
-
"jt-button--plain":
|
|
63
|
+
"jt-button--plain": s.value,
|
|
64
64
|
"jt-button--gray": e.gray,
|
|
65
65
|
"jt-button--border": !0
|
|
66
|
-
})),
|
|
67
|
-
const { gray:
|
|
66
|
+
})), d = m(() => {
|
|
67
|
+
const { gray: i, icon: g, size: y, ...v } = e;
|
|
68
68
|
return {
|
|
69
|
-
...
|
|
70
|
-
...
|
|
69
|
+
...ke(t),
|
|
70
|
+
...v
|
|
71
71
|
};
|
|
72
|
-
}),
|
|
73
|
-
return (
|
|
74
|
-
const
|
|
75
|
-
return
|
|
72
|
+
}), u = m(() => xe(t));
|
|
73
|
+
return (i, g) => {
|
|
74
|
+
const y = Ke, v = at;
|
|
75
|
+
return c(), P(v, J({
|
|
76
76
|
class: ["jt-button", n.value]
|
|
77
|
-
},
|
|
77
|
+
}, d.value, le(u.value)), {
|
|
78
78
|
default: L(() => [
|
|
79
|
-
|
|
79
|
+
i.$slots.icon ? (c(), P(y, {
|
|
80
80
|
key: 0,
|
|
81
81
|
class: "jt-button__icon"
|
|
82
82
|
}, {
|
|
83
83
|
default: L(() => [
|
|
84
|
-
C(
|
|
84
|
+
C(i.$slots, "icon", {}, void 0, !0)
|
|
85
85
|
]),
|
|
86
86
|
_: 3
|
|
87
|
-
})) : e.icon ? (
|
|
87
|
+
})) : e.icon ? (c(), P(y, {
|
|
88
88
|
key: 1,
|
|
89
89
|
class: "jt-button__icon"
|
|
90
90
|
}, {
|
|
91
91
|
default: L(() => [
|
|
92
|
-
(
|
|
92
|
+
(c(), P($e(e.icon)))
|
|
93
93
|
]),
|
|
94
94
|
_: 1
|
|
95
95
|
})) : z("", !0),
|
|
96
|
-
C(
|
|
96
|
+
C(i.$slots, "default", {}, void 0, !0)
|
|
97
97
|
]),
|
|
98
98
|
_: 3
|
|
99
99
|
}, 16, ["class"]);
|
|
100
100
|
};
|
|
101
101
|
}
|
|
102
|
-
}),
|
|
102
|
+
}), ee = /* @__PURE__ */ O(St, [["__scopeId", "data-v-c30ce771"]]), Tt = {
|
|
103
103
|
// 默认值只补组件缺省体验,显式传入的 false、null 和空字符串仍由归一化逻辑保留。
|
|
104
104
|
options: () => [],
|
|
105
105
|
clearable: !0,
|
|
106
106
|
persistent: !0
|
|
107
107
|
};
|
|
108
|
-
function
|
|
108
|
+
function Ae(l) {
|
|
109
109
|
return Object.fromEntries(
|
|
110
|
-
Object.entries(
|
|
110
|
+
Object.entries(l).filter(([, e]) => e !== void 0)
|
|
111
111
|
);
|
|
112
112
|
}
|
|
113
|
-
function
|
|
114
|
-
const e =
|
|
115
|
-
return e.props && (e.props =
|
|
113
|
+
function Mt(l) {
|
|
114
|
+
const e = Ae(l);
|
|
115
|
+
return e.props && (e.props = Ae(
|
|
116
116
|
e.props
|
|
117
117
|
)), e;
|
|
118
118
|
}
|
|
119
|
-
const
|
|
119
|
+
const Ft = /* @__PURE__ */ I({
|
|
120
120
|
name: "JtCascader",
|
|
121
121
|
__name: "index",
|
|
122
|
-
props: /* @__PURE__ */
|
|
122
|
+
props: /* @__PURE__ */ Ct({
|
|
123
123
|
size: {},
|
|
124
124
|
placeholder: {},
|
|
125
125
|
disabled: { type: Boolean },
|
|
@@ -157,66 +157,66 @@ const j2 = /* @__PURE__ */ I({
|
|
|
157
157
|
emptyValues: {},
|
|
158
158
|
valueOnClear: { type: [String, Number, Boolean, Function, null] },
|
|
159
159
|
options: {}
|
|
160
|
-
},
|
|
161
|
-
emits:
|
|
162
|
-
setup(
|
|
163
|
-
const t =
|
|
164
|
-
const
|
|
165
|
-
if (!
|
|
166
|
-
const { placeholder:
|
|
167
|
-
return
|
|
168
|
-
}),
|
|
169
|
-
|
|
160
|
+
}, Tt),
|
|
161
|
+
emits: $t,
|
|
162
|
+
setup(l, { emit: e }) {
|
|
163
|
+
const t = l, o = m(() => {
|
|
164
|
+
const h = Mt(t);
|
|
165
|
+
if (!h.disabled) return h;
|
|
166
|
+
const { placeholder: p, ...j } = h;
|
|
167
|
+
return j;
|
|
168
|
+
}), s = R(t.modelValue);
|
|
169
|
+
ue(
|
|
170
170
|
() => t.modelValue,
|
|
171
|
-
(
|
|
172
|
-
|
|
171
|
+
(h) => {
|
|
172
|
+
s.value = h;
|
|
173
173
|
},
|
|
174
174
|
{ deep: !0 }
|
|
175
175
|
);
|
|
176
|
-
const
|
|
177
|
-
function n(
|
|
178
|
-
|
|
176
|
+
const a = e;
|
|
177
|
+
function n(h, ...p) {
|
|
178
|
+
a(h, ...p);
|
|
179
179
|
}
|
|
180
|
-
function
|
|
181
|
-
|
|
180
|
+
function d(h) {
|
|
181
|
+
s.value = h, n("update:modelValue", h);
|
|
182
182
|
}
|
|
183
|
-
function
|
|
184
|
-
n("change",
|
|
183
|
+
function u(h) {
|
|
184
|
+
n("change", h);
|
|
185
185
|
}
|
|
186
|
-
function
|
|
187
|
-
n("focus",
|
|
186
|
+
function i(h) {
|
|
187
|
+
n("focus", h);
|
|
188
188
|
}
|
|
189
|
-
function
|
|
190
|
-
n("blur",
|
|
189
|
+
function g(h) {
|
|
190
|
+
n("blur", h);
|
|
191
191
|
}
|
|
192
|
-
function
|
|
192
|
+
function y() {
|
|
193
193
|
n("clear");
|
|
194
194
|
}
|
|
195
|
-
function h
|
|
196
|
-
n("visibleChange",
|
|
197
|
-
}
|
|
198
|
-
function
|
|
199
|
-
n("expandChange",
|
|
200
|
-
}
|
|
201
|
-
function
|
|
202
|
-
n("removeTag",
|
|
203
|
-
}
|
|
204
|
-
return (
|
|
205
|
-
const
|
|
206
|
-
return
|
|
207
|
-
"model-value":
|
|
208
|
-
"onUpdate:modelValue":
|
|
209
|
-
onChange:
|
|
210
|
-
onFocus:
|
|
211
|
-
onBlur:
|
|
212
|
-
onClear:
|
|
213
|
-
onVisibleChange:
|
|
214
|
-
onExpandChange:
|
|
215
|
-
onRemoveTag:
|
|
195
|
+
function v(h) {
|
|
196
|
+
n("visibleChange", h);
|
|
197
|
+
}
|
|
198
|
+
function M(h) {
|
|
199
|
+
n("expandChange", h);
|
|
200
|
+
}
|
|
201
|
+
function T(h) {
|
|
202
|
+
n("removeTag", h);
|
|
203
|
+
}
|
|
204
|
+
return (h, p) => {
|
|
205
|
+
const j = nt;
|
|
206
|
+
return c(), P(j, J({ class: "jt-cascader jt-form-control" }, o.value, {
|
|
207
|
+
"model-value": s.value,
|
|
208
|
+
"onUpdate:modelValue": d,
|
|
209
|
+
onChange: u,
|
|
210
|
+
onFocus: i,
|
|
211
|
+
onBlur: g,
|
|
212
|
+
onClear: y,
|
|
213
|
+
onVisibleChange: v,
|
|
214
|
+
onExpandChange: M,
|
|
215
|
+
onRemoveTag: T
|
|
216
216
|
}), null, 16, ["model-value"]);
|
|
217
217
|
};
|
|
218
218
|
}
|
|
219
|
-
}),
|
|
219
|
+
}), Pt = /* @__PURE__ */ I({
|
|
220
220
|
name: "JtDatePicker",
|
|
221
221
|
__name: "index",
|
|
222
222
|
props: {
|
|
@@ -258,7 +258,7 @@ const j2 = /* @__PURE__ */ I({
|
|
|
258
258
|
size: {},
|
|
259
259
|
readonly: { type: Boolean },
|
|
260
260
|
disabled: { type: Boolean },
|
|
261
|
-
placeholder: { default:
|
|
261
|
+
placeholder: { default: B("common.请选择") },
|
|
262
262
|
popperOptions: {},
|
|
263
263
|
modelValue: {},
|
|
264
264
|
rangeSeparator: {},
|
|
@@ -269,30 +269,30 @@ const j2 = /* @__PURE__ */ I({
|
|
|
269
269
|
isRange: { type: Boolean },
|
|
270
270
|
preservePlaceholderWhenDisabled: { type: Boolean }
|
|
271
271
|
},
|
|
272
|
-
setup(
|
|
273
|
-
const e =
|
|
274
|
-
const { preservePlaceholderWhenDisabled:
|
|
275
|
-
if (e.disabled && !
|
|
276
|
-
const { placeholder: n, startPlaceholder:
|
|
277
|
-
return
|
|
272
|
+
setup(l) {
|
|
273
|
+
const e = l, t = m(() => {
|
|
274
|
+
const { preservePlaceholderWhenDisabled: s, ...a } = e;
|
|
275
|
+
if (e.disabled && !s) {
|
|
276
|
+
const { placeholder: n, startPlaceholder: d, endPlaceholder: u, ...i } = a;
|
|
277
|
+
return i;
|
|
278
278
|
}
|
|
279
279
|
return {
|
|
280
|
-
...
|
|
281
|
-
startPlaceholder: e.startPlaceholder ?? (o(e.type) ?
|
|
282
|
-
endPlaceholder: e.endPlaceholder ?? (o(e.type) ?
|
|
280
|
+
...a,
|
|
281
|
+
startPlaceholder: e.startPlaceholder ?? (o(e.type) ? B("common.开始日期") : void 0),
|
|
282
|
+
endPlaceholder: e.endPlaceholder ?? (o(e.type) ? B("common.结束日期") : void 0)
|
|
283
283
|
};
|
|
284
284
|
});
|
|
285
|
-
function o(
|
|
286
|
-
return
|
|
285
|
+
function o(s) {
|
|
286
|
+
return s?.includes("range") ?? !1;
|
|
287
287
|
}
|
|
288
|
-
return (
|
|
289
|
-
const n =
|
|
290
|
-
return
|
|
291
|
-
"onUpdate:modelValue":
|
|
288
|
+
return (s, a) => {
|
|
289
|
+
const n = lt;
|
|
290
|
+
return c(), P(n, J({ class: "jt-date-picker jt-form-control" }, t.value, {
|
|
291
|
+
"onUpdate:modelValue": a[0] || (a[0] = (d) => s.$emit("update:modelValue", d))
|
|
292
292
|
}), null, 16);
|
|
293
293
|
};
|
|
294
294
|
}
|
|
295
|
-
}),
|
|
295
|
+
}), Vt = /* @__PURE__ */ I({
|
|
296
296
|
name: "JtInput",
|
|
297
297
|
__name: "index",
|
|
298
298
|
props: {
|
|
@@ -332,33 +332,227 @@ const j2 = /* @__PURE__ */ I({
|
|
|
332
332
|
preservePlaceholderWhenDisabled: { type: Boolean }
|
|
333
333
|
},
|
|
334
334
|
emits: {
|
|
335
|
-
...
|
|
335
|
+
...Re,
|
|
336
336
|
enter: () => !0
|
|
337
337
|
},
|
|
338
|
-
setup(
|
|
339
|
-
const t =
|
|
340
|
-
const { preservePlaceholderWhenDisabled: n, placeholder:
|
|
341
|
-
...
|
|
338
|
+
setup(l, { emit: e }) {
|
|
339
|
+
const t = l, o = m(() => {
|
|
340
|
+
const { preservePlaceholderWhenDisabled: n, placeholder: d, ...u } = t, i = {
|
|
341
|
+
...u,
|
|
342
342
|
// 未显式配置 placeholder 时,每次渲染按当前语言重新读取默认文案。
|
|
343
|
-
placeholder:
|
|
343
|
+
placeholder: d ?? B("common.请输入")
|
|
344
344
|
};
|
|
345
|
-
return !t.disabled || n ?
|
|
346
|
-
Object.entries(
|
|
345
|
+
return !t.disabled || n ? i : Object.fromEntries(
|
|
346
|
+
Object.entries(i).filter(([g]) => g !== "placeholder")
|
|
347
347
|
);
|
|
348
|
-
}),
|
|
349
|
-
Object.keys(
|
|
348
|
+
}), s = e, a = m(() => Object.fromEntries(
|
|
349
|
+
Object.keys(Re).map((n) => [
|
|
350
350
|
n,
|
|
351
|
-
(...
|
|
351
|
+
(...d) => s(n, ...d)
|
|
352
352
|
])
|
|
353
353
|
));
|
|
354
|
-
return (n,
|
|
355
|
-
const
|
|
356
|
-
return
|
|
357
|
-
onKeyup:
|
|
354
|
+
return (n, d) => {
|
|
355
|
+
const u = st;
|
|
356
|
+
return c(), P(u, J({ class: "jt-input jt-form-control" }, o.value, le(a.value), {
|
|
357
|
+
onKeyup: d[0] || (d[0] = Ve((i) => s("enter"), ["enter"]))
|
|
358
358
|
}), null, 16);
|
|
359
359
|
};
|
|
360
360
|
}
|
|
361
|
-
}),
|
|
361
|
+
}), Ce = /* @__PURE__ */ O(Vt, [["__scopeId", "data-v-ddac16c1"]]);
|
|
362
|
+
function Ye(l) {
|
|
363
|
+
return l.trim().toLocaleLowerCase();
|
|
364
|
+
}
|
|
365
|
+
function We(l, e) {
|
|
366
|
+
const t = Ye(e);
|
|
367
|
+
return t ? l.filter((o) => [
|
|
368
|
+
o.label,
|
|
369
|
+
o.description,
|
|
370
|
+
...o.keywords ?? []
|
|
371
|
+
].filter((a) => !!a).join(`
|
|
372
|
+
`).toLocaleLowerCase().includes(t)) : l;
|
|
373
|
+
}
|
|
374
|
+
function It(l, e) {
|
|
375
|
+
const t = Ye(e);
|
|
376
|
+
if (!t) return [{ text: l, matched: !1 }];
|
|
377
|
+
const o = l.toLocaleLowerCase(), s = [];
|
|
378
|
+
let a = 0, n = o.indexOf(t, a);
|
|
379
|
+
for (; n !== -1; ) {
|
|
380
|
+
n > a && s.push({ text: l.slice(a, n), matched: !1 });
|
|
381
|
+
const d = n + t.length;
|
|
382
|
+
s.push({ text: l.slice(n, d), matched: !0 }), a = d, n = o.indexOf(t, a);
|
|
383
|
+
}
|
|
384
|
+
return a < l.length && s.push({ text: l.slice(a), matched: !1 }), s.length ? s : [{ text: l, matched: !1 }];
|
|
385
|
+
}
|
|
386
|
+
const Et = { class: "jt-search-select__option-title" }, zt = { key: 0 }, Dt = { key: 1 }, Ht = {
|
|
387
|
+
key: 0,
|
|
388
|
+
class: "jt-search-select__option-description"
|
|
389
|
+
}, Ot = { key: 0 }, Jt = { key: 1 }, lo = /* @__PURE__ */ I({
|
|
390
|
+
name: "JtSearchSelect",
|
|
391
|
+
__name: "index",
|
|
392
|
+
props: {
|
|
393
|
+
options: { default: () => [] },
|
|
394
|
+
secondaryPlaceholder: {},
|
|
395
|
+
ariaLabel: {},
|
|
396
|
+
emptyValues: {},
|
|
397
|
+
valueOnClear: {},
|
|
398
|
+
name: {},
|
|
399
|
+
id: {},
|
|
400
|
+
modelValue: {},
|
|
401
|
+
autocomplete: {},
|
|
402
|
+
automaticDropdown: { type: Boolean },
|
|
403
|
+
size: {},
|
|
404
|
+
effect: {},
|
|
405
|
+
disabled: { type: Boolean },
|
|
406
|
+
clearable: { type: Boolean, default: !0 },
|
|
407
|
+
filterable: { type: Boolean, default: !0 },
|
|
408
|
+
allowCreate: { type: Boolean },
|
|
409
|
+
loading: { type: Boolean },
|
|
410
|
+
popperClass: {},
|
|
411
|
+
popperStyle: {},
|
|
412
|
+
popperOptions: {},
|
|
413
|
+
remote: { type: Boolean, default: !0 },
|
|
414
|
+
debounce: {},
|
|
415
|
+
loadingText: {},
|
|
416
|
+
noMatchText: {},
|
|
417
|
+
noDataText: {},
|
|
418
|
+
remoteMethod: {},
|
|
419
|
+
multiple: { type: Boolean },
|
|
420
|
+
multipleLimit: {},
|
|
421
|
+
placeholder: {},
|
|
422
|
+
defaultFirstOption: { type: Boolean },
|
|
423
|
+
reserveKeyword: { type: Boolean },
|
|
424
|
+
valueKey: {},
|
|
425
|
+
collapseTags: { type: Boolean },
|
|
426
|
+
collapseTagsTooltip: { type: Boolean },
|
|
427
|
+
tagTooltip: {},
|
|
428
|
+
maxCollapseTags: {},
|
|
429
|
+
teleported: { type: Boolean },
|
|
430
|
+
persistent: { type: Boolean },
|
|
431
|
+
clearIcon: {},
|
|
432
|
+
fitInputWidth: { type: Boolean },
|
|
433
|
+
suffixIcon: {},
|
|
434
|
+
tagType: {},
|
|
435
|
+
tagEffect: {},
|
|
436
|
+
validateEvent: { type: Boolean },
|
|
437
|
+
remoteShowSuffix: { type: Boolean },
|
|
438
|
+
showArrow: { type: Boolean },
|
|
439
|
+
offset: {},
|
|
440
|
+
placement: {},
|
|
441
|
+
fallbackPlacements: {},
|
|
442
|
+
tabindex: {},
|
|
443
|
+
appendTo: {},
|
|
444
|
+
props: {}
|
|
445
|
+
},
|
|
446
|
+
emits: {
|
|
447
|
+
...Le,
|
|
448
|
+
search: (l) => typeof l == "string"
|
|
449
|
+
},
|
|
450
|
+
setup(l, { emit: e }) {
|
|
451
|
+
const t = l, o = e, s = R(""), a = R(""), n = bt(), d = m(() => {
|
|
452
|
+
const p = n?.vnode.props ?? {};
|
|
453
|
+
return Object.prototype.hasOwnProperty.call(p, "collapseTagsTooltip") || Object.prototype.hasOwnProperty.call(p, "collapse-tags-tooltip");
|
|
454
|
+
}), u = m(() => {
|
|
455
|
+
const {
|
|
456
|
+
options: p,
|
|
457
|
+
secondaryPlaceholder: j,
|
|
458
|
+
remoteMethod: D,
|
|
459
|
+
popperClass: G,
|
|
460
|
+
placeholder: k,
|
|
461
|
+
teleported: E,
|
|
462
|
+
collapseTagsTooltip: f,
|
|
463
|
+
...x
|
|
464
|
+
} = t;
|
|
465
|
+
return {
|
|
466
|
+
...x,
|
|
467
|
+
filterable: t.filterable ?? !0,
|
|
468
|
+
remote: t.remote ?? !0,
|
|
469
|
+
remoteMethod: v,
|
|
470
|
+
filterMethod: v,
|
|
471
|
+
placeholder: k ?? B("common.请选择"),
|
|
472
|
+
teleported: E ?? !0,
|
|
473
|
+
collapseTagsTooltip: d.value ? f : !!t.collapseTags,
|
|
474
|
+
popperClass: ["jt-search-select__popper", G].filter(Boolean).join(" ")
|
|
475
|
+
};
|
|
476
|
+
}), i = m(() => {
|
|
477
|
+
const p = We(
|
|
478
|
+
t.options,
|
|
479
|
+
s.value
|
|
480
|
+
);
|
|
481
|
+
return We(
|
|
482
|
+
p,
|
|
483
|
+
a.value
|
|
484
|
+
);
|
|
485
|
+
}), g = m(
|
|
486
|
+
() => t.secondaryPlaceholder ?? B("common.请输入")
|
|
487
|
+
), y = m(() => Object.fromEntries(
|
|
488
|
+
Object.keys(Le).map((p) => [
|
|
489
|
+
p,
|
|
490
|
+
(...j) => o(p, ...j)
|
|
491
|
+
])
|
|
492
|
+
));
|
|
493
|
+
function v(p) {
|
|
494
|
+
s.value = p, a.value = "", (t.remote ?? !0) && t.remoteMethod?.(p), o("search", p);
|
|
495
|
+
}
|
|
496
|
+
function M(p) {
|
|
497
|
+
a.value = String(p ?? "");
|
|
498
|
+
}
|
|
499
|
+
function T() {
|
|
500
|
+
a.value = "";
|
|
501
|
+
}
|
|
502
|
+
function h(p) {
|
|
503
|
+
return It(p, a.value);
|
|
504
|
+
}
|
|
505
|
+
return (p, j) => {
|
|
506
|
+
const D = Ge, G = Ue;
|
|
507
|
+
return c(), P(G, J({ class: "jt-search-select jt-form-control" }, u.value, le(y.value)), {
|
|
508
|
+
header: L(() => [
|
|
509
|
+
C(p.$slots, "header", {
|
|
510
|
+
keyword: a.value,
|
|
511
|
+
setKeyword: M,
|
|
512
|
+
clearKeyword: T
|
|
513
|
+
}, () => [
|
|
514
|
+
K(V(Ce), {
|
|
515
|
+
class: "jt-search-select__secondary-input",
|
|
516
|
+
"model-value": a.value,
|
|
517
|
+
placeholder: g.value,
|
|
518
|
+
"onUpdate:modelValue": M,
|
|
519
|
+
onKeydown: j[0] || (j[0] = re(() => {
|
|
520
|
+
}, ["stop"]))
|
|
521
|
+
}, null, 8, ["model-value", "placeholder"])
|
|
522
|
+
])
|
|
523
|
+
]),
|
|
524
|
+
default: L(() => [
|
|
525
|
+
(c(!0), _(Y, null, U(i.value, (k) => (c(), P(D, {
|
|
526
|
+
key: k.value,
|
|
527
|
+
label: k.label,
|
|
528
|
+
value: k.value,
|
|
529
|
+
disabled: k.disabled,
|
|
530
|
+
class: "jt-search-select__option"
|
|
531
|
+
}, {
|
|
532
|
+
default: L(() => [
|
|
533
|
+
b("div", Et, [
|
|
534
|
+
(c(!0), _(Y, null, U(h(k.label), (E, f) => (c(), _(Y, {
|
|
535
|
+
key: `${k.value}-label-${f}`
|
|
536
|
+
}, [
|
|
537
|
+
E.matched ? (c(), _("mark", zt, F(E.text), 1)) : (c(), _("span", Dt, F(E.text), 1))
|
|
538
|
+
], 64))), 128))
|
|
539
|
+
]),
|
|
540
|
+
k.description ? (c(), _("div", Ht, [
|
|
541
|
+
(c(!0), _(Y, null, U(h(k.description), (E, f) => (c(), _(Y, {
|
|
542
|
+
key: `${k.value}-description-${f}`
|
|
543
|
+
}, [
|
|
544
|
+
E.matched ? (c(), _("mark", Ot, F(E.text), 1)) : (c(), _("span", Jt, F(E.text), 1))
|
|
545
|
+
], 64))), 128))
|
|
546
|
+
])) : z("", !0)
|
|
547
|
+
]),
|
|
548
|
+
_: 2
|
|
549
|
+
}, 1032, ["label", "value", "disabled"]))), 128))
|
|
550
|
+
]),
|
|
551
|
+
_: 3
|
|
552
|
+
}, 16);
|
|
553
|
+
};
|
|
554
|
+
}
|
|
555
|
+
}), Zt = /* @__PURE__ */ I({
|
|
362
556
|
name: "JtSelect",
|
|
363
557
|
__name: "index",
|
|
364
558
|
props: {
|
|
@@ -416,35 +610,35 @@ const j2 = /* @__PURE__ */ I({
|
|
|
416
610
|
appendTo: {},
|
|
417
611
|
props: {}
|
|
418
612
|
},
|
|
419
|
-
emits:
|
|
420
|
-
setup(
|
|
421
|
-
const t =
|
|
422
|
-
const { options: n, placeholder:
|
|
423
|
-
return t.disabled && !
|
|
424
|
-
...
|
|
613
|
+
emits: Le,
|
|
614
|
+
setup(l, { emit: e }) {
|
|
615
|
+
const t = l, o = m(() => {
|
|
616
|
+
const { options: n, placeholder: d, preservePlaceholderWhenDisabled: u, ...i } = t;
|
|
617
|
+
return t.disabled && !u ? i : {
|
|
618
|
+
...i,
|
|
425
619
|
// 未显式配置 placeholder 时,每次渲染按当前语言重新读取默认文案。
|
|
426
|
-
placeholder:
|
|
620
|
+
placeholder: d ?? B("common.请选择")
|
|
427
621
|
};
|
|
428
|
-
}),
|
|
429
|
-
Object.keys(
|
|
622
|
+
}), s = e, a = m(() => Object.fromEntries(
|
|
623
|
+
Object.keys(Le).map((n) => [
|
|
430
624
|
n,
|
|
431
|
-
(...
|
|
625
|
+
(...d) => s(n, ...d)
|
|
432
626
|
])
|
|
433
627
|
));
|
|
434
|
-
return (n,
|
|
435
|
-
const
|
|
436
|
-
return
|
|
628
|
+
return (n, d) => {
|
|
629
|
+
const u = Ge, i = Ue;
|
|
630
|
+
return c(), P(i, J({ class: "jt-select jt-form-control" }, o.value, le(a.value)), {
|
|
437
631
|
default: L(() => [
|
|
438
|
-
(
|
|
439
|
-
key:
|
|
632
|
+
(c(!0), _(Y, null, U(n.options ?? [], (g) => (c(), P(u, J({
|
|
633
|
+
key: g.value,
|
|
440
634
|
ref_for: !0
|
|
441
|
-
},
|
|
635
|
+
}, g), null, 16))), 128))
|
|
442
636
|
]),
|
|
443
637
|
_: 1
|
|
444
638
|
}, 16);
|
|
445
639
|
};
|
|
446
640
|
}
|
|
447
|
-
}),
|
|
641
|
+
}), Rt = /* @__PURE__ */ O(Zt, [["__scopeId", "data-v-48990808"]]), At = /* @__PURE__ */ I({
|
|
448
642
|
name: "JTFormItems",
|
|
449
643
|
__name: "JtFormItems",
|
|
450
644
|
props: {
|
|
@@ -453,112 +647,112 @@ const j2 = /* @__PURE__ */ I({
|
|
|
453
647
|
gridColumns: {},
|
|
454
648
|
span: {}
|
|
455
649
|
},
|
|
456
|
-
setup(
|
|
457
|
-
const e =
|
|
458
|
-
input:
|
|
459
|
-
select:
|
|
460
|
-
cascader:
|
|
461
|
-
"date-picker":
|
|
462
|
-
},
|
|
650
|
+
setup(l) {
|
|
651
|
+
const e = ce(), t = l, o = {
|
|
652
|
+
input: Ce,
|
|
653
|
+
select: Rt,
|
|
654
|
+
cascader: Ft,
|
|
655
|
+
"date-picker": Pt
|
|
656
|
+
}, s = {
|
|
463
657
|
"remote-select": "select",
|
|
464
658
|
date: "date-picker",
|
|
465
659
|
daterange: "date-picker",
|
|
466
660
|
"date-range": "date-picker",
|
|
467
661
|
dateRange: "date-picker"
|
|
468
|
-
},
|
|
469
|
-
const { itemType:
|
|
470
|
-
if (
|
|
471
|
-
if (typeof
|
|
472
|
-
const W =
|
|
662
|
+
}, a = /* @__PURE__ */ new Set(["prop", "label", "itemType", "span", "options", "rules", "formItemProps", "showSlot", "show"]), n = Object.keys(o), d = /* @__PURE__ */ new Map(), u = m(() => t.configs.filter((f) => f.show !== !1)), i = (f) => {
|
|
663
|
+
const { itemType: x } = f;
|
|
664
|
+
if (!x) return Ce;
|
|
665
|
+
if (typeof x != "string") return x;
|
|
666
|
+
const W = s[x] ?? x;
|
|
473
667
|
return n.includes(W) ? o[W] : (console.error(
|
|
474
|
-
`[JtFormItems] 不支持的 itemType: "${
|
|
475
|
-
),
|
|
476
|
-
},
|
|
477
|
-
const
|
|
668
|
+
`[JtFormItems] 不支持的 itemType: "${x}",支持的类型: ${n.join(", ")}`
|
|
669
|
+
), Ce);
|
|
670
|
+
}, g = (f) => {
|
|
671
|
+
const x = ke(f, a);
|
|
478
672
|
return f.itemType === "select" || f.itemType === "remote-select" || f.itemType === "cascader" ? {
|
|
479
|
-
|
|
673
|
+
...x,
|
|
480
674
|
options: f.options
|
|
481
|
-
} :
|
|
482
|
-
|
|
675
|
+
} : E(f.itemType) ? {
|
|
676
|
+
...x,
|
|
483
677
|
type: "daterange"
|
|
484
|
-
} :
|
|
485
|
-
},
|
|
678
|
+
} : x;
|
|
679
|
+
}, y = (f) => xe(f, a), v = (f) => ({
|
|
486
680
|
rules: f.rules,
|
|
487
681
|
...f.formItemProps
|
|
488
|
-
}),
|
|
489
|
-
t.formData[f] =
|
|
682
|
+
}), M = (f, x) => {
|
|
683
|
+
t.formData[f] = x;
|
|
490
684
|
};
|
|
491
|
-
function
|
|
492
|
-
return (
|
|
493
|
-
if (
|
|
494
|
-
|
|
685
|
+
function T(f) {
|
|
686
|
+
return (x) => {
|
|
687
|
+
if (x) {
|
|
688
|
+
d.set(f, x);
|
|
495
689
|
return;
|
|
496
690
|
}
|
|
497
|
-
|
|
691
|
+
d.delete(f);
|
|
498
692
|
};
|
|
499
693
|
}
|
|
500
|
-
function
|
|
501
|
-
|
|
502
|
-
|
|
694
|
+
function h(f, x) {
|
|
695
|
+
be(() => {
|
|
696
|
+
d.get(f)?.validate(x).catch(() => {
|
|
503
697
|
});
|
|
504
698
|
});
|
|
505
699
|
}
|
|
506
|
-
const
|
|
507
|
-
const
|
|
508
|
-
(W, w) => W +
|
|
700
|
+
const p = (f) => Math.min(Math.max(Math.trunc(f || 4), 1), 24), j = m(() => p(t.gridColumns)), D = (f) => Math.min(Math.max(Math.trunc(f || 1), 1), j.value), G = m(() => {
|
|
701
|
+
const x = u.value.reduce(
|
|
702
|
+
(W, w) => W + D(t.span || w.span),
|
|
509
703
|
0
|
|
510
|
-
) %
|
|
511
|
-
return
|
|
512
|
-
gridColumn: `1 / span ${
|
|
704
|
+
) % j.value;
|
|
705
|
+
return x === 0 ? {
|
|
706
|
+
gridColumn: `1 / span ${j.value}`
|
|
513
707
|
} : {
|
|
514
|
-
gridColumn: `${
|
|
708
|
+
gridColumn: `${x + 1} / span ${j.value - x}`
|
|
515
709
|
};
|
|
516
|
-
}),
|
|
517
|
-
gridColumn: `span ${
|
|
710
|
+
}), k = (f) => ({
|
|
711
|
+
gridColumn: `span ${D(t.span || f.span)}`
|
|
518
712
|
});
|
|
519
|
-
function
|
|
713
|
+
function E(f) {
|
|
520
714
|
return f === "daterange" || f === "date-range" || f === "dateRange";
|
|
521
715
|
}
|
|
522
|
-
return (f,
|
|
523
|
-
const W =
|
|
524
|
-
return
|
|
716
|
+
return (f, x) => {
|
|
717
|
+
const W = rt;
|
|
718
|
+
return c(), _("div", {
|
|
525
719
|
class: "jt-form-items",
|
|
526
|
-
style:
|
|
720
|
+
style: te({ "--jt-form-columns": j.value })
|
|
527
721
|
}, [
|
|
528
|
-
(
|
|
722
|
+
(c(!0), _(Y, null, U(u.value, (w) => (c(), P(W, J({
|
|
529
723
|
key: w.prop,
|
|
530
724
|
ref_for: !0,
|
|
531
|
-
ref:
|
|
725
|
+
ref: T(w.prop),
|
|
532
726
|
class: "jt-form-items__item",
|
|
533
|
-
style:
|
|
727
|
+
style: k(w),
|
|
534
728
|
label: w.label,
|
|
535
729
|
prop: w.prop
|
|
536
|
-
},
|
|
730
|
+
}, v(w)), ie({
|
|
537
731
|
default: L(() => [
|
|
538
|
-
w.showSlot ? C(f.$slots, w.prop, { key: 0 }, void 0, !0) : (
|
|
732
|
+
w.showSlot ? C(f.$slots, w.prop, { key: 0 }, void 0, !0) : (c(), P($e(i(w)), J({
|
|
539
733
|
key: 1,
|
|
540
734
|
"model-value": f.formData[w.prop],
|
|
541
735
|
ref_for: !0
|
|
542
|
-
},
|
|
543
|
-
"onUpdate:modelValue": (
|
|
544
|
-
onChange: () =>
|
|
545
|
-
onBlur: () =>
|
|
736
|
+
}, g(w), le(y(w)), {
|
|
737
|
+
"onUpdate:modelValue": (N) => M(w.prop, N),
|
|
738
|
+
onChange: () => h(w.prop, "change"),
|
|
739
|
+
onBlur: () => h(w.prop, "blur")
|
|
546
740
|
}), null, 16, ["model-value", "onUpdate:modelValue", "onChange", "onBlur"]))
|
|
547
741
|
]),
|
|
548
742
|
_: 2
|
|
549
743
|
}, [
|
|
550
|
-
|
|
744
|
+
V(e)[`${w.prop}-label`] ? {
|
|
551
745
|
name: "label",
|
|
552
|
-
fn: L((
|
|
553
|
-
C(f.$slots, `${w.prop}-label`, J({ ref_for: !0 },
|
|
746
|
+
fn: L((N) => [
|
|
747
|
+
C(f.$slots, `${w.prop}-label`, J({ ref_for: !0 }, N), void 0, !0)
|
|
554
748
|
]),
|
|
555
749
|
key: "0"
|
|
556
750
|
} : void 0
|
|
557
751
|
]), 1040, ["style", "label", "prop"]))), 128)),
|
|
558
|
-
f.$slots.actions ? (
|
|
752
|
+
f.$slots.actions ? (c(), P(W, {
|
|
559
753
|
key: 0,
|
|
560
754
|
class: "jt-form-items__actions",
|
|
561
|
-
style:
|
|
755
|
+
style: te(G.value)
|
|
562
756
|
}, {
|
|
563
757
|
default: L(() => [
|
|
564
758
|
C(f.$slots, "actions", {}, void 0, !0)
|
|
@@ -568,22 +762,22 @@ const j2 = /* @__PURE__ */ I({
|
|
|
568
762
|
], 4);
|
|
569
763
|
};
|
|
570
764
|
}
|
|
571
|
-
}),
|
|
572
|
-
function
|
|
573
|
-
const
|
|
765
|
+
}), Wt = /* @__PURE__ */ O(At, [["__scopeId", "data-v-e6602c2d"]]);
|
|
766
|
+
function Kt() {
|
|
767
|
+
const l = R(!1);
|
|
574
768
|
function e() {
|
|
575
|
-
|
|
769
|
+
l.value = !0;
|
|
576
770
|
}
|
|
577
771
|
function t() {
|
|
578
|
-
|
|
772
|
+
l.value = !1;
|
|
579
773
|
}
|
|
580
774
|
return {
|
|
581
|
-
searchDisabled:
|
|
775
|
+
searchDisabled: l,
|
|
582
776
|
searchLoading: e,
|
|
583
777
|
searchDone: t
|
|
584
778
|
};
|
|
585
779
|
}
|
|
586
|
-
const
|
|
780
|
+
const Ut = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='0.5'%20y='-0.5'%20width='11'%20height='11'%20rx='5.5'%20transform='matrix(1%200%200%20-1%201%2012)'%20stroke='%23999999'/%3e%3cpath%20d='M10%208.16064L7%205.16064L4%208.16064'%20stroke='%23999999'/%3e%3c/svg%3e", Gt = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2.375%207.00017C2.375%207.27631%202.59886%207.50017%202.875%207.50017C3.15114%207.50017%203.375%207.27631%203.375%207.00017H2.875H2.375ZM2.875%207.00017H3.375C3.375%204.46334%205.41801%202.41406%207.93713%202.41406V1.91406V1.41406C4.86127%201.41406%202.375%203.91551%202.375%207.00017H2.875ZM7.93713%201.91406V2.41406C10.4563%202.41406%2012.4993%204.46334%2012.4993%207.00017H12.9993H13.4993C13.4993%203.91551%2011.013%201.41406%207.93713%201.41406V1.91406ZM12.9993%207.00017H12.4993C12.4993%209.537%2010.4563%2011.5863%207.93713%2011.5863V12.0863V12.5863C11.013%2012.5863%2013.4993%2010.0848%2013.4993%207.00017H12.9993ZM7.93713%2012.0863V11.5863C6.68975%2011.5863%205.55663%2011.0806%204.72892%2010.2635L4.37765%2010.6193L4.02638%2010.9752C5.0317%2011.9676%206.41366%2012.5863%207.93713%2012.5863V12.0863Z'%20fill='%23999999'/%3e%3cpath%20d='M4.75131%206.0102L2.88631%207.88403L1%205.99414'%20stroke='%23999999'%20stroke-miterlimit='10'/%3e%3c/svg%3e", Nt = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M6.60938%2012.1099C9.64694%2012.1099%2012.1094%209.64743%2012.1094%206.60986C12.1094%203.5723%209.64694%201.10986%206.60938%201.10986C3.57181%201.10986%201.10938%203.5723%201.10938%206.60986C1.10938%209.64743%203.57181%2012.1099%206.60938%2012.1099Z'%20stroke='white'%20stroke-miterlimit='10'/%3e%3cpath%20d='M12.4993%2012.5002L10.2832%2010.3301'%20stroke='white'%20stroke-miterlimit='10'/%3e%3c/svg%3e", qt = { class: "jt-filter-bar__btns" }, Yt = ["src"], Xt = ["src"], Qt = ["src"], e2 = /* @__PURE__ */ I({
|
|
587
781
|
name: "JtFilterBar",
|
|
588
782
|
__name: "JtFilterBar",
|
|
589
783
|
props: {
|
|
@@ -592,278 +786,278 @@ const I2 = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%20
|
|
|
592
786
|
modelValue: {}
|
|
593
787
|
},
|
|
594
788
|
emits: ["update:modelValue", "search", "reset"],
|
|
595
|
-
setup(
|
|
596
|
-
const o =
|
|
597
|
-
() => o.columns.filter((
|
|
598
|
-
),
|
|
599
|
-
() => Math.max(1,
|
|
600
|
-
),
|
|
601
|
-
() => Math.max(1,
|
|
602
|
-
),
|
|
603
|
-
() => Math.max(1,
|
|
604
|
-
),
|
|
605
|
-
() =>
|
|
606
|
-
),
|
|
607
|
-
() =>
|
|
789
|
+
setup(l, { expose: e, emit: t }) {
|
|
790
|
+
const o = l, s = t, a = R(), n = ce(), d = R({}), { searchDisabled: u, searchLoading: i, searchDone: g } = Kt(), y = R({}), v = R({}), M = /* @__PURE__ */ new Map(), T = m(() => o.option), h = R(T.value.searchCollapsed ?? !0), p = m(
|
|
791
|
+
() => o.columns.filter((r) => r.search === !0)
|
|
792
|
+
), j = m(
|
|
793
|
+
() => Math.max(1, T.value.searchSpan ?? 4)
|
|
794
|
+
), D = m(
|
|
795
|
+
() => Math.max(1, T.value.searchCollapsedRows ?? 1)
|
|
796
|
+
), G = m(() => j.value), k = m(
|
|
797
|
+
() => Math.max(1, G.value * D.value)
|
|
798
|
+
), E = m(() => j.value), f = m(
|
|
799
|
+
() => pe.value ? "264px" : "174px"
|
|
800
|
+
), x = m(
|
|
801
|
+
() => tt(T.value.searchLabelWidth ?? 84)
|
|
608
802
|
), W = m(
|
|
609
|
-
() =>
|
|
803
|
+
() => T.value.searchLabelPosition ?? "top"
|
|
610
804
|
), w = m(
|
|
611
|
-
() =>
|
|
612
|
-
),
|
|
613
|
-
() =>
|
|
614
|
-
),
|
|
615
|
-
() =>
|
|
616
|
-
),
|
|
617
|
-
if (!
|
|
618
|
-
let
|
|
619
|
-
return
|
|
620
|
-
const
|
|
621
|
-
return
|
|
805
|
+
() => He(T.value.searchGutter, 16)
|
|
806
|
+
), N = m(
|
|
807
|
+
() => He(T.value.searchRowGap, 10)
|
|
808
|
+
), Be = m(
|
|
809
|
+
() => ot(T.value.searchPadding ?? "0 12px")
|
|
810
|
+
), pe = m(() => T.value.searchCollapse === !1 ? !1 : Pe(p.value) > k.value), ae = m(() => {
|
|
811
|
+
if (!pe.value || !h.value) return p.value;
|
|
812
|
+
let r = 0;
|
|
813
|
+
return p.value.filter((S) => {
|
|
814
|
+
const H = Fe(S);
|
|
815
|
+
return r + H > k.value ? !1 : (r += H, !0);
|
|
622
816
|
});
|
|
623
|
-
}),
|
|
624
|
-
() =>
|
|
625
|
-
),
|
|
626
|
-
const
|
|
627
|
-
return
|
|
628
|
-
}),
|
|
629
|
-
const
|
|
630
|
-
return `${Math.min(
|
|
631
|
-
}),
|
|
632
|
-
() =>
|
|
817
|
+
}), $ = m(
|
|
818
|
+
() => ae.value.filter((r) => !!n[`${r.prop}-search`])
|
|
819
|
+
), Z = m(() => {
|
|
820
|
+
const r = Pe(ae.value);
|
|
821
|
+
return ae.value.length > 0 && ae.value.length <= 2 && r < j.value;
|
|
822
|
+
}), q = m(() => {
|
|
823
|
+
const r = Pe(ae.value);
|
|
824
|
+
return `${Math.min(j.value, r + 1)}`;
|
|
825
|
+
}), oe = m(
|
|
826
|
+
() => ae.value.map((r) => me(r))
|
|
633
827
|
);
|
|
634
|
-
|
|
635
|
-
() =>
|
|
636
|
-
(
|
|
637
|
-
typeof
|
|
828
|
+
ue(
|
|
829
|
+
() => T.value.searchCollapsed,
|
|
830
|
+
(r) => {
|
|
831
|
+
typeof r == "boolean" && (h.value = r);
|
|
638
832
|
}
|
|
639
|
-
),
|
|
833
|
+
), ue(
|
|
640
834
|
() => o.modelValue,
|
|
641
|
-
(
|
|
642
|
-
|
|
835
|
+
(r) => {
|
|
836
|
+
d.value = { ...r };
|
|
643
837
|
},
|
|
644
838
|
{ deep: !0, immediate: !0 }
|
|
645
839
|
);
|
|
646
|
-
function
|
|
647
|
-
if (
|
|
648
|
-
const
|
|
649
|
-
|
|
840
|
+
function se(r, S) {
|
|
841
|
+
if (u.value) return;
|
|
842
|
+
const H = { ...d.value, [r]: S };
|
|
843
|
+
d.value = H, s("update:modelValue", H);
|
|
650
844
|
}
|
|
651
|
-
function
|
|
652
|
-
const
|
|
845
|
+
function me(r) {
|
|
846
|
+
const S = r.searchProps ?? {}, H = r.searchType ?? "input", A = ne(r, S);
|
|
653
847
|
return {
|
|
654
|
-
...
|
|
655
|
-
...
|
|
656
|
-
prop:
|
|
657
|
-
label:
|
|
658
|
-
span:
|
|
659
|
-
itemType:
|
|
848
|
+
...S,
|
|
849
|
+
...A,
|
|
850
|
+
prop: r.prop,
|
|
851
|
+
label: r.searchLabel ?? r.label,
|
|
852
|
+
span: Fe(r),
|
|
853
|
+
itemType: H,
|
|
660
854
|
// 外部提供 `${prop}-search` 时交给插槽渲染,保持旧版 JtFilterBar 的自定义能力。
|
|
661
|
-
showSlot: !!n[`${
|
|
662
|
-
options:
|
|
663
|
-
placeholder:
|
|
664
|
-
valueFormat:
|
|
665
|
-
disabled:
|
|
666
|
-
loading:
|
|
667
|
-
preservePlaceholderWhenDisabled:
|
|
855
|
+
showSlot: !!n[`${r.prop}-search`],
|
|
856
|
+
options: je(r, S),
|
|
857
|
+
placeholder: S.placeholder ?? r.searchPlaceholder,
|
|
858
|
+
valueFormat: S.valueFormat ?? r.searchValueFormat,
|
|
859
|
+
disabled: u.value || S.disabled === !0,
|
|
860
|
+
loading: Se(r, S),
|
|
861
|
+
preservePlaceholderWhenDisabled: u.value,
|
|
668
862
|
formItemProps: {
|
|
669
|
-
required:
|
|
670
|
-
class: ["jt-filter-bar__item", { "is-required":
|
|
863
|
+
required: r.searchRequired,
|
|
864
|
+
class: ["jt-filter-bar__item", { "is-required": r.searchRequired }]
|
|
671
865
|
},
|
|
672
866
|
// 保留原来输入框回车触发查询的行为,同时不吞掉使用方在 searchProps 中传入的 onEnter。
|
|
673
|
-
onEnter: (...
|
|
674
|
-
|
|
867
|
+
onEnter: (...de) => {
|
|
868
|
+
Te(S.onEnter, ...de), _e();
|
|
675
869
|
},
|
|
676
870
|
// JtFormItems 内部会修改 filterModel,这里继续按旧接口向外 emit update:modelValue。
|
|
677
|
-
"onUpdate:modelValue": (
|
|
678
|
-
|
|
871
|
+
"onUpdate:modelValue": (de) => {
|
|
872
|
+
Te(S["onUpdate:modelValue"], de), se(r.prop, de);
|
|
679
873
|
}
|
|
680
874
|
};
|
|
681
875
|
}
|
|
682
|
-
function
|
|
683
|
-
if (
|
|
684
|
-
const
|
|
876
|
+
function ne(r, S) {
|
|
877
|
+
if (r.searchType !== "remote-select") return {};
|
|
878
|
+
const H = r.searchRemoteMethod ? (A) => ve(r, A) : S.remoteMethod;
|
|
685
879
|
return {
|
|
686
880
|
// remote-select 明确进入 Element Plus 远程搜索模式,避免调用方重复配置 remote。
|
|
687
|
-
remote:
|
|
688
|
-
filterable:
|
|
689
|
-
remoteMethod:
|
|
881
|
+
remote: S.remote ?? !!H,
|
|
882
|
+
filterable: S.filterable ?? !0,
|
|
883
|
+
remoteMethod: H
|
|
690
884
|
};
|
|
691
885
|
}
|
|
692
|
-
function
|
|
693
|
-
return
|
|
886
|
+
function je(r, S) {
|
|
887
|
+
return r.searchType === "remote-select" && Object.prototype.hasOwnProperty.call(y.value, r.prop) ? y.value[r.prop] : S.options ?? r.searchOptions ?? r.dicData;
|
|
694
888
|
}
|
|
695
|
-
function
|
|
696
|
-
return
|
|
889
|
+
function Se(r, S) {
|
|
890
|
+
return r.searchLoading !== void 0 ? r.searchLoading : S.loading !== void 0 ? S.loading : r.searchType === "remote-select" && r.searchRemoteMethod ? v.value[r.prop] === !0 : S.loading;
|
|
697
891
|
}
|
|
698
|
-
async function
|
|
699
|
-
if (!
|
|
700
|
-
const
|
|
701
|
-
|
|
892
|
+
async function ve(r, S) {
|
|
893
|
+
if (!r.searchRemoteMethod) return;
|
|
894
|
+
const H = (M.get(r.prop) ?? 0) + 1;
|
|
895
|
+
M.set(r.prop, H), r.searchLoading === void 0 && (v.value = { ...v.value, [r.prop]: !0 });
|
|
702
896
|
try {
|
|
703
|
-
const
|
|
704
|
-
if (
|
|
705
|
-
if (!
|
|
897
|
+
const A = await r.searchRemoteMethod(S, r);
|
|
898
|
+
if (M.get(r.prop) !== H || A === void 0) return;
|
|
899
|
+
if (!ge(A)) {
|
|
706
900
|
console.warn(
|
|
707
|
-
`[JtFilterBar] ${
|
|
901
|
+
`[JtFilterBar] ${r.prop} 的 searchRemoteMethod 应返回 JtDicItem[] 或 void,请在业务方法内把接口响应映射为 { label, value } 选项。`
|
|
708
902
|
);
|
|
709
903
|
return;
|
|
710
904
|
}
|
|
711
|
-
|
|
712
|
-
} catch (
|
|
713
|
-
console.error("[JtFilterBar] searchRemoteMethod 执行失败",
|
|
905
|
+
y.value = { ...y.value, [r.prop]: A };
|
|
906
|
+
} catch (A) {
|
|
907
|
+
console.error("[JtFilterBar] searchRemoteMethod 执行失败", A);
|
|
714
908
|
} finally {
|
|
715
|
-
|
|
909
|
+
M.get(r.prop) === H && r.searchLoading === void 0 && (v.value = { ...v.value, [r.prop]: !1 });
|
|
716
910
|
}
|
|
717
911
|
}
|
|
718
|
-
function
|
|
719
|
-
return Array.isArray(
|
|
912
|
+
function ge(r) {
|
|
913
|
+
return Array.isArray(r) && r.every(et);
|
|
720
914
|
}
|
|
721
|
-
function
|
|
722
|
-
if (!
|
|
723
|
-
const
|
|
724
|
-
return typeof
|
|
915
|
+
function et(r) {
|
|
916
|
+
if (!r || typeof r != "object") return !1;
|
|
917
|
+
const S = r, H = typeof S.value, A = S.children;
|
|
918
|
+
return typeof S.label == "string" && (H === "string" || H === "number" || H === "boolean") && (S.disabled === void 0 || typeof S.disabled == "boolean") && (A === void 0 || ge(A));
|
|
725
919
|
}
|
|
726
|
-
function
|
|
727
|
-
if (Array.isArray(
|
|
728
|
-
|
|
920
|
+
function Te(r, ...S) {
|
|
921
|
+
if (Array.isArray(r)) {
|
|
922
|
+
r.forEach((H) => Te(H, ...S));
|
|
729
923
|
return;
|
|
730
924
|
}
|
|
731
|
-
typeof
|
|
925
|
+
typeof r == "function" && r(...S);
|
|
732
926
|
}
|
|
733
|
-
async function
|
|
734
|
-
if (!
|
|
735
|
-
if (
|
|
927
|
+
async function _e() {
|
|
928
|
+
if (!u.value) {
|
|
929
|
+
if (a.value)
|
|
736
930
|
try {
|
|
737
|
-
await
|
|
931
|
+
await a.value.validate();
|
|
738
932
|
} catch {
|
|
739
933
|
return;
|
|
740
934
|
}
|
|
741
|
-
|
|
935
|
+
s("search");
|
|
742
936
|
}
|
|
743
937
|
}
|
|
744
|
-
function
|
|
745
|
-
|
|
938
|
+
function Me() {
|
|
939
|
+
u.value || s("reset");
|
|
746
940
|
}
|
|
747
|
-
function
|
|
748
|
-
|
|
941
|
+
function De() {
|
|
942
|
+
h.value = !h.value;
|
|
749
943
|
}
|
|
750
|
-
function
|
|
751
|
-
return Math.min(
|
|
944
|
+
function Fe(r) {
|
|
945
|
+
return Math.min(j.value, Math.max(1, r.searchSpan ?? 1));
|
|
752
946
|
}
|
|
753
|
-
function
|
|
754
|
-
return
|
|
947
|
+
function Pe(r) {
|
|
948
|
+
return r.reduce((S, H) => S + Fe(H), 0);
|
|
755
949
|
}
|
|
756
|
-
function
|
|
757
|
-
return typeof
|
|
950
|
+
function tt(r) {
|
|
951
|
+
return typeof r == "number" ? `${r}px` : r;
|
|
758
952
|
}
|
|
759
|
-
function
|
|
760
|
-
return typeof
|
|
953
|
+
function He(r, S) {
|
|
954
|
+
return typeof r == "number" ? r : S;
|
|
761
955
|
}
|
|
762
|
-
function
|
|
763
|
-
return typeof
|
|
956
|
+
function ot(r) {
|
|
957
|
+
return typeof r == "number" ? `${r}px` : r;
|
|
764
958
|
}
|
|
765
959
|
return e({
|
|
766
960
|
/** 内部 Element Plus Form 实例,保留给业务侧做校验、重置等原生表单操作。 */
|
|
767
|
-
formRef:
|
|
961
|
+
formRef: a,
|
|
768
962
|
/** 当前筛选表单禁用态。 */
|
|
769
|
-
searchDisabled:
|
|
963
|
+
searchDisabled: u,
|
|
770
964
|
/** 开启筛选表单禁用。 */
|
|
771
|
-
searchLoading:
|
|
965
|
+
searchLoading: i,
|
|
772
966
|
/** 关闭筛选表单禁用。 */
|
|
773
|
-
searchDone:
|
|
774
|
-
}), (
|
|
775
|
-
const
|
|
776
|
-
return
|
|
777
|
-
class:
|
|
967
|
+
searchDone: g
|
|
968
|
+
}), (r, S) => {
|
|
969
|
+
const H = it;
|
|
970
|
+
return c(), _("div", {
|
|
971
|
+
class: X(["jt-filter-bar", [
|
|
778
972
|
`is-label-${W.value}`,
|
|
779
|
-
{ "is-single-filter":
|
|
973
|
+
{ "is-single-filter": Z.value }
|
|
780
974
|
]]),
|
|
781
|
-
style:
|
|
782
|
-
"--jt-filter-columns":
|
|
783
|
-
"--jt-filter-field-columns":
|
|
975
|
+
style: te({
|
|
976
|
+
"--jt-filter-columns": j.value,
|
|
977
|
+
"--jt-filter-field-columns": E.value,
|
|
784
978
|
"--jt-filter-btns-width": f.value,
|
|
785
|
-
"--jt-filter-actions-start":
|
|
786
|
-
"--jt-filter-label-width":
|
|
979
|
+
"--jt-filter-actions-start": q.value,
|
|
980
|
+
"--jt-filter-label-width": x.value,
|
|
787
981
|
"--jt-filter-column-gap": `${w.value}px`,
|
|
788
|
-
"--jt-filter-row-gap": `${
|
|
789
|
-
"--jt-filter-padding":
|
|
982
|
+
"--jt-filter-row-gap": `${N.value}px`,
|
|
983
|
+
"--jt-filter-padding": Be.value
|
|
790
984
|
})
|
|
791
985
|
}, [
|
|
792
|
-
|
|
986
|
+
K(H, {
|
|
793
987
|
ref_key: "formRef",
|
|
794
|
-
ref:
|
|
988
|
+
ref: a,
|
|
795
989
|
class: "jt-filter-bar__form",
|
|
796
|
-
model:
|
|
990
|
+
model: d.value,
|
|
797
991
|
"label-position": W.value,
|
|
798
|
-
"label-width":
|
|
799
|
-
disabled:
|
|
800
|
-
onSubmit:
|
|
992
|
+
"label-width": x.value,
|
|
993
|
+
disabled: V(u),
|
|
994
|
+
onSubmit: S[0] || (S[0] = re(() => {
|
|
801
995
|
}, ["prevent"]))
|
|
802
996
|
}, {
|
|
803
997
|
default: L(() => [
|
|
804
|
-
|
|
805
|
-
configs:
|
|
806
|
-
"form-data":
|
|
998
|
+
K(V(Wt), {
|
|
999
|
+
configs: oe.value,
|
|
1000
|
+
"form-data": d.value,
|
|
807
1001
|
style: { "--jt-form-label-gap": "6px", "--jt-form-column-gap": "16px", "--jt-form-row-gap": "10px" }
|
|
808
|
-
},
|
|
1002
|
+
}, ie({
|
|
809
1003
|
actions: L(() => [
|
|
810
|
-
|
|
811
|
-
C(
|
|
812
|
-
search:
|
|
813
|
-
reset:
|
|
814
|
-
disabled:
|
|
815
|
-
collapsed:
|
|
816
|
-
toggleCollapse:
|
|
1004
|
+
b("div", qt, [
|
|
1005
|
+
C(r.$slots, "search-menu", {
|
|
1006
|
+
search: _e,
|
|
1007
|
+
reset: Me,
|
|
1008
|
+
disabled: V(u),
|
|
1009
|
+
collapsed: h.value,
|
|
1010
|
+
toggleCollapse: De
|
|
817
1011
|
}, () => [
|
|
818
|
-
|
|
1012
|
+
pe.value ? (c(), P(V(ee), {
|
|
819
1013
|
key: 0,
|
|
820
1014
|
class: "jt-filter-bar__btn-collapse",
|
|
821
1015
|
border: "",
|
|
822
|
-
onClick:
|
|
1016
|
+
onClick: De
|
|
823
1017
|
}, {
|
|
824
1018
|
icon: L(() => [
|
|
825
|
-
|
|
826
|
-
class:
|
|
827
|
-
src:
|
|
1019
|
+
b("img", {
|
|
1020
|
+
class: X(["jt-filter-bar__icon-arrow", { "is-collapsed": h.value }]),
|
|
1021
|
+
src: V(Ut),
|
|
828
1022
|
alt: ""
|
|
829
|
-
}, null, 10,
|
|
1023
|
+
}, null, 10, Yt)
|
|
830
1024
|
]),
|
|
831
1025
|
default: L(() => [
|
|
832
|
-
|
|
1026
|
+
b("span", null, F(h.value ? V(B)("common.展开") : V(B)("common.收起")), 1)
|
|
833
1027
|
]),
|
|
834
1028
|
_: 1
|
|
835
1029
|
})) : z("", !0),
|
|
836
|
-
|
|
1030
|
+
K(V(ee), {
|
|
837
1031
|
class: "jt-filter-bar__btn-reset",
|
|
838
|
-
disabled:
|
|
1032
|
+
disabled: V(u),
|
|
839
1033
|
border: "",
|
|
840
|
-
onClick:
|
|
1034
|
+
onClick: Me
|
|
841
1035
|
}, {
|
|
842
1036
|
icon: L(() => [
|
|
843
|
-
|
|
844
|
-
src:
|
|
1037
|
+
b("img", {
|
|
1038
|
+
src: V(Gt),
|
|
845
1039
|
alt: ""
|
|
846
|
-
}, null, 8,
|
|
1040
|
+
}, null, 8, Xt)
|
|
847
1041
|
]),
|
|
848
1042
|
default: L(() => [
|
|
849
|
-
|
|
1043
|
+
b("span", null, F(T.value.resetBtnText ?? V(B)("common.重置")), 1)
|
|
850
1044
|
]),
|
|
851
1045
|
_: 1
|
|
852
1046
|
}, 8, ["disabled"]),
|
|
853
|
-
|
|
1047
|
+
K(V(ee), {
|
|
854
1048
|
class: "jt-filter-bar__btn-query",
|
|
855
1049
|
type: "primary",
|
|
856
|
-
disabled:
|
|
857
|
-
onClick:
|
|
1050
|
+
disabled: V(u),
|
|
1051
|
+
onClick: _e
|
|
858
1052
|
}, {
|
|
859
1053
|
icon: L(() => [
|
|
860
|
-
|
|
861
|
-
src:
|
|
1054
|
+
b("img", {
|
|
1055
|
+
src: V(Nt),
|
|
862
1056
|
alt: ""
|
|
863
|
-
}, null, 8,
|
|
1057
|
+
}, null, 8, Qt)
|
|
864
1058
|
]),
|
|
865
1059
|
default: L(() => [
|
|
866
|
-
|
|
1060
|
+
b("span", null, F(T.value.searchBtnText ?? V(B)("common.查询")), 1)
|
|
867
1061
|
]),
|
|
868
1062
|
_: 1
|
|
869
1063
|
}, 8, ["disabled"])
|
|
@@ -872,16 +1066,16 @@ const I2 = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%20
|
|
|
872
1066
|
]),
|
|
873
1067
|
_: 2
|
|
874
1068
|
}, [
|
|
875
|
-
|
|
876
|
-
name:
|
|
1069
|
+
U($.value, (A) => ({
|
|
1070
|
+
name: A.prop,
|
|
877
1071
|
fn: L(() => [
|
|
878
|
-
C(
|
|
879
|
-
value:
|
|
880
|
-
column:
|
|
881
|
-
setValue: (
|
|
882
|
-
search:
|
|
883
|
-
reset:
|
|
884
|
-
disabled:
|
|
1072
|
+
C(r.$slots, `${A.prop}-search`, {
|
|
1073
|
+
value: d.value[A.prop],
|
|
1074
|
+
column: A,
|
|
1075
|
+
setValue: (de) => se(A.prop, de),
|
|
1076
|
+
search: _e,
|
|
1077
|
+
reset: Me,
|
|
1078
|
+
disabled: V(u)
|
|
885
1079
|
}, void 0, !0)
|
|
886
1080
|
])
|
|
887
1081
|
}))
|
|
@@ -892,7 +1086,45 @@ const I2 = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%20
|
|
|
892
1086
|
], 6);
|
|
893
1087
|
};
|
|
894
1088
|
}
|
|
895
|
-
}), R2 = /* @__PURE__ */ D(Z2, [["__scopeId", "data-v-313da8c4"]]), A2 = { key: 1 }, W2 = { key: 2 }, U2 = { key: 3 }, K2 = /* @__PURE__ */ I({
|
|
1089
|
+
}), t2 = /* @__PURE__ */ O(e2, [["__scopeId", "data-v-313da8c4"]]), o2 = "data:image/svg+xml,%3csvg%20width='120'%20height='120'%20viewBox='0%200%20120%20120'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M59.2179%2014.6719C69.4239%2014.6719%2078.836%2018.0239%2086.378%2023.6719H83.3439C81.9079%2023.6719%2080.7439%2024.8359%2080.7439%2026.2719V26.4719C80.7439%2027.9079%2081.9079%2029.0719%2083.3439%2029.0719H92.3799C94.0939%2030.9199%2095.6499%2032.9099%2097.0299%2035.0239H101.32C102.866%2035.0239%20104.12%2036.2779%20104.12%2037.8239V37.9799C104.12%2039.2579%20103.264%2040.3359%20102.094%2040.6719H98.1439C96.3759%2040.6719%2094.9439%2042.1039%2094.9439%2043.8719V44.8719C94.9439%2046.6399%2096.3759%2048.0719%2098.1439%2048.0719H111.724C113.114%2048.4199%20114.144%2049.6779%20114.144%2051.1759V51.3539C114.144%2053.1219%20112.712%2054.5539%20110.944%2054.5539H103.908C104.048%2055.9759%20104.12%2057.4159%20104.12%2058.8719C104.12%2083.2819%2084.0159%20103.072%2059.2179%20103.072C39.3819%20103.072%2022.5499%2090.4119%2016.6079%2072.8519H14.9219C14.2419%2072.8519%2013.6879%2072.2999%2013.6879%2071.6179C13.6879%2071.0979%2014.0099%2070.6539%2014.4659%2070.4719H16.5439C17.9799%2070.4719%2019.1439%2069.3079%2019.1439%2067.8719V67.6719C19.1439%2066.2359%2017.9799%2065.0719%2016.5439%2065.0719H14.7539C14.7519%2065.0619%2014.7499%2065.0499%2014.7499%2065.0399H10.3139C9.17994%2065.0399%208.25995%2064.1199%208.25995%2062.9839C8.25995%2061.8479%209.17994%2060.9279%2010.3139%2060.9279H14.3639C14.3319%2060.2459%2014.3159%2059.5619%2014.3159%2058.8719C14.3159%2052.3459%2015.7519%2046.1499%2018.3319%2040.5739L11.1439%2040.5759C8.05195%2040.5759%205.54395%2038.0679%205.54395%2034.9759V34.6619C5.54395%2031.6779%207.87795%2029.2379%2010.8219%2029.0719H36.1439C37.2479%2029.0719%2038.1439%2028.1759%2038.1439%2027.0719C38.1439%2025.9679%2037.2479%2025.0719%2036.1439%2025.0719H30.2819C30.3319%2025.0319%2030.3799%2024.9899%2030.4279%2024.9499L27.5139%2024.9519C25.4139%2024.9519%2023.7139%2023.2499%2023.7139%2021.1519V20.9379C23.7139%2018.8399%2025.4139%2017.1379%2027.5139%2017.1379H44.3899C49.0319%2015.5399%2054.0219%2014.6719%2059.2179%2014.6719Z'%20fill='%23E60000'%20fill-opacity='0.04'/%3e%3cpath%20d='M35.7505%2077.9514C35.7745%2078.0434%2035.8045%2078.1434%2035.8385%2078.2494L35.9085%2078.5294C35.9325%2078.6234%2035.9445%2078.6994%2035.9445%2078.7574C35.9445%2079.0834%2035.8565%2079.3734%2035.6805%2079.6254C35.5065%2079.8754%2035.2765%2080.0594%2034.9965%2080.1774C34.8905%2080.1894%2034.7805%2080.1954%2034.6625%2080.1954C34.5685%2080.2054%2034.4645%2080.2114%2034.3465%2080.2114H34.0125L31.2745%2080.2474V83.1754C31.2745%2083.6074%2031.2825%2084.0414%2031.3005%2084.4814C31.3185%2084.9194%2031.3385%2085.3134%2031.3605%2085.6634C31.3845%2086.0854%2031.4145%2086.4874%2031.4485%2086.8734H28.9205L28.9725%2086.1894C28.9845%2085.9214%2028.9965%2085.5554%2029.0085%2085.0934C29.0205%2084.6334%2029.0265%2084.0154%2029.0265%2083.2454V80.5634C28.8265%2080.7374%2028.6045%2080.8254%2028.3585%2080.8254C28.1605%2080.8254%2027.9865%2080.7794%2027.8405%2080.6854C27.6945%2080.5914%2027.5745%2080.4634%2027.4805%2080.2994L25.4965%2080.1954C25.1105%2080.1014%2024.7885%2079.9054%2024.5305%2079.6074C24.2725%2079.3094%2024.1445%2078.9554%2024.1445%2078.5474C24.1445%2078.4774%2024.1505%2078.4114%2024.1625%2078.3534C24.1745%2078.2954%2024.1905%2078.2374%2024.2145%2078.1794L24.6545%2077.1614C24.6765%2076.9054%2024.7505%2076.6654%2024.8725%2076.4434C24.9965%2076.2214%2025.1505%2076.0274%2025.3385%2075.8654L28.0945%2070.7634H28.1125C28.3345%2070.3554%2028.5985%2070.0034%2028.9025%2069.7114C29.2065%2069.4194%2029.6005%2069.2734%2030.0805%2069.2734C30.5005%2069.2734%2030.8785%2069.3854%2031.2125%2069.6074C31.5465%2069.8294%2031.7945%2070.1214%2031.9585%2070.4834L34.1705%2074.8134C34.5685%2074.9534%2034.8965%2075.1994%2035.1545%2075.5494C35.4125%2075.8994%2035.5405%2076.3034%2035.5405%2076.7594C35.5405%2076.9454%2035.5105%2077.1434%2035.4525%2077.3554L35.7505%2077.9514Z'%20fill='url(%23paint0_linear_2264_15691)'/%3e%3cpath%20d='M97.7505%2077.9514C97.7745%2078.0434%2097.8045%2078.1434%2097.8385%2078.2494L97.9085%2078.5294C97.9325%2078.6234%2097.9445%2078.6994%2097.9445%2078.7574C97.9445%2079.0834%2097.8565%2079.3734%2097.6805%2079.6254C97.5065%2079.8754%2097.2765%2080.0594%2096.9965%2080.1774C96.8905%2080.1894%2096.7805%2080.1954%2096.6625%2080.1954C96.5685%2080.2054%2096.4645%2080.2114%2096.3465%2080.2114H96.0125L93.2745%2080.2474V83.1754C93.2745%2083.6074%2093.2825%2084.0414%2093.3005%2084.4814C93.3185%2084.9194%2093.3385%2085.3134%2093.3605%2085.6634C93.3845%2086.0854%2093.4145%2086.4874%2093.4485%2086.8734H90.9205L90.9725%2086.1894C90.9845%2085.9214%2090.9965%2085.5554%2091.0085%2085.0934C91.0205%2084.6334%2091.0265%2084.0154%2091.0265%2083.2454V80.5634C90.8265%2080.7374%2090.6045%2080.8254%2090.3585%2080.8254C90.1605%2080.8254%2089.9865%2080.7794%2089.8405%2080.6854C89.6945%2080.5914%2089.5745%2080.4634%2089.4805%2080.2994L87.4965%2080.1954C87.1105%2080.1014%2086.7885%2079.9054%2086.5305%2079.6074C86.2725%2079.3094%2086.1445%2078.9554%2086.1445%2078.5474C86.1445%2078.4774%2086.1505%2078.4114%2086.1625%2078.3534C86.1745%2078.2954%2086.1905%2078.2374%2086.2145%2078.1794L86.6545%2077.1614C86.6765%2076.9054%2086.7505%2076.6654%2086.8725%2076.4434C86.9965%2076.2214%2087.1505%2076.0274%2087.3385%2075.8654L90.0945%2070.7634H90.1125C90.3345%2070.3554%2090.5985%2070.0034%2090.9025%2069.7114C91.2065%2069.4194%2091.6005%2069.2734%2092.0805%2069.2734C92.5005%2069.2734%2092.8785%2069.3854%2093.2125%2069.6074C93.5465%2069.8294%2093.7945%2070.1214%2093.9585%2070.4834L96.1705%2074.8134C96.5685%2074.9534%2096.8965%2075.1994%2097.1545%2075.5494C97.4125%2075.8994%2097.5405%2076.3034%2097.5405%2076.7594C97.5405%2076.9454%2097.5105%2077.1434%2097.4525%2077.3554L97.7505%2077.9514Z'%20fill='url(%23paint1_linear_2264_15691)'/%3e%3cpath%20d='M90.3947%2079.8743C90.4127%2079.9483%2090.4347%2080.0243%2090.4627%2080.1083L90.5167%2080.3283C90.5347%2080.4003%2090.5447%2080.4603%2090.5447%2080.5063C90.5447%2080.7623%2090.4767%2080.9903%2090.3387%2081.1863C90.2027%2081.3843%2090.0247%2081.5283%2089.8047%2081.6203C89.7227%2081.6283%2089.6367%2081.6343%2089.5447%2081.6343C89.4727%2081.6423%2089.3907%2081.6463%2089.2987%2081.6463H89.0387L86.9027%2081.6743V83.9703C86.9027%2084.3083%2086.9107%2084.6503%2086.9227%2084.9943C86.9367%2085.3383%2086.9527%2085.6463%2086.9707%2085.9223C86.9907%2086.2523%2087.0127%2086.5683%2087.0407%2086.8703H85.0687L85.1087%2086.3343C85.1187%2086.1243%2085.1287%2085.8363%2085.1367%2085.4743C85.1467%2085.1123%2085.1507%2084.6303%2085.1507%2084.0243V81.9223C84.9947%2082.0603%2084.8227%2082.1283%2084.6307%2082.1283C84.4747%2082.1283%2084.3407%2082.0923%2084.2267%2082.0183C84.1127%2081.9443%2084.0187%2081.8443%2083.9467%2081.7163L82.3987%2081.6343C82.0967%2081.5603%2081.8467%2081.4063%2081.6467%2081.1723C81.4447%2080.9403%2081.3447%2080.6623%2081.3447%2080.3423C81.3447%2080.2863%2081.3487%2080.2363%2081.3587%2080.1903C81.3667%2080.1443%2081.3807%2080.0983%2081.3987%2080.0523L81.7427%2079.2563C81.7607%2079.0543%2081.8167%2078.8663%2081.9127%2078.6923C82.0087%2078.5183%2082.1287%2078.3663%2082.2747%2078.2383L84.4247%2074.2383H84.4387C84.6127%2073.9183%2084.8167%2073.6423%2085.0547%2073.4143C85.2927%2073.1843%2085.5987%2073.0703%2085.9727%2073.0703C86.3007%2073.0703%2086.5947%2073.1583%2086.8547%2073.3323C87.1147%2073.5063%2087.3087%2073.7343%2087.4367%2074.0183L89.1627%2077.4143C89.4727%2077.5243%2089.7287%2077.7163%2089.9287%2077.9903C90.1287%2078.2663%2090.2307%2078.5823%2090.2307%2078.9403C90.2307%2079.0863%2090.2067%2079.2423%2090.1607%2079.4063L90.3947%2079.8743Z'%20fill='url(%23paint2_linear_2264_15691)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M56.6437%2082.2734C68.9198%2082.2734%2079.9738%2083.2754%2087.7018%2084.8734C95.2598%2084.9254%20101.344%2087.1874%20101.344%2089.9734C101.344%2092.1814%2097.5218%2094.0614%2092.1738%2094.7714C90.8978%2095.1474%2089.4598%2095.5034%2087.8818%2095.8354C87.9238%2096.0454%2087.9437%2096.2594%2087.9437%2096.4734C87.9437%20101.333%2077.3778%20105.273%2064.3438%20105.273C52.6178%20105.273%2042.8878%20102.083%2041.0538%2097.9054C25.4078%2096.7174%2014.3438%2093.7934%2014.3438%2090.3734C14.3438%2085.8994%2033.2818%2082.2734%2056.6437%2082.2734Z'%20fill='%23FFD4D4'/%3e%3cpath%20d='M58.0273%2082.2812C64.5826%2082.3216%2070.7608%2082.6467%2076.2344%2083.1953L97.126%2093.6328C95.7272%2094.1312%2094.044%2094.5242%2092.1738%2094.7725C90.8979%2095.1484%2089.4598%2095.504%2087.8818%2095.8359C87.9238%2096.0459%2087.9443%2096.2606%2087.9443%2096.4746C87.9439%20100.708%2079.9257%20104.242%2069.2432%20105.083L54.6758%2086.2764L58.0273%2082.2812Z'%20fill='url(%23paint3_linear_2264_15691)'%20fill-opacity='0.5'/%3e%3cpath%20d='M77.7439%2067.8154L57.5439%2065.2734V75.3514L77.4219%2077.6734L77.7439%2067.8154Z'%20fill='%23EB7171'/%3e%3cpath%20d='M41.5439%2068.5614L57.5419%2065.2734L57.5439%2076.6054L41.5439%2079.8734V68.5614Z'%20fill='%23FF9D9D'/%3e%3cpath%20d='M60.3438%2072.9106L77.5437%2068.4766V89.4426L60.3438%2093.8766V72.9106Z'%20fill='%23FFAFAF'/%3e%3cpath%20d='M41.7441%2069.0703L60.5441%2072.8203L60.4341%2093.8703L41.7441%2089.6943V69.0703Z'%20fill='%23FF9D9D'/%3e%3cpath%20d='M60.5439%2072.911L41.5779%2068.875L37.5439%2076.309L56.8319%2080.875L60.5439%2072.911Z'%20fill='%23FFAFAF'/%3e%3cpath%20d='M60.5439%2072.8143L77.7619%2068.0703L82.1439%2075.4523L65.6539%2080.8703L60.5439%2072.8143Z'%20fill='%23FF9D9D'/%3e%3cpath%20d='M42.1962%2038.2656C37.3122%2045.2576%2039.3862%2050.4756%2048.4182%2053.9216'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M40.5166%2052.7422C42.1686%2054.7962%2043.6706%2055.8222%2045.0206%2055.8222'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M80.3901%2029.3047C80.6101%2035.5207%2074.7721%2039.8707%2062.8701%2042.3607'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M81.9779%2037.125C79.0579%2039.573%2076.7739%2040.797%2075.1279%2040.797'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M77.1446%2051.3323C65.6526%2049.9443%2058.4286%2052.9043%2055.4766%2060.2123'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M41.9277%2043.0703C48.7157%2044.1343%2051.4957%2046.0123%2050.2637%2048.7063C49.0317%2051.4003%2046.2537%2049.5203%2041.9277%2043.0703Z'%20fill='url(%23paint4_linear_2264_15691)'/%3e%3cpath%20d='M66.3105%2037.1274C67.3045%2033.6114%2069.9005%2032.4394%2074.0985%2033.6114C73.9185%2035.2254%2071.3225%2036.3974%2066.3105%2037.1274Z'%20fill='url(%23paint5_linear_2264_15691)'/%3e%3cpath%20d='M57.2061%2062.8159C60.3061%2056.7859%2064.6381%2055.0679%2070.2041%2057.6639C67.6081%2062.4659%2063.2761%2064.1839%2057.2061%2062.8159Z'%20fill='url(%23paint6_linear_2264_15691)'/%3e%3cpath%20d='M65.3438%2038.9639C66.1038%2037.3359%2067.1038%2036.2919%2068.3438%2035.8359'%20stroke='%23FFA9A9'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M48.418%2047.9062C49.838%2048.2363%2050.548%2049.6023%2050.548%2052.0043'%20stroke='%23FF9898'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M55.876%2064.7395C57.028%2062.5395%2058.63%2061.4375%2060.676%2061.4375'%20stroke='%23FF7676'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_2264_15691'%20x1='35.0617'%20y1='86.6622'%20x2='28.9562'%20y2='86.7572'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFC3CE'%20stop-opacity='0'/%3e%3cstop%20offset='1'%20stop-color='%23FFC3C3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint1_linear_2264_15691'%20x1='97.0617'%20y1='86.6622'%20x2='90.9562'%20y2='86.7572'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFC3CE'%20stop-opacity='0'/%3e%3cstop%20offset='1'%20stop-color='%23FFC3C3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint2_linear_2264_15691'%20x1='89.8564'%20y1='86.7047'%20x2='85.0962'%20y2='86.7783'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFC3CE'%20stop-opacity='0'/%3e%3cstop%20offset='1'%20stop-color='%23FFC3C3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint3_linear_2264_15691'%20x1='78.1565'%20y1='97.3596'%20x2='78.1565'%20y2='76.5197'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23E60000'%20stop-opacity='0.1'/%3e%3cstop%20offset='1'%20stop-color='%23E60000'%20stop-opacity='0.2'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint4_linear_2264_15691'%20x1='41.809'%20y1='42.97'%20x2='51.3219'%20y2='46.8844'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FF6666'/%3e%3cstop%20offset='1'%20stop-color='%23FFBEBE'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint5_linear_2264_15691'%20x1='66.9659'%20y1='35.6311'%20x2='72.8991'%20y2='32.1971'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFD6D6'/%3e%3cstop%20offset='1'%20stop-color='%23FF7B7B'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint6_linear_2264_15691'%20x1='58.2999'%20y1='60.7509'%20x2='68.158'%20y2='54.896'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='1.19209e-07'%20stop-color='%23FF9D9D'/%3e%3cstop%20offset='1'%20stop-color='%23EB7171'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", a2 = ["aria-label"], n2 = ["src"], l2 = { class: "jt-empty-state__description" }, s2 = {
|
|
1090
|
+
key: 0,
|
|
1091
|
+
class: "jt-empty-state__actions"
|
|
1092
|
+
}, r2 = /* @__PURE__ */ I({
|
|
1093
|
+
name: "JtEmptyState",
|
|
1094
|
+
__name: "index",
|
|
1095
|
+
props: {
|
|
1096
|
+
description: { default: B("common.暂无数据", "暂无数据") },
|
|
1097
|
+
imageSize: { default: 120 }
|
|
1098
|
+
},
|
|
1099
|
+
setup(l) {
|
|
1100
|
+
const e = l, t = m(() => ({
|
|
1101
|
+
"--jt-empty-state-image-size": typeof e.imageSize == "number" ? `${e.imageSize}px` : e.imageSize
|
|
1102
|
+
}));
|
|
1103
|
+
return (o, s) => (c(), _("section", {
|
|
1104
|
+
class: "jt-empty-state",
|
|
1105
|
+
role: "status",
|
|
1106
|
+
"aria-label": o.description,
|
|
1107
|
+
style: te(t.value)
|
|
1108
|
+
}, [
|
|
1109
|
+
b("div", {
|
|
1110
|
+
class: X(["jt-empty-state__image", { "jt-empty-state__image--default": !o.$slots.image }])
|
|
1111
|
+
}, [
|
|
1112
|
+
C(o.$slots, "image", {}, () => [
|
|
1113
|
+
b("img", {
|
|
1114
|
+
src: V(o2),
|
|
1115
|
+
alt: ""
|
|
1116
|
+
}, null, 8, n2)
|
|
1117
|
+
], !0)
|
|
1118
|
+
], 2),
|
|
1119
|
+
C(o.$slots, "default", {}, () => [
|
|
1120
|
+
b("p", l2, F(o.description), 1)
|
|
1121
|
+
], !0),
|
|
1122
|
+
o.$slots.actions ? (c(), _("div", s2, [
|
|
1123
|
+
C(o.$slots, "actions", {}, void 0, !0)
|
|
1124
|
+
])) : z("", !0)
|
|
1125
|
+
], 12, a2));
|
|
1126
|
+
}
|
|
1127
|
+
}), i2 = /* @__PURE__ */ O(r2, [["__scopeId", "data-v-bb00a314"]]), c2 = { key: 1 }, d2 = { key: 2 }, u2 = { key: 3 }, p2 = /* @__PURE__ */ I({
|
|
896
1128
|
name: "JtTable",
|
|
897
1129
|
__name: "JtTable",
|
|
898
1130
|
props: {
|
|
@@ -901,102 +1133,109 @@ const I2 = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%20
|
|
|
901
1133
|
option: {},
|
|
902
1134
|
tableEvents: {}
|
|
903
1135
|
},
|
|
904
|
-
setup(
|
|
905
|
-
const t =
|
|
906
|
-
|
|
907
|
-
|
|
1136
|
+
setup(l, { expose: e }) {
|
|
1137
|
+
const t = l, o = ce(), s = R(), a = m(() => t.option ?? {}), n = m(
|
|
1138
|
+
() => a.value.emptyText ?? B("common.暂无数据")
|
|
1139
|
+
), d = m(() => t.columns.filter((p) => !p.hide)), u = m(() => a.value.menuFixed ?? "right");
|
|
1140
|
+
function i(p) {
|
|
1141
|
+
return !!o[`${p}-header`];
|
|
908
1142
|
}
|
|
909
|
-
function
|
|
910
|
-
return !!o[`${
|
|
1143
|
+
function g(p) {
|
|
1144
|
+
return !!o[`${p}-data`];
|
|
911
1145
|
}
|
|
912
|
-
function
|
|
1146
|
+
function y(p) {
|
|
913
1147
|
return {
|
|
914
|
-
width:
|
|
915
|
-
minWidth:
|
|
916
|
-
align:
|
|
917
|
-
fixed:
|
|
918
|
-
sortable:
|
|
919
|
-
showOverflowTooltip:
|
|
920
|
-
...
|
|
1148
|
+
width: p.width,
|
|
1149
|
+
minWidth: p.minWidth,
|
|
1150
|
+
align: p.align || "center",
|
|
1151
|
+
fixed: p.fixed,
|
|
1152
|
+
sortable: p.sortable,
|
|
1153
|
+
showOverflowTooltip: p.showOverflowTooltip ?? v(p),
|
|
1154
|
+
...p.columnOptions
|
|
921
1155
|
};
|
|
922
1156
|
}
|
|
923
|
-
function
|
|
924
|
-
return !
|
|
1157
|
+
function v(p) {
|
|
1158
|
+
return !g(p.prop) && !T(p.columnOptions?.type);
|
|
925
1159
|
}
|
|
926
|
-
function
|
|
927
|
-
return !
|
|
1160
|
+
function M(p) {
|
|
1161
|
+
return !T(p.columnOptions?.type);
|
|
928
1162
|
}
|
|
929
|
-
function
|
|
930
|
-
return
|
|
1163
|
+
function T(p) {
|
|
1164
|
+
return p === "selection" || p === "index" || p === "expand";
|
|
931
1165
|
}
|
|
932
|
-
function
|
|
933
|
-
return
|
|
1166
|
+
function h(p, j) {
|
|
1167
|
+
return p.find((D) => D.value === j)?.label ?? String(j ?? "");
|
|
934
1168
|
}
|
|
935
|
-
return e({ tableRef:
|
|
936
|
-
const
|
|
937
|
-
return
|
|
1169
|
+
return e({ tableRef: s }), (p, j) => {
|
|
1170
|
+
const D = dt, G = ct;
|
|
1171
|
+
return c(), P(G, J({
|
|
938
1172
|
ref_key: "tableRef",
|
|
939
|
-
ref:
|
|
940
|
-
data:
|
|
941
|
-
"row-key":
|
|
942
|
-
"empty-text":
|
|
943
|
-
stripe:
|
|
1173
|
+
ref: s,
|
|
1174
|
+
data: p.data,
|
|
1175
|
+
"row-key": a.value.rowKey ?? "id",
|
|
1176
|
+
"empty-text": a.value.emptyText,
|
|
1177
|
+
stripe: a.value.tableProps?.stripe ?? !0,
|
|
944
1178
|
class: "jt-table"
|
|
945
|
-
},
|
|
1179
|
+
}, a.value.tableProps, le(p.tableEvents)), {
|
|
1180
|
+
empty: L(() => [
|
|
1181
|
+
C(p.$slots, "empty", {}, () => [
|
|
1182
|
+
K(i2, { description: n.value }, null, 8, ["description"])
|
|
1183
|
+
], !0)
|
|
1184
|
+
]),
|
|
946
1185
|
default: L(() => [
|
|
947
|
-
|
|
1186
|
+
a.value.selection ? (c(), P(D, {
|
|
948
1187
|
key: 0,
|
|
949
1188
|
type: "selection",
|
|
950
1189
|
width: "55",
|
|
951
1190
|
align: "center"
|
|
952
1191
|
})) : z("", !0),
|
|
953
|
-
|
|
1192
|
+
a.value.index ? (c(), P(D, {
|
|
954
1193
|
key: 1,
|
|
955
1194
|
type: "index",
|
|
956
|
-
label:
|
|
957
|
-
"min-width":
|
|
1195
|
+
label: a.value.indexLabel ?? V(B)("common.序号"),
|
|
1196
|
+
"min-width": a.value.indexWidth ?? 80,
|
|
958
1197
|
align: "center"
|
|
959
1198
|
}, null, 8, ["label", "min-width"])) : z("", !0),
|
|
960
|
-
(
|
|
961
|
-
key:
|
|
962
|
-
prop:
|
|
963
|
-
label:
|
|
964
|
-
formatter: !
|
|
1199
|
+
(c(!0), _(Y, null, U(d.value, (k) => (c(), P(D, J({
|
|
1200
|
+
key: k.prop,
|
|
1201
|
+
prop: k.prop,
|
|
1202
|
+
label: k.label,
|
|
1203
|
+
formatter: !g(k.prop) && !k.dicData ? k.formatter : void 0,
|
|
965
1204
|
ref_for: !0
|
|
966
|
-
},
|
|
967
|
-
|
|
1205
|
+
}, y(k)), ie({ _: 2 }, [
|
|
1206
|
+
i(k.prop) ? {
|
|
968
1207
|
name: "header",
|
|
969
|
-
fn: L((
|
|
970
|
-
C(
|
|
1208
|
+
fn: L((E) => [
|
|
1209
|
+
C(p.$slots, `${k.prop}-header`, J({ ref_for: !0 }, E), void 0, !0)
|
|
971
1210
|
]),
|
|
972
1211
|
key: "0"
|
|
973
1212
|
} : void 0,
|
|
974
|
-
|
|
1213
|
+
M(k) ? {
|
|
975
1214
|
name: "default",
|
|
976
|
-
fn: L((
|
|
977
|
-
|
|
1215
|
+
fn: L((E) => [
|
|
1216
|
+
g(k.prop) ? C(p.$slots, `${k.prop}-data`, J({
|
|
978
1217
|
key: 0,
|
|
979
1218
|
ref_for: !0
|
|
980
|
-
},
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
)), 1)) : (
|
|
1219
|
+
}, E), void 0, !0) : k.dicData ? (c(), _("span", c2, F(h(k.dicData, E.row[k.prop])), 1)) : k.formatter ? (c(), _("span", d2, F(k.formatter(
|
|
1220
|
+
E.row,
|
|
1221
|
+
E.column,
|
|
1222
|
+
E.row[k.prop],
|
|
1223
|
+
E.$index
|
|
1224
|
+
)), 1)) : (c(), _("span", u2, F(E.row[k.prop]), 1))
|
|
986
1225
|
]),
|
|
987
1226
|
key: "1"
|
|
988
1227
|
} : void 0
|
|
989
1228
|
]), 1040, ["prop", "label", "formatter"]))), 128)),
|
|
990
|
-
|
|
1229
|
+
a.value.menu ? (c(), P(D, {
|
|
991
1230
|
key: 2,
|
|
992
|
-
label:
|
|
993
|
-
width:
|
|
994
|
-
"min-width":
|
|
995
|
-
align:
|
|
1231
|
+
label: a.value.menuLabel ?? V(B)("common.操作"),
|
|
1232
|
+
width: a.value.menuWidth,
|
|
1233
|
+
"min-width": a.value.menuMinWidth,
|
|
1234
|
+
align: a.value.menuAlign ?? "center",
|
|
996
1235
|
fixed: u.value
|
|
997
1236
|
}, {
|
|
998
|
-
default: L((
|
|
999
|
-
C(
|
|
1237
|
+
default: L((k) => [
|
|
1238
|
+
C(p.$slots, "menu", fe(he(k)), void 0, !0)
|
|
1000
1239
|
]),
|
|
1001
1240
|
_: 3
|
|
1002
1241
|
}, 8, ["label", "width", "min-width", "align", "fixed"])) : z("", !0)
|
|
@@ -1005,7 +1244,7 @@ const I2 = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%20
|
|
|
1005
1244
|
}, 16, ["data", "row-key", "empty-text", "stripe"]);
|
|
1006
1245
|
};
|
|
1007
1246
|
}
|
|
1008
|
-
}),
|
|
1247
|
+
}), m2 = /* @__PURE__ */ O(p2, [["__scopeId", "data-v-c537c0fd"]]), f2 = { class: "jt-pagination" }, h2 = { class: "jt-pagination__count" }, v2 = /* @__PURE__ */ I({
|
|
1009
1248
|
name: "JtPagination",
|
|
1010
1249
|
__name: "JtPagination",
|
|
1011
1250
|
props: {
|
|
@@ -1015,36 +1254,36 @@ const I2 = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%20
|
|
|
1015
1254
|
option: {}
|
|
1016
1255
|
},
|
|
1017
1256
|
emits: ["update:currentPage", "update:pageSize", "current-change", "page-change", "size-change"],
|
|
1018
|
-
setup(
|
|
1019
|
-
const t =
|
|
1020
|
-
function
|
|
1021
|
-
|
|
1022
|
-
}
|
|
1023
|
-
return (n,
|
|
1024
|
-
const
|
|
1025
|
-
return
|
|
1026
|
-
|
|
1257
|
+
setup(l, { emit: e }) {
|
|
1258
|
+
const t = l, o = m(() => t.option ?? {}), s = e;
|
|
1259
|
+
function a(n) {
|
|
1260
|
+
s("current-change", n), s("page-change", n);
|
|
1261
|
+
}
|
|
1262
|
+
return (n, d) => {
|
|
1263
|
+
const u = ut;
|
|
1264
|
+
return c(), _("div", f2, [
|
|
1265
|
+
K(u, {
|
|
1027
1266
|
"current-page": n.currentPage,
|
|
1028
1267
|
"page-size": n.pageSize,
|
|
1029
1268
|
"page-sizes": o.value.pageSizes ?? [10, 20, 50, 100],
|
|
1030
1269
|
total: n.total,
|
|
1031
1270
|
layout: o.value.paginationLayout ?? "sizes, prev, pager, next, jumper",
|
|
1032
|
-
"onUpdate:currentPage":
|
|
1033
|
-
"onUpdate:pageSize":
|
|
1034
|
-
onCurrentChange:
|
|
1035
|
-
onSizeChange:
|
|
1271
|
+
"onUpdate:currentPage": d[0] || (d[0] = (i) => n.$emit("update:currentPage", i)),
|
|
1272
|
+
"onUpdate:pageSize": d[1] || (d[1] = (i) => n.$emit("update:pageSize", i)),
|
|
1273
|
+
onCurrentChange: a,
|
|
1274
|
+
onSizeChange: d[2] || (d[2] = (i) => n.$emit("size-change", i))
|
|
1036
1275
|
}, null, 8, ["current-page", "page-size", "page-sizes", "total", "layout"]),
|
|
1037
|
-
|
|
1276
|
+
b("span", h2, F(V(B)("common.共{total}条记录", "共 {total} 条记录", { total: n.total })), 1)
|
|
1038
1277
|
]);
|
|
1039
1278
|
};
|
|
1040
1279
|
}
|
|
1041
|
-
}),
|
|
1280
|
+
}), g2 = /* @__PURE__ */ O(v2, [["__scopeId", "data-v-03d564ec"]]), _2 = { class: "jt-crud-table" }, y2 = { class: "filter-bar-box" }, C2 = { class: "jt-crud-table__result" }, b2 = { class: "jt-crud-table__table-group" }, w2 = {
|
|
1042
1281
|
key: 0,
|
|
1043
1282
|
class: "jt-crud-table__toolbar"
|
|
1044
|
-
},
|
|
1283
|
+
}, L2 = /* @__PURE__ */ I({
|
|
1045
1284
|
name: "JtCrudTable",
|
|
1046
1285
|
__name: "JtCrudTable",
|
|
1047
|
-
props: /* @__PURE__ */
|
|
1286
|
+
props: /* @__PURE__ */ we({
|
|
1048
1287
|
columns: {},
|
|
1049
1288
|
option: { default: () => ({}) },
|
|
1050
1289
|
data: {},
|
|
@@ -1060,181 +1299,188 @@ const I2 = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%20
|
|
|
1060
1299
|
},
|
|
1061
1300
|
searchModelModifiers: {}
|
|
1062
1301
|
}),
|
|
1063
|
-
emits: /* @__PURE__ */
|
|
1064
|
-
setup(
|
|
1065
|
-
const o =
|
|
1066
|
-
() =>
|
|
1067
|
-
),
|
|
1068
|
-
() => o.columns.filter((f) => f.search && !!
|
|
1069
|
-
),
|
|
1070
|
-
() => o.columns.filter((f) => !f.hide && !!
|
|
1071
|
-
),
|
|
1072
|
-
() => o.columns.filter((f) => !f.hide && !!
|
|
1302
|
+
emits: /* @__PURE__ */ we(["search", "reset", "page-change", "size-change"], ["update:currentPage", "update:pageSize", "update:searchModel"]),
|
|
1303
|
+
setup(l, { expose: e, emit: t }) {
|
|
1304
|
+
const o = l, s = t, a = ye(l, "currentPage"), n = ye(l, "pageSize"), d = ye(l, "searchModel"), u = ce(), i = R(), g = R(), y = m(() => o.option), v = m(() => y.value.searchShow !== !1), M = m(
|
|
1305
|
+
() => y.value.paginationShow !== !1
|
|
1306
|
+
), T = m(
|
|
1307
|
+
() => o.columns.filter((f) => f.search && !!u[`${f.prop}-search`])
|
|
1308
|
+
), h = m(
|
|
1309
|
+
() => o.columns.filter((f) => !f.hide && !!u[`${f.prop}-header`])
|
|
1310
|
+
), p = m(
|
|
1311
|
+
() => o.columns.filter((f) => !f.hide && !!u[`${f.prop}-data`])
|
|
1073
1312
|
);
|
|
1074
|
-
function
|
|
1313
|
+
function j() {
|
|
1075
1314
|
const f = {};
|
|
1076
|
-
return o.columns.forEach((
|
|
1077
|
-
|
|
1315
|
+
return o.columns.forEach((x) => {
|
|
1316
|
+
x.search && (f[x.prop] = void 0);
|
|
1078
1317
|
}), f;
|
|
1079
1318
|
}
|
|
1080
|
-
function
|
|
1081
|
-
|
|
1319
|
+
function D() {
|
|
1320
|
+
s("search", { ...d.value });
|
|
1082
1321
|
}
|
|
1083
|
-
function
|
|
1084
|
-
|
|
1322
|
+
function G() {
|
|
1323
|
+
d.value = j(), s("reset");
|
|
1085
1324
|
}
|
|
1086
|
-
function
|
|
1087
|
-
|
|
1325
|
+
function k() {
|
|
1326
|
+
g.value?.searchLoading();
|
|
1088
1327
|
}
|
|
1089
|
-
function
|
|
1090
|
-
|
|
1328
|
+
function E() {
|
|
1329
|
+
g.value?.searchDone();
|
|
1091
1330
|
}
|
|
1092
1331
|
return e({
|
|
1093
1332
|
/** 获取内部 el-table 实例 */
|
|
1094
|
-
tableRef: m(() =>
|
|
1333
|
+
tableRef: m(() => i.value?.tableRef),
|
|
1095
1334
|
/** 获取内部筛选条实例 */
|
|
1096
|
-
filterBarRef:
|
|
1335
|
+
filterBarRef: g,
|
|
1097
1336
|
/** 开启筛选表单禁用。 */
|
|
1098
|
-
searchLoading:
|
|
1337
|
+
searchLoading: k,
|
|
1099
1338
|
/** 关闭筛选表单禁用。 */
|
|
1100
|
-
searchDone:
|
|
1101
|
-
}), (f,
|
|
1102
|
-
const W =
|
|
1103
|
-
return
|
|
1339
|
+
searchDone: E
|
|
1340
|
+
}), (f, x) => {
|
|
1341
|
+
const W = pt;
|
|
1342
|
+
return c(), _("div", _2, [
|
|
1104
1343
|
C(f.$slots, "header", {}, void 0, !0),
|
|
1105
|
-
|
|
1106
|
-
|
|
1344
|
+
b("div", y2, [
|
|
1345
|
+
v.value ? (c(), P(t2, {
|
|
1107
1346
|
key: 0,
|
|
1108
1347
|
ref_key: "filterBarRef",
|
|
1109
|
-
ref:
|
|
1110
|
-
modelValue:
|
|
1111
|
-
"onUpdate:modelValue":
|
|
1348
|
+
ref: g,
|
|
1349
|
+
modelValue: d.value,
|
|
1350
|
+
"onUpdate:modelValue": x[0] || (x[0] = (w) => d.value = w),
|
|
1112
1351
|
columns: f.columns,
|
|
1113
|
-
option:
|
|
1114
|
-
onSearch:
|
|
1115
|
-
onReset:
|
|
1116
|
-
},
|
|
1117
|
-
|
|
1352
|
+
option: y.value,
|
|
1353
|
+
onSearch: D,
|
|
1354
|
+
onReset: G
|
|
1355
|
+
}, ie({ _: 2 }, [
|
|
1356
|
+
U(T.value, (w) => ({
|
|
1118
1357
|
name: `${w.prop}-search`,
|
|
1119
|
-
fn: L((
|
|
1120
|
-
C(f.$slots, `${w.prop}-search`,
|
|
1358
|
+
fn: L((N) => [
|
|
1359
|
+
C(f.$slots, `${w.prop}-search`, fe(he(N)), void 0, !0)
|
|
1121
1360
|
])
|
|
1122
1361
|
}))
|
|
1123
1362
|
]), 1032, ["modelValue", "columns", "option"])) : z("", !0)
|
|
1124
1363
|
]),
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1364
|
+
b("div", C2, [
|
|
1365
|
+
b("div", b2, [
|
|
1366
|
+
V(u).toolbar ? (c(), _("div", w2, [
|
|
1128
1367
|
C(f.$slots, "toolbar", {}, void 0, !0)
|
|
1129
1368
|
])) : z("", !0),
|
|
1130
|
-
|
|
1369
|
+
wt((c(), P(m2, {
|
|
1131
1370
|
ref_key: "jtTableRef",
|
|
1132
|
-
ref:
|
|
1371
|
+
ref: i,
|
|
1133
1372
|
data: f.data,
|
|
1134
1373
|
columns: f.columns,
|
|
1135
|
-
option:
|
|
1374
|
+
option: y.value,
|
|
1136
1375
|
"table-events": f.tableEvents
|
|
1137
|
-
},
|
|
1138
|
-
|
|
1376
|
+
}, ie({ _: 2 }, [
|
|
1377
|
+
V(u).empty ? {
|
|
1378
|
+
name: "empty",
|
|
1379
|
+
fn: L(() => [
|
|
1380
|
+
C(f.$slots, "empty", {}, void 0, !0)
|
|
1381
|
+
]),
|
|
1382
|
+
key: "0"
|
|
1383
|
+
} : void 0,
|
|
1384
|
+
U(h.value, (w) => ({
|
|
1139
1385
|
name: `${w.prop}-header`,
|
|
1140
|
-
fn: L((
|
|
1141
|
-
C(f.$slots, `${w.prop}-header`,
|
|
1386
|
+
fn: L((N) => [
|
|
1387
|
+
C(f.$slots, `${w.prop}-header`, fe(he(N)), void 0, !0)
|
|
1142
1388
|
])
|
|
1143
1389
|
})),
|
|
1144
|
-
|
|
1390
|
+
U(p.value, (w) => ({
|
|
1145
1391
|
name: `${w.prop}-data`,
|
|
1146
|
-
fn: L((
|
|
1147
|
-
C(f.$slots, `${w.prop}-data`,
|
|
1392
|
+
fn: L((N) => [
|
|
1393
|
+
C(f.$slots, `${w.prop}-data`, fe(he(N)), void 0, !0)
|
|
1148
1394
|
])
|
|
1149
1395
|
})),
|
|
1150
|
-
|
|
1396
|
+
y.value.menu ? {
|
|
1151
1397
|
name: "menu",
|
|
1152
1398
|
fn: L((w) => [
|
|
1153
|
-
C(f.$slots, "menu",
|
|
1399
|
+
C(f.$slots, "menu", fe(he(w)), void 0, !0)
|
|
1154
1400
|
]),
|
|
1155
|
-
key: "
|
|
1401
|
+
key: "1"
|
|
1156
1402
|
} : void 0
|
|
1157
1403
|
]), 1032, ["data", "columns", "option", "table-events"])), [
|
|
1158
|
-
[W,
|
|
1404
|
+
[W, y.value.loading]
|
|
1159
1405
|
])
|
|
1160
1406
|
]),
|
|
1161
|
-
|
|
1407
|
+
M.value ? (c(), P(g2, {
|
|
1162
1408
|
key: 0,
|
|
1163
|
-
"current-page":
|
|
1164
|
-
"onUpdate:currentPage":
|
|
1409
|
+
"current-page": a.value,
|
|
1410
|
+
"onUpdate:currentPage": x[1] || (x[1] = (w) => a.value = w),
|
|
1165
1411
|
"page-size": n.value,
|
|
1166
|
-
"onUpdate:pageSize":
|
|
1412
|
+
"onUpdate:pageSize": x[2] || (x[2] = (w) => n.value = w),
|
|
1167
1413
|
total: f.total,
|
|
1168
|
-
option:
|
|
1169
|
-
onPageChange:
|
|
1170
|
-
onSizeChange:
|
|
1414
|
+
option: y.value,
|
|
1415
|
+
onPageChange: x[3] || (x[3] = (w) => f.$emit("page-change", w)),
|
|
1416
|
+
onSizeChange: x[4] || (x[4] = (w) => f.$emit("size-change", w))
|
|
1171
1417
|
}, null, 8, ["current-page", "page-size", "total", "option"])) : z("", !0)
|
|
1172
1418
|
])
|
|
1173
1419
|
]);
|
|
1174
1420
|
};
|
|
1175
1421
|
}
|
|
1176
|
-
}),
|
|
1422
|
+
}), so = /* @__PURE__ */ O(L2, [["__scopeId", "data-v-a37df21e"]]), $2 = /* @__PURE__ */ I({
|
|
1177
1423
|
name: "SvgIcon",
|
|
1178
1424
|
__name: "SvgIcon",
|
|
1179
1425
|
props: {
|
|
1180
1426
|
src: {},
|
|
1181
1427
|
size: { default: "1em" }
|
|
1182
1428
|
},
|
|
1183
|
-
setup(
|
|
1184
|
-
const e =
|
|
1429
|
+
setup(l) {
|
|
1430
|
+
const e = l, t = m(() => ({
|
|
1185
1431
|
"--svg-icon-source": `url("${e.src}")`,
|
|
1186
1432
|
"--svg-icon-size": typeof e.size == "number" ? `${e.size}px` : e.size
|
|
1187
1433
|
}));
|
|
1188
|
-
return (o,
|
|
1434
|
+
return (o, s) => (c(), _("span", {
|
|
1189
1435
|
class: "svg-icon",
|
|
1190
|
-
style:
|
|
1436
|
+
style: te(t.value),
|
|
1191
1437
|
"aria-hidden": "true"
|
|
1192
1438
|
}, null, 4));
|
|
1193
1439
|
}
|
|
1194
|
-
}),
|
|
1440
|
+
}), x2 = /* @__PURE__ */ O($2, [["__scopeId", "data-v-d11c470f"]]), k2 = "data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M3.75%208.75C3.0625%208.75%202.5%209.3125%202.5%2010C2.5%2010.6875%203.0625%2011.25%203.75%2011.25C4.4375%2011.25%205%2010.6875%205%2010C5%209.3125%204.4375%208.75%203.75%208.75ZM16.25%208.75C15.5625%208.75%2015%209.3125%2015%2010C15%2010.6875%2015.5625%2011.25%2016.25%2011.25C16.9375%2011.25%2017.5%2010.6875%2017.5%2010C17.5%209.3125%2016.9375%208.75%2016.25%208.75ZM10%208.75C9.3125%208.75%208.75%209.3125%208.75%2010C8.75%2010.6875%209.3125%2011.25%2010%2011.25C10.6875%2011.25%2011.25%2010.6875%2011.25%2010C11.25%209.3125%2010.6875%208.75%2010%208.75Z'%20fill='%23333333'/%3e%3c/svg%3e", B2 = ["aria-label", "disabled"], j2 = /* @__PURE__ */ I({
|
|
1195
1441
|
name: "JtActionMenu",
|
|
1196
1442
|
__name: "index",
|
|
1197
1443
|
props: {
|
|
1198
1444
|
items: { default: () => [] },
|
|
1199
1445
|
disabled: { type: Boolean, default: !1 },
|
|
1200
|
-
ariaLabel: { default:
|
|
1446
|
+
ariaLabel: { default: B("common.更多操作", "更多操作") }
|
|
1201
1447
|
},
|
|
1202
1448
|
emits: ["select"],
|
|
1203
|
-
setup(
|
|
1204
|
-
const t =
|
|
1449
|
+
setup(l, { emit: e }) {
|
|
1450
|
+
const t = l, o = e, s = m(
|
|
1205
1451
|
() => t.items.filter((n) => n.hidden !== !0)
|
|
1206
1452
|
);
|
|
1207
|
-
function
|
|
1453
|
+
function a(n) {
|
|
1208
1454
|
n.hidden || n.disabled || o("select", n.key, n);
|
|
1209
1455
|
}
|
|
1210
|
-
return (n,
|
|
1211
|
-
const
|
|
1212
|
-
return
|
|
1456
|
+
return (n, d) => {
|
|
1457
|
+
const u = Ke, i = ht, g = ft, y = mt;
|
|
1458
|
+
return c(), P(y, {
|
|
1213
1459
|
trigger: "click",
|
|
1214
1460
|
"show-arrow": !1,
|
|
1215
1461
|
placement: "bottom-end",
|
|
1216
1462
|
"popper-class": "jt-action-menu__popper",
|
|
1217
|
-
disabled: t.disabled ||
|
|
1218
|
-
onCommand:
|
|
1463
|
+
disabled: t.disabled || s.value.length === 0,
|
|
1464
|
+
onCommand: a
|
|
1219
1465
|
}, {
|
|
1220
1466
|
dropdown: L(() => [
|
|
1221
|
-
|
|
1467
|
+
K(g, { "show-arrow": !1 }, {
|
|
1222
1468
|
default: L(() => [
|
|
1223
|
-
(
|
|
1224
|
-
key:
|
|
1225
|
-
class:
|
|
1226
|
-
command:
|
|
1227
|
-
disabled:
|
|
1469
|
+
(c(!0), _(Y, null, U(s.value, (v) => (c(), P(i, {
|
|
1470
|
+
key: v.key,
|
|
1471
|
+
class: X(["jt-action-menu__item", { "is-danger": v.danger }]),
|
|
1472
|
+
command: v,
|
|
1473
|
+
disabled: v.disabled
|
|
1228
1474
|
}, {
|
|
1229
1475
|
default: L(() => [
|
|
1230
|
-
C(n.$slots, "item", { item:
|
|
1231
|
-
|
|
1476
|
+
C(n.$slots, "item", { item: v }, () => [
|
|
1477
|
+
v.icon ? (c(), P(u, { key: 0 }, {
|
|
1232
1478
|
default: L(() => [
|
|
1233
|
-
(
|
|
1479
|
+
(c(), P($e(v.icon)))
|
|
1234
1480
|
]),
|
|
1235
1481
|
_: 2
|
|
1236
1482
|
}, 1024)) : z("", !0),
|
|
1237
|
-
|
|
1483
|
+
b("span", null, F(v.label), 1)
|
|
1238
1484
|
], !0)
|
|
1239
1485
|
]),
|
|
1240
1486
|
_: 2
|
|
@@ -1244,25 +1490,25 @@ const I2 = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%20
|
|
|
1244
1490
|
})
|
|
1245
1491
|
]),
|
|
1246
1492
|
default: L(() => [
|
|
1247
|
-
C(n.$slots, "trigger", { items:
|
|
1248
|
-
|
|
1493
|
+
C(n.$slots, "trigger", { items: s.value }, () => [
|
|
1494
|
+
b("button", {
|
|
1249
1495
|
class: "jt-action-menu__trigger",
|
|
1250
1496
|
type: "button",
|
|
1251
1497
|
"aria-label": t.ariaLabel,
|
|
1252
1498
|
disabled: t.disabled
|
|
1253
1499
|
}, [
|
|
1254
|
-
|
|
1255
|
-
src:
|
|
1500
|
+
K(x2, {
|
|
1501
|
+
src: V(k2),
|
|
1256
1502
|
size: 20
|
|
1257
1503
|
}, null, 8, ["src"])
|
|
1258
|
-
], 8,
|
|
1504
|
+
], 8, B2)
|
|
1259
1505
|
], !0)
|
|
1260
1506
|
]),
|
|
1261
1507
|
_: 3
|
|
1262
1508
|
}, 8, ["disabled"]);
|
|
1263
1509
|
};
|
|
1264
1510
|
}
|
|
1265
|
-
}), Kt = /* @__PURE__ */ D(c0, [["__scopeId", "data-v-a58eab03"]]), d0 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_116_12984)'%3e%3cpath%20d='M9.79688%201.125L12.8213%203.75L15.7812%206.375V15.5625C15.7812%2016.2874%2015.1936%2016.875%2014.4688%2016.875H3.3125C2.58765%2016.875%202%2016.2874%202%2015.5625V2.4375C2%201.71265%202.58765%201.12503%203.3125%201.125H9.79688Z'%20fill='%23576A95'/%3e%3cpath%20d='M15.7813%206.375L11.1098%206.375C10.3849%206.375%209.7973%205.78737%209.7973%205.0625L9.7973%201.125L12.8799%203.75L15.7813%206.375Z'%20fill='white'%20fill-opacity='0.4'/%3e%3crect%20x='4.62499'%20y='1.125'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='5.60939'%20y='2.10938'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='4.62502'%20y='3.09375'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='5.60939'%20y='4.07812'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='4.62502'%20y='5.0625'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='5.60939'%20y='6.04688'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='4.62502'%20y='7.03125'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='5.60939'%20y='8.01562'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='4.62502'%20y='9'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3cpath%20d='M4.62502%209.98438H6.59377V11.2969C6.59377%2011.6593%206.29995%2011.9531%205.93752%2011.9531H5.28127C4.91883%2011.9531%204.62502%2011.6593%204.62502%2011.2969V9.98438Z'%20fill='white'/%3e%3crect%20x='4.95314'%20y='10.3125'%20width='1.3125'%20height='0.65625'%20fill='%23576A95'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_116_12984'%3e%3crect%20width='14'%20height='15.75'%20fill='white'%20transform='translate(2%201.125)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", u0 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_116_12985)'%3e%3cpath%20d='M9.79688%201.125L12.8213%203.75L15.7812%206.375V15.5625C15.7812%2016.2874%2015.1936%2016.875%2014.4688%2016.875H3.3125C2.58765%2016.875%202%2016.2874%202%2015.5625V2.4375C2%201.71265%202.58765%201.12503%203.3125%201.125H9.79688Z'%20fill='%2323B08D'/%3e%3cpath%20d='M15.7813%206.375L11.1098%206.375C10.3849%206.375%209.79729%205.78737%209.79729%205.0625L9.7973%201.125L12.8799%203.75L15.7813%206.375Z'%20fill='white'%20fill-opacity='0.4'/%3e%3cpath%20d='M8.9075%2010.7278H8.87375L7.59125%2012.6094H5.97969L8.03844%209.68156L5.9375%206.70312H7.53219L8.87375%208.63531H8.9075L10.2491%206.70312H11.8437L9.75125%209.68156L11.81%2012.6094H10.19L8.9075%2010.7278Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_116_12985'%3e%3crect%20width='14'%20height='15.75'%20fill='white'%20transform='translate(2%201.125)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", p0 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M15.7454%206.375L11.1873%206.375C10.4624%206.375%209.87481%205.78737%209.87481%205.0625L9.87481%201.125L12.899%203.75L15.7454%206.375Z'%20fill='%23E78B7F'/%3e%3cpath%20d='M5.61656%208.43881H6.15403V10.6576C6.15403%2011.0343%206.07594%2011.3099%205.91975%2011.4937C5.74519%2011.6866%205.46956%2011.7831%205.08828%2011.7831C4.75753%2011.7831%204.50488%2011.6912%204.33491%2011.5074C4.16035%2011.3237%204.07306%2011.071%204.07306%2010.7495V10.6438H4.61053V10.7449C4.61053%2011.1216%204.77131%2011.3099%205.09747%2011.3099C5.27663%2011.3099%205.40985%2011.2548%205.49253%2011.1491C5.57522%2011.0435%205.61656%2010.8735%205.61656%2010.6392V8.43881ZM6.79755%208.43881H8.1573C8.94743%208.43881%209.34708%208.77416%209.34708%209.44484C9.34708%2010.1201%208.94743%2010.4601%208.14811%2010.4601H7.33502V11.7188H6.79755V8.43881ZM7.33502%208.89819V10.0007H8.11596C8.35483%2010.0007%208.5294%209.95475%208.63965%209.87206C8.7499%209.78478%208.80502%209.64238%208.80502%209.44484C8.80502%209.24731%208.7453%209.1095%208.63505%209.02681C8.5248%208.93953%208.35024%208.89819%208.11596%208.89819H7.33502ZM11.2318%208.3745C11.6544%208.3745%2011.9852%208.46638%2012.2286%208.65472C12.4629%208.83847%2012.6099%209.1095%2012.6696%209.477H12.1276C12.0816%209.26569%2011.9806%209.1095%2011.8336%209.00384C11.682%208.89819%2011.4798%208.84766%2011.2318%208.84766C10.924%208.84766%2010.6805%208.94872%2010.5014%209.16003C10.3038%209.38053%2010.2074%209.68831%2010.2074%2010.0926C10.2074%2010.4784%2010.2947%2010.777%2010.4692%2010.9838C10.6576%2011.2043%2010.9516%2011.3145%2011.3512%2011.3145C11.5074%2011.3145%2011.6544%2011.2961%2011.7922%2011.2594C11.9208%2011.2226%2012.0357%2011.1721%2012.1459%2011.1078V10.4325H11.2777V9.97313H12.6834V11.3604C12.5088%2011.4983%2012.3113%2011.5993%2012.0862%2011.6728C11.8473%2011.7463%2011.5855%2011.7831%2011.2915%2011.7831C10.7678%2011.7831%2010.3636%2011.6177%2010.0742%2011.2869C9.80312%2010.9792%209.6699%2010.5795%209.6699%2010.0926C9.6699%209.60103%209.80312%209.19678%2010.0742%208.87981C10.359%208.53988%2010.7448%208.3745%2011.2318%208.3745Z'%20fill='white'/%3e%3cpath%20d='M15.7813%206.37537V15.5621C15.7813%2016.287%2015.1933%2016.875%2014.4684%2016.875H3.31287C2.588%2016.875%202.00001%2016.287%202.00001%2015.5621V2.43787C2.00001%201.713%202.588%201.125%203.31287%201.125H9.87501L15.7813%206.37537Z'%20fill='%23E60000'/%3e%3cg%20clip-path='url(%23clip0_116_12983)'%3e%3cpath%20d='M10.854%208.25822C11.4331%208.23023%2011.8857%207.70539%2011.8524%207.09657C11.8258%206.52974%2011.3931%206.07487%2010.854%206.04688C10.275%206.07487%209.82239%206.59971%209.85567%207.20853C9.8823%207.77537%2010.3149%208.23023%2010.854%208.25822ZM10.9405%209.39889C10.9073%209.3499%2010.8673%209.30791%2010.8207%209.27292C10.5745%209.08398%2010.235%209.13996%2010.0553%209.39889L9.76249%209.82576C9.70925%209.90274%209.60941%209.91673%209.54286%209.86075C9.52954%209.85375%209.51623%209.83975%209.50958%209.82576L8.47129%208.3422C8.43801%208.29321%208.39808%208.25123%208.35149%208.21624C8.23834%208.12526%208.09192%208.09027%207.94549%208.11127C7.80572%208.13226%207.67261%208.21624%207.59274%208.3422L5.71584%2011.0294C5.53614%2011.2883%205.58938%2011.6452%205.82899%2011.8342C5.92217%2011.9041%206.03531%2011.9461%206.15512%2011.9461H11.6594C11.7659%2011.9461%2011.8657%2011.9041%2011.9522%2011.8342C12.1918%2011.6452%2012.2451%2011.2813%2012.0654%2011.0294L10.9405%209.39889Z'%20fill='white'/%3e%3c/g%3e%3cpath%20d='M15.7813%206.37501L11.2232%206.37501C10.4983%206.37501%209.9107%205.78738%209.9107%205.06251L9.9107%201.12501L12.9349%203.75001L15.7813%206.37501Z'%20fill='white'%20fill-opacity='0.4'/%3e%3cdefs%3e%3cclipPath%20id='clip0_116_12983'%3e%3crect%20width='6.5625'%20height='5.90625'%20fill='white'%20transform='translate(5.60939%206.04688)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", m0 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.797%201.125L12.8215%203.74963L15.7812%206.37537V15.5621C15.7812%2016.287%2015.1933%2016.875%2014.4684%2016.875H3.31287C2.58799%2016.875%202%2016.287%202%2015.5621V2.43787C2%201.71299%202.58799%201.125%203.31287%201.125H9.797Z'%20fill='%23FF5E00'/%3e%3cpath%20d='M15.7813%206.375L11.1098%206.375C10.3849%206.375%209.79729%205.78737%209.79729%205.0625L9.79729%201.125L12.8799%203.75L15.7813%206.375Z'%20fill='white'%20fill-opacity='0.4'/%3e%3cpath%20d='M12.1742%2011.8432C11.5493%2011.7975%2010.9476%2011.569%2010.4616%2011.1579C9.51279%2011.3635%208.61023%2011.6604%207.70767%2012.0259C6.99025%2013.2823%206.31912%2013.9219%205.74055%2013.9219C5.62484%2013.9219%205.48599%2013.899%205.39342%2013.8305C5.13885%2013.7163%204.99999%2013.465%204.99999%2013.2137C4.99999%2013.0082%205.04628%2012.4371%207.24482%2011.5005C7.75396%2010.5868%208.14738%209.65022%208.47137%208.66797C8.19366%208.11974%207.59196%206.772%208.00852%206.0867C8.14738%205.83543%208.42509%205.69837%208.72594%205.72121C8.95737%205.72121%209.18879%205.83543%209.32765%206.01817C9.6285%206.42935%209.60536%207.29739%209.21194%208.5766C9.58222%209.26189%2010.0682%209.87865%2010.6468%2010.404C11.1328%2010.3127%2011.6188%2010.2441%2012.1048%2010.2441C13.1925%2010.267%2013.3545%2010.7695%2013.3313%2011.0665C13.3313%2011.8432%2012.5676%2011.8432%2012.1742%2011.8432ZM5.69427%2013.2594L5.7637%2013.2366C6.08769%2013.1224%206.34226%2012.8939%206.5274%2012.597C6.18026%2012.734%205.90255%2012.9625%205.69427%2013.2594ZM8.77223%206.40651H8.7028C8.67966%206.40651%208.63337%206.40651%208.61023%206.42935C8.51766%206.81768%208.58709%207.22886%208.74909%207.59435C8.88794%207.20601%208.88794%206.79484%208.77223%206.40651ZM8.93423%209.71875L8.91108%209.76444L8.88794%209.74159C8.67966%2010.267%208.44823%2010.7924%208.19366%2011.2949L8.23995%2011.2721V11.3178C8.74909%2011.135%209.30451%2010.9751%209.81364%2010.8609L9.7905%2010.8381H9.85993C9.51279%2010.4954%209.18879%2010.1071%208.93423%209.71875ZM12.0816%2010.9294C11.8733%2010.9294%2011.6882%2010.9294%2011.4799%2010.9751C11.7113%2011.0893%2011.9428%2011.135%2012.1742%2011.1579C12.3362%2011.1807%2012.4982%2011.1579%2012.637%2011.1122C12.637%2011.0436%2012.5445%2010.9294%2012.0816%2010.9294Z'%20fill='white'/%3e%3c/svg%3e", f0 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_116_12982)'%3e%3cpath%20d='M9.797%201.125L12.8215%203.74964L15.7813%206.37537V15.5621C15.7813%2016.287%2015.1933%2016.875%2014.4684%2016.875H3.31287C2.588%2016.875%202.00001%2016.287%202.00001%2015.5621V2.43787C2.00001%201.713%202.588%201.125%203.31287%201.125H9.797Z'%20fill='%23165DFF'/%3e%3cg%20clip-path='url(%23clip1_116_12982)'%3e%3cpath%20d='M11.2235%206.70312L10.2584%2010.5773L9.42526%207.20938H8.35602L7.52285%2010.5773L6.55776%206.70312H5.26635L6.73828%2012.6094H7.02295H8.0297H8.08524L8.89064%209.36797L9.68909%2012.6094H9.75158H10.7583H11.0361L12.5149%206.70312H11.2235Z'%20fill='white'/%3e%3c/g%3e%3cpath%20d='M15.7813%206.375L11.1098%206.375C10.3849%206.375%209.79729%205.78737%209.79729%205.0625L9.7973%201.125L12.8799%203.75L15.7813%206.375Z'%20fill='white'%20fill-opacity='0.4'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_116_12982'%3e%3crect%20width='14'%20height='15.75'%20fill='white'%20transform='translate(2%201.125)'/%3e%3c/clipPath%3e%3cclipPath%20id='clip1_116_12982'%3e%3crect%20width='7.24858'%20height='5.90625'%20fill='white'%20transform='translate(5.26635%206.70312)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", h0 = {
|
|
1511
|
+
}), ro = /* @__PURE__ */ O(j2, [["__scopeId", "data-v-72577d3d"]]), S2 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_116_12984)'%3e%3cpath%20d='M9.79688%201.125L12.8213%203.75L15.7812%206.375V15.5625C15.7812%2016.2874%2015.1936%2016.875%2014.4688%2016.875H3.3125C2.58765%2016.875%202%2016.2874%202%2015.5625V2.4375C2%201.71265%202.58765%201.12503%203.3125%201.125H9.79688Z'%20fill='%23576A95'/%3e%3cpath%20d='M15.7813%206.375L11.1098%206.375C10.3849%206.375%209.7973%205.78737%209.7973%205.0625L9.7973%201.125L12.8799%203.75L15.7813%206.375Z'%20fill='white'%20fill-opacity='0.4'/%3e%3crect%20x='4.62499'%20y='1.125'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='5.60939'%20y='2.10938'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='4.62502'%20y='3.09375'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='5.60939'%20y='4.07812'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='4.62502'%20y='5.0625'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='5.60939'%20y='6.04688'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='4.62502'%20y='7.03125'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='5.60939'%20y='8.01562'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3crect%20x='4.62502'%20y='9'%20width='0.984375'%20height='0.984375'%20fill='white'/%3e%3cpath%20d='M4.62502%209.98438H6.59377V11.2969C6.59377%2011.6593%206.29995%2011.9531%205.93752%2011.9531H5.28127C4.91883%2011.9531%204.62502%2011.6593%204.62502%2011.2969V9.98438Z'%20fill='white'/%3e%3crect%20x='4.95314'%20y='10.3125'%20width='1.3125'%20height='0.65625'%20fill='%23576A95'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_116_12984'%3e%3crect%20width='14'%20height='15.75'%20fill='white'%20transform='translate(2%201.125)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", T2 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_116_12985)'%3e%3cpath%20d='M9.79688%201.125L12.8213%203.75L15.7812%206.375V15.5625C15.7812%2016.2874%2015.1936%2016.875%2014.4688%2016.875H3.3125C2.58765%2016.875%202%2016.2874%202%2015.5625V2.4375C2%201.71265%202.58765%201.12503%203.3125%201.125H9.79688Z'%20fill='%2323B08D'/%3e%3cpath%20d='M15.7813%206.375L11.1098%206.375C10.3849%206.375%209.79729%205.78737%209.79729%205.0625L9.7973%201.125L12.8799%203.75L15.7813%206.375Z'%20fill='white'%20fill-opacity='0.4'/%3e%3cpath%20d='M8.9075%2010.7278H8.87375L7.59125%2012.6094H5.97969L8.03844%209.68156L5.9375%206.70312H7.53219L8.87375%208.63531H8.9075L10.2491%206.70312H11.8437L9.75125%209.68156L11.81%2012.6094H10.19L8.9075%2010.7278Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_116_12985'%3e%3crect%20width='14'%20height='15.75'%20fill='white'%20transform='translate(2%201.125)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", M2 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M15.7454%206.375L11.1873%206.375C10.4624%206.375%209.87481%205.78737%209.87481%205.0625L9.87481%201.125L12.899%203.75L15.7454%206.375Z'%20fill='%23E78B7F'/%3e%3cpath%20d='M5.61656%208.43881H6.15403V10.6576C6.15403%2011.0343%206.07594%2011.3099%205.91975%2011.4937C5.74519%2011.6866%205.46956%2011.7831%205.08828%2011.7831C4.75753%2011.7831%204.50488%2011.6912%204.33491%2011.5074C4.16035%2011.3237%204.07306%2011.071%204.07306%2010.7495V10.6438H4.61053V10.7449C4.61053%2011.1216%204.77131%2011.3099%205.09747%2011.3099C5.27663%2011.3099%205.40985%2011.2548%205.49253%2011.1491C5.57522%2011.0435%205.61656%2010.8735%205.61656%2010.6392V8.43881ZM6.79755%208.43881H8.1573C8.94743%208.43881%209.34708%208.77416%209.34708%209.44484C9.34708%2010.1201%208.94743%2010.4601%208.14811%2010.4601H7.33502V11.7188H6.79755V8.43881ZM7.33502%208.89819V10.0007H8.11596C8.35483%2010.0007%208.5294%209.95475%208.63965%209.87206C8.7499%209.78478%208.80502%209.64238%208.80502%209.44484C8.80502%209.24731%208.7453%209.1095%208.63505%209.02681C8.5248%208.93953%208.35024%208.89819%208.11596%208.89819H7.33502ZM11.2318%208.3745C11.6544%208.3745%2011.9852%208.46638%2012.2286%208.65472C12.4629%208.83847%2012.6099%209.1095%2012.6696%209.477H12.1276C12.0816%209.26569%2011.9806%209.1095%2011.8336%209.00384C11.682%208.89819%2011.4798%208.84766%2011.2318%208.84766C10.924%208.84766%2010.6805%208.94872%2010.5014%209.16003C10.3038%209.38053%2010.2074%209.68831%2010.2074%2010.0926C10.2074%2010.4784%2010.2947%2010.777%2010.4692%2010.9838C10.6576%2011.2043%2010.9516%2011.3145%2011.3512%2011.3145C11.5074%2011.3145%2011.6544%2011.2961%2011.7922%2011.2594C11.9208%2011.2226%2012.0357%2011.1721%2012.1459%2011.1078V10.4325H11.2777V9.97313H12.6834V11.3604C12.5088%2011.4983%2012.3113%2011.5993%2012.0862%2011.6728C11.8473%2011.7463%2011.5855%2011.7831%2011.2915%2011.7831C10.7678%2011.7831%2010.3636%2011.6177%2010.0742%2011.2869C9.80312%2010.9792%209.6699%2010.5795%209.6699%2010.0926C9.6699%209.60103%209.80312%209.19678%2010.0742%208.87981C10.359%208.53988%2010.7448%208.3745%2011.2318%208.3745Z'%20fill='white'/%3e%3cpath%20d='M15.7813%206.37537V15.5621C15.7813%2016.287%2015.1933%2016.875%2014.4684%2016.875H3.31287C2.588%2016.875%202.00001%2016.287%202.00001%2015.5621V2.43787C2.00001%201.713%202.588%201.125%203.31287%201.125H9.87501L15.7813%206.37537Z'%20fill='%23E60000'/%3e%3cg%20clip-path='url(%23clip0_116_12983)'%3e%3cpath%20d='M10.854%208.25822C11.4331%208.23023%2011.8857%207.70539%2011.8524%207.09657C11.8258%206.52974%2011.3931%206.07487%2010.854%206.04688C10.275%206.07487%209.82239%206.59971%209.85567%207.20853C9.8823%207.77537%2010.3149%208.23023%2010.854%208.25822ZM10.9405%209.39889C10.9073%209.3499%2010.8673%209.30791%2010.8207%209.27292C10.5745%209.08398%2010.235%209.13996%2010.0553%209.39889L9.76249%209.82576C9.70925%209.90274%209.60941%209.91673%209.54286%209.86075C9.52954%209.85375%209.51623%209.83975%209.50958%209.82576L8.47129%208.3422C8.43801%208.29321%208.39808%208.25123%208.35149%208.21624C8.23834%208.12526%208.09192%208.09027%207.94549%208.11127C7.80572%208.13226%207.67261%208.21624%207.59274%208.3422L5.71584%2011.0294C5.53614%2011.2883%205.58938%2011.6452%205.82899%2011.8342C5.92217%2011.9041%206.03531%2011.9461%206.15512%2011.9461H11.6594C11.7659%2011.9461%2011.8657%2011.9041%2011.9522%2011.8342C12.1918%2011.6452%2012.2451%2011.2813%2012.0654%2011.0294L10.9405%209.39889Z'%20fill='white'/%3e%3c/g%3e%3cpath%20d='M15.7813%206.37501L11.2232%206.37501C10.4983%206.37501%209.9107%205.78738%209.9107%205.06251L9.9107%201.12501L12.9349%203.75001L15.7813%206.37501Z'%20fill='white'%20fill-opacity='0.4'/%3e%3cdefs%3e%3cclipPath%20id='clip0_116_12983'%3e%3crect%20width='6.5625'%20height='5.90625'%20fill='white'%20transform='translate(5.60939%206.04688)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", F2 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.797%201.125L12.8215%203.74963L15.7812%206.37537V15.5621C15.7812%2016.287%2015.1933%2016.875%2014.4684%2016.875H3.31287C2.58799%2016.875%202%2016.287%202%2015.5621V2.43787C2%201.71299%202.58799%201.125%203.31287%201.125H9.797Z'%20fill='%23FF5E00'/%3e%3cpath%20d='M15.7813%206.375L11.1098%206.375C10.3849%206.375%209.79729%205.78737%209.79729%205.0625L9.79729%201.125L12.8799%203.75L15.7813%206.375Z'%20fill='white'%20fill-opacity='0.4'/%3e%3cpath%20d='M12.1742%2011.8432C11.5493%2011.7975%2010.9476%2011.569%2010.4616%2011.1579C9.51279%2011.3635%208.61023%2011.6604%207.70767%2012.0259C6.99025%2013.2823%206.31912%2013.9219%205.74055%2013.9219C5.62484%2013.9219%205.48599%2013.899%205.39342%2013.8305C5.13885%2013.7163%204.99999%2013.465%204.99999%2013.2137C4.99999%2013.0082%205.04628%2012.4371%207.24482%2011.5005C7.75396%2010.5868%208.14738%209.65022%208.47137%208.66797C8.19366%208.11974%207.59196%206.772%208.00852%206.0867C8.14738%205.83543%208.42509%205.69837%208.72594%205.72121C8.95737%205.72121%209.18879%205.83543%209.32765%206.01817C9.6285%206.42935%209.60536%207.29739%209.21194%208.5766C9.58222%209.26189%2010.0682%209.87865%2010.6468%2010.404C11.1328%2010.3127%2011.6188%2010.2441%2012.1048%2010.2441C13.1925%2010.267%2013.3545%2010.7695%2013.3313%2011.0665C13.3313%2011.8432%2012.5676%2011.8432%2012.1742%2011.8432ZM5.69427%2013.2594L5.7637%2013.2366C6.08769%2013.1224%206.34226%2012.8939%206.5274%2012.597C6.18026%2012.734%205.90255%2012.9625%205.69427%2013.2594ZM8.77223%206.40651H8.7028C8.67966%206.40651%208.63337%206.40651%208.61023%206.42935C8.51766%206.81768%208.58709%207.22886%208.74909%207.59435C8.88794%207.20601%208.88794%206.79484%208.77223%206.40651ZM8.93423%209.71875L8.91108%209.76444L8.88794%209.74159C8.67966%2010.267%208.44823%2010.7924%208.19366%2011.2949L8.23995%2011.2721V11.3178C8.74909%2011.135%209.30451%2010.9751%209.81364%2010.8609L9.7905%2010.8381H9.85993C9.51279%2010.4954%209.18879%2010.1071%208.93423%209.71875ZM12.0816%2010.9294C11.8733%2010.9294%2011.6882%2010.9294%2011.4799%2010.9751C11.7113%2011.0893%2011.9428%2011.135%2012.1742%2011.1579C12.3362%2011.1807%2012.4982%2011.1579%2012.637%2011.1122C12.637%2011.0436%2012.5445%2010.9294%2012.0816%2010.9294Z'%20fill='white'/%3e%3c/svg%3e", P2 = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_116_12982)'%3e%3cpath%20d='M9.797%201.125L12.8215%203.74964L15.7813%206.37537V15.5621C15.7813%2016.287%2015.1933%2016.875%2014.4684%2016.875H3.31287C2.588%2016.875%202.00001%2016.287%202.00001%2015.5621V2.43787C2.00001%201.713%202.588%201.125%203.31287%201.125H9.797Z'%20fill='%23165DFF'/%3e%3cg%20clip-path='url(%23clip1_116_12982)'%3e%3cpath%20d='M11.2235%206.70312L10.2584%2010.5773L9.42526%207.20938H8.35602L7.52285%2010.5773L6.55776%206.70312H5.26635L6.73828%2012.6094H7.02295H8.0297H8.08524L8.89064%209.36797L9.68909%2012.6094H9.75158H10.7583H11.0361L12.5149%206.70312H11.2235Z'%20fill='white'/%3e%3c/g%3e%3cpath%20d='M15.7813%206.375L11.1098%206.375C10.3849%206.375%209.79729%205.78737%209.79729%205.0625L9.7973%201.125L12.8799%203.75L15.7813%206.375Z'%20fill='white'%20fill-opacity='0.4'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_116_12982'%3e%3crect%20width='14'%20height='15.75'%20fill='white'%20transform='translate(2%201.125)'/%3e%3c/clipPath%3e%3cclipPath%20id='clip1_116_12982'%3e%3crect%20width='7.24858'%20height='5.90625'%20fill='white'%20transform='translate(5.26635%206.70312)'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", V2 = {
|
|
1266
1512
|
pdf: "pdf",
|
|
1267
1513
|
xls: "excel",
|
|
1268
1514
|
xlsx: "excel",
|
|
@@ -1282,13 +1528,13 @@ const I2 = "data:image/svg+xml,%3csvg%20width='14'%20height='14'%20viewBox='0%20
|
|
|
1282
1528
|
bmp: "image",
|
|
1283
1529
|
svg: "image"
|
|
1284
1530
|
};
|
|
1285
|
-
function
|
|
1531
|
+
function I2(l, e) {
|
|
1286
1532
|
if (e) return e;
|
|
1287
|
-
if (!
|
|
1288
|
-
const t =
|
|
1289
|
-
return o ?
|
|
1533
|
+
if (!l) return;
|
|
1534
|
+
const t = l.split(/[?#]/, 1)[0], o = t.includes(".") ? t.split(".").pop()?.toLowerCase() : void 0;
|
|
1535
|
+
return o ? V2[o] : void 0;
|
|
1290
1536
|
}
|
|
1291
|
-
const
|
|
1537
|
+
const E2 = ["aria-label"], z2 = ["src"], D2 = /* @__PURE__ */ I({
|
|
1292
1538
|
name: "JtFileIcon",
|
|
1293
1539
|
__name: "index",
|
|
1294
1540
|
props: {
|
|
@@ -1296,199 +1542,199 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1296
1542
|
type: {},
|
|
1297
1543
|
size: { default: 18 }
|
|
1298
1544
|
},
|
|
1299
|
-
setup(
|
|
1300
|
-
const e =
|
|
1301
|
-
pdf:
|
|
1302
|
-
excel:
|
|
1303
|
-
word:
|
|
1304
|
-
archive:
|
|
1305
|
-
image:
|
|
1306
|
-
}, o = m(() =>
|
|
1545
|
+
setup(l) {
|
|
1546
|
+
const e = l, t = {
|
|
1547
|
+
pdf: F2,
|
|
1548
|
+
excel: T2,
|
|
1549
|
+
word: P2,
|
|
1550
|
+
archive: S2,
|
|
1551
|
+
image: M2
|
|
1552
|
+
}, o = m(() => I2(e.name, e.type)), s = m(
|
|
1307
1553
|
() => o.value ? t[o.value] : void 0
|
|
1308
|
-
),
|
|
1309
|
-
() => e.name ?
|
|
1554
|
+
), a = m(
|
|
1555
|
+
() => e.name ? B("common.{name}文件图标", "{name} 文件图标", { name: e.name }) : B("common.文件图标", "文件图标")
|
|
1310
1556
|
), n = m(() => ({
|
|
1311
1557
|
"--jt-file-icon-size": typeof e.size == "number" ? `${e.size}px` : e.size
|
|
1312
1558
|
}));
|
|
1313
|
-
return (
|
|
1559
|
+
return (d, u) => (c(), _("span", {
|
|
1314
1560
|
class: "jt-file-icon",
|
|
1315
1561
|
role: "img",
|
|
1316
|
-
"aria-label":
|
|
1317
|
-
style:
|
|
1562
|
+
"aria-label": a.value,
|
|
1563
|
+
style: te(n.value)
|
|
1318
1564
|
}, [
|
|
1319
|
-
|
|
1565
|
+
s.value ? (c(), _("img", {
|
|
1320
1566
|
key: 0,
|
|
1321
|
-
src:
|
|
1567
|
+
src: s.value,
|
|
1322
1568
|
alt: "",
|
|
1323
1569
|
"aria-hidden": "true"
|
|
1324
|
-
}, null, 8,
|
|
1570
|
+
}, null, 8, z2)) : C(d.$slots, e.name, {
|
|
1325
1571
|
key: 1,
|
|
1326
1572
|
type: o.value
|
|
1327
1573
|
}, void 0, !0)
|
|
1328
|
-
], 12,
|
|
1574
|
+
], 12, E2));
|
|
1329
1575
|
}
|
|
1330
|
-
}),
|
|
1576
|
+
}), H2 = /* @__PURE__ */ O(D2, [["__scopeId", "data-v-989a66a3"]]), O2 = {
|
|
1331
1577
|
key: 0,
|
|
1332
1578
|
class: "jt-attachment-list"
|
|
1333
|
-
},
|
|
1579
|
+
}, J2 = { class: "jt-attachment-list__identity" }, Z2 = ["title"], R2 = {
|
|
1334
1580
|
key: 0,
|
|
1335
1581
|
class: "jt-attachment-list__description"
|
|
1336
|
-
},
|
|
1582
|
+
}, A2 = {
|
|
1337
1583
|
key: 0,
|
|
1338
1584
|
class: "jt-attachment-list__actions"
|
|
1339
|
-
},
|
|
1585
|
+
}, W2 = {
|
|
1340
1586
|
key: 1,
|
|
1341
1587
|
class: "jt-attachment-list__empty"
|
|
1342
|
-
},
|
|
1588
|
+
}, K2 = /* @__PURE__ */ I({
|
|
1343
1589
|
name: "JtAttachmentList",
|
|
1344
1590
|
__name: "index",
|
|
1345
1591
|
props: {
|
|
1346
1592
|
files: {},
|
|
1347
|
-
emptyText: { default:
|
|
1593
|
+
emptyText: { default: B("common.暂无附件", "暂无附件") }
|
|
1348
1594
|
},
|
|
1349
1595
|
emits: ["preview", "download", "remove"],
|
|
1350
|
-
setup(
|
|
1351
|
-
const t =
|
|
1352
|
-
function
|
|
1353
|
-
o("preview",
|
|
1596
|
+
setup(l, { emit: e }) {
|
|
1597
|
+
const t = l, o = e;
|
|
1598
|
+
function s(d) {
|
|
1599
|
+
o("preview", d);
|
|
1354
1600
|
}
|
|
1355
|
-
function
|
|
1356
|
-
o("download",
|
|
1601
|
+
function a(d) {
|
|
1602
|
+
o("download", d);
|
|
1357
1603
|
}
|
|
1358
|
-
function n(
|
|
1359
|
-
o("remove",
|
|
1604
|
+
function n(d) {
|
|
1605
|
+
o("remove", d);
|
|
1360
1606
|
}
|
|
1361
|
-
return (
|
|
1362
|
-
(
|
|
1363
|
-
key:
|
|
1607
|
+
return (d, u) => t.files.length ? (c(), _("ul", O2, [
|
|
1608
|
+
(c(!0), _(Y, null, U(t.files, (i) => (c(), _("li", {
|
|
1609
|
+
key: i.id,
|
|
1364
1610
|
class: "jt-attachment-list__item"
|
|
1365
1611
|
}, [
|
|
1366
|
-
C(
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
name:
|
|
1370
|
-
type:
|
|
1612
|
+
C(d.$slots, "item", { file: i }, () => [
|
|
1613
|
+
b("span", J2, [
|
|
1614
|
+
K(H2, {
|
|
1615
|
+
name: i.name,
|
|
1616
|
+
type: i.type
|
|
1371
1617
|
}, null, 8, ["name", "type"]),
|
|
1372
|
-
|
|
1373
|
-
class:
|
|
1374
|
-
title:
|
|
1375
|
-
},
|
|
1376
|
-
|
|
1618
|
+
b("span", {
|
|
1619
|
+
class: X(["jt-attachment-list__name", { "is-disabled": i.disabled }]),
|
|
1620
|
+
title: i.name
|
|
1621
|
+
}, F(i.name), 11, Z2),
|
|
1622
|
+
i.description ? (c(), _("span", R2, F(i.description), 1)) : z("", !0)
|
|
1377
1623
|
])
|
|
1378
1624
|
], !0),
|
|
1379
|
-
|
|
1380
|
-
C(
|
|
1381
|
-
file:
|
|
1382
|
-
preview: () =>
|
|
1383
|
-
download: () => i
|
|
1384
|
-
remove: () => n(
|
|
1625
|
+
d.$slots.actions ? (c(), _("span", A2, [
|
|
1626
|
+
C(d.$slots, "actions", {
|
|
1627
|
+
file: i,
|
|
1628
|
+
preview: () => s(i),
|
|
1629
|
+
download: () => a(i),
|
|
1630
|
+
remove: () => n(i)
|
|
1385
1631
|
}, void 0, !0)
|
|
1386
1632
|
])) : z("", !0)
|
|
1387
1633
|
]))), 128))
|
|
1388
|
-
])) : (
|
|
1389
|
-
C(
|
|
1390
|
-
|
|
1634
|
+
])) : (c(), _("div", W2, [
|
|
1635
|
+
C(d.$slots, "empty", {}, () => [
|
|
1636
|
+
Q(F(t.emptyText), 1)
|
|
1391
1637
|
], !0)
|
|
1392
1638
|
]));
|
|
1393
1639
|
}
|
|
1394
|
-
}),
|
|
1640
|
+
}), io = /* @__PURE__ */ O(K2, [["__scopeId", "data-v-9f6adbeb"]]), U2 = {
|
|
1395
1641
|
key: 0,
|
|
1396
1642
|
class: "jt-card__title"
|
|
1397
|
-
},
|
|
1643
|
+
}, G2 = {
|
|
1398
1644
|
key: 1,
|
|
1399
1645
|
class: "jt-card__content"
|
|
1400
|
-
},
|
|
1646
|
+
}, N2 = /* @__PURE__ */ I({
|
|
1401
1647
|
name: "JtCard",
|
|
1402
1648
|
__name: "index",
|
|
1403
1649
|
props: {
|
|
1404
1650
|
title: {}
|
|
1405
1651
|
},
|
|
1406
|
-
setup(
|
|
1407
|
-
const e =
|
|
1408
|
-
return (
|
|
1409
|
-
o.value ? (
|
|
1410
|
-
C(
|
|
1411
|
-
|
|
1652
|
+
setup(l) {
|
|
1653
|
+
const e = l, t = ce(), o = m(() => !!(e.title || t.title)), s = m(() => !!(t.content || t.default));
|
|
1654
|
+
return (a, n) => (c(), _("div", J({ class: "jt-card" }, a.$attrs), [
|
|
1655
|
+
o.value ? (c(), _("div", U2, [
|
|
1656
|
+
C(a.$slots, "title", {}, () => [
|
|
1657
|
+
b("span", null, F(a.title), 1)
|
|
1412
1658
|
], !0)
|
|
1413
1659
|
])) : z("", !0),
|
|
1414
|
-
|
|
1415
|
-
C(
|
|
1416
|
-
C(
|
|
1660
|
+
s.value ? (c(), _("div", G2, [
|
|
1661
|
+
C(a.$slots, "content", {}, () => [
|
|
1662
|
+
C(a.$slots, "default", {}, void 0, !0)
|
|
1417
1663
|
], !0)
|
|
1418
1664
|
])) : z("", !0)
|
|
1419
1665
|
], 16));
|
|
1420
1666
|
}
|
|
1421
|
-
}),
|
|
1667
|
+
}), co = /* @__PURE__ */ O(N2, [["__scopeId", "data-v-e4895e88"]]), q2 = ["aria-label"], Y2 = ["data-jt-choice-card-index", "aria-checked", "aria-disabled", "disabled", "tabindex", "onClick", "onKeydown"], X2 = { class: "jt-choice-card__copy" }, Q2 = { class: "jt-choice-card__label" }, e0 = {
|
|
1422
1668
|
key: 0,
|
|
1423
1669
|
class: "jt-choice-card__description"
|
|
1424
|
-
},
|
|
1670
|
+
}, t0 = /* @__PURE__ */ I({
|
|
1425
1671
|
name: "JtChoiceCardGroup",
|
|
1426
1672
|
__name: "index",
|
|
1427
1673
|
props: {
|
|
1428
1674
|
modelValue: {},
|
|
1429
1675
|
options: { default: () => [] },
|
|
1430
|
-
ariaLabel: { default:
|
|
1676
|
+
ariaLabel: { default: B("common.卡片单选", "卡片单选") }
|
|
1431
1677
|
},
|
|
1432
1678
|
emits: ["update:modelValue", "change"],
|
|
1433
|
-
setup(
|
|
1434
|
-
const t =
|
|
1435
|
-
() => t.options.flatMap((
|
|
1679
|
+
setup(l, { emit: e }) {
|
|
1680
|
+
const t = l, o = e, s = R(), a = m(
|
|
1681
|
+
() => t.options.flatMap((i, g) => i.disabled ? [] : [g])
|
|
1436
1682
|
);
|
|
1437
|
-
function n(
|
|
1438
|
-
|
|
1683
|
+
function n(i) {
|
|
1684
|
+
i.disabled || i.value === t.modelValue || (o("update:modelValue", i.value), o("change", i.value, i));
|
|
1439
1685
|
}
|
|
1440
|
-
function
|
|
1441
|
-
return
|
|
1686
|
+
function d(i, g) {
|
|
1687
|
+
return i.disabled ? -1 : i.value === t.modelValue || t.modelValue === void 0 && g === a.value[0] ? 0 : -1;
|
|
1442
1688
|
}
|
|
1443
|
-
function
|
|
1444
|
-
if (
|
|
1445
|
-
|
|
1689
|
+
function u(i, g, y) {
|
|
1690
|
+
if (i.key === "Enter" || i.key === " ") {
|
|
1691
|
+
i.preventDefault(), n(g);
|
|
1446
1692
|
return;
|
|
1447
1693
|
}
|
|
1448
|
-
const
|
|
1694
|
+
const M = {
|
|
1449
1695
|
ArrowRight: 1,
|
|
1450
1696
|
ArrowDown: 1,
|
|
1451
1697
|
ArrowLeft: -1,
|
|
1452
1698
|
ArrowUp: -1
|
|
1453
|
-
}[
|
|
1454
|
-
if (!
|
|
1455
|
-
|
|
1456
|
-
const
|
|
1457
|
-
|
|
1699
|
+
}[i.key];
|
|
1700
|
+
if (!M || a.value.length === 0) return;
|
|
1701
|
+
i.preventDefault();
|
|
1702
|
+
const h = (Math.max(a.value.indexOf(y), 0) + M + a.value.length) % a.value.length, p = a.value[h], j = t.options[p];
|
|
1703
|
+
s.value?.querySelector(`[data-jt-choice-card-index="${p}"]`)?.focus(), j && n(j);
|
|
1458
1704
|
}
|
|
1459
|
-
return (
|
|
1705
|
+
return (i, g) => (c(), _("div", {
|
|
1460
1706
|
ref_key: "groupRef",
|
|
1461
|
-
ref:
|
|
1707
|
+
ref: s,
|
|
1462
1708
|
class: "jt-choice-card-group",
|
|
1463
1709
|
role: "radiogroup",
|
|
1464
1710
|
"aria-label": t.ariaLabel
|
|
1465
1711
|
}, [
|
|
1466
|
-
(
|
|
1467
|
-
key:
|
|
1468
|
-
class:
|
|
1712
|
+
(c(!0), _(Y, null, U(t.options, (y, v) => (c(), _("button", {
|
|
1713
|
+
key: y.value,
|
|
1714
|
+
class: X(["jt-choice-card", { "is-selected": y.value === t.modelValue }]),
|
|
1469
1715
|
type: "button",
|
|
1470
1716
|
role: "radio",
|
|
1471
|
-
"data-jt-choice-card-index":
|
|
1472
|
-
"aria-checked":
|
|
1473
|
-
"aria-disabled":
|
|
1474
|
-
disabled:
|
|
1475
|
-
tabindex:
|
|
1476
|
-
onClick: (
|
|
1477
|
-
onKeydown: (
|
|
1717
|
+
"data-jt-choice-card-index": v,
|
|
1718
|
+
"aria-checked": y.value === t.modelValue ? "true" : "false",
|
|
1719
|
+
"aria-disabled": y.disabled ? "true" : "false",
|
|
1720
|
+
disabled: y.disabled,
|
|
1721
|
+
tabindex: d(y, v),
|
|
1722
|
+
onClick: (M) => n(y),
|
|
1723
|
+
onKeydown: (M) => u(M, y, v)
|
|
1478
1724
|
}, [
|
|
1479
|
-
C(
|
|
1480
|
-
option:
|
|
1481
|
-
selected:
|
|
1725
|
+
C(i.$slots, "option", {
|
|
1726
|
+
option: y,
|
|
1727
|
+
selected: y.value === t.modelValue
|
|
1482
1728
|
}, () => [
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1729
|
+
b("span", X2, [
|
|
1730
|
+
b("span", Q2, F(y.label), 1),
|
|
1731
|
+
y.description ? (c(), _("span", e0, F(y.description), 1)) : z("", !0)
|
|
1486
1732
|
])
|
|
1487
1733
|
], !0)
|
|
1488
|
-
], 42,
|
|
1489
|
-
], 8,
|
|
1734
|
+
], 42, Y2))), 128))
|
|
1735
|
+
], 8, q2));
|
|
1490
1736
|
}
|
|
1491
|
-
}),
|
|
1737
|
+
}), uo = /* @__PURE__ */ O(t0, [["__scopeId", "data-v-897eb9f2"]]), o0 = { class: "jt-descriptions__label" }, a0 = { class: "jt-descriptions__value" }, n0 = /* @__PURE__ */ I({
|
|
1492
1738
|
name: "JtDescriptions",
|
|
1493
1739
|
__name: "index",
|
|
1494
1740
|
props: {
|
|
@@ -1497,50 +1743,50 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1497
1743
|
labelWidth: { default: "auto" },
|
|
1498
1744
|
emptyText: { default: "--" }
|
|
1499
1745
|
},
|
|
1500
|
-
setup(
|
|
1501
|
-
const e =
|
|
1746
|
+
setup(l) {
|
|
1747
|
+
const e = l, t = m(() => e.items.filter((n) => !n.hidden)), o = m(() => ({
|
|
1502
1748
|
"--jt-descriptions-columns": e.columns,
|
|
1503
1749
|
"--jt-descriptions-label-width": typeof e.labelWidth == "number" ? `${e.labelWidth}px` : e.labelWidth
|
|
1504
1750
|
}));
|
|
1505
|
-
function
|
|
1506
|
-
const
|
|
1507
|
-
return Math.min(Math.max(
|
|
1751
|
+
function s(n) {
|
|
1752
|
+
const d = Math.trunc(n ?? 1);
|
|
1753
|
+
return Math.min(Math.max(d, 1), e.columns);
|
|
1508
1754
|
}
|
|
1509
|
-
function
|
|
1755
|
+
function a(n) {
|
|
1510
1756
|
return n != null && n !== "";
|
|
1511
1757
|
}
|
|
1512
|
-
return (n,
|
|
1758
|
+
return (n, d) => (c(), _("dl", {
|
|
1513
1759
|
class: "jt-descriptions",
|
|
1514
|
-
style:
|
|
1760
|
+
style: te(o.value)
|
|
1515
1761
|
}, [
|
|
1516
|
-
(
|
|
1517
|
-
key:
|
|
1762
|
+
(c(!0), _(Y, null, U(t.value, (u) => (c(), _("div", {
|
|
1763
|
+
key: u.key,
|
|
1518
1764
|
class: "jt-descriptions__item",
|
|
1519
|
-
style:
|
|
1765
|
+
style: te({ gridColumn: `span ${s(u.span)}` })
|
|
1520
1766
|
}, [
|
|
1521
|
-
C(n.$slots, "item", { item:
|
|
1522
|
-
|
|
1523
|
-
C(n.$slots, `${
|
|
1524
|
-
|
|
1767
|
+
C(n.$slots, "item", { item: u }, () => [
|
|
1768
|
+
b("dt", o0, [
|
|
1769
|
+
C(n.$slots, `${u.key}-label`, { item: u }, () => [
|
|
1770
|
+
Q(F(u.label), 1)
|
|
1525
1771
|
], !0)
|
|
1526
1772
|
]),
|
|
1527
|
-
|
|
1528
|
-
C(n.$slots, `${
|
|
1529
|
-
|
|
1773
|
+
b("dd", a0, [
|
|
1774
|
+
C(n.$slots, `${u.key}-value`, { item: u }, () => [
|
|
1775
|
+
Q(F(a(u.value) ? u.value : e.emptyText), 1)
|
|
1530
1776
|
], !0)
|
|
1531
1777
|
])
|
|
1532
1778
|
], !0)
|
|
1533
1779
|
], 4))), 128))
|
|
1534
1780
|
], 4));
|
|
1535
1781
|
}
|
|
1536
|
-
}),
|
|
1782
|
+
}), po = /* @__PURE__ */ O(n0, [["__scopeId", "data-v-9cf04a6b"]]), l0 = "data:image/svg+xml,%3csvg%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20width='28'%20height='28'%20rx='14'%20fill='%23F9F9F9'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M19.7286%207.21096C20.0215%206.91825%2020.4963%206.91814%2020.7892%207.21096C21.082%207.50379%2021.0819%207.9786%2020.7892%208.2715L15.0607%2014L20.7892%2019.7285C21.082%2020.0214%2021.0819%2020.4962%2020.7892%2020.7891C20.4963%2021.082%2020.0215%2021.082%2019.7286%2020.7891L14.0001%2015.0606L8.2716%2020.7891C7.97871%2021.082%207.50394%2021.082%207.21105%2020.7891C6.91817%2020.4962%206.91816%2020.0214%207.21105%2019.7285L12.9396%2014L7.21105%208.2715C6.91816%207.97861%206.91816%207.50385%207.21105%207.21096C7.50396%206.91825%207.97876%206.91812%208.2716%207.21096L14.0001%2012.9395L19.7286%207.21096Z'%20fill='%23666666'/%3e%3c/svg%3e", s0 = { class: "jt-dialog__header" }, r0 = { class: "jt-dialog__title" }, i0 = {
|
|
1537
1783
|
key: 0,
|
|
1538
1784
|
class: "jt-dialog__icon",
|
|
1539
1785
|
"aria-hidden": "true"
|
|
1540
|
-
},
|
|
1786
|
+
}, c0 = ["aria-label", "disabled"], d0 = { class: "jt-dialog__body" }, u0 = { class: "jt-dialog__footer" }, mo = /* @__PURE__ */ I({
|
|
1541
1787
|
name: "JtDialog",
|
|
1542
1788
|
__name: "index",
|
|
1543
|
-
props: /* @__PURE__ */
|
|
1789
|
+
props: /* @__PURE__ */ we({
|
|
1544
1790
|
appendToBody: { type: Boolean },
|
|
1545
1791
|
appendTo: {},
|
|
1546
1792
|
beforeClose: {},
|
|
@@ -1571,8 +1817,8 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1571
1817
|
ariaLevel: {},
|
|
1572
1818
|
title: { default: "" },
|
|
1573
1819
|
width: { default: "default" },
|
|
1574
|
-
cancelText: { default:
|
|
1575
|
-
confirmText: { default:
|
|
1820
|
+
cancelText: { default: B("common.取消") },
|
|
1821
|
+
confirmText: { default: B("common.确认") },
|
|
1576
1822
|
confirmLoading: { type: Boolean, default: !1 },
|
|
1577
1823
|
showFooter: { type: Boolean, default: !0 },
|
|
1578
1824
|
footerLayout: { default: "stretch" }
|
|
@@ -1580,9 +1826,9 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1580
1826
|
modelValue: { type: Boolean, default: !1 },
|
|
1581
1827
|
modelModifiers: {}
|
|
1582
1828
|
}),
|
|
1583
|
-
emits: /* @__PURE__ */
|
|
1584
|
-
setup(
|
|
1585
|
-
const t =
|
|
1829
|
+
emits: /* @__PURE__ */ we(["cancel", "confirm", "close"], ["update:modelValue"]),
|
|
1830
|
+
setup(l, { emit: e }) {
|
|
1831
|
+
const t = l, o = ye(l, "modelValue"), s = e, a = {
|
|
1586
1832
|
default: "517px",
|
|
1587
1833
|
form: "642px"
|
|
1588
1834
|
}, n = /* @__PURE__ */ new Set([
|
|
@@ -1593,105 +1839,105 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1593
1839
|
"confirmLoading",
|
|
1594
1840
|
"showFooter",
|
|
1595
1841
|
"footerLayout"
|
|
1596
|
-
]),
|
|
1597
|
-
function
|
|
1598
|
-
return typeof
|
|
1842
|
+
]), d = Ee();
|
|
1843
|
+
function u(h) {
|
|
1844
|
+
return typeof h == "string" && h in a ? a[h] : h;
|
|
1599
1845
|
}
|
|
1600
|
-
const
|
|
1846
|
+
const i = m(() => {
|
|
1601
1847
|
const {
|
|
1602
|
-
title:
|
|
1603
|
-
width:
|
|
1604
|
-
cancelText:
|
|
1605
|
-
confirmText:
|
|
1606
|
-
confirmLoading:
|
|
1607
|
-
showFooter:
|
|
1608
|
-
footerLayout:
|
|
1848
|
+
title: h,
|
|
1849
|
+
width: p,
|
|
1850
|
+
cancelText: j,
|
|
1851
|
+
confirmText: D,
|
|
1852
|
+
confirmLoading: G,
|
|
1853
|
+
showFooter: k,
|
|
1854
|
+
footerLayout: E,
|
|
1609
1855
|
...f
|
|
1610
1856
|
} = t;
|
|
1611
1857
|
return {
|
|
1612
|
-
...
|
|
1858
|
+
...ke(d, n),
|
|
1613
1859
|
...f,
|
|
1614
|
-
width:
|
|
1860
|
+
width: u(p),
|
|
1615
1861
|
showClose: !1
|
|
1616
1862
|
};
|
|
1617
|
-
}),
|
|
1618
|
-
function
|
|
1863
|
+
}), g = m(() => xe(d)), y = m(() => `jt-dialog--footer-${t.footerLayout}`);
|
|
1864
|
+
function v() {
|
|
1619
1865
|
o.value = !1;
|
|
1620
1866
|
}
|
|
1621
|
-
function
|
|
1622
|
-
|
|
1867
|
+
function M() {
|
|
1868
|
+
s("cancel"), v();
|
|
1623
1869
|
}
|
|
1624
|
-
function
|
|
1625
|
-
t.confirmLoading ||
|
|
1870
|
+
function T() {
|
|
1871
|
+
t.confirmLoading || s("confirm");
|
|
1626
1872
|
}
|
|
1627
|
-
return (
|
|
1628
|
-
const
|
|
1629
|
-
return
|
|
1873
|
+
return (h, p) => {
|
|
1874
|
+
const j = vt;
|
|
1875
|
+
return c(), P(j, J({
|
|
1630
1876
|
modelValue: o.value,
|
|
1631
|
-
"onUpdate:modelValue":
|
|
1632
|
-
class: ["jt-dialog",
|
|
1633
|
-
},
|
|
1634
|
-
onClose:
|
|
1635
|
-
}),
|
|
1877
|
+
"onUpdate:modelValue": p[0] || (p[0] = (D) => o.value = D),
|
|
1878
|
+
class: ["jt-dialog", y.value]
|
|
1879
|
+
}, i.value, le(g.value), {
|
|
1880
|
+
onClose: p[1] || (p[1] = (D) => s("close"))
|
|
1881
|
+
}), ie({
|
|
1636
1882
|
header: L(() => [
|
|
1637
|
-
C(
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
C(
|
|
1883
|
+
C(h.$slots, "header", { close: v }, () => [
|
|
1884
|
+
b("header", s0, [
|
|
1885
|
+
b("div", r0, [
|
|
1886
|
+
h.$slots.icon ? (c(), _("span", i0, [
|
|
1887
|
+
C(h.$slots, "icon")
|
|
1642
1888
|
])) : z("", !0),
|
|
1643
|
-
|
|
1889
|
+
b("span", null, F(h.title), 1)
|
|
1644
1890
|
]),
|
|
1645
|
-
|
|
1891
|
+
b("button", {
|
|
1646
1892
|
type: "button",
|
|
1647
1893
|
class: "jt-dialog__close",
|
|
1648
|
-
"aria-label":
|
|
1649
|
-
disabled:
|
|
1650
|
-
onClick:
|
|
1651
|
-
},
|
|
1652
|
-
|
|
1653
|
-
src:
|
|
1894
|
+
"aria-label": V(B)("common.关闭", "关闭"),
|
|
1895
|
+
disabled: h.confirmLoading,
|
|
1896
|
+
onClick: v
|
|
1897
|
+
}, p[2] || (p[2] = [
|
|
1898
|
+
b("img", {
|
|
1899
|
+
src: l0,
|
|
1654
1900
|
alt: ""
|
|
1655
1901
|
}, null, -1)
|
|
1656
|
-
]), 8,
|
|
1902
|
+
]), 8, c0)
|
|
1657
1903
|
])
|
|
1658
1904
|
])
|
|
1659
1905
|
]),
|
|
1660
1906
|
default: L(() => [
|
|
1661
|
-
|
|
1662
|
-
C(
|
|
1907
|
+
b("section", d0, [
|
|
1908
|
+
C(h.$slots, "default")
|
|
1663
1909
|
])
|
|
1664
1910
|
]),
|
|
1665
1911
|
_: 2
|
|
1666
1912
|
}, [
|
|
1667
|
-
|
|
1913
|
+
h.showFooter ? {
|
|
1668
1914
|
name: "footer",
|
|
1669
1915
|
fn: L(() => [
|
|
1670
|
-
|
|
1671
|
-
C(
|
|
1672
|
-
cancel:
|
|
1673
|
-
confirm:
|
|
1916
|
+
b("footer", u0, [
|
|
1917
|
+
C(h.$slots, "footer", {
|
|
1918
|
+
cancel: M,
|
|
1919
|
+
confirm: T
|
|
1674
1920
|
}, () => [
|
|
1675
|
-
|
|
1921
|
+
K(ee, {
|
|
1676
1922
|
size: "middle",
|
|
1677
1923
|
gray: "",
|
|
1678
|
-
disabled:
|
|
1679
|
-
onClick:
|
|
1924
|
+
disabled: h.confirmLoading,
|
|
1925
|
+
onClick: M
|
|
1680
1926
|
}, {
|
|
1681
1927
|
default: L(() => [
|
|
1682
|
-
|
|
1928
|
+
Q(F(h.cancelText), 1)
|
|
1683
1929
|
]),
|
|
1684
1930
|
_: 1
|
|
1685
1931
|
}, 8, ["disabled"]),
|
|
1686
|
-
|
|
1932
|
+
K(ee, {
|
|
1687
1933
|
size: "middle",
|
|
1688
1934
|
type: "primary",
|
|
1689
|
-
loading:
|
|
1690
|
-
disabled:
|
|
1691
|
-
onClick:
|
|
1935
|
+
loading: h.confirmLoading,
|
|
1936
|
+
disabled: h.confirmLoading,
|
|
1937
|
+
onClick: T
|
|
1692
1938
|
}, {
|
|
1693
1939
|
default: L(() => [
|
|
1694
|
-
|
|
1940
|
+
Q(F(h.confirmText), 1)
|
|
1695
1941
|
]),
|
|
1696
1942
|
_: 1
|
|
1697
1943
|
}, 8, ["loading", "disabled"])
|
|
@@ -1703,7 +1949,7 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1703
1949
|
]), 1040, ["modelValue", "class"]);
|
|
1704
1950
|
};
|
|
1705
1951
|
}
|
|
1706
|
-
}),
|
|
1952
|
+
}), p0 = { class: "jt-drawer__body" }, m0 = { class: "jt-drawer__footer" }, f0 = { class: "jt-drawer__footer-actions" }, fo = /* @__PURE__ */ I({
|
|
1707
1953
|
name: "JtDrawer",
|
|
1708
1954
|
__name: "index",
|
|
1709
1955
|
props: {
|
|
@@ -1743,13 +1989,13 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1743
1989
|
title: {},
|
|
1744
1990
|
ariaLevel: {},
|
|
1745
1991
|
size: { default: "default" },
|
|
1746
|
-
cancelText: { default:
|
|
1747
|
-
confirmText: { default:
|
|
1992
|
+
cancelText: { default: B("common.取消") },
|
|
1993
|
+
confirmText: { default: B("common.确认") },
|
|
1748
1994
|
confirmLoading: { type: Boolean, default: !1 },
|
|
1749
1995
|
showFooter: { type: Boolean, default: !0 }
|
|
1750
1996
|
},
|
|
1751
1997
|
emits: ["cancel", "confirm"],
|
|
1752
|
-
setup(
|
|
1998
|
+
setup(l, { emit: e }) {
|
|
1753
1999
|
const t = {
|
|
1754
2000
|
default: "838px",
|
|
1755
2001
|
large: "1242px"
|
|
@@ -1758,65 +2004,65 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1758
2004
|
"confirmText",
|
|
1759
2005
|
"confirmLoading",
|
|
1760
2006
|
"showFooter"
|
|
1761
|
-
]),
|
|
2007
|
+
]), s = l, a = e, n = Ee(), d = m(() => {
|
|
1762
2008
|
const {
|
|
1763
|
-
cancelText:
|
|
1764
|
-
confirmText:
|
|
1765
|
-
confirmLoading:
|
|
1766
|
-
showFooter:
|
|
1767
|
-
size:
|
|
1768
|
-
...
|
|
1769
|
-
} =
|
|
2009
|
+
cancelText: i,
|
|
2010
|
+
confirmText: g,
|
|
2011
|
+
confirmLoading: y,
|
|
2012
|
+
showFooter: v,
|
|
2013
|
+
size: M,
|
|
2014
|
+
...T
|
|
2015
|
+
} = s;
|
|
1770
2016
|
return {
|
|
1771
|
-
...
|
|
1772
|
-
...
|
|
1773
|
-
size: t[
|
|
2017
|
+
...ke(n, o),
|
|
2018
|
+
...T,
|
|
2019
|
+
size: t[M],
|
|
1774
2020
|
withHeader: !1,
|
|
1775
|
-
modalClass: ["jt-drawer-modal",
|
|
2021
|
+
modalClass: ["jt-drawer-modal", T.modalClass].filter(Boolean).join(" ")
|
|
1776
2022
|
};
|
|
1777
|
-
}),
|
|
1778
|
-
return (
|
|
1779
|
-
const
|
|
1780
|
-
return
|
|
2023
|
+
}), u = m(() => xe(n));
|
|
2024
|
+
return (i, g) => {
|
|
2025
|
+
const y = gt;
|
|
2026
|
+
return c(), P(y, J({
|
|
1781
2027
|
class: "jt-drawer",
|
|
1782
2028
|
"lock-model": ""
|
|
1783
|
-
},
|
|
2029
|
+
}, d.value, le(u.value)), ie({
|
|
1784
2030
|
default: L(() => [
|
|
1785
|
-
|
|
1786
|
-
C(
|
|
1787
|
-
C(
|
|
2031
|
+
b("section", p0, [
|
|
2032
|
+
C(i.$slots, "body", {}, () => [
|
|
2033
|
+
C(i.$slots, "default")
|
|
1788
2034
|
])
|
|
1789
2035
|
])
|
|
1790
2036
|
]),
|
|
1791
2037
|
_: 2
|
|
1792
2038
|
}, [
|
|
1793
|
-
|
|
2039
|
+
i.showFooter ? {
|
|
1794
2040
|
name: "footer",
|
|
1795
2041
|
fn: L(() => [
|
|
1796
|
-
|
|
1797
|
-
C(
|
|
1798
|
-
|
|
1799
|
-
|
|
2042
|
+
b("footer", m0, [
|
|
2043
|
+
C(i.$slots, "footer", {}, () => [
|
|
2044
|
+
b("div", f0, [
|
|
2045
|
+
K(ee, {
|
|
1800
2046
|
class: "jt-drawer__footer-button",
|
|
1801
2047
|
size: "middle",
|
|
1802
|
-
disabled:
|
|
1803
|
-
onClick:
|
|
2048
|
+
disabled: i.confirmLoading,
|
|
2049
|
+
onClick: g[0] || (g[0] = (v) => a("cancel"))
|
|
1804
2050
|
}, {
|
|
1805
2051
|
default: L(() => [
|
|
1806
|
-
|
|
2052
|
+
Q(F(i.cancelText), 1)
|
|
1807
2053
|
]),
|
|
1808
2054
|
_: 1
|
|
1809
2055
|
}, 8, ["disabled"]),
|
|
1810
|
-
|
|
2056
|
+
K(ee, {
|
|
1811
2057
|
class: "jt-drawer__footer-button",
|
|
1812
2058
|
size: "middle",
|
|
1813
2059
|
type: "primary",
|
|
1814
|
-
loading:
|
|
1815
|
-
disabled:
|
|
1816
|
-
onClick:
|
|
2060
|
+
loading: i.confirmLoading,
|
|
2061
|
+
disabled: i.confirmLoading,
|
|
2062
|
+
onClick: g[1] || (g[1] = (v) => a("confirm"))
|
|
1817
2063
|
}, {
|
|
1818
2064
|
default: L(() => [
|
|
1819
|
-
|
|
2065
|
+
Q(F(i.confirmText), 1)
|
|
1820
2066
|
]),
|
|
1821
2067
|
_: 1
|
|
1822
2068
|
}, 8, ["loading", "disabled"])
|
|
@@ -1829,45 +2075,7 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1829
2075
|
]), 1040);
|
|
1830
2076
|
};
|
|
1831
2077
|
}
|
|
1832
|
-
}), q0 = "data:image/svg+xml,%3csvg%20width='120'%20height='120'%20viewBox='0%200%20120%20120'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M59.2179%2014.6719C69.4239%2014.6719%2078.836%2018.0239%2086.378%2023.6719H83.3439C81.9079%2023.6719%2080.7439%2024.8359%2080.7439%2026.2719V26.4719C80.7439%2027.9079%2081.9079%2029.0719%2083.3439%2029.0719H92.3799C94.0939%2030.9199%2095.6499%2032.9099%2097.0299%2035.0239H101.32C102.866%2035.0239%20104.12%2036.2779%20104.12%2037.8239V37.9799C104.12%2039.2579%20103.264%2040.3359%20102.094%2040.6719H98.1439C96.3759%2040.6719%2094.9439%2042.1039%2094.9439%2043.8719V44.8719C94.9439%2046.6399%2096.3759%2048.0719%2098.1439%2048.0719H111.724C113.114%2048.4199%20114.144%2049.6779%20114.144%2051.1759V51.3539C114.144%2053.1219%20112.712%2054.5539%20110.944%2054.5539H103.908C104.048%2055.9759%20104.12%2057.4159%20104.12%2058.8719C104.12%2083.2819%2084.0159%20103.072%2059.2179%20103.072C39.3819%20103.072%2022.5499%2090.4119%2016.6079%2072.8519H14.9219C14.2419%2072.8519%2013.6879%2072.2999%2013.6879%2071.6179C13.6879%2071.0979%2014.0099%2070.6539%2014.4659%2070.4719H16.5439C17.9799%2070.4719%2019.1439%2069.3079%2019.1439%2067.8719V67.6719C19.1439%2066.2359%2017.9799%2065.0719%2016.5439%2065.0719H14.7539C14.7519%2065.0619%2014.7499%2065.0499%2014.7499%2065.0399H10.3139C9.17994%2065.0399%208.25995%2064.1199%208.25995%2062.9839C8.25995%2061.8479%209.17994%2060.9279%2010.3139%2060.9279H14.3639C14.3319%2060.2459%2014.3159%2059.5619%2014.3159%2058.8719C14.3159%2052.3459%2015.7519%2046.1499%2018.3319%2040.5739L11.1439%2040.5759C8.05195%2040.5759%205.54395%2038.0679%205.54395%2034.9759V34.6619C5.54395%2031.6779%207.87795%2029.2379%2010.8219%2029.0719H36.1439C37.2479%2029.0719%2038.1439%2028.1759%2038.1439%2027.0719C38.1439%2025.9679%2037.2479%2025.0719%2036.1439%2025.0719H30.2819C30.3319%2025.0319%2030.3799%2024.9899%2030.4279%2024.9499L27.5139%2024.9519C25.4139%2024.9519%2023.7139%2023.2499%2023.7139%2021.1519V20.9379C23.7139%2018.8399%2025.4139%2017.1379%2027.5139%2017.1379H44.3899C49.0319%2015.5399%2054.0219%2014.6719%2059.2179%2014.6719Z'%20fill='%23E60000'%20fill-opacity='0.04'/%3e%3cpath%20d='M35.7505%2077.9514C35.7745%2078.0434%2035.8045%2078.1434%2035.8385%2078.2494L35.9085%2078.5294C35.9325%2078.6234%2035.9445%2078.6994%2035.9445%2078.7574C35.9445%2079.0834%2035.8565%2079.3734%2035.6805%2079.6254C35.5065%2079.8754%2035.2765%2080.0594%2034.9965%2080.1774C34.8905%2080.1894%2034.7805%2080.1954%2034.6625%2080.1954C34.5685%2080.2054%2034.4645%2080.2114%2034.3465%2080.2114H34.0125L31.2745%2080.2474V83.1754C31.2745%2083.6074%2031.2825%2084.0414%2031.3005%2084.4814C31.3185%2084.9194%2031.3385%2085.3134%2031.3605%2085.6634C31.3845%2086.0854%2031.4145%2086.4874%2031.4485%2086.8734H28.9205L28.9725%2086.1894C28.9845%2085.9214%2028.9965%2085.5554%2029.0085%2085.0934C29.0205%2084.6334%2029.0265%2084.0154%2029.0265%2083.2454V80.5634C28.8265%2080.7374%2028.6045%2080.8254%2028.3585%2080.8254C28.1605%2080.8254%2027.9865%2080.7794%2027.8405%2080.6854C27.6945%2080.5914%2027.5745%2080.4634%2027.4805%2080.2994L25.4965%2080.1954C25.1105%2080.1014%2024.7885%2079.9054%2024.5305%2079.6074C24.2725%2079.3094%2024.1445%2078.9554%2024.1445%2078.5474C24.1445%2078.4774%2024.1505%2078.4114%2024.1625%2078.3534C24.1745%2078.2954%2024.1905%2078.2374%2024.2145%2078.1794L24.6545%2077.1614C24.6765%2076.9054%2024.7505%2076.6654%2024.8725%2076.4434C24.9965%2076.2214%2025.1505%2076.0274%2025.3385%2075.8654L28.0945%2070.7634H28.1125C28.3345%2070.3554%2028.5985%2070.0034%2028.9025%2069.7114C29.2065%2069.4194%2029.6005%2069.2734%2030.0805%2069.2734C30.5005%2069.2734%2030.8785%2069.3854%2031.2125%2069.6074C31.5465%2069.8294%2031.7945%2070.1214%2031.9585%2070.4834L34.1705%2074.8134C34.5685%2074.9534%2034.8965%2075.1994%2035.1545%2075.5494C35.4125%2075.8994%2035.5405%2076.3034%2035.5405%2076.7594C35.5405%2076.9454%2035.5105%2077.1434%2035.4525%2077.3554L35.7505%2077.9514Z'%20fill='url(%23paint0_linear_2264_15691)'/%3e%3cpath%20d='M97.7505%2077.9514C97.7745%2078.0434%2097.8045%2078.1434%2097.8385%2078.2494L97.9085%2078.5294C97.9325%2078.6234%2097.9445%2078.6994%2097.9445%2078.7574C97.9445%2079.0834%2097.8565%2079.3734%2097.6805%2079.6254C97.5065%2079.8754%2097.2765%2080.0594%2096.9965%2080.1774C96.8905%2080.1894%2096.7805%2080.1954%2096.6625%2080.1954C96.5685%2080.2054%2096.4645%2080.2114%2096.3465%2080.2114H96.0125L93.2745%2080.2474V83.1754C93.2745%2083.6074%2093.2825%2084.0414%2093.3005%2084.4814C93.3185%2084.9194%2093.3385%2085.3134%2093.3605%2085.6634C93.3845%2086.0854%2093.4145%2086.4874%2093.4485%2086.8734H90.9205L90.9725%2086.1894C90.9845%2085.9214%2090.9965%2085.5554%2091.0085%2085.0934C91.0205%2084.6334%2091.0265%2084.0154%2091.0265%2083.2454V80.5634C90.8265%2080.7374%2090.6045%2080.8254%2090.3585%2080.8254C90.1605%2080.8254%2089.9865%2080.7794%2089.8405%2080.6854C89.6945%2080.5914%2089.5745%2080.4634%2089.4805%2080.2994L87.4965%2080.1954C87.1105%2080.1014%2086.7885%2079.9054%2086.5305%2079.6074C86.2725%2079.3094%2086.1445%2078.9554%2086.1445%2078.5474C86.1445%2078.4774%2086.1505%2078.4114%2086.1625%2078.3534C86.1745%2078.2954%2086.1905%2078.2374%2086.2145%2078.1794L86.6545%2077.1614C86.6765%2076.9054%2086.7505%2076.6654%2086.8725%2076.4434C86.9965%2076.2214%2087.1505%2076.0274%2087.3385%2075.8654L90.0945%2070.7634H90.1125C90.3345%2070.3554%2090.5985%2070.0034%2090.9025%2069.7114C91.2065%2069.4194%2091.6005%2069.2734%2092.0805%2069.2734C92.5005%2069.2734%2092.8785%2069.3854%2093.2125%2069.6074C93.5465%2069.8294%2093.7945%2070.1214%2093.9585%2070.4834L96.1705%2074.8134C96.5685%2074.9534%2096.8965%2075.1994%2097.1545%2075.5494C97.4125%2075.8994%2097.5405%2076.3034%2097.5405%2076.7594C97.5405%2076.9454%2097.5105%2077.1434%2097.4525%2077.3554L97.7505%2077.9514Z'%20fill='url(%23paint1_linear_2264_15691)'/%3e%3cpath%20d='M90.3947%2079.8743C90.4127%2079.9483%2090.4347%2080.0243%2090.4627%2080.1083L90.5167%2080.3283C90.5347%2080.4003%2090.5447%2080.4603%2090.5447%2080.5063C90.5447%2080.7623%2090.4767%2080.9903%2090.3387%2081.1863C90.2027%2081.3843%2090.0247%2081.5283%2089.8047%2081.6203C89.7227%2081.6283%2089.6367%2081.6343%2089.5447%2081.6343C89.4727%2081.6423%2089.3907%2081.6463%2089.2987%2081.6463H89.0387L86.9027%2081.6743V83.9703C86.9027%2084.3083%2086.9107%2084.6503%2086.9227%2084.9943C86.9367%2085.3383%2086.9527%2085.6463%2086.9707%2085.9223C86.9907%2086.2523%2087.0127%2086.5683%2087.0407%2086.8703H85.0687L85.1087%2086.3343C85.1187%2086.1243%2085.1287%2085.8363%2085.1367%2085.4743C85.1467%2085.1123%2085.1507%2084.6303%2085.1507%2084.0243V81.9223C84.9947%2082.0603%2084.8227%2082.1283%2084.6307%2082.1283C84.4747%2082.1283%2084.3407%2082.0923%2084.2267%2082.0183C84.1127%2081.9443%2084.0187%2081.8443%2083.9467%2081.7163L82.3987%2081.6343C82.0967%2081.5603%2081.8467%2081.4063%2081.6467%2081.1723C81.4447%2080.9403%2081.3447%2080.6623%2081.3447%2080.3423C81.3447%2080.2863%2081.3487%2080.2363%2081.3587%2080.1903C81.3667%2080.1443%2081.3807%2080.0983%2081.3987%2080.0523L81.7427%2079.2563C81.7607%2079.0543%2081.8167%2078.8663%2081.9127%2078.6923C82.0087%2078.5183%2082.1287%2078.3663%2082.2747%2078.2383L84.4247%2074.2383H84.4387C84.6127%2073.9183%2084.8167%2073.6423%2085.0547%2073.4143C85.2927%2073.1843%2085.5987%2073.0703%2085.9727%2073.0703C86.3007%2073.0703%2086.5947%2073.1583%2086.8547%2073.3323C87.1147%2073.5063%2087.3087%2073.7343%2087.4367%2074.0183L89.1627%2077.4143C89.4727%2077.5243%2089.7287%2077.7163%2089.9287%2077.9903C90.1287%2078.2663%2090.2307%2078.5823%2090.2307%2078.9403C90.2307%2079.0863%2090.2067%2079.2423%2090.1607%2079.4063L90.3947%2079.8743Z'%20fill='url(%23paint2_linear_2264_15691)'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M56.6437%2082.2734C68.9198%2082.2734%2079.9738%2083.2754%2087.7018%2084.8734C95.2598%2084.9254%20101.344%2087.1874%20101.344%2089.9734C101.344%2092.1814%2097.5218%2094.0614%2092.1738%2094.7714C90.8978%2095.1474%2089.4598%2095.5034%2087.8818%2095.8354C87.9238%2096.0454%2087.9437%2096.2594%2087.9437%2096.4734C87.9437%20101.333%2077.3778%20105.273%2064.3438%20105.273C52.6178%20105.273%2042.8878%20102.083%2041.0538%2097.9054C25.4078%2096.7174%2014.3438%2093.7934%2014.3438%2090.3734C14.3438%2085.8994%2033.2818%2082.2734%2056.6437%2082.2734Z'%20fill='%23FFD4D4'/%3e%3cpath%20d='M58.0273%2082.2812C64.5826%2082.3216%2070.7608%2082.6467%2076.2344%2083.1953L97.126%2093.6328C95.7272%2094.1312%2094.044%2094.5242%2092.1738%2094.7725C90.8979%2095.1484%2089.4598%2095.504%2087.8818%2095.8359C87.9238%2096.0459%2087.9443%2096.2606%2087.9443%2096.4746C87.9439%20100.708%2079.9257%20104.242%2069.2432%20105.083L54.6758%2086.2764L58.0273%2082.2812Z'%20fill='url(%23paint3_linear_2264_15691)'%20fill-opacity='0.5'/%3e%3cpath%20d='M77.7439%2067.8154L57.5439%2065.2734V75.3514L77.4219%2077.6734L77.7439%2067.8154Z'%20fill='%23EB7171'/%3e%3cpath%20d='M41.5439%2068.5614L57.5419%2065.2734L57.5439%2076.6054L41.5439%2079.8734V68.5614Z'%20fill='%23FF9D9D'/%3e%3cpath%20d='M60.3438%2072.9106L77.5437%2068.4766V89.4426L60.3438%2093.8766V72.9106Z'%20fill='%23FFAFAF'/%3e%3cpath%20d='M41.7441%2069.0703L60.5441%2072.8203L60.4341%2093.8703L41.7441%2089.6943V69.0703Z'%20fill='%23FF9D9D'/%3e%3cpath%20d='M60.5439%2072.911L41.5779%2068.875L37.5439%2076.309L56.8319%2080.875L60.5439%2072.911Z'%20fill='%23FFAFAF'/%3e%3cpath%20d='M60.5439%2072.8143L77.7619%2068.0703L82.1439%2075.4523L65.6539%2080.8703L60.5439%2072.8143Z'%20fill='%23FF9D9D'/%3e%3cpath%20d='M42.1962%2038.2656C37.3122%2045.2576%2039.3862%2050.4756%2048.4182%2053.9216'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M40.5166%2052.7422C42.1686%2054.7962%2043.6706%2055.8222%2045.0206%2055.8222'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M80.3901%2029.3047C80.6101%2035.5207%2074.7721%2039.8707%2062.8701%2042.3607'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M81.9779%2037.125C79.0579%2039.573%2076.7739%2040.797%2075.1279%2040.797'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M77.1446%2051.3323C65.6526%2049.9443%2058.4286%2052.9043%2055.4766%2060.2123'%20stroke='%23FF9696'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M41.9277%2043.0703C48.7157%2044.1343%2051.4957%2046.0123%2050.2637%2048.7063C49.0317%2051.4003%2046.2537%2049.5203%2041.9277%2043.0703Z'%20fill='url(%23paint4_linear_2264_15691)'/%3e%3cpath%20d='M66.3105%2037.1274C67.3045%2033.6114%2069.9005%2032.4394%2074.0985%2033.6114C73.9185%2035.2254%2071.3225%2036.3974%2066.3105%2037.1274Z'%20fill='url(%23paint5_linear_2264_15691)'/%3e%3cpath%20d='M57.2061%2062.8159C60.3061%2056.7859%2064.6381%2055.0679%2070.2041%2057.6639C67.6081%2062.4659%2063.2761%2064.1839%2057.2061%2062.8159Z'%20fill='url(%23paint6_linear_2264_15691)'/%3e%3cpath%20d='M65.3438%2038.9639C66.1038%2037.3359%2067.1038%2036.2919%2068.3438%2035.8359'%20stroke='%23FFA9A9'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M48.418%2047.9062C49.838%2048.2363%2050.548%2049.6023%2050.548%2052.0043'%20stroke='%23FF9898'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cpath%20d='M55.876%2064.7395C57.028%2062.5395%2058.63%2061.4375%2060.676%2061.4375'%20stroke='%23FF7676'%20stroke-width='0.326087'%20stroke-linecap='round'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_2264_15691'%20x1='35.0617'%20y1='86.6622'%20x2='28.9562'%20y2='86.7572'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFC3CE'%20stop-opacity='0'/%3e%3cstop%20offset='1'%20stop-color='%23FFC3C3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint1_linear_2264_15691'%20x1='97.0617'%20y1='86.6622'%20x2='90.9562'%20y2='86.7572'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFC3CE'%20stop-opacity='0'/%3e%3cstop%20offset='1'%20stop-color='%23FFC3C3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint2_linear_2264_15691'%20x1='89.8564'%20y1='86.7047'%20x2='85.0962'%20y2='86.7783'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFC3CE'%20stop-opacity='0'/%3e%3cstop%20offset='1'%20stop-color='%23FFC3C3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint3_linear_2264_15691'%20x1='78.1565'%20y1='97.3596'%20x2='78.1565'%20y2='76.5197'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23E60000'%20stop-opacity='0.1'/%3e%3cstop%20offset='1'%20stop-color='%23E60000'%20stop-opacity='0.2'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint4_linear_2264_15691'%20x1='41.809'%20y1='42.97'%20x2='51.3219'%20y2='46.8844'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FF6666'/%3e%3cstop%20offset='1'%20stop-color='%23FFBEBE'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint5_linear_2264_15691'%20x1='66.9659'%20y1='35.6311'%20x2='72.8991'%20y2='32.1971'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%23FFD6D6'/%3e%3cstop%20offset='1'%20stop-color='%23FF7B7B'/%3e%3c/linearGradient%3e%3clinearGradient%20id='paint6_linear_2264_15691'%20x1='58.2999'%20y1='60.7509'%20x2='68.158'%20y2='54.896'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='1.19209e-07'%20stop-color='%23FF9D9D'/%3e%3cstop%20offset='1'%20stop-color='%23EB7171'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", Y0 = ["aria-label"], X0 = ["src"], Q0 = { class: "jt-empty-state__description" }, et = {
|
|
1833
|
-
key: 0,
|
|
1834
|
-
class: "jt-empty-state__actions"
|
|
1835
|
-
}, tt = /* @__PURE__ */ I({
|
|
1836
|
-
name: "JtEmptyState",
|
|
1837
|
-
__name: "index",
|
|
1838
|
-
props: {
|
|
1839
|
-
description: { default: k("common.暂无数据", "暂无数据") },
|
|
1840
|
-
imageSize: { default: 120 }
|
|
1841
|
-
},
|
|
1842
|
-
setup(d) {
|
|
1843
|
-
const e = d, t = m(() => ({
|
|
1844
|
-
"--jt-empty-state-image-size": typeof e.imageSize == "number" ? `${e.imageSize}px` : e.imageSize
|
|
1845
|
-
}));
|
|
1846
|
-
return (o, r) => (p(), b("section", {
|
|
1847
|
-
class: "jt-empty-state",
|
|
1848
|
-
role: "status",
|
|
1849
|
-
"aria-label": o.description,
|
|
1850
|
-
style: ee(t.value)
|
|
1851
|
-
}, [
|
|
1852
|
-
y("div", {
|
|
1853
|
-
class: Y(["jt-empty-state__image", { "jt-empty-state__image--default": !o.$slots.image }])
|
|
1854
|
-
}, [
|
|
1855
|
-
C(o.$slots, "image", {}, () => [
|
|
1856
|
-
y("img", {
|
|
1857
|
-
src: P(q0),
|
|
1858
|
-
alt: ""
|
|
1859
|
-
}, null, 8, X0)
|
|
1860
|
-
], !0)
|
|
1861
|
-
], 2),
|
|
1862
|
-
C(o.$slots, "default", {}, () => [
|
|
1863
|
-
y("p", Q0, T(o.description), 1)
|
|
1864
|
-
], !0),
|
|
1865
|
-
o.$slots.actions ? (p(), b("div", et, [
|
|
1866
|
-
C(o.$slots, "actions", {}, void 0, !0)
|
|
1867
|
-
])) : z("", !0)
|
|
1868
|
-
], 12, Y0));
|
|
1869
|
-
}
|
|
1870
|
-
}), eo = /* @__PURE__ */ D(tt, [["__scopeId", "data-v-bb00a314"]]), ot = /* @__PURE__ */ I({
|
|
2078
|
+
}), h0 = /* @__PURE__ */ I({
|
|
1871
2079
|
name: "JtOverflowTooltipText",
|
|
1872
2080
|
__name: "index",
|
|
1873
2081
|
props: {
|
|
@@ -1880,46 +2088,46 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1880
2088
|
textClass: { default: "jt-overflow-tooltip-text--default" },
|
|
1881
2089
|
textStyle: {}
|
|
1882
2090
|
},
|
|
1883
|
-
setup(
|
|
1884
|
-
const e =
|
|
1885
|
-
let
|
|
1886
|
-
const
|
|
2091
|
+
setup(l) {
|
|
2092
|
+
const e = l, t = R(null), o = R(!1);
|
|
2093
|
+
let s = null;
|
|
2094
|
+
const a = m(() => ({
|
|
1887
2095
|
maxWidth: typeof e.maxWidth == "number" ? `${e.maxWidth}px` : e.maxWidth,
|
|
1888
2096
|
...e.textStyle
|
|
1889
2097
|
}));
|
|
1890
2098
|
function n() {
|
|
1891
|
-
const
|
|
1892
|
-
|
|
1893
|
-
}
|
|
1894
|
-
return
|
|
1895
|
-
await
|
|
1896
|
-
}),
|
|
1897
|
-
|
|
1898
|
-
}),
|
|
2099
|
+
const d = t.value;
|
|
2100
|
+
d && (o.value = d.scrollWidth > d.clientWidth || d.scrollHeight > d.clientHeight);
|
|
2101
|
+
}
|
|
2102
|
+
return Ne(async () => {
|
|
2103
|
+
await be(), n(), !(!window.ResizeObserver || !t.value) && (s = new ResizeObserver(n), s.observe(t.value));
|
|
2104
|
+
}), ze(() => {
|
|
2105
|
+
s?.disconnect();
|
|
2106
|
+
}), ue(
|
|
1899
2107
|
() => [e.content, e.maxWidth, e.textStyle],
|
|
1900
2108
|
async () => {
|
|
1901
|
-
await
|
|
2109
|
+
await be(), n();
|
|
1902
2110
|
},
|
|
1903
2111
|
{ deep: !0 }
|
|
1904
|
-
), (
|
|
1905
|
-
const
|
|
1906
|
-
return
|
|
2112
|
+
), (d, u) => {
|
|
2113
|
+
const i = _t;
|
|
2114
|
+
return c(), P(i, J({
|
|
1907
2115
|
disabled: !o.value || !e.content,
|
|
1908
2116
|
content: e.content,
|
|
1909
2117
|
placement: e.placement,
|
|
1910
2118
|
effect: e.effect,
|
|
1911
2119
|
"popper-class": e.popperClass,
|
|
1912
2120
|
"show-arrow": !1
|
|
1913
|
-
},
|
|
2121
|
+
}, d.$attrs), {
|
|
1914
2122
|
default: L(() => [
|
|
1915
|
-
(
|
|
2123
|
+
(c(), P($e(e.tag), {
|
|
1916
2124
|
ref_key: "textRef",
|
|
1917
2125
|
ref: t,
|
|
1918
|
-
class:
|
|
1919
|
-
style:
|
|
2126
|
+
class: X(["jt-overflow-tooltip-text", e.textClass]),
|
|
2127
|
+
style: te(a.value)
|
|
1920
2128
|
}, {
|
|
1921
2129
|
default: L(() => [
|
|
1922
|
-
|
|
2130
|
+
Q(F(e.content), 1)
|
|
1923
2131
|
]),
|
|
1924
2132
|
_: 1
|
|
1925
2133
|
}, 8, ["class", "style"]))
|
|
@@ -1928,101 +2136,101 @@ const g0 = ["aria-label"], _0 = ["src"], C0 = /* @__PURE__ */ I({
|
|
|
1928
2136
|
}, 16, ["disabled", "content", "placement", "effect", "popper-class"]);
|
|
1929
2137
|
};
|
|
1930
2138
|
}
|
|
1931
|
-
}),
|
|
2139
|
+
}), ho = /* @__PURE__ */ O(h0, [["__scopeId", "data-v-3e8ed286"]]), v0 = "data:image/svg+xml,%3csvg%20width='22'%20height='22'%20viewBox='0%200%2022%2022'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M11%202C6.04082%202%202%206.04082%202%2011C2%2015.9592%206.04082%2020%2011%2020C15.9592%2020%2020%2015.9592%2020%2011C20%206.04082%2015.9592%202%2011%202ZM10.2653%207.78572C10.2653%207.41837%2010.5408%207.05102%2011%207.05102C11.4592%207.05102%2011.7347%207.32653%2011.7347%207.78572V11.4592C11.7347%2011.8265%2011.4592%2012.1939%2011%2012.1939C10.5408%2012.1939%2010.2653%2011.9184%2010.2653%2011.4592V7.78572ZM11%2015.1327C10.5408%2015.1327%2010.0816%2014.6735%2010.0816%2014.2143C10.0816%2013.7551%2010.5408%2013.2959%2011%2013.2959C11.4592%2013.2959%2011.9184%2013.7551%2011.9184%2014.2143C11.9184%2014.6735%2011.4592%2015.1327%2011%2015.1327Z'%20fill='%23E60000'/%3e%3c/svg%3e", g0 = "data:image/svg+xml,%3csvg%20width='28'%20height='28'%20viewBox='0%200%2028%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20width='28'%20height='28'%20rx='14'%20fill='%23F9F9F9'/%3e%3cpath%20d='M19.7294%207.21079C20.0223%206.91808%2020.4971%206.91797%2020.79%207.21079C21.0828%207.50362%2021.0827%207.97843%2020.79%208.27134L15.0615%2013.9999L20.79%2019.7284C21.0828%2020.0212%2021.0827%2020.496%2020.79%2020.7889C20.4971%2021.0818%2020.0223%2021.0818%2019.7294%2020.7889L14.0009%2015.0604L8.2724%2020.7889C7.97952%2021.0818%207.50475%2021.0818%207.21186%2020.7889C6.91898%2020.496%206.91897%2020.0213%207.21186%2019.7284L12.9404%2013.9999L7.21186%208.27134C6.91896%207.97844%206.91896%207.50368%207.21186%207.21079C7.50477%206.91808%207.97957%206.91796%208.2724%207.21079L14.0009%2012.9393L19.7294%207.21079Z'%20fill='%23666666'/%3e%3c/svg%3e", _0 = { class: "jt-confirm-dialog-panel" }, y0 = { class: "jt-confirm-dialog-panel__header" }, C0 = { class: "jt-confirm-dialog-panel__title" }, b0 = { class: "jt-confirm-dialog__body" }, w0 = { class: "jt-confirm-dialog__desc" }, L0 = { class: "jt-confirm-dialog__footer" }, $0 = /* @__PURE__ */ I({
|
|
1932
2140
|
name: "JtConfirmDialog",
|
|
1933
2141
|
__name: "index",
|
|
1934
2142
|
props: {
|
|
1935
|
-
title: { default:
|
|
1936
|
-
desc: { default:
|
|
1937
|
-
confirmText: { default:
|
|
1938
|
-
cancelText: { default:
|
|
2143
|
+
title: { default: B("common.数据启用提示", "数据启用提示") },
|
|
2144
|
+
desc: { default: B("common.点击确定后,将启用该条数据", "点击确定后,将启用该条数据") },
|
|
2145
|
+
confirmText: { default: B("common.确定", "确 定") },
|
|
2146
|
+
cancelText: { default: B("common.取 消", "取 消") },
|
|
1939
2147
|
confirmLoading: { type: Boolean, default: !1 }
|
|
1940
2148
|
},
|
|
1941
2149
|
emits: ["close", "confirm"],
|
|
1942
|
-
setup(
|
|
2150
|
+
setup(l, { emit: e }) {
|
|
1943
2151
|
const t = e;
|
|
1944
|
-
return (o,
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
2152
|
+
return (o, s) => (c(), _("section", _0, [
|
|
2153
|
+
b("header", y0, [
|
|
2154
|
+
b("div", C0, [
|
|
2155
|
+
s[3] || (s[3] = b("img", {
|
|
1948
2156
|
class: "jt-confirm-dialog-panel__icon",
|
|
1949
|
-
src:
|
|
2157
|
+
src: v0,
|
|
1950
2158
|
alt: ""
|
|
1951
2159
|
}, null, -1)),
|
|
1952
|
-
|
|
2160
|
+
b("span", null, F(o.title), 1)
|
|
1953
2161
|
]),
|
|
1954
|
-
|
|
1955
|
-
onClick:
|
|
2162
|
+
b("img", {
|
|
2163
|
+
onClick: s[0] || (s[0] = (a) => t("close")),
|
|
1956
2164
|
class: "jt-confirm-dialog-panel__close jt-confirm-dialog-panel__close-icon",
|
|
1957
|
-
src:
|
|
2165
|
+
src: g0,
|
|
1958
2166
|
alt: ""
|
|
1959
2167
|
})
|
|
1960
2168
|
]),
|
|
1961
|
-
|
|
2169
|
+
b("div", b0, [
|
|
1962
2170
|
C(o.$slots, "default", {}, () => [
|
|
1963
|
-
|
|
2171
|
+
b("p", w0, F(o.desc), 1)
|
|
1964
2172
|
], !0)
|
|
1965
2173
|
]),
|
|
1966
|
-
|
|
1967
|
-
|
|
2174
|
+
b("footer", L0, [
|
|
2175
|
+
K(ee, {
|
|
1968
2176
|
class: "jt-confirm-dialog__button jt-confirm-dialog__button--cancel",
|
|
1969
2177
|
size: "middle",
|
|
1970
2178
|
gray: "",
|
|
1971
2179
|
disabled: o.confirmLoading,
|
|
1972
|
-
onClick:
|
|
2180
|
+
onClick: s[1] || (s[1] = (a) => t("close"))
|
|
1973
2181
|
}, {
|
|
1974
2182
|
default: L(() => [
|
|
1975
|
-
|
|
2183
|
+
Q(F(o.cancelText), 1)
|
|
1976
2184
|
]),
|
|
1977
2185
|
_: 1
|
|
1978
2186
|
}, 8, ["disabled"]),
|
|
1979
|
-
|
|
2187
|
+
K(ee, {
|
|
1980
2188
|
class: "jt-confirm-dialog__button jt-confirm-dialog__button--confirm",
|
|
1981
2189
|
size: "middle",
|
|
1982
2190
|
type: "primary",
|
|
1983
2191
|
loading: o.confirmLoading,
|
|
1984
2192
|
disabled: o.confirmLoading,
|
|
1985
|
-
onClick:
|
|
2193
|
+
onClick: s[2] || (s[2] = (a) => t("confirm"))
|
|
1986
2194
|
}, {
|
|
1987
2195
|
default: L(() => [
|
|
1988
|
-
|
|
2196
|
+
Q(F(o.confirmText), 1)
|
|
1989
2197
|
]),
|
|
1990
2198
|
_: 1
|
|
1991
2199
|
}, 8, ["loading", "disabled"])
|
|
1992
2200
|
])
|
|
1993
2201
|
]));
|
|
1994
2202
|
}
|
|
1995
|
-
}),
|
|
1996
|
-
title:
|
|
1997
|
-
desc:
|
|
1998
|
-
confirmText:
|
|
1999
|
-
cancelText:
|
|
2203
|
+
}), x0 = /* @__PURE__ */ O($0, [["__scopeId", "data-v-e320b303"]]), k0 = {
|
|
2204
|
+
title: B("common.数据启用提示", "数据启用提示"),
|
|
2205
|
+
desc: B("common.点击确定后,将启用该条数据", "点击确定后,将启用该条数据"),
|
|
2206
|
+
confirmText: B("common.确认"),
|
|
2207
|
+
cancelText: B("common.取消")
|
|
2000
2208
|
};
|
|
2001
|
-
function
|
|
2002
|
-
const e = { ...
|
|
2003
|
-
return
|
|
2209
|
+
function vo(l = {}) {
|
|
2210
|
+
const e = { ...k0, ...l };
|
|
2211
|
+
return xt({
|
|
2004
2212
|
message: ({ confirm: t, cancel: o }) => {
|
|
2005
|
-
const
|
|
2213
|
+
const s = I({
|
|
2006
2214
|
name: "JtConfirmDialogMessage",
|
|
2007
2215
|
setup() {
|
|
2008
|
-
const
|
|
2009
|
-
if (!
|
|
2010
|
-
|
|
2216
|
+
const a = R(!1), n = async () => {
|
|
2217
|
+
if (!a.value) {
|
|
2218
|
+
a.value = !0;
|
|
2011
2219
|
try {
|
|
2012
2220
|
await e.onConfirm?.(), t();
|
|
2013
2221
|
} finally {
|
|
2014
|
-
|
|
2222
|
+
a.value = !1;
|
|
2015
2223
|
}
|
|
2016
2224
|
}
|
|
2017
2225
|
};
|
|
2018
|
-
return () =>
|
|
2019
|
-
|
|
2226
|
+
return () => Oe(
|
|
2227
|
+
x0,
|
|
2020
2228
|
{
|
|
2021
2229
|
title: e.title,
|
|
2022
2230
|
desc: e.desc,
|
|
2023
2231
|
confirmText: e.confirmText,
|
|
2024
2232
|
cancelText: e.cancelText,
|
|
2025
|
-
confirmLoading:
|
|
2233
|
+
confirmLoading: a.value,
|
|
2026
2234
|
onClose: o,
|
|
2027
2235
|
onConfirm: n
|
|
2028
2236
|
},
|
|
@@ -2030,7 +2238,7 @@ function oo(d = {}) {
|
|
|
2030
2238
|
);
|
|
2031
2239
|
}
|
|
2032
2240
|
});
|
|
2033
|
-
return
|
|
2241
|
+
return Oe(s);
|
|
2034
2242
|
},
|
|
2035
2243
|
customClass: "jt-confirm-message-box-host",
|
|
2036
2244
|
customStyle: {
|
|
@@ -2045,36 +2253,38 @@ function oo(d = {}) {
|
|
|
2045
2253
|
throw e.onClose?.(), Error("close 用户手动关闭");
|
|
2046
2254
|
});
|
|
2047
2255
|
}
|
|
2048
|
-
const
|
|
2256
|
+
const B0 = ["aria-label"], j0 = { class: "jt-status-stamp__band" }, S0 = /* @__PURE__ */ I({
|
|
2049
2257
|
name: "JtStatusStamp",
|
|
2050
2258
|
__name: "index",
|
|
2051
2259
|
props: {
|
|
2052
2260
|
status: {}
|
|
2053
2261
|
},
|
|
2054
|
-
setup(
|
|
2055
|
-
const e =
|
|
2056
|
-
"pending-start":
|
|
2057
|
-
processing:
|
|
2058
|
-
approved:
|
|
2059
|
-
returned:
|
|
2060
|
-
rejected:
|
|
2262
|
+
setup(l) {
|
|
2263
|
+
const e = l, t = m(() => ({
|
|
2264
|
+
"pending-start": B("common.待发起", "待发起"),
|
|
2265
|
+
processing: B("common.审批中", "审批中"),
|
|
2266
|
+
approved: B("common.已通过", "已通过"),
|
|
2267
|
+
returned: B("common.已退回", "已退回"),
|
|
2268
|
+
rejected: B("common.已拒绝", "已拒绝")
|
|
2061
2269
|
})[e.status]);
|
|
2062
|
-
return (o,
|
|
2063
|
-
class:
|
|
2270
|
+
return (o, s) => (c(), _("div", {
|
|
2271
|
+
class: X(["jt-status-stamp", `jt-status-stamp--${o.status}`]),
|
|
2064
2272
|
role: "status",
|
|
2065
2273
|
"aria-label": t.value
|
|
2066
2274
|
}, [
|
|
2067
|
-
|
|
2275
|
+
b("span", j0, [
|
|
2068
2276
|
C(o.$slots, "default", {}, () => [
|
|
2069
|
-
|
|
2277
|
+
Q(F(t.value), 1)
|
|
2070
2278
|
], !0)
|
|
2071
2279
|
])
|
|
2072
|
-
], 10,
|
|
2280
|
+
], 10, B0));
|
|
2073
2281
|
}
|
|
2074
|
-
}),
|
|
2282
|
+
}), go = /* @__PURE__ */ O(S0, [["__scopeId", "data-v-887e29c4"]]), Xe = Symbol("JtTabContext"), Qe = Symbol(
|
|
2283
|
+
"JtTabRovingContext"
|
|
2284
|
+
), T0 = {
|
|
2075
2285
|
key: 0,
|
|
2076
2286
|
class: "jt-tab__extra"
|
|
2077
|
-
},
|
|
2287
|
+
}, M0 = 4, F0 = /* @__PURE__ */ I({
|
|
2078
2288
|
name: "JtTab",
|
|
2079
2289
|
__name: "index",
|
|
2080
2290
|
props: {
|
|
@@ -2084,153 +2294,171 @@ const ft = ["aria-label"], ht = { class: "jt-status-stamp__band" }, vt = /* @__P
|
|
|
2084
2294
|
inset: { type: Boolean }
|
|
2085
2295
|
},
|
|
2086
2296
|
emits: ["update:modelValue", "change"],
|
|
2087
|
-
setup(
|
|
2088
|
-
const t =
|
|
2297
|
+
setup(l, { emit: e }) {
|
|
2298
|
+
const t = l, o = e, s = ce(), a = m(() => t.modelValue), n = m(() => t.type), d = m(() => t.size), u = Lt([]), i = m(
|
|
2299
|
+
() => u.find(($) => !$.getDisabled())?.getValue()
|
|
2300
|
+
), g = R(), y = R(!1), v = R(!1), M = m(() => [
|
|
2089
2301
|
`jt-tab--type-${t.type}`,
|
|
2090
2302
|
`jt-tab--size-${t.size}`,
|
|
2091
2303
|
{ "jt-tab--inset": t.type === "line" && t.inset !== !1 }
|
|
2092
2304
|
]);
|
|
2093
|
-
let
|
|
2094
|
-
function
|
|
2095
|
-
|
|
2305
|
+
let T = 0, h = 0, p = !1, j = null, D;
|
|
2306
|
+
function G($) {
|
|
2307
|
+
$ !== t.modelValue && (o("update:modelValue", $), o("change", $));
|
|
2308
|
+
}
|
|
2309
|
+
function k($, Z) {
|
|
2310
|
+
const q = { getValue: $, getDisabled: Z };
|
|
2311
|
+
return u.push(q), () => {
|
|
2312
|
+
const oe = u.indexOf(q);
|
|
2313
|
+
oe >= 0 && u.splice(oe, 1);
|
|
2314
|
+
};
|
|
2315
|
+
}
|
|
2316
|
+
function E($) {
|
|
2317
|
+
return i.value === $;
|
|
2096
2318
|
}
|
|
2097
|
-
|
|
2098
|
-
modelValue:
|
|
2319
|
+
Je(Xe, {
|
|
2320
|
+
modelValue: a,
|
|
2099
2321
|
type: n,
|
|
2100
|
-
size:
|
|
2101
|
-
activate:
|
|
2322
|
+
size: d,
|
|
2323
|
+
activate: G
|
|
2324
|
+
}), Je(Qe, {
|
|
2325
|
+
registerItem: k,
|
|
2326
|
+
isFirstEnabled: E
|
|
2102
2327
|
});
|
|
2103
|
-
function
|
|
2104
|
-
const
|
|
2105
|
-
return
|
|
2106
|
-
}
|
|
2107
|
-
function
|
|
2108
|
-
const
|
|
2109
|
-
if (!
|
|
2110
|
-
const
|
|
2328
|
+
function f() {
|
|
2329
|
+
const $ = g.value, Z = !!($ && $.scrollWidth > $.clientWidth);
|
|
2330
|
+
return y.value = Z, Z;
|
|
2331
|
+
}
|
|
2332
|
+
function x($) {
|
|
2333
|
+
const Z = g.value;
|
|
2334
|
+
if (!Z || !f()) return !1;
|
|
2335
|
+
const q = Z.querySelector(
|
|
2111
2336
|
'[data-jt-tab-item="true"][aria-selected="true"]'
|
|
2112
2337
|
);
|
|
2113
|
-
if (!
|
|
2114
|
-
const
|
|
2115
|
-
return
|
|
2338
|
+
if (!q) return !1;
|
|
2339
|
+
const oe = q.offsetLeft - (Z.clientWidth - q.offsetWidth) / 2, se = Z.scrollWidth - Z.clientWidth, me = Math.min(Math.max(oe, 0), se);
|
|
2340
|
+
return Z.scrollTo({ left: me, behavior: $ }), !0;
|
|
2116
2341
|
}
|
|
2117
|
-
async function
|
|
2118
|
-
await
|
|
2342
|
+
async function W($) {
|
|
2343
|
+
await be(), x($);
|
|
2119
2344
|
}
|
|
2120
|
-
function
|
|
2121
|
-
|
|
2345
|
+
function w($) {
|
|
2346
|
+
$ && j !== null && $.pointerId !== j || (window.removeEventListener("pointermove", N), window.removeEventListener("pointerup", w), window.removeEventListener("pointercancel", w), j = null, v.value = !1);
|
|
2122
2347
|
}
|
|
2123
|
-
function
|
|
2124
|
-
const
|
|
2125
|
-
if (!
|
|
2126
|
-
if (
|
|
2127
|
-
|
|
2348
|
+
function N($) {
|
|
2349
|
+
const Z = g.value;
|
|
2350
|
+
if (!Z || j !== $.pointerId) return;
|
|
2351
|
+
if ($.pointerType === "mouse" && $.buttons !== 1) {
|
|
2352
|
+
w($);
|
|
2128
2353
|
return;
|
|
2129
2354
|
}
|
|
2130
|
-
const
|
|
2131
|
-
!
|
|
2355
|
+
const q = $.clientX - T;
|
|
2356
|
+
!p && Math.abs(q) < M0 || (p = !0, v.value = !0, Z.scrollLeft = h - q, $.preventDefault());
|
|
2132
2357
|
}
|
|
2133
|
-
function $
|
|
2134
|
-
const
|
|
2135
|
-
|
|
2358
|
+
function Be($) {
|
|
2359
|
+
const Z = g.value;
|
|
2360
|
+
$.pointerType === "mouse" && ($.button !== 0 || $.buttons !== 1) || !Z || !f() || (j = $.pointerId, T = $.clientX, h = Z.scrollLeft, p = !1, v.value = !0, window.addEventListener("pointermove", N), window.addEventListener("pointerup", w), window.addEventListener("pointercancel", w));
|
|
2136
2361
|
}
|
|
2137
|
-
function
|
|
2138
|
-
|
|
2362
|
+
function pe($) {
|
|
2363
|
+
p && ($.preventDefault(), $.stopPropagation(), p = !1);
|
|
2139
2364
|
}
|
|
2140
|
-
function
|
|
2141
|
-
const
|
|
2365
|
+
function ae($) {
|
|
2366
|
+
const q = {
|
|
2142
2367
|
ArrowRight: 1,
|
|
2143
2368
|
ArrowDown: 1,
|
|
2144
2369
|
ArrowLeft: -1,
|
|
2145
2370
|
ArrowUp: -1
|
|
2146
|
-
}[
|
|
2147
|
-
if (!
|
|
2148
|
-
const
|
|
2149
|
-
|
|
2371
|
+
}[$.key], oe = $.key === "Home", se = $.key === "End";
|
|
2372
|
+
if (!q && !oe && !se) return;
|
|
2373
|
+
const me = $.currentTarget, ne = Array.from(
|
|
2374
|
+
me.querySelectorAll(
|
|
2150
2375
|
'[data-jt-tab-item="true"]:not([aria-disabled="true"])'
|
|
2151
2376
|
)
|
|
2152
|
-
),
|
|
2153
|
-
(
|
|
2377
|
+
), je = ne.findIndex(
|
|
2378
|
+
(ge) => ge === document.activeElement
|
|
2154
2379
|
);
|
|
2155
|
-
if (!
|
|
2156
|
-
|
|
2157
|
-
const
|
|
2158
|
-
|
|
2380
|
+
if (!ne.length) return;
|
|
2381
|
+
$.preventDefault();
|
|
2382
|
+
const Se = oe ? 0 : se ? ne.length - 1 : (Math.max(je, 0) + q + ne.length) % ne.length, ve = ne[Se];
|
|
2383
|
+
ve?.focus(), ve?.click();
|
|
2159
2384
|
}
|
|
2160
|
-
return
|
|
2385
|
+
return ue(
|
|
2161
2386
|
() => t.modelValue,
|
|
2162
2387
|
() => {
|
|
2163
|
-
|
|
2388
|
+
W("smooth");
|
|
2164
2389
|
}
|
|
2165
|
-
),
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
}),
|
|
2169
|
-
}),
|
|
2170
|
-
|
|
2171
|
-
}), (
|
|
2172
|
-
class: ["jt-tab",
|
|
2390
|
+
), Ne(() => {
|
|
2391
|
+
f(), W("auto"), !(typeof ResizeObserver > "u" || !g.value) && (D = new ResizeObserver(() => {
|
|
2392
|
+
f(), W("auto");
|
|
2393
|
+
}), D.observe(g.value));
|
|
2394
|
+
}), ze(() => {
|
|
2395
|
+
w(), D?.disconnect();
|
|
2396
|
+
}), ($, Z) => (c(), _("div", J({
|
|
2397
|
+
class: ["jt-tab", M.value],
|
|
2173
2398
|
role: "tablist"
|
|
2174
|
-
},
|
|
2175
|
-
|
|
2399
|
+
}, $.$attrs, { onKeydown: ae }), [
|
|
2400
|
+
b("div", {
|
|
2176
2401
|
ref_key: "listRef",
|
|
2177
|
-
ref:
|
|
2178
|
-
class:
|
|
2179
|
-
"is-scrollable":
|
|
2402
|
+
ref: g,
|
|
2403
|
+
class: X(["jt-tab__list", {
|
|
2404
|
+
"is-scrollable": y.value,
|
|
2180
2405
|
"is-dragging": v.value
|
|
2181
2406
|
}]),
|
|
2182
|
-
onPointerdown:
|
|
2183
|
-
onClickCapture:
|
|
2407
|
+
onPointerdown: Be,
|
|
2408
|
+
onClickCapture: pe
|
|
2184
2409
|
}, [
|
|
2185
|
-
C(
|
|
2410
|
+
C($.$slots, "default", {}, void 0, !0)
|
|
2186
2411
|
], 34),
|
|
2187
|
-
|
|
2188
|
-
C(
|
|
2412
|
+
V(s).extra ? (c(), _("div", T0, [
|
|
2413
|
+
C($.$slots, "extra", {}, void 0, !0)
|
|
2189
2414
|
])) : z("", !0)
|
|
2190
2415
|
], 16));
|
|
2191
2416
|
}
|
|
2192
|
-
}),
|
|
2417
|
+
}), _o = /* @__PURE__ */ O(F0, [["__scopeId", "data-v-4e4d31a2"]]), P0 = ["aria-selected", "aria-disabled", "tabindex", "disabled", "onKeydown"], V0 = /* @__PURE__ */ I({
|
|
2193
2418
|
name: "JtTabItem",
|
|
2194
2419
|
__name: "JtTabItem",
|
|
2195
2420
|
props: {
|
|
2196
2421
|
value: {},
|
|
2197
2422
|
disabled: { type: Boolean, default: !1 }
|
|
2198
2423
|
},
|
|
2199
|
-
setup(
|
|
2200
|
-
const e =
|
|
2201
|
-
|
|
2202
|
-
|
|
2424
|
+
setup(l) {
|
|
2425
|
+
const e = l, t = Ze(Xe, null), o = Ze(Qe, null), s = m(() => t?.modelValue.value === e.value), a = m(() => e.disabled || !t), n = m(() => t?.type.value ?? "line"), d = m(() => t?.size.value ?? "default"), u = o?.registerItem(
|
|
2426
|
+
() => e.value,
|
|
2427
|
+
() => a.value
|
|
2428
|
+
), i = m(() => a.value ? -1 : s.value || t?.modelValue.value === void 0 && o?.isFirstEnabled(e.value) ? 0 : -1), g = m(() => [
|
|
2429
|
+
`jt-tab__item--type-${n.value}`,
|
|
2430
|
+
`jt-tab__item--size-${d.value}`,
|
|
2203
2431
|
{
|
|
2204
|
-
"is-active":
|
|
2205
|
-
"is-disabled":
|
|
2432
|
+
"is-active": s.value,
|
|
2433
|
+
"is-disabled": a.value
|
|
2206
2434
|
}
|
|
2207
2435
|
]);
|
|
2208
|
-
function
|
|
2209
|
-
|
|
2436
|
+
function y() {
|
|
2437
|
+
a.value || t?.activate(e.value);
|
|
2210
2438
|
}
|
|
2211
|
-
return (v,
|
|
2212
|
-
class:
|
|
2439
|
+
return ze(() => u?.()), (v, M) => (c(), _("button", {
|
|
2440
|
+
class: X(["jt-tab__item", g.value]),
|
|
2213
2441
|
type: "button",
|
|
2214
2442
|
role: "tab",
|
|
2215
2443
|
"data-jt-tab-item": "true",
|
|
2216
|
-
"aria-selected":
|
|
2217
|
-
"aria-disabled":
|
|
2218
|
-
tabindex:
|
|
2219
|
-
disabled:
|
|
2220
|
-
onClick:
|
|
2444
|
+
"aria-selected": s.value,
|
|
2445
|
+
"aria-disabled": a.value || void 0,
|
|
2446
|
+
tabindex: i.value,
|
|
2447
|
+
disabled: a.value,
|
|
2448
|
+
onClick: y,
|
|
2221
2449
|
onKeydown: [
|
|
2222
|
-
|
|
2223
|
-
|
|
2450
|
+
Ve(re(y, ["prevent"]), ["enter"]),
|
|
2451
|
+
Ve(re(y, ["prevent"]), ["space"])
|
|
2224
2452
|
]
|
|
2225
2453
|
}, [
|
|
2226
2454
|
C(v.$slots, "default", {}, void 0, !0)
|
|
2227
|
-
], 42,
|
|
2455
|
+
], 42, P0));
|
|
2228
2456
|
}
|
|
2229
|
-
}),
|
|
2457
|
+
}), yo = /* @__PURE__ */ O(V0, [["__scopeId", "data-v-7c2a6f70"]]), I0 = "data:image/svg+xml,%3csvg%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M5.41074%208.74375C5.73618%209.06919%206.26382%209.06919%206.58926%208.74375L9.57741%205.7556C10.1024%205.23063%209.73058%204.33301%208.98816%204.33301H3.01184C2.26942%204.33301%201.89762%205.23063%202.42259%205.7556L5.41074%208.74375Z'%20fill='%23E60000'/%3e%3c/svg%3e", E0 = "data:image/svg+xml,%3csvg%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M5.41074%208.74375C5.73618%209.06919%206.26382%209.06919%206.58926%208.74375L9.57741%205.7556C10.1024%205.23063%209.73058%204.33301%208.98816%204.33301H3.01184C2.26942%204.33301%201.89762%205.23063%202.42259%205.7556L5.41074%208.74375Z'%20fill='%23333333'/%3e%3c/svg%3e", z0 = "data:image/svg+xml,%3csvg%20width='12'%20height='12'%20viewBox='0%200%2012%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M7.91074%206.58926C8.23618%206.26382%208.23618%205.73618%207.91074%205.41074L4.92259%202.42259C4.39762%201.89762%203.5%202.26942%203.5%203.01184L3.5%208.98816C3.5%209.73058%204.39762%2010.1024%204.92259%209.57741L7.91074%206.58926Z'%20fill='%23333333'/%3e%3c/svg%3e", D0 = { class: "jt-tree__node" }, H0 = ["aria-label", "onClick"], O0 = ["src"], J0 = {
|
|
2230
2458
|
key: 1,
|
|
2231
2459
|
class: "jt-tree__toggle-placeholder",
|
|
2232
2460
|
"aria-hidden": "true"
|
|
2233
|
-
},
|
|
2461
|
+
}, Z0 = { class: "jt-tree__content" }, R0 = { class: "jt-tree__label" }, A0 = /* @__PURE__ */ I({
|
|
2234
2462
|
name: "JtTree",
|
|
2235
2463
|
inheritAttrs: !1,
|
|
2236
2464
|
__name: "index",
|
|
@@ -2244,51 +2472,51 @@ const ft = ["aria-label"], ht = { class: "jt-status-stamp__band" }, vt = /* @__P
|
|
|
2244
2472
|
indent: { default: 20 },
|
|
2245
2473
|
highlightCurrent: { type: Boolean, default: !0 },
|
|
2246
2474
|
expandOnClickNode: { type: Boolean, default: !1 },
|
|
2247
|
-
ariaLabel: { default:
|
|
2475
|
+
ariaLabel: { default: B("common.组织树", "组织树") }
|
|
2248
2476
|
},
|
|
2249
2477
|
emits: ["update:currentKey", "current-change"],
|
|
2250
|
-
setup(
|
|
2251
|
-
const o =
|
|
2252
|
-
function n(
|
|
2253
|
-
return
|
|
2254
|
-
}
|
|
2255
|
-
function
|
|
2256
|
-
if (
|
|
2257
|
-
|
|
2478
|
+
setup(l, { expose: e, emit: t }) {
|
|
2479
|
+
const o = l, s = t, a = R();
|
|
2480
|
+
function n(v) {
|
|
2481
|
+
return v.expanded ? v.isCurrent ? I0 : E0 : z0;
|
|
2482
|
+
}
|
|
2483
|
+
function d(v) {
|
|
2484
|
+
if (v.expanded) {
|
|
2485
|
+
v.collapse();
|
|
2258
2486
|
return;
|
|
2259
2487
|
}
|
|
2260
|
-
|
|
2488
|
+
v.expand();
|
|
2261
2489
|
}
|
|
2262
|
-
function
|
|
2263
|
-
const
|
|
2264
|
-
|
|
2490
|
+
function u(v, M) {
|
|
2491
|
+
const T = M?.key;
|
|
2492
|
+
T !== o.currentKey && s("update:currentKey", T), s("current-change", v, M);
|
|
2265
2493
|
}
|
|
2266
|
-
|
|
2494
|
+
ue(
|
|
2267
2495
|
() => o.currentKey,
|
|
2268
|
-
(
|
|
2496
|
+
(v) => a.value?.setCurrentKey(v ?? null),
|
|
2269
2497
|
{ flush: "post" }
|
|
2270
2498
|
);
|
|
2271
|
-
function
|
|
2272
|
-
return
|
|
2499
|
+
function i(v) {
|
|
2500
|
+
return a.value?.getNode(v);
|
|
2273
2501
|
}
|
|
2274
|
-
function
|
|
2275
|
-
return
|
|
2502
|
+
function g() {
|
|
2503
|
+
return a.value?.getCurrentNode();
|
|
2276
2504
|
}
|
|
2277
|
-
function
|
|
2278
|
-
|
|
2505
|
+
function y(v) {
|
|
2506
|
+
a.value?.filter(v);
|
|
2279
2507
|
}
|
|
2280
2508
|
return e({
|
|
2281
|
-
treeRef:
|
|
2282
|
-
getNode:
|
|
2283
|
-
getCurrentNode:
|
|
2284
|
-
filter:
|
|
2285
|
-
}), (
|
|
2286
|
-
const
|
|
2287
|
-
return
|
|
2509
|
+
treeRef: a,
|
|
2510
|
+
getNode: i,
|
|
2511
|
+
getCurrentNode: g,
|
|
2512
|
+
filter: y
|
|
2513
|
+
}), (v, M) => {
|
|
2514
|
+
const T = yt;
|
|
2515
|
+
return c(), P(T, J({
|
|
2288
2516
|
ref_key: "treeRef",
|
|
2289
|
-
ref:
|
|
2517
|
+
ref: a,
|
|
2290
2518
|
class: "jt-tree"
|
|
2291
|
-
},
|
|
2519
|
+
}, v.$attrs, {
|
|
2292
2520
|
data: o.data,
|
|
2293
2521
|
"node-key": o.nodeKey,
|
|
2294
2522
|
props: o.props,
|
|
@@ -2299,43 +2527,43 @@ const ft = ["aria-label"], ht = { class: "jt-status-stamp__band" }, vt = /* @__P
|
|
|
2299
2527
|
"highlight-current": o.highlightCurrent,
|
|
2300
2528
|
"expand-on-click-node": o.expandOnClickNode,
|
|
2301
2529
|
"aria-label": o.ariaLabel,
|
|
2302
|
-
onCurrentChange:
|
|
2530
|
+
onCurrentChange: u
|
|
2303
2531
|
}), {
|
|
2304
|
-
default: L(({ node:
|
|
2305
|
-
|
|
2306
|
-
|
|
2532
|
+
default: L(({ node: h, data: p }) => [
|
|
2533
|
+
b("div", D0, [
|
|
2534
|
+
h.isLeaf ? (c(), _("span", J0)) : (c(), _("button", {
|
|
2307
2535
|
key: 0,
|
|
2308
2536
|
class: "jt-tree__toggle",
|
|
2309
2537
|
type: "button",
|
|
2310
|
-
"aria-label":
|
|
2311
|
-
onClick:
|
|
2538
|
+
"aria-label": h.expanded ? V(B)("common.收起{label}", "收起{label}", { label: h.label }) : V(B)("common.展开{label}", "展开{label}", { label: h.label }),
|
|
2539
|
+
onClick: re((j) => d(h), ["stop"])
|
|
2312
2540
|
}, [
|
|
2313
|
-
|
|
2541
|
+
b("img", {
|
|
2314
2542
|
class: "jt-tree__toggle-icon",
|
|
2315
|
-
src: n(
|
|
2543
|
+
src: n(h),
|
|
2316
2544
|
alt: "",
|
|
2317
2545
|
"aria-hidden": "true"
|
|
2318
|
-
}, null, 8,
|
|
2319
|
-
], 8,
|
|
2320
|
-
|
|
2321
|
-
C(
|
|
2322
|
-
node:
|
|
2323
|
-
data:
|
|
2546
|
+
}, null, 8, O0)
|
|
2547
|
+
], 8, H0)),
|
|
2548
|
+
b("div", Z0, [
|
|
2549
|
+
C(v.$slots, "default", {
|
|
2550
|
+
node: h,
|
|
2551
|
+
data: p
|
|
2324
2552
|
}, () => [
|
|
2325
|
-
|
|
2553
|
+
b("span", R0, F(h.label), 1)
|
|
2326
2554
|
], !0)
|
|
2327
2555
|
]),
|
|
2328
|
-
|
|
2556
|
+
v.$slots.actions ? (c(), _("div", {
|
|
2329
2557
|
key: 2,
|
|
2330
2558
|
class: "jt-tree__actions",
|
|
2331
|
-
onClick:
|
|
2559
|
+
onClick: M[0] || (M[0] = re(() => {
|
|
2332
2560
|
}, ["stop"])),
|
|
2333
|
-
onKeydown:
|
|
2561
|
+
onKeydown: M[1] || (M[1] = re(() => {
|
|
2334
2562
|
}, ["stop"]))
|
|
2335
2563
|
}, [
|
|
2336
|
-
C(
|
|
2337
|
-
node:
|
|
2338
|
-
data:
|
|
2564
|
+
C(v.$slots, "actions", {
|
|
2565
|
+
node: h,
|
|
2566
|
+
data: p
|
|
2339
2567
|
}, void 0, !0)
|
|
2340
2568
|
], 32)) : z("", !0)
|
|
2341
2569
|
])
|
|
@@ -2344,10 +2572,10 @@ const ft = ["aria-label"], ht = { class: "jt-status-stamp__band" }, vt = /* @__P
|
|
|
2344
2572
|
}, 16, ["data", "node-key", "props", "lazy", "load", "indent", "current-node-key", "highlight-current", "expand-on-click-node", "aria-label"]);
|
|
2345
2573
|
};
|
|
2346
2574
|
}
|
|
2347
|
-
}),
|
|
2575
|
+
}), Co = /* @__PURE__ */ O(A0, [["__scopeId", "data-v-4279b203"]]), W0 = {
|
|
2348
2576
|
key: 0,
|
|
2349
2577
|
class: "jt-tree-table-layout__tree"
|
|
2350
|
-
},
|
|
2578
|
+
}, K0 = { class: "jt-tree-table-layout__content" }, U0 = /* @__PURE__ */ I({
|
|
2351
2579
|
name: "JtTreeTableLayout",
|
|
2352
2580
|
__name: "index",
|
|
2353
2581
|
props: {
|
|
@@ -2355,10 +2583,10 @@ const ft = ["aria-label"], ht = { class: "jt-status-stamp__band" }, vt = /* @__P
|
|
|
2355
2583
|
gap: { default: 20 },
|
|
2356
2584
|
collapsed: { type: Boolean, default: !1 }
|
|
2357
2585
|
},
|
|
2358
|
-
setup(
|
|
2359
|
-
const e =
|
|
2360
|
-
function t(
|
|
2361
|
-
return typeof
|
|
2586
|
+
setup(l) {
|
|
2587
|
+
const e = l;
|
|
2588
|
+
function t(s) {
|
|
2589
|
+
return typeof s == "number" ? `${s}px` : s;
|
|
2362
2590
|
}
|
|
2363
2591
|
const o = m(
|
|
2364
2592
|
() => ({
|
|
@@ -2366,25 +2594,25 @@ const ft = ["aria-label"], ht = { class: "jt-status-stamp__band" }, vt = /* @__P
|
|
|
2366
2594
|
"--jt-tree-table-layout-gap": t(e.gap)
|
|
2367
2595
|
})
|
|
2368
2596
|
);
|
|
2369
|
-
return (
|
|
2370
|
-
class:
|
|
2371
|
-
style:
|
|
2597
|
+
return (s, a) => (c(), _("div", {
|
|
2598
|
+
class: X(["jt-tree-table-layout", { "is-collapsed": e.collapsed }]),
|
|
2599
|
+
style: te(o.value)
|
|
2372
2600
|
}, [
|
|
2373
|
-
e.collapsed ? z("", !0) : (
|
|
2374
|
-
C(
|
|
2601
|
+
e.collapsed ? z("", !0) : (c(), _("aside", W0, [
|
|
2602
|
+
C(s.$slots, "tree", {}, void 0, !0)
|
|
2375
2603
|
])),
|
|
2376
|
-
|
|
2377
|
-
C(
|
|
2604
|
+
b("div", K0, [
|
|
2605
|
+
C(s.$slots, "default", {}, void 0, !0)
|
|
2378
2606
|
])
|
|
2379
2607
|
], 6));
|
|
2380
2608
|
}
|
|
2381
|
-
}),
|
|
2609
|
+
}), bo = /* @__PURE__ */ O(U0, [["__scopeId", "data-v-28a5e162"]]), G0 = { class: "jt-page-header__title" }, N0 = { key: 0 }, q0 = { key: 2 }, Y0 = {
|
|
2382
2610
|
key: 0,
|
|
2383
2611
|
class: "jt-page-header__description"
|
|
2384
|
-
},
|
|
2612
|
+
}, X0 = {
|
|
2385
2613
|
key: 0,
|
|
2386
2614
|
class: "jt-page-header__operates"
|
|
2387
|
-
},
|
|
2615
|
+
}, Q0 = /* @__PURE__ */ I({
|
|
2388
2616
|
name: "JtPageHeader",
|
|
2389
2617
|
__name: "index",
|
|
2390
2618
|
props: {
|
|
@@ -2395,42 +2623,42 @@ const ft = ["aria-label"], ht = { class: "jt-status-stamp__band" }, vt = /* @__P
|
|
|
2395
2623
|
operates: { default: () => [] }
|
|
2396
2624
|
},
|
|
2397
2625
|
emits: ["operate-click"],
|
|
2398
|
-
setup(
|
|
2399
|
-
const t =
|
|
2626
|
+
setup(l, { emit: e }) {
|
|
2627
|
+
const t = l, o = e, s = ce(), a = m(() => t.operates.length > 0 || !!s.operates), n = m(() => [
|
|
2400
2628
|
`jt-page-header--size-${t.size}`,
|
|
2401
2629
|
{ "jt-page-header--gray": t.gray }
|
|
2402
2630
|
]);
|
|
2403
|
-
function u
|
|
2404
|
-
|
|
2631
|
+
function d(u, i) {
|
|
2632
|
+
u.onClick?.(u, i), o("operate-click", u, i);
|
|
2405
2633
|
}
|
|
2406
|
-
return (
|
|
2634
|
+
return (u, i) => (c(), _("div", J({
|
|
2407
2635
|
class: ["jt-page-header", n.value]
|
|
2408
|
-
},
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
], !0) :
|
|
2413
|
-
C(
|
|
2414
|
-
|
|
2636
|
+
}, u.$attrs), [
|
|
2637
|
+
b("div", G0, [
|
|
2638
|
+
V(s).title ? C(u.$slots, "title", { key: 0 }, () => [
|
|
2639
|
+
u.title ? (c(), _("span", N0, F(u.title), 1)) : z("", !0)
|
|
2640
|
+
], !0) : V(s).default ? C(u.$slots, "default", { key: 1 }, void 0, !0) : u.title ? (c(), _("span", q0, F(u.title), 1)) : z("", !0),
|
|
2641
|
+
C(u.$slots, "description", {}, () => [
|
|
2642
|
+
u.description ? (c(), _("span", Y0, F(u.description), 1)) : z("", !0)
|
|
2415
2643
|
], !0)
|
|
2416
2644
|
]),
|
|
2417
|
-
|
|
2418
|
-
C(
|
|
2419
|
-
(
|
|
2420
|
-
key:
|
|
2645
|
+
a.value ? (c(), _("div", X0, [
|
|
2646
|
+
C(u.$slots, "operates", { operates: u.operates }, () => [
|
|
2647
|
+
(c(!0), _(Y, null, U(u.operates, (g) => (c(), P(V(ee), J({
|
|
2648
|
+
key: g.key ?? g.label,
|
|
2421
2649
|
ref_for: !0
|
|
2422
|
-
},
|
|
2423
|
-
type:
|
|
2424
|
-
disabled:
|
|
2425
|
-
loading:
|
|
2426
|
-
plain:
|
|
2427
|
-
text:
|
|
2428
|
-
link:
|
|
2429
|
-
icon:
|
|
2430
|
-
onClick: (
|
|
2650
|
+
}, g.buttonProps, {
|
|
2651
|
+
type: g.type,
|
|
2652
|
+
disabled: g.disabled,
|
|
2653
|
+
loading: g.loading,
|
|
2654
|
+
plain: g.plain,
|
|
2655
|
+
text: g.text,
|
|
2656
|
+
link: g.link,
|
|
2657
|
+
icon: g.icon,
|
|
2658
|
+
onClick: (y) => d(g, y)
|
|
2431
2659
|
}), {
|
|
2432
2660
|
default: L(() => [
|
|
2433
|
-
|
|
2661
|
+
b("span", null, F(g.label), 1)
|
|
2434
2662
|
]),
|
|
2435
2663
|
_: 2
|
|
2436
2664
|
}, 1040, ["type", "disabled", "loading", "plain", "text", "link", "icon", "onClick"]))), 128))
|
|
@@ -2438,40 +2666,41 @@ const ft = ["aria-label"], ht = { class: "jt-status-stamp__band" }, vt = /* @__P
|
|
|
2438
2666
|
])) : z("", !0)
|
|
2439
2667
|
], 16));
|
|
2440
2668
|
}
|
|
2441
|
-
}),
|
|
2669
|
+
}), wo = /* @__PURE__ */ O(Q0, [["__scopeId", "data-v-6831eb88"]]);
|
|
2442
2670
|
export {
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
vo as
|
|
2475
|
-
|
|
2476
|
-
|
|
2671
|
+
ro as JtActionMenu,
|
|
2672
|
+
io as JtAttachmentList,
|
|
2673
|
+
ee as JtButton,
|
|
2674
|
+
co as JtCard,
|
|
2675
|
+
Ft as JtCascader,
|
|
2676
|
+
uo as JtChoiceCardGroup,
|
|
2677
|
+
so as JtCrudTable,
|
|
2678
|
+
Pt as JtDatePicker,
|
|
2679
|
+
po as JtDescriptions,
|
|
2680
|
+
mo as JtDialog,
|
|
2681
|
+
fo as JtDrawer,
|
|
2682
|
+
i2 as JtEmptyState,
|
|
2683
|
+
H2 as JtFileIcon,
|
|
2684
|
+
t2 as JtFilterBar,
|
|
2685
|
+
Wt as JtFormItems,
|
|
2686
|
+
Ce as JtInput,
|
|
2687
|
+
ho as JtOverflowTooltipText,
|
|
2688
|
+
wo as JtPageHeader,
|
|
2689
|
+
g2 as JtPagination,
|
|
2690
|
+
lo as JtSearchSelect,
|
|
2691
|
+
Rt as JtSelect,
|
|
2692
|
+
go as JtStatusStamp,
|
|
2693
|
+
_o as JtTab,
|
|
2694
|
+
yo as JtTabItem,
|
|
2695
|
+
m2 as JtTable,
|
|
2696
|
+
Co as JtTree,
|
|
2697
|
+
bo as JtTreeTableLayout,
|
|
2698
|
+
xo as getJtLocale,
|
|
2699
|
+
ko as install,
|
|
2700
|
+
Bo as installLocale,
|
|
2701
|
+
jo as normalizeLocale,
|
|
2702
|
+
vo as openJtConfirmDialog,
|
|
2703
|
+
So as resetJtLocale,
|
|
2704
|
+
I2 as resolveJtFileType,
|
|
2705
|
+
To as setJtLocale
|
|
2477
2706
|
};
|