auto-vue-basic 0.0.36 → 0.0.38
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/auto-vue-basic.es.js +359 -329
- package/dist/auto-vue-basic.umd.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -3
@@ -1,10 +1,10 @@
|
|
1
|
-
import { defineComponent as D, ref as Q, resolveComponent as d, createBlock as T, openBlock as
|
2
|
-
import { createAutoApi as Z, useForm as P, Translate as a, RulesUtils as ke, FormDialog as Y, ModifyButton as ee, useTablePage as F, useLoading as K, ProTable as le, DEFAULT_PAGE_KEY as ae,
|
1
|
+
import { defineComponent as D, ref as Q, resolveComponent as d, createBlock as T, openBlock as M, unref as e, isRef as z, withCtx as t, createVNode as l, createTextVNode as N, createElementBlock as I, Fragment as B, renderList as j, toDisplayString as ne, withKeys as X, createElementVNode as G, toRef as ue, normalizeClass as be, isVNode as fe, reactive as _e, onMounted as ge, watch as he, nextTick as Ve, createCommentVNode as ye } from "vue";
|
2
|
+
import { createAutoApi as Z, useForm as P, Translate as a, RulesUtils as ke, FormDialog as Y, ModifyButton as ee, useTablePage as F, useLoading as K, ProTable as le, DEFAULT_PAGE_KEY as ae, SearchButton as oe, RefreshButton as W, OpenButton as te, DEFAULT_STATUS_KEY as ie, AutoApiUtils as ve, useSelect as de, InlineRefreshButton as me, DEFAULT_REMOVE_KEY as we } from "auto-vue-manual";
|
3
3
|
const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */ D({
|
4
4
|
__name: "info",
|
5
5
|
emits: ["refresh"],
|
6
6
|
setup(U, { expose: C, emit: v }) {
|
7
|
-
const
|
7
|
+
const R = v, w = {
|
8
8
|
key: "",
|
9
9
|
username: "",
|
10
10
|
password: "",
|
@@ -13,11 +13,11 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
13
13
|
language: "zh-CN",
|
14
14
|
remark: "",
|
15
15
|
roles: []
|
16
|
-
}, { modal: k, title:
|
17
|
-
|
16
|
+
}, { modal: k, title: b, form: s, formData: i, requesting: n, executing: f, open: g, modify: h, submit: V, closed: q } = P(
|
17
|
+
R,
|
18
18
|
w,
|
19
19
|
re
|
20
|
-
),
|
20
|
+
), S = {
|
21
21
|
username: [
|
22
22
|
{ required: !0, message: a("base.placeholder.input base.username"), trigger: "blur" }
|
23
23
|
],
|
@@ -36,22 +36,22 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
36
36
|
roles: [
|
37
37
|
{ required: !0, type: "Array", message: a("base.placeholder.select base.roles"), trigger: "change" }
|
38
38
|
]
|
39
|
-
},
|
40
|
-
const
|
41
|
-
|
39
|
+
}, c = Q([]), p = async () => {
|
40
|
+
const u = await J.list();
|
41
|
+
c.value = Array.isArray(u == null ? void 0 : u.data) ? u.data : [];
|
42
42
|
};
|
43
43
|
return C({
|
44
|
-
openOrModify: async (
|
45
|
-
|
44
|
+
openOrModify: async (u) => {
|
45
|
+
c.value.length || await p(), u ? h({ key: u }) : g();
|
46
46
|
}
|
47
|
-
}), (
|
48
|
-
const x = d("el-input"), A = d("el-form-item"), _ = d("el-radio-button"), y = d("el-radio-group"),
|
49
|
-
return
|
47
|
+
}), (u, r) => {
|
48
|
+
const x = d("el-input"), A = d("el-form-item"), _ = d("el-radio-button"), y = d("el-radio-group"), O = d("el-checkbox"), m = d("el-checkbox-group"), L = d("el-form");
|
49
|
+
return M(), T(e(Y), {
|
50
50
|
modelValue: e(k),
|
51
|
-
"onUpdate:modelValue":
|
52
|
-
title: e(
|
51
|
+
"onUpdate:modelValue": r[7] || (r[7] = (E) => z(k) ? k.value = E : null),
|
52
|
+
title: e(b)(),
|
53
53
|
width: "600px",
|
54
|
-
executing: e(
|
54
|
+
executing: e(f),
|
55
55
|
onClosed: e(q),
|
56
56
|
onSubmit: e(V)
|
57
57
|
}, {
|
@@ -61,8 +61,8 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
61
61
|
ref: s,
|
62
62
|
model: e(i),
|
63
63
|
"label-width": "auto",
|
64
|
-
rules:
|
65
|
-
disabled: e(n) || e(
|
64
|
+
rules: S,
|
65
|
+
disabled: e(n) || e(f)
|
66
66
|
}, {
|
67
67
|
default: t(() => [
|
68
68
|
l(A, {
|
@@ -72,7 +72,7 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
72
72
|
default: t(() => [
|
73
73
|
l(x, {
|
74
74
|
modelValue: e(i).username,
|
75
|
-
"onUpdate:modelValue":
|
75
|
+
"onUpdate:modelValue": r[0] || (r[0] = (E) => e(i).username = E),
|
76
76
|
placeholder: e(a)("base.placeholder.input"),
|
77
77
|
autocomplete: "off"
|
78
78
|
}, null, 8, ["modelValue", "placeholder"])
|
@@ -86,7 +86,7 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
86
86
|
default: t(() => [
|
87
87
|
l(x, {
|
88
88
|
modelValue: e(i).phone,
|
89
|
-
"onUpdate:modelValue":
|
89
|
+
"onUpdate:modelValue": r[1] || (r[1] = (E) => e(i).phone = E),
|
90
90
|
placeholder: e(a)("base.placeholder.input"),
|
91
91
|
autocomplete: "off"
|
92
92
|
}, null, 8, ["modelValue", "placeholder"])
|
@@ -101,7 +101,7 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
101
101
|
default: t(() => [
|
102
102
|
l(x, {
|
103
103
|
modelValue: e(i).password,
|
104
|
-
"onUpdate:modelValue":
|
104
|
+
"onUpdate:modelValue": r[2] || (r[2] = (E) => e(i).password = E),
|
105
105
|
placeholder: e(a)("base.placeholder.input"),
|
106
106
|
autocomplete: "off"
|
107
107
|
}, null, 8, ["modelValue", "placeholder"])
|
@@ -115,7 +115,7 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
115
115
|
default: t(() => [
|
116
116
|
l(x, {
|
117
117
|
modelValue: e(i).email,
|
118
|
-
"onUpdate:modelValue":
|
118
|
+
"onUpdate:modelValue": r[3] || (r[3] = (E) => e(i).email = E),
|
119
119
|
placeholder: e(a)("base.placeholder.input"),
|
120
120
|
autocomplete: "off"
|
121
121
|
}, null, 8, ["modelValue", "placeholder"])
|
@@ -129,18 +129,18 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
129
129
|
default: t(() => [
|
130
130
|
l(y, {
|
131
131
|
modelValue: e(i).language,
|
132
|
-
"onUpdate:modelValue":
|
132
|
+
"onUpdate:modelValue": r[4] || (r[4] = (E) => e(i).language = E)
|
133
133
|
}, {
|
134
134
|
default: t(() => [
|
135
135
|
l(_, { value: "zh-CN" }, {
|
136
|
-
default: t(() =>
|
136
|
+
default: t(() => r[8] || (r[8] = [
|
137
137
|
N("zh-CN")
|
138
138
|
])),
|
139
139
|
_: 1,
|
140
140
|
__: [8]
|
141
141
|
}),
|
142
142
|
l(_, { value: "en-US" }, {
|
143
|
-
default: t(() =>
|
143
|
+
default: t(() => r[9] || (r[9] = [
|
144
144
|
N("en-US")
|
145
145
|
])),
|
146
146
|
_: 1,
|
@@ -157,12 +157,12 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
157
157
|
prop: "roles"
|
158
158
|
}, {
|
159
159
|
default: t(() => [
|
160
|
-
l(
|
160
|
+
l(m, {
|
161
161
|
modelValue: e(i).roles,
|
162
|
-
"onUpdate:modelValue":
|
162
|
+
"onUpdate:modelValue": r[5] || (r[5] = (E) => e(i).roles = E)
|
163
163
|
}, {
|
164
164
|
default: t(() => [
|
165
|
-
(
|
165
|
+
(M(!0), I(B, null, j(c.value, (E) => (M(), T(O, {
|
166
166
|
key: E.key,
|
167
167
|
value: E.key
|
168
168
|
}, {
|
@@ -184,7 +184,7 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
184
184
|
default: t(() => [
|
185
185
|
l(x, {
|
186
186
|
modelValue: e(i).remark,
|
187
|
-
"onUpdate:modelValue":
|
187
|
+
"onUpdate:modelValue": r[6] || (r[6] = (E) => e(i).remark = E),
|
188
188
|
placeholder: e(a)("base.placeholder.input")
|
189
189
|
}, null, 8, ["modelValue", "placeholder"])
|
190
190
|
]),
|
@@ -256,42 +256,49 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
256
256
|
onModify: () => g(h.key)
|
257
257
|
}, null)
|
258
258
|
}], {
|
259
|
-
requesting:
|
259
|
+
requesting: R
|
260
260
|
} = K(re), {
|
261
261
|
tableRef: w,
|
262
262
|
infoRef: k,
|
263
|
-
keyword:
|
263
|
+
keyword: b,
|
264
264
|
search: s,
|
265
265
|
refresh: i,
|
266
266
|
reset: n,
|
267
|
-
openInfo:
|
267
|
+
openInfo: f,
|
268
268
|
modifyInfo: g
|
269
269
|
} = F(C);
|
270
270
|
return (h, V) => {
|
271
|
-
const q = d("el-input"),
|
272
|
-
return
|
271
|
+
const q = d("el-input"), S = d("el-space"), c = d("el-page-header"), p = d("el-card");
|
272
|
+
return M(), T(p, {
|
273
273
|
class: "basic-card flex-full",
|
274
274
|
"body-class": "flex-1"
|
275
275
|
}, {
|
276
|
-
header: t(() => [l(
|
277
|
-
class: "
|
276
|
+
header: t(() => [l(c, {
|
277
|
+
class: "basic-header"
|
278
278
|
}, {
|
279
|
-
|
280
|
-
loading: e(
|
279
|
+
title: t(() => [l(e(W), {
|
280
|
+
loading: e(R),
|
281
281
|
onRefresh: e(i)
|
282
|
-
}, null, 8, ["loading", "onRefresh"]), l(e(
|
283
|
-
onOpen: e(
|
284
|
-
}, null, 8, ["onOpen"]),
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
282
|
+
}, null, 8, ["loading", "onRefresh"]), l(e(te), {
|
283
|
+
onOpen: e(f)
|
284
|
+
}, null, 8, ["onOpen"])]),
|
285
|
+
content: t(() => [l(S, {
|
286
|
+
class: "search-bar"
|
287
|
+
}, {
|
288
|
+
default: t(() => [l(q, {
|
289
|
+
class: "basic-search-input",
|
290
|
+
modelValue: e(b).keyword,
|
291
|
+
"onUpdate:modelValue": V[0] || (V[0] = (o) => e(b).keyword = o),
|
292
|
+
placeholder: e(a)("base.placeholder.keyword"),
|
293
|
+
clearable: "",
|
294
|
+
onKeyup: X(e(s), ["enter"]),
|
295
|
+
onClear: e(s)
|
296
|
+
}, null, 8, ["modelValue", "placeholder", "onKeyup", "onClear"]), l(e(oe), {
|
297
|
+
disabled: e(R),
|
298
|
+
onSearch: e(s)
|
299
|
+
}, null, 8, ["disabled", "onSearch"])]),
|
300
|
+
_: 1
|
301
|
+
})]),
|
295
302
|
_: 1
|
296
303
|
})]),
|
297
304
|
default: t(() => [l(e(le), {
|
@@ -300,7 +307,7 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
300
307
|
size: "small",
|
301
308
|
columns: v,
|
302
309
|
url: e(re).urls[e(ae)],
|
303
|
-
"search-param": e(
|
310
|
+
"search-param": e(b),
|
304
311
|
autoSearch: ""
|
305
312
|
}, null, 8, ["url", "search-param"]), l(xe, {
|
306
313
|
ref_key: "infoRef",
|
@@ -318,7 +325,7 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
318
325
|
__name: "info",
|
319
326
|
emits: ["refresh"],
|
320
327
|
setup(U, { expose: C, emit: v }) {
|
321
|
-
const
|
328
|
+
const R = v, w = {
|
322
329
|
id: 0,
|
323
330
|
key: "",
|
324
331
|
module: "",
|
@@ -338,8 +345,8 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
338
345
|
result: [
|
339
346
|
{ required: !0, message: a("language.placeholder.result"), trigger: "blur" }
|
340
347
|
]
|
341
|
-
}, { modal:
|
342
|
-
|
348
|
+
}, { modal: b, title: s, form: i, formData: n, requesting: f, executing: g, open: h, modify: V, submit: q, closed: S } = P(
|
349
|
+
R,
|
343
350
|
w,
|
344
351
|
H
|
345
352
|
);
|
@@ -348,14 +355,14 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
348
355
|
p ? V({ id: p }) : h();
|
349
356
|
}
|
350
357
|
}), (p, o) => {
|
351
|
-
const
|
352
|
-
return
|
353
|
-
modelValue: e(
|
354
|
-
"onUpdate:modelValue": o[5] || (o[5] = (y) => z(
|
358
|
+
const u = d("el-input"), r = d("el-form-item"), x = d("el-radio-button"), A = d("el-radio-group"), _ = d("el-form");
|
359
|
+
return M(), T(e(Y), {
|
360
|
+
modelValue: e(b),
|
361
|
+
"onUpdate:modelValue": o[5] || (o[5] = (y) => z(b) ? b.value = y : null),
|
355
362
|
title: e(s)(),
|
356
363
|
width: "600px",
|
357
364
|
executing: e(g),
|
358
|
-
onClosed: e(
|
365
|
+
onClosed: e(S),
|
359
366
|
onSubmit: e(q)
|
360
367
|
}, {
|
361
368
|
default: t(() => [
|
@@ -365,16 +372,16 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
365
372
|
model: e(n),
|
366
373
|
"label-width": "auto",
|
367
374
|
rules: k,
|
368
|
-
disabled: e(
|
375
|
+
disabled: e(f) || e(g)
|
369
376
|
}, {
|
370
377
|
default: t(() => [
|
371
|
-
l(
|
378
|
+
l(r, {
|
372
379
|
label: e(a)("language.module"),
|
373
380
|
prop: "module",
|
374
381
|
required: ""
|
375
382
|
}, {
|
376
383
|
default: t(() => [
|
377
|
-
l(
|
384
|
+
l(u, {
|
378
385
|
modelValue: e(n).module,
|
379
386
|
"onUpdate:modelValue": o[0] || (o[0] = (y) => e(n).module = y),
|
380
387
|
placeholder: e(a)("language.placeholder.module")
|
@@ -382,13 +389,13 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
382
389
|
]),
|
383
390
|
_: 1
|
384
391
|
}, 8, ["label"]),
|
385
|
-
l(
|
392
|
+
l(r, {
|
386
393
|
label: e(a)("language.key"),
|
387
394
|
prop: "key",
|
388
395
|
required: ""
|
389
396
|
}, {
|
390
397
|
default: t(() => [
|
391
|
-
l(
|
398
|
+
l(u, {
|
392
399
|
modelValue: e(n).key,
|
393
400
|
"onUpdate:modelValue": o[1] || (o[1] = (y) => e(n).key = y),
|
394
401
|
placeholder: e(a)("language.placeholder.key")
|
@@ -396,7 +403,7 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
396
403
|
]),
|
397
404
|
_: 1
|
398
405
|
}, 8, ["label"]),
|
399
|
-
l(
|
406
|
+
l(r, {
|
400
407
|
label: e(a)("language.language"),
|
401
408
|
prop: "language",
|
402
409
|
required: ""
|
@@ -427,13 +434,13 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
427
434
|
]),
|
428
435
|
_: 1
|
429
436
|
}, 8, ["label"]),
|
430
|
-
l(
|
437
|
+
l(r, {
|
431
438
|
label: e(a)("language.result"),
|
432
439
|
prop: "result",
|
433
440
|
required: ""
|
434
441
|
}, {
|
435
442
|
default: t(() => [
|
436
|
-
l(
|
443
|
+
l(u, {
|
437
444
|
modelValue: e(n).result,
|
438
445
|
"onUpdate:modelValue": o[3] || (o[3] = (y) => e(n).result = y),
|
439
446
|
placeholder: e(a)("language.placeholder.result")
|
@@ -441,12 +448,12 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
441
448
|
]),
|
442
449
|
_: 1
|
443
450
|
}, 8, ["label"]),
|
444
|
-
l(
|
451
|
+
l(r, {
|
445
452
|
label: e(a)("base.remark"),
|
446
453
|
prop: "remark"
|
447
454
|
}, {
|
448
455
|
default: t(() => [
|
449
|
-
l(
|
456
|
+
l(u, {
|
450
457
|
modelValue: e(n).remark,
|
451
458
|
"onUpdate:modelValue": o[4] || (o[4] = (y) => e(n).remark = y),
|
452
459
|
placeholder: e(a)("base.placeholder.input")
|
@@ -518,53 +525,60 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
518
525
|
onModify: () => g(h.id)
|
519
526
|
}, null)
|
520
527
|
}], {
|
521
|
-
requesting:
|
528
|
+
requesting: R
|
522
529
|
} = K(H), {
|
523
530
|
tableRef: w,
|
524
531
|
infoRef: k,
|
525
|
-
keyword:
|
532
|
+
keyword: b,
|
526
533
|
search: s,
|
527
534
|
refresh: i,
|
528
535
|
reset: n,
|
529
|
-
openInfo:
|
536
|
+
openInfo: f,
|
530
537
|
modifyInfo: g
|
531
538
|
} = F(C);
|
532
539
|
return (h, V) => {
|
533
|
-
const q = d("el-input"),
|
534
|
-
return
|
540
|
+
const q = d("el-input"), S = d("el-radio-button"), c = d("el-radio-group"), p = d("el-space"), o = d("el-page-header"), u = d("el-card");
|
541
|
+
return M(), T(u, {
|
535
542
|
class: "basic-card flex-full",
|
536
543
|
"body-class": "flex-1"
|
537
544
|
}, {
|
538
|
-
header: t(() => [l(
|
539
|
-
class: "
|
545
|
+
header: t(() => [l(o, {
|
546
|
+
class: "basic-header"
|
540
547
|
}, {
|
541
|
-
|
542
|
-
loading: e(
|
548
|
+
title: t(() => [l(e(W), {
|
549
|
+
loading: e(R),
|
543
550
|
onRefresh: e(i)
|
544
|
-
}, null, 8, ["loading", "onRefresh"]), l(e(
|
545
|
-
onOpen: e(
|
546
|
-
}, null, 8, ["onOpen"]),
|
547
|
-
|
548
|
-
|
549
|
-
"onUpdate:modelValue": V[0] || (V[0] = (r) => e(c).keyword = r),
|
550
|
-
placeholder: e(a)("base.placeholder.keyword"),
|
551
|
-
clearable: "",
|
552
|
-
onKeyup: X(e(s), ["enter"]),
|
553
|
-
onClear: e(s)
|
554
|
-
}, null, 8, ["modelValue", "placeholder", "onKeyup", "onClear"]), l(m, {
|
555
|
-
modelValue: e(c).status,
|
556
|
-
"onUpdate:modelValue": V[1] || (V[1] = (r) => e(c).status = r),
|
557
|
-
onChange: e(s)
|
551
|
+
}, null, 8, ["loading", "onRefresh"]), l(e(te), {
|
552
|
+
onOpen: e(f)
|
553
|
+
}, null, 8, ["onOpen"])]),
|
554
|
+
content: t(() => [l(p, {
|
555
|
+
class: "search-bar"
|
558
556
|
}, {
|
559
|
-
default: t(() => [
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
557
|
+
default: t(() => [l(q, {
|
558
|
+
class: "basic-search-input",
|
559
|
+
modelValue: e(b).keyword,
|
560
|
+
"onUpdate:modelValue": V[0] || (V[0] = (r) => e(b).keyword = r),
|
561
|
+
placeholder: e(a)("base.placeholder.keyword"),
|
562
|
+
clearable: "",
|
563
|
+
onKeyup: X(e(s), ["enter"]),
|
564
|
+
onClear: e(s)
|
565
|
+
}, null, 8, ["modelValue", "placeholder", "onKeyup", "onClear"]), l(c, {
|
566
|
+
modelValue: e(b).status,
|
567
|
+
"onUpdate:modelValue": V[1] || (V[1] = (r) => e(b).status = r),
|
568
|
+
onChange: e(s)
|
569
|
+
}, {
|
570
|
+
default: t(() => [(M(), I(B, null, j([0, 1, 2], (r) => l(S, {
|
571
|
+
key: r,
|
572
|
+
label: e(a)(`base.DISABLE_ENABLE.${r}`),
|
573
|
+
value: r
|
574
|
+
}, null, 8, ["label", "value"])), 64))]),
|
575
|
+
_: 1
|
576
|
+
}, 8, ["modelValue", "onChange"]), l(e(oe), {
|
577
|
+
disabled: e(R),
|
578
|
+
onSearch: e(s)
|
579
|
+
}, null, 8, ["disabled", "onSearch"])]),
|
564
580
|
_: 1
|
565
|
-
}
|
566
|
-
onSearch: e(s)
|
567
|
-
}, null, 8, ["onSearch"])]),
|
581
|
+
})]),
|
568
582
|
_: 1
|
569
583
|
})]),
|
570
584
|
default: t(() => [l(e(le), {
|
@@ -573,7 +587,7 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
573
587
|
size: "small",
|
574
588
|
columns: v,
|
575
589
|
url: e(H).urls[e(ae)],
|
576
|
-
"search-param": e(
|
590
|
+
"search-param": e(b),
|
577
591
|
autoSearch: ""
|
578
592
|
}, null, 8, ["url", "search-param"]), l(Re, {
|
579
593
|
ref_key: "infoRef",
|
@@ -587,16 +601,16 @@ const re = Z("admin", {}, "key"), J = Z("role", {}, "key"), xe = /* @__PURE__ */
|
|
587
601
|
}), Me = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
588
602
|
__proto__: null,
|
589
603
|
default: Ce
|
590
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
604
|
+
}, Symbol.toStringTag, { value: "Module" })), se = {
|
591
605
|
tops: "tops",
|
592
606
|
rules: "rules"
|
593
|
-
}, $ = ve.createAutoApi("menu",
|
607
|
+
}, $ = ve.createAutoApi("menu", se, "id", Object.keys(se), [], ["TOP_MENU_LIST", "MENU_LIST"]), ce = Z("rule", {}, "key");
|
594
608
|
/*! Element Plus Icons Vue v2.3.1 */
|
595
609
|
var Se = /* @__PURE__ */ D({
|
596
610
|
name: "Key",
|
597
611
|
__name: "key",
|
598
612
|
setup(U) {
|
599
|
-
return (C, v) => (
|
613
|
+
return (C, v) => (M(), I("svg", {
|
600
614
|
xmlns: "http://www.w3.org/2000/svg",
|
601
615
|
viewBox: "0 0 1024 1024"
|
602
616
|
}, [
|
@@ -623,27 +637,27 @@ const qe = /* @__PURE__ */ D({
|
|
623
637
|
setup(U, {
|
624
638
|
emit: C
|
625
639
|
}) {
|
626
|
-
const v = C,
|
640
|
+
const v = C, R = U, {
|
627
641
|
requesting: w
|
628
642
|
} = K($), {
|
629
643
|
value: k,
|
630
|
-
options:
|
644
|
+
options: b,
|
631
645
|
change: s,
|
632
646
|
refresh: i,
|
633
647
|
filterOptions: n
|
634
|
-
} =
|
648
|
+
} = de(ue(R, "modelValue"), v, {
|
635
649
|
key: "TOP_MENU_LIST",
|
636
650
|
api: $,
|
637
651
|
url: $.urls.tops,
|
638
652
|
isArray: !0
|
639
653
|
});
|
640
|
-
return (
|
654
|
+
return (f, g) => {
|
641
655
|
const h = d("el-select-v2");
|
642
|
-
return
|
656
|
+
return M(), T(h, {
|
643
657
|
class: "w-full",
|
644
658
|
modelValue: e(k),
|
645
659
|
"onUpdate:modelValue": g[1] || (g[1] = (V) => z(k) ? k.value = V : null),
|
646
|
-
options: e(
|
660
|
+
options: e(b),
|
647
661
|
multiple: U.multiple,
|
648
662
|
disabled: e(w),
|
649
663
|
placeholder: e(a)("base.placeholder.select"),
|
@@ -663,7 +677,7 @@ const qe = /* @__PURE__ */ D({
|
|
663
677
|
__name: "info",
|
664
678
|
emits: ["refresh"],
|
665
679
|
setup(U, { expose: C, emit: v }) {
|
666
|
-
const
|
680
|
+
const R = v, w = {
|
667
681
|
id: 0,
|
668
682
|
menu_id: 0,
|
669
683
|
module: "",
|
@@ -703,8 +717,8 @@ const qe = /* @__PURE__ */ D({
|
|
703
717
|
component: [
|
704
718
|
{ required: !0, message: a("base.placeholder.input menu.component"), trigger: "blur" }
|
705
719
|
]
|
706
|
-
}, { modal:
|
707
|
-
|
720
|
+
}, { modal: b, title: s, form: i, formData: n, requesting: f, executing: g, open: h, modify: V, submit: q, closed: S } = P(
|
721
|
+
R,
|
708
722
|
w,
|
709
723
|
$
|
710
724
|
);
|
@@ -713,42 +727,42 @@ const qe = /* @__PURE__ */ D({
|
|
713
727
|
p ? V({ id: p }) : h();
|
714
728
|
}
|
715
729
|
}), (p, o) => {
|
716
|
-
const
|
717
|
-
return
|
718
|
-
modelValue: e(
|
719
|
-
"onUpdate:modelValue": o[17] || (o[17] = (
|
730
|
+
const u = d("el-form-item"), r = d("el-col"), x = d("el-input-number"), A = d("el-row"), _ = d("el-input"), y = d("el-switch"), O = d("el-form");
|
731
|
+
return M(), T(e(Y), {
|
732
|
+
modelValue: e(b),
|
733
|
+
"onUpdate:modelValue": o[17] || (o[17] = (m) => z(b) ? b.value = m : null),
|
720
734
|
title: e(s)(),
|
721
735
|
width: "1000px",
|
722
736
|
executing: e(g),
|
723
|
-
onClosed: e(
|
737
|
+
onClosed: e(S),
|
724
738
|
onSubmit: e(q)
|
725
739
|
}, {
|
726
740
|
default: t(() => [
|
727
|
-
l(
|
741
|
+
l(O, {
|
728
742
|
ref_key: "form",
|
729
743
|
ref: i,
|
730
744
|
model: e(n),
|
731
745
|
"label-width": "auto",
|
732
746
|
rules: k,
|
733
|
-
disabled: e(
|
747
|
+
disabled: e(f) || e(g)
|
734
748
|
}, {
|
735
749
|
default: t(() => [
|
736
750
|
l(A, { gutter: 20 }, {
|
737
751
|
default: t(() => [
|
738
|
-
l(
|
752
|
+
l(r, { span: 12 }, {
|
739
753
|
default: t(() => [
|
740
754
|
l(A, { gutter: 10 }, {
|
741
755
|
default: t(() => [
|
742
|
-
l(
|
756
|
+
l(r, { span: 12 }, {
|
743
757
|
default: t(() => [
|
744
|
-
l(
|
758
|
+
l(u, {
|
745
759
|
label: e(a)("base.parent"),
|
746
760
|
prop: "menu_id"
|
747
761
|
}, {
|
748
762
|
default: t(() => [
|
749
763
|
l(qe, {
|
750
764
|
modelValue: e(n).menu_id,
|
751
|
-
"onUpdate:modelValue": o[0] || (o[0] = (
|
765
|
+
"onUpdate:modelValue": o[0] || (o[0] = (m) => e(n).menu_id = m)
|
752
766
|
}, null, 8, ["modelValue"])
|
753
767
|
]),
|
754
768
|
_: 1
|
@@ -756,9 +770,9 @@ const qe = /* @__PURE__ */ D({
|
|
756
770
|
]),
|
757
771
|
_: 1
|
758
772
|
}),
|
759
|
-
l(
|
773
|
+
l(r, { span: 12 }, {
|
760
774
|
default: t(() => [
|
761
|
-
l(
|
775
|
+
l(u, {
|
762
776
|
label: e(a)("base.sort"),
|
763
777
|
prop: "sort"
|
764
778
|
}, {
|
@@ -766,7 +780,7 @@ const qe = /* @__PURE__ */ D({
|
|
766
780
|
l(x, {
|
767
781
|
class: "w-full",
|
768
782
|
modelValue: e(n).sort,
|
769
|
-
"onUpdate:modelValue": o[1] || (o[1] = (
|
783
|
+
"onUpdate:modelValue": o[1] || (o[1] = (m) => e(n).sort = m),
|
770
784
|
min: 0,
|
771
785
|
placeholder: e(a)("base.placeholder.input")
|
772
786
|
}, null, 8, ["modelValue", "placeholder"])
|
@@ -779,79 +793,79 @@ const qe = /* @__PURE__ */ D({
|
|
779
793
|
]),
|
780
794
|
_: 1
|
781
795
|
}),
|
782
|
-
l(
|
796
|
+
l(u, {
|
783
797
|
label: e(a)("menu.module"),
|
784
798
|
prop: "module"
|
785
799
|
}, {
|
786
800
|
default: t(() => [
|
787
801
|
l(_, {
|
788
802
|
modelValue: e(n).module,
|
789
|
-
"onUpdate:modelValue": o[2] || (o[2] = (
|
803
|
+
"onUpdate:modelValue": o[2] || (o[2] = (m) => e(n).module = m),
|
790
804
|
placeholder: e(a)("base.placeholder.input")
|
791
805
|
}, null, 8, ["modelValue", "placeholder"])
|
792
806
|
]),
|
793
807
|
_: 1
|
794
808
|
}, 8, ["label"]),
|
795
|
-
l(
|
809
|
+
l(u, {
|
796
810
|
label: e(a)("base.name"),
|
797
811
|
prop: "name"
|
798
812
|
}, {
|
799
813
|
default: t(() => [
|
800
814
|
l(_, {
|
801
815
|
modelValue: e(n).name,
|
802
|
-
"onUpdate:modelValue": o[3] || (o[3] = (
|
816
|
+
"onUpdate:modelValue": o[3] || (o[3] = (m) => e(n).name = m),
|
803
817
|
placeholder: e(a)("base.placeholder.input")
|
804
818
|
}, null, 8, ["modelValue", "placeholder"])
|
805
819
|
]),
|
806
820
|
_: 1
|
807
821
|
}, 8, ["label"]),
|
808
|
-
l(
|
822
|
+
l(u, {
|
809
823
|
label: e(a)("base.en_name"),
|
810
824
|
prop: "en_name"
|
811
825
|
}, {
|
812
826
|
default: t(() => [
|
813
827
|
l(_, {
|
814
828
|
modelValue: e(n).en_name,
|
815
|
-
"onUpdate:modelValue": o[4] || (o[4] = (
|
829
|
+
"onUpdate:modelValue": o[4] || (o[4] = (m) => e(n).en_name = m),
|
816
830
|
placeholder: e(a)("base.placeholder.input")
|
817
831
|
}, null, 8, ["modelValue", "placeholder"])
|
818
832
|
]),
|
819
833
|
_: 1
|
820
834
|
}, 8, ["label"]),
|
821
|
-
l(
|
835
|
+
l(u, {
|
822
836
|
label: e(a)("menu.component"),
|
823
837
|
prop: "component"
|
824
838
|
}, {
|
825
839
|
default: t(() => [
|
826
840
|
l(_, {
|
827
841
|
modelValue: e(n).component,
|
828
|
-
"onUpdate:modelValue": o[5] || (o[5] = (
|
842
|
+
"onUpdate:modelValue": o[5] || (o[5] = (m) => e(n).component = m),
|
829
843
|
placeholder: e(a)("base.placeholder.input")
|
830
844
|
}, null, 8, ["modelValue", "placeholder"])
|
831
845
|
]),
|
832
846
|
_: 1
|
833
847
|
}, 8, ["label"]),
|
834
|
-
l(
|
848
|
+
l(u, {
|
835
849
|
label: e(a)("base.url"),
|
836
850
|
prop: "url"
|
837
851
|
}, {
|
838
852
|
default: t(() => [
|
839
853
|
l(_, {
|
840
854
|
modelValue: e(n).url,
|
841
|
-
"onUpdate:modelValue": o[6] || (o[6] = (
|
855
|
+
"onUpdate:modelValue": o[6] || (o[6] = (m) => e(n).url = m),
|
842
856
|
placeholder: e(a)("base.placeholder.input")
|
843
857
|
}, null, 8, ["modelValue", "placeholder"])
|
844
858
|
]),
|
845
859
|
_: 1
|
846
860
|
}, 8, ["label"]),
|
847
|
-
l(
|
861
|
+
l(u, {
|
848
862
|
label: e(a)("base.remark"),
|
849
863
|
prop: "remark"
|
850
864
|
}, {
|
851
865
|
default: t(() => [
|
852
866
|
l(_, {
|
853
867
|
modelValue: e(n).remark,
|
854
|
-
"onUpdate:modelValue": o[7] || (o[7] = (
|
868
|
+
"onUpdate:modelValue": o[7] || (o[7] = (m) => e(n).remark = m),
|
855
869
|
placeholder: e(a)("base.placeholder.input")
|
856
870
|
}, null, 8, ["modelValue", "placeholder"])
|
857
871
|
]),
|
@@ -860,24 +874,24 @@ const qe = /* @__PURE__ */ D({
|
|
860
874
|
]),
|
861
875
|
_: 1
|
862
876
|
}),
|
863
|
-
l(
|
877
|
+
l(r, { span: 12 }, {
|
864
878
|
default: t(() => [
|
865
|
-
l(
|
879
|
+
l(u, {
|
866
880
|
label: e(a)("base.icon"),
|
867
881
|
prop: "icon"
|
868
882
|
}, {
|
869
883
|
default: t(() => [
|
870
884
|
l(_, {
|
871
885
|
modelValue: e(n).icon,
|
872
|
-
"onUpdate:modelValue": o[8] || (o[8] = (
|
886
|
+
"onUpdate:modelValue": o[8] || (o[8] = (m) => e(n).icon = m),
|
873
887
|
placeholder: e(a)("base.placeholder.input"),
|
874
|
-
onInput: o[9] || (o[9] = (
|
875
|
-
e(n).meta.icon =
|
888
|
+
onInput: o[9] || (o[9] = (m) => {
|
889
|
+
e(n).meta.icon = m;
|
876
890
|
})
|
877
891
|
}, {
|
878
892
|
prepend: t(() => [
|
879
893
|
G("span", {
|
880
|
-
class:
|
894
|
+
class: be("iconfont " + e(n).icon)
|
881
895
|
}, null, 2)
|
882
896
|
]),
|
883
897
|
_: 1
|
@@ -885,27 +899,27 @@ const qe = /* @__PURE__ */ D({
|
|
885
899
|
]),
|
886
900
|
_: 1
|
887
901
|
}, 8, ["label"]),
|
888
|
-
l(
|
902
|
+
l(u, {
|
889
903
|
label: e(a)("base.title"),
|
890
904
|
prop: "meta.title"
|
891
905
|
}, {
|
892
906
|
default: t(() => [
|
893
907
|
l(_, {
|
894
908
|
modelValue: e(n).meta.title,
|
895
|
-
"onUpdate:modelValue": o[10] || (o[10] = (
|
909
|
+
"onUpdate:modelValue": o[10] || (o[10] = (m) => e(n).meta.title = m),
|
896
910
|
placeholder: e(a)("base.placeholder.input")
|
897
911
|
}, null, 8, ["modelValue", "placeholder"])
|
898
912
|
]),
|
899
913
|
_: 1
|
900
914
|
}, 8, ["label"]),
|
901
|
-
l(
|
915
|
+
l(u, {
|
902
916
|
label: e(a)("menu.active"),
|
903
917
|
prop: "meta.active"
|
904
918
|
}, {
|
905
919
|
default: t(() => [
|
906
920
|
l(_, {
|
907
921
|
modelValue: e(n).meta.active,
|
908
|
-
"onUpdate:modelValue": o[11] || (o[11] = (
|
922
|
+
"onUpdate:modelValue": o[11] || (o[11] = (m) => e(n).meta.active = m),
|
909
923
|
placeholder: e(a)("base.placeholder.input")
|
910
924
|
}, null, 8, ["modelValue", "placeholder"])
|
911
925
|
]),
|
@@ -913,16 +927,16 @@ const qe = /* @__PURE__ */ D({
|
|
913
927
|
}, 8, ["label"]),
|
914
928
|
l(A, null, {
|
915
929
|
default: t(() => [
|
916
|
-
l(
|
930
|
+
l(r, { span: 12 }, {
|
917
931
|
default: t(() => [
|
918
|
-
l(
|
932
|
+
l(u, {
|
919
933
|
label: e(a)("menu.link"),
|
920
934
|
prop: "meta.link"
|
921
935
|
}, {
|
922
936
|
default: t(() => [
|
923
937
|
l(y, {
|
924
938
|
modelValue: e(n).meta.link,
|
925
|
-
"onUpdate:modelValue": o[12] || (o[12] = (
|
939
|
+
"onUpdate:modelValue": o[12] || (o[12] = (m) => e(n).meta.link = m)
|
926
940
|
}, null, 8, ["modelValue"])
|
927
941
|
]),
|
928
942
|
_: 1
|
@@ -930,16 +944,16 @@ const qe = /* @__PURE__ */ D({
|
|
930
944
|
]),
|
931
945
|
_: 1
|
932
946
|
}),
|
933
|
-
l(
|
947
|
+
l(r, { span: 12 }, {
|
934
948
|
default: t(() => [
|
935
|
-
l(
|
949
|
+
l(u, {
|
936
950
|
label: e(a)("menu.keep_alive"),
|
937
951
|
prop: "meta.keep_alive"
|
938
952
|
}, {
|
939
953
|
default: t(() => [
|
940
954
|
l(y, {
|
941
955
|
modelValue: e(n).meta.keep_alive,
|
942
|
-
"onUpdate:modelValue": o[13] || (o[13] = (
|
956
|
+
"onUpdate:modelValue": o[13] || (o[13] = (m) => e(n).meta.keep_alive = m)
|
943
957
|
}, null, 8, ["modelValue"])
|
944
958
|
]),
|
945
959
|
_: 1
|
@@ -947,16 +961,16 @@ const qe = /* @__PURE__ */ D({
|
|
947
961
|
]),
|
948
962
|
_: 1
|
949
963
|
}),
|
950
|
-
l(
|
964
|
+
l(r, { span: 12 }, {
|
951
965
|
default: t(() => [
|
952
|
-
l(
|
966
|
+
l(u, {
|
953
967
|
label: e(a)("menu.hide"),
|
954
968
|
prop: "meta.hide"
|
955
969
|
}, {
|
956
970
|
default: t(() => [
|
957
971
|
l(y, {
|
958
972
|
modelValue: e(n).meta.hide,
|
959
|
-
"onUpdate:modelValue": o[14] || (o[14] = (
|
973
|
+
"onUpdate:modelValue": o[14] || (o[14] = (m) => e(n).meta.hide = m)
|
960
974
|
}, null, 8, ["modelValue"])
|
961
975
|
]),
|
962
976
|
_: 1
|
@@ -964,16 +978,16 @@ const qe = /* @__PURE__ */ D({
|
|
964
978
|
]),
|
965
979
|
_: 1
|
966
980
|
}),
|
967
|
-
l(
|
981
|
+
l(r, { span: 12 }, {
|
968
982
|
default: t(() => [
|
969
|
-
l(
|
983
|
+
l(u, {
|
970
984
|
label: e(a)("menu.full"),
|
971
985
|
prop: "meta.full"
|
972
986
|
}, {
|
973
987
|
default: t(() => [
|
974
988
|
l(y, {
|
975
989
|
modelValue: e(n).meta.full,
|
976
|
-
"onUpdate:modelValue": o[15] || (o[15] = (
|
990
|
+
"onUpdate:modelValue": o[15] || (o[15] = (m) => e(n).meta.full = m)
|
977
991
|
}, null, 8, ["modelValue"])
|
978
992
|
]),
|
979
993
|
_: 1
|
@@ -981,16 +995,16 @@ const qe = /* @__PURE__ */ D({
|
|
981
995
|
]),
|
982
996
|
_: 1
|
983
997
|
}),
|
984
|
-
l(
|
998
|
+
l(r, { span: 12 }, {
|
985
999
|
default: t(() => [
|
986
|
-
l(
|
1000
|
+
l(u, {
|
987
1001
|
label: e(a)("menu.affix"),
|
988
1002
|
prop: "meta.affix"
|
989
1003
|
}, {
|
990
1004
|
default: t(() => [
|
991
1005
|
l(y, {
|
992
1006
|
modelValue: e(n).meta.affix,
|
993
|
-
"onUpdate:modelValue": o[16] || (o[16] = (
|
1007
|
+
"onUpdate:modelValue": o[16] || (o[16] = (m) => e(n).meta.affix = m)
|
994
1008
|
}, null, 8, ["modelValue"])
|
995
1009
|
]),
|
996
1010
|
_: 1
|
@@ -1031,26 +1045,26 @@ const qe = /* @__PURE__ */ D({
|
|
1031
1045
|
setup(U, {
|
1032
1046
|
emit: C
|
1033
1047
|
}) {
|
1034
|
-
const v = C,
|
1048
|
+
const v = C, R = U, {
|
1035
1049
|
requesting: w
|
1036
1050
|
} = K($), {
|
1037
1051
|
value: k,
|
1038
|
-
options:
|
1052
|
+
options: b,
|
1039
1053
|
change: s,
|
1040
1054
|
refresh: i,
|
1041
1055
|
filterOptions: n
|
1042
|
-
} =
|
1056
|
+
} = de(ue(R, "modelValue"), v, {
|
1043
1057
|
key: "MENU_LIST",
|
1044
1058
|
api: $,
|
1045
1059
|
isArray: !0
|
1046
1060
|
});
|
1047
|
-
return (
|
1061
|
+
return (f, g) => {
|
1048
1062
|
const h = d("el-select-v2");
|
1049
|
-
return
|
1063
|
+
return M(), T(h, {
|
1050
1064
|
class: "w-full",
|
1051
1065
|
modelValue: e(k),
|
1052
1066
|
"onUpdate:modelValue": g[1] || (g[1] = (V) => z(k) ? k.value = V : null),
|
1053
|
-
options: e(
|
1067
|
+
options: e(b),
|
1054
1068
|
multiple: U.multiple,
|
1055
1069
|
disabled: e(w),
|
1056
1070
|
placeholder: e(a)("base.placeholder.select"),
|
@@ -1070,7 +1084,7 @@ const qe = /* @__PURE__ */ D({
|
|
1070
1084
|
__name: "rule",
|
1071
1085
|
emits: ["refresh"],
|
1072
1086
|
setup(U, { expose: C, emit: v }) {
|
1073
|
-
const
|
1087
|
+
const R = v, w = {
|
1074
1088
|
key: "",
|
1075
1089
|
menu_id: 0,
|
1076
1090
|
sort: 0,
|
@@ -1094,8 +1108,8 @@ const qe = /* @__PURE__ */ D({
|
|
1094
1108
|
urls: [
|
1095
1109
|
{ required: !0, message: a("base.placeholder.input base.rules"), trigger: "blur" }
|
1096
1110
|
]
|
1097
|
-
}, { modal:
|
1098
|
-
|
1111
|
+
}, { modal: b, title: s, form: i, formData: n, requesting: f, executing: g, open: h, modify: V, submit: q, closed: S } = P(
|
1112
|
+
R,
|
1099
1113
|
w,
|
1100
1114
|
ce
|
1101
1115
|
);
|
@@ -1104,14 +1118,14 @@ const qe = /* @__PURE__ */ D({
|
|
1104
1118
|
p ? V({ key: p }) : h();
|
1105
1119
|
}
|
1106
1120
|
}), (p, o) => {
|
1107
|
-
const
|
1108
|
-
return
|
1109
|
-
modelValue: e(
|
1110
|
-
"onUpdate:modelValue": o[6] || (o[6] = (
|
1121
|
+
const u = d("el-form-item"), r = d("el-input-number"), x = d("el-input"), A = d("el-col"), _ = d("el-row"), y = d("el-form");
|
1122
|
+
return M(), T(e(Y), {
|
1123
|
+
modelValue: e(b),
|
1124
|
+
"onUpdate:modelValue": o[6] || (o[6] = (O) => z(b) ? b.value = O : null),
|
1111
1125
|
title: e(s)("base.rules"),
|
1112
1126
|
width: "1000px",
|
1113
1127
|
executing: e(g),
|
1114
|
-
onClosed: e(
|
1128
|
+
onClosed: e(S),
|
1115
1129
|
onSubmit: e(q)
|
1116
1130
|
}, {
|
1117
1131
|
default: t(() => [
|
@@ -1121,74 +1135,74 @@ const qe = /* @__PURE__ */ D({
|
|
1121
1135
|
model: e(n),
|
1122
1136
|
"label-width": "auto",
|
1123
1137
|
rules: k,
|
1124
|
-
disabled: e(
|
1138
|
+
disabled: e(f) || e(g)
|
1125
1139
|
}, {
|
1126
1140
|
default: t(() => [
|
1127
1141
|
l(_, { gutter: 20 }, {
|
1128
1142
|
default: t(() => [
|
1129
1143
|
l(A, { span: 10 }, {
|
1130
1144
|
default: t(() => [
|
1131
|
-
l(
|
1145
|
+
l(u, {
|
1132
1146
|
label: e(a)("menu.Menu"),
|
1133
1147
|
prop: "menu_id"
|
1134
1148
|
}, {
|
1135
1149
|
default: t(() => [
|
1136
1150
|
l(Le, {
|
1137
1151
|
modelValue: e(n).menu_id,
|
1138
|
-
"onUpdate:modelValue": o[0] || (o[0] = (
|
1152
|
+
"onUpdate:modelValue": o[0] || (o[0] = (O) => e(n).menu_id = O)
|
1139
1153
|
}, null, 8, ["modelValue"])
|
1140
1154
|
]),
|
1141
1155
|
_: 1
|
1142
1156
|
}, 8, ["label"]),
|
1143
|
-
l(
|
1157
|
+
l(u, {
|
1144
1158
|
label: e(a)("base.sort"),
|
1145
1159
|
prop: "sort"
|
1146
1160
|
}, {
|
1147
1161
|
default: t(() => [
|
1148
|
-
l(
|
1162
|
+
l(r, {
|
1149
1163
|
class: "w-full",
|
1150
1164
|
modelValue: e(n).sort,
|
1151
|
-
"onUpdate:modelValue": o[1] || (o[1] = (
|
1165
|
+
"onUpdate:modelValue": o[1] || (o[1] = (O) => e(n).sort = O),
|
1152
1166
|
min: 0,
|
1153
1167
|
placeholder: e(a)("base.placeholder.input")
|
1154
1168
|
}, null, 8, ["modelValue", "placeholder"])
|
1155
1169
|
]),
|
1156
1170
|
_: 1
|
1157
1171
|
}, 8, ["label"]),
|
1158
|
-
l(
|
1172
|
+
l(u, {
|
1159
1173
|
label: e(a)("base.name"),
|
1160
1174
|
prop: "name"
|
1161
1175
|
}, {
|
1162
1176
|
default: t(() => [
|
1163
1177
|
l(x, {
|
1164
1178
|
modelValue: e(n).name,
|
1165
|
-
"onUpdate:modelValue": o[2] || (o[2] = (
|
1179
|
+
"onUpdate:modelValue": o[2] || (o[2] = (O) => e(n).name = O),
|
1166
1180
|
placeholder: e(a)("base.placeholder.input")
|
1167
1181
|
}, null, 8, ["modelValue", "placeholder"])
|
1168
1182
|
]),
|
1169
1183
|
_: 1
|
1170
1184
|
}, 8, ["label"]),
|
1171
|
-
l(
|
1185
|
+
l(u, {
|
1172
1186
|
label: e(a)("base.en_name"),
|
1173
1187
|
prop: "en_name"
|
1174
1188
|
}, {
|
1175
1189
|
default: t(() => [
|
1176
1190
|
l(x, {
|
1177
1191
|
modelValue: e(n).en_name,
|
1178
|
-
"onUpdate:modelValue": o[3] || (o[3] = (
|
1192
|
+
"onUpdate:modelValue": o[3] || (o[3] = (O) => e(n).en_name = O),
|
1179
1193
|
placeholder: e(a)("base.placeholder.input")
|
1180
1194
|
}, null, 8, ["modelValue", "placeholder"])
|
1181
1195
|
]),
|
1182
1196
|
_: 1
|
1183
1197
|
}, 8, ["label"]),
|
1184
|
-
l(
|
1198
|
+
l(u, {
|
1185
1199
|
label: e(a)("base.remark"),
|
1186
1200
|
prop: "remark"
|
1187
1201
|
}, {
|
1188
1202
|
default: t(() => [
|
1189
1203
|
l(x, {
|
1190
1204
|
modelValue: e(n).remark,
|
1191
|
-
"onUpdate:modelValue": o[4] || (o[4] = (
|
1205
|
+
"onUpdate:modelValue": o[4] || (o[4] = (O) => e(n).remark = O),
|
1192
1206
|
placeholder: e(a)("base.placeholder.input")
|
1193
1207
|
}, null, 8, ["modelValue", "placeholder"])
|
1194
1208
|
]),
|
@@ -1199,14 +1213,14 @@ const qe = /* @__PURE__ */ D({
|
|
1199
1213
|
}),
|
1200
1214
|
l(A, { span: 14 }, {
|
1201
1215
|
default: t(() => [
|
1202
|
-
l(
|
1216
|
+
l(u, {
|
1203
1217
|
label: e(a)("base.rules"),
|
1204
1218
|
prop: "urls"
|
1205
1219
|
}, {
|
1206
1220
|
default: t(() => [
|
1207
1221
|
l(x, {
|
1208
1222
|
modelValue: e(n).urls,
|
1209
|
-
"onUpdate:modelValue": o[5] || (o[5] = (
|
1223
|
+
"onUpdate:modelValue": o[5] || (o[5] = (O) => e(n).urls = O),
|
1210
1224
|
type: "textarea",
|
1211
1225
|
rows: 11,
|
1212
1226
|
placeholder: e(a)("base.placeholder.input")
|
@@ -1230,7 +1244,7 @@ const qe = /* @__PURE__ */ D({
|
|
1230
1244
|
}
|
1231
1245
|
});
|
1232
1246
|
function pe(U) {
|
1233
|
-
return typeof U == "function" || Object.prototype.toString.call(U) === "[object Object]" && !
|
1247
|
+
return typeof U == "function" || Object.prototype.toString.call(U) === "[object Object]" && !fe(U);
|
1234
1248
|
}
|
1235
1249
|
const De = /* @__PURE__ */ D({
|
1236
1250
|
__name: "index",
|
@@ -1238,7 +1252,7 @@ const De = /* @__PURE__ */ D({
|
|
1238
1252
|
const C = {
|
1239
1253
|
keyword: "",
|
1240
1254
|
status: 0
|
1241
|
-
}, v = Q(""),
|
1255
|
+
}, v = Q(""), R = [
|
1242
1256
|
{
|
1243
1257
|
label: a("base.sort"),
|
1244
1258
|
prop: "sort",
|
@@ -1280,11 +1294,13 @@ const De = /* @__PURE__ */ D({
|
|
1280
1294
|
{
|
1281
1295
|
label: a("base.url"),
|
1282
1296
|
prop: "url",
|
1297
|
+
align: "left",
|
1283
1298
|
width: 200
|
1284
1299
|
},
|
1285
1300
|
{
|
1286
1301
|
label: a("menu.component"),
|
1287
1302
|
prop: "component",
|
1303
|
+
align: "left",
|
1288
1304
|
width: 200
|
1289
1305
|
},
|
1290
1306
|
{
|
@@ -1297,8 +1313,8 @@ const De = /* @__PURE__ */ D({
|
|
1297
1313
|
}) => l(d("el-space"), null, {
|
1298
1314
|
default: () => {
|
1299
1315
|
var o;
|
1300
|
-
return [(o = p.rules) == null ? void 0 : o.map((
|
1301
|
-
visible: v.value ===
|
1316
|
+
return [(o = p.rules) == null ? void 0 : o.map((u) => l(d("el-popover"), {
|
1317
|
+
visible: v.value === u.key,
|
1302
1318
|
title: a("message.title.warning"),
|
1303
1319
|
placement: "top-end",
|
1304
1320
|
width: 220
|
@@ -1306,26 +1322,26 @@ const De = /* @__PURE__ */ D({
|
|
1306
1322
|
reference: () => l(d("el-tag"), {
|
1307
1323
|
class: "cursor-pointer",
|
1308
1324
|
closable: !0,
|
1309
|
-
key:
|
1310
|
-
onClick: () =>
|
1311
|
-
onClose: () => v.value =
|
1325
|
+
key: u.key,
|
1326
|
+
onClick: () => S(u.key),
|
1327
|
+
onClose: () => v.value = u.key
|
1312
1328
|
}, {
|
1313
|
-
default: () => [
|
1329
|
+
default: () => [u.translate]
|
1314
1330
|
}),
|
1315
1331
|
default: () => {
|
1316
|
-
let
|
1317
|
-
return l("div", null, [l("p", null, null), l("p", null, [`${a("base.confirm base.delete base.rules")}: ${p.translate}-${
|
1332
|
+
let r, x;
|
1333
|
+
return l("div", null, [l("p", null, null), l("p", null, [`${a("base.confirm base.delete base.rules")}: ${p.translate}-${u.translate} ?`]), l("div", {
|
1318
1334
|
style: "text-align: right; margin: 0"
|
1319
1335
|
}, [l(d("el-button"), {
|
1320
1336
|
size: "small",
|
1321
1337
|
text: !0,
|
1322
1338
|
onClick: () => v.value = ""
|
1323
|
-
}, pe(
|
1324
|
-
default: () => [
|
1339
|
+
}, pe(r = a("base.cancel")) ? r : {
|
1340
|
+
default: () => [r]
|
1325
1341
|
}), l(d("el-button"), {
|
1326
1342
|
size: "small",
|
1327
1343
|
type: "danger",
|
1328
|
-
onClick: () =>
|
1344
|
+
onClick: () => c(u.key)
|
1329
1345
|
}, pe(x = a("base.confirm")) ? x : {
|
1330
1346
|
default: () => [x]
|
1331
1347
|
})])]);
|
@@ -1361,18 +1377,18 @@ const De = /* @__PURE__ */ D({
|
|
1361
1377
|
requesting: w
|
1362
1378
|
} = K($), {
|
1363
1379
|
tableRef: k,
|
1364
|
-
infoRef:
|
1380
|
+
infoRef: b,
|
1365
1381
|
keyword: s,
|
1366
1382
|
search: i,
|
1367
1383
|
refresh: n,
|
1368
|
-
reset:
|
1384
|
+
reset: f,
|
1369
1385
|
openInfo: g,
|
1370
1386
|
modifyInfo: h
|
1371
1387
|
} = F(C), {
|
1372
1388
|
infoRef: V,
|
1373
1389
|
openInfo: q,
|
1374
|
-
modifyInfo:
|
1375
|
-
} = F(),
|
1390
|
+
modifyInfo: S
|
1391
|
+
} = F(), c = (p) => {
|
1376
1392
|
ce[we]({
|
1377
1393
|
key: p
|
1378
1394
|
}).then(() => {
|
@@ -1380,60 +1396,67 @@ const De = /* @__PURE__ */ D({
|
|
1380
1396
|
});
|
1381
1397
|
};
|
1382
1398
|
return (p, o) => {
|
1383
|
-
const
|
1384
|
-
return
|
1399
|
+
const u = d("el-button"), r = d("el-input"), x = d("el-radio-button"), A = d("el-radio-group"), _ = d("el-space"), y = d("el-page-header"), O = d("el-card");
|
1400
|
+
return M(), T(O, {
|
1385
1401
|
class: "basic-card flex-full",
|
1386
1402
|
"body-class": "flex-1",
|
1387
1403
|
onClick: o[2] || (o[2] = () => v.value = "")
|
1388
1404
|
}, {
|
1389
|
-
header: t(() => [l(
|
1390
|
-
class: "
|
1405
|
+
header: t(() => [l(y, {
|
1406
|
+
class: "basic-header"
|
1391
1407
|
}, {
|
1392
|
-
|
1408
|
+
title: t(() => [l(e(W), {
|
1393
1409
|
loading: e(w),
|
1394
1410
|
onRefresh: e(n)
|
1395
|
-
}, null, 8, ["loading", "onRefresh"]), l(e(
|
1411
|
+
}, null, 8, ["loading", "onRefresh"]), l(e(te), {
|
1396
1412
|
onOpen: e(g)
|
1397
|
-
}, null, 8, ["onOpen"]), l(
|
1413
|
+
}, null, 8, ["onOpen"]), l(u, {
|
1398
1414
|
circle: "",
|
1399
1415
|
onClick: e(q),
|
1400
1416
|
icon: e(Oe)
|
1401
|
-
}, null, 8, ["onClick", "icon"]),
|
1402
|
-
|
1403
|
-
|
1404
|
-
"onUpdate:modelValue": o[0] || (o[0] = (R) => e(s).keyword = R),
|
1405
|
-
placeholder: e(a)("base.placeholder.keyword"),
|
1406
|
-
clearable: "",
|
1407
|
-
onKeyup: X(e(i), ["enter"]),
|
1408
|
-
onClear: e(i)
|
1409
|
-
}, null, 8, ["modelValue", "placeholder", "onKeyup", "onClear"]), l(A, {
|
1410
|
-
modelValue: e(s).status,
|
1411
|
-
"onUpdate:modelValue": o[1] || (o[1] = (R) => e(s).status = R),
|
1412
|
-
onChange: e(i)
|
1417
|
+
}, null, 8, ["onClick", "icon"])]),
|
1418
|
+
content: t(() => [l(_, {
|
1419
|
+
class: "search-bar"
|
1413
1420
|
}, {
|
1414
|
-
default: t(() => [
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1421
|
+
default: t(() => [l(r, {
|
1422
|
+
class: "basic-search-input",
|
1423
|
+
modelValue: e(s).keyword,
|
1424
|
+
"onUpdate:modelValue": o[0] || (o[0] = (m) => e(s).keyword = m),
|
1425
|
+
placeholder: e(a)("base.placeholder.keyword"),
|
1426
|
+
clearable: "",
|
1427
|
+
onKeyup: X(e(i), ["enter"]),
|
1428
|
+
onClear: e(i)
|
1429
|
+
}, null, 8, ["modelValue", "placeholder", "onKeyup", "onClear"]), l(A, {
|
1430
|
+
modelValue: e(s).status,
|
1431
|
+
"onUpdate:modelValue": o[1] || (o[1] = (m) => e(s).status = m),
|
1432
|
+
onChange: e(i)
|
1433
|
+
}, {
|
1434
|
+
default: t(() => [(M(), I(B, null, j([0, 1, 2], (m) => l(x, {
|
1435
|
+
key: m,
|
1436
|
+
label: e(a)(`base.DISABLE_ENABLE.${m}`),
|
1437
|
+
value: m
|
1438
|
+
}, null, 8, ["label", "value"])), 64))]),
|
1439
|
+
_: 1
|
1440
|
+
}, 8, ["modelValue", "onChange"]), l(e(oe), {
|
1441
|
+
disabled: e(w),
|
1442
|
+
onSearch: e(i)
|
1443
|
+
}, null, 8, ["disabled", "onSearch"])]),
|
1419
1444
|
_: 1
|
1420
|
-
}
|
1421
|
-
onSearch: e(i)
|
1422
|
-
}, null, 8, ["onSearch"])]),
|
1445
|
+
})]),
|
1423
1446
|
_: 1
|
1424
1447
|
})]),
|
1425
1448
|
default: t(() => [l(e(le), {
|
1426
1449
|
ref_key: "tableRef",
|
1427
1450
|
ref: k,
|
1428
1451
|
size: "small",
|
1429
|
-
columns:
|
1452
|
+
columns: R,
|
1430
1453
|
url: e($).urls[e(ae)],
|
1431
1454
|
"search-param": e(s),
|
1432
1455
|
autoSearch: ""
|
1433
1456
|
}, null, 8, ["url", "search-param"]), l(Ee, {
|
1434
1457
|
ref_key: "infoRef",
|
1435
|
-
ref:
|
1436
|
-
onRefresh: e(
|
1458
|
+
ref: b,
|
1459
|
+
onRefresh: e(f)
|
1437
1460
|
}, null, 8, ["onRefresh"]), l(Te, {
|
1438
1461
|
ref_key: "ruleRef",
|
1439
1462
|
ref: V,
|
@@ -1454,73 +1477,73 @@ const De = /* @__PURE__ */ D({
|
|
1454
1477
|
},
|
1455
1478
|
emits: ["update:modelValue"],
|
1456
1479
|
setup(U, { expose: C, emit: v }) {
|
1457
|
-
const { requesting:
|
1480
|
+
const { requesting: R } = K($), w = U, k = v, b = Q(!1), s = _e({
|
1458
1481
|
checkAll: !1,
|
1459
1482
|
indeterminate: !1,
|
1460
1483
|
MenuAll: {},
|
1461
1484
|
MenuList: {},
|
1462
1485
|
MenuIndeterminate: {}
|
1463
|
-
}), { options: i, refresh: n } =
|
1486
|
+
}), { options: i, refresh: n } = de(
|
1464
1487
|
ue(w, "modelValue"),
|
1465
1488
|
k,
|
1466
1489
|
{ key: "RULE_CHECK", api: $, url: $.urls.rules, isArray: !0 },
|
1467
1490
|
!1
|
1468
1491
|
);
|
1469
|
-
function
|
1470
|
-
i.value.forEach((
|
1492
|
+
function f() {
|
1493
|
+
i.value.forEach((c) => {
|
1471
1494
|
var p;
|
1472
|
-
(p =
|
1495
|
+
(p = c.rules) != null && p.length && (s.MenuAll[c.id] = !1, s.MenuIndeterminate[c.id] = !1, s.MenuList[c.id] = []);
|
1473
1496
|
});
|
1474
1497
|
}
|
1475
|
-
function g(
|
1498
|
+
function g(c) {
|
1476
1499
|
i.value.forEach((p) => {
|
1477
1500
|
var o;
|
1478
|
-
(o = p.rules) != null && o.length && (s.MenuList[p.id] =
|
1501
|
+
(o = p.rules) != null && o.length && (s.MenuList[p.id] = c ? p.rules.map((u) => u.key) : []);
|
1479
1502
|
}), V();
|
1480
1503
|
}
|
1481
|
-
function h(
|
1482
|
-
const o = i.value.find((
|
1483
|
-
s.MenuList[p] =
|
1504
|
+
function h(c, p) {
|
1505
|
+
const o = i.value.find((u) => u.id === p);
|
1506
|
+
s.MenuList[p] = c && o ? o.rules.map((u) => u.key) : [], V();
|
1484
1507
|
}
|
1485
1508
|
function V() {
|
1486
|
-
i.value.forEach((
|
1487
|
-
var
|
1488
|
-
const p = ((
|
1489
|
-
s.MenuAll[
|
1490
|
-
}), s.checkAll = Object.values(s.MenuAll).every(Boolean), s.indeterminate = !s.checkAll && Object.values(s.MenuList).some((
|
1509
|
+
i.value.forEach((c) => {
|
1510
|
+
var u, r;
|
1511
|
+
const p = ((u = c.rules) == null ? void 0 : u.length) || 0, o = ((r = s.MenuList[c.id]) == null ? void 0 : r.length) || 0;
|
1512
|
+
s.MenuAll[c.id] = o === p && p > 0, s.MenuIndeterminate[c.id] = o > 0 && o < p;
|
1513
|
+
}), s.checkAll = Object.values(s.MenuAll).every(Boolean), s.indeterminate = !s.checkAll && Object.values(s.MenuList).some((c) => c.length > 0), k("update:modelValue", Object.values(s.MenuList).flat());
|
1491
1514
|
}
|
1492
1515
|
function q() {
|
1493
|
-
s.checkAll = !1, s.indeterminate = !1, s.MenuAll = {}, s.MenuList = {}, s.MenuIndeterminate = {},
|
1516
|
+
s.checkAll = !1, s.indeterminate = !1, s.MenuAll = {}, s.MenuList = {}, s.MenuIndeterminate = {}, f(), k("update:modelValue", []), b.value = !1;
|
1494
1517
|
}
|
1495
|
-
function
|
1518
|
+
function S(c) {
|
1496
1519
|
var p;
|
1497
1520
|
if (Array.isArray(i.value) && i.value.length > 0) {
|
1498
1521
|
for (let o of i.value)
|
1499
1522
|
if (Array.isArray(o.rules) && o.rules.length > 0)
|
1500
|
-
for (let
|
1501
|
-
|
1502
|
-
V(),
|
1523
|
+
for (let u of o.rules)
|
1524
|
+
c.some((r) => r === u.key) && (s.MenuList[o.id] = (((p = s.MenuList) == null ? void 0 : p[o.id]) || []).concat([u.key]));
|
1525
|
+
V(), b.value = !0;
|
1503
1526
|
}
|
1504
1527
|
}
|
1505
1528
|
return ge(async () => {
|
1506
|
-
var
|
1507
|
-
(
|
1529
|
+
var c;
|
1530
|
+
(c = i.value) != null && c.length || await n(), !b.value && w.modelValue && S(w.modelValue);
|
1508
1531
|
}), he(
|
1509
1532
|
() => w.modelValue,
|
1510
|
-
(
|
1533
|
+
(c) => {
|
1511
1534
|
Ve(() => {
|
1512
1535
|
var p;
|
1513
|
-
|
1536
|
+
b.value || !((p = i.value) != null && p.length) || c && c.length > 0 && S(c);
|
1514
1537
|
});
|
1515
1538
|
},
|
1516
1539
|
{ deep: !0, immediate: !0 }
|
1517
1540
|
), C({
|
1518
|
-
generateOption:
|
1541
|
+
generateOption: S,
|
1519
1542
|
cleanChecked: q
|
1520
|
-
}), (
|
1521
|
-
const o = d("el-checkbox"),
|
1522
|
-
return
|
1523
|
-
l(
|
1543
|
+
}), (c, p) => {
|
1544
|
+
const o = d("el-checkbox"), u = d("el-space"), r = d("el-text"), x = d("el-divider"), A = d("el-checkbox-group");
|
1545
|
+
return M(), I("div", Ie, [
|
1546
|
+
l(u, { style: { "margin-bottom": "6px" } }, {
|
1524
1547
|
default: t(() => [
|
1525
1548
|
l(o, {
|
1526
1549
|
"model-value": s.checkAll,
|
@@ -1536,7 +1559,7 @@ const De = /* @__PURE__ */ D({
|
|
1536
1559
|
__: [1]
|
1537
1560
|
}, 8, ["model-value", "indeterminate", "disabled"]),
|
1538
1561
|
l(e(W), {
|
1539
|
-
loading: e(
|
1562
|
+
loading: e(R),
|
1540
1563
|
text: "",
|
1541
1564
|
size: "small",
|
1542
1565
|
onRefresh: p[0] || (p[0] = (_) => e(n)(!0))
|
@@ -1544,15 +1567,15 @@ const De = /* @__PURE__ */ D({
|
|
1544
1567
|
]),
|
1545
1568
|
_: 1
|
1546
1569
|
}),
|
1547
|
-
l(
|
1570
|
+
l(u, {
|
1548
1571
|
direction: "vertical",
|
1549
1572
|
alignment: "start"
|
1550
1573
|
}, {
|
1551
1574
|
default: t(() => [
|
1552
|
-
(
|
1575
|
+
(M(!0), I(B, null, j(e(i), (_) => (M(), I("div", {
|
1553
1576
|
key: _.id
|
1554
1577
|
}, [
|
1555
|
-
l(
|
1578
|
+
l(u, {
|
1556
1579
|
direction: "horizontal",
|
1557
1580
|
size: 2
|
1558
1581
|
}, {
|
@@ -1565,7 +1588,7 @@ const De = /* @__PURE__ */ D({
|
|
1565
1588
|
onChange: (y) => h(y, _.id)
|
1566
1589
|
}, {
|
1567
1590
|
default: t(() => [
|
1568
|
-
l(
|
1591
|
+
l(r, { style: { "font-size": "15px" } }, {
|
1569
1592
|
default: t(() => [
|
1570
1593
|
N(ne(_.translate), 1)
|
1571
1594
|
]),
|
@@ -1575,7 +1598,7 @@ const De = /* @__PURE__ */ D({
|
|
1575
1598
|
_: 2
|
1576
1599
|
}, 1032, ["model-value", "disabled", "indeterminate", "onChange"]),
|
1577
1600
|
l(x, { direction: "vertical" }),
|
1578
|
-
_.rules ? (
|
1601
|
+
_.rules ? (M(), T(A, {
|
1579
1602
|
key: 0,
|
1580
1603
|
modelValue: s.MenuList[_.id],
|
1581
1604
|
"onUpdate:modelValue": (y) => s.MenuList[_.id] = y,
|
@@ -1584,7 +1607,7 @@ const De = /* @__PURE__ */ D({
|
|
1584
1607
|
onChange: V
|
1585
1608
|
}, {
|
1586
1609
|
default: t(() => [
|
1587
|
-
(
|
1610
|
+
(M(!0), I(B, null, j(_.rules, (y) => (M(), T(o, {
|
1588
1611
|
key: y.key,
|
1589
1612
|
value: y.key
|
1590
1613
|
}, {
|
@@ -1610,7 +1633,7 @@ const De = /* @__PURE__ */ D({
|
|
1610
1633
|
__name: "info",
|
1611
1634
|
emits: ["refresh"],
|
1612
1635
|
setup(U, { expose: C, emit: v }) {
|
1613
|
-
const
|
1636
|
+
const R = v, w = Q(), k = {
|
1614
1637
|
key: "",
|
1615
1638
|
module: "",
|
1616
1639
|
sort: 0,
|
@@ -1618,47 +1641,47 @@ const De = /* @__PURE__ */ D({
|
|
1618
1641
|
en_name: "",
|
1619
1642
|
remark: "",
|
1620
1643
|
rules: []
|
1621
|
-
},
|
1644
|
+
}, b = {
|
1622
1645
|
name: [
|
1623
1646
|
{ required: !0, message: a("base.placeholder.input base.name"), trigger: "blur" }
|
1624
1647
|
],
|
1625
1648
|
en_name: [
|
1626
1649
|
{ required: !0, message: a("base.placeholder.input base.en_name"), trigger: "blur" }
|
1627
1650
|
]
|
1628
|
-
}, { modal: s, title: i, form: n, formData:
|
1629
|
-
|
1651
|
+
}, { modal: s, title: i, form: n, formData: f, requesting: g, executing: h, open: V, modify: q, submit: S, closed: c } = P(
|
1652
|
+
R,
|
1630
1653
|
k,
|
1631
1654
|
J
|
1632
|
-
), p = (
|
1633
|
-
|
1655
|
+
), p = (u) => {
|
1656
|
+
u ? q({ key: u }) : V();
|
1634
1657
|
}, o = () => {
|
1635
|
-
var
|
1636
|
-
(
|
1658
|
+
var u;
|
1659
|
+
(u = w.value) == null || u.cleanChecked(), c();
|
1637
1660
|
};
|
1638
1661
|
return C({
|
1639
1662
|
openOrModify: p
|
1640
|
-
}), (
|
1641
|
-
const x = d("el-input"), A = d("el-form-item"), _ = d("el-col"), y = d("el-input-number"),
|
1642
|
-
return
|
1663
|
+
}), (u, r) => {
|
1664
|
+
const x = d("el-input"), A = d("el-form-item"), _ = d("el-col"), y = d("el-input-number"), O = d("el-row"), m = d("el-form");
|
1665
|
+
return M(), T(e(Y), {
|
1643
1666
|
modelValue: e(s),
|
1644
|
-
"onUpdate:modelValue":
|
1667
|
+
"onUpdate:modelValue": r[6] || (r[6] = (L) => z(s) ? s.value = L : null),
|
1645
1668
|
title: e(i)(),
|
1646
1669
|
width: "1000px",
|
1647
1670
|
executing: e(h),
|
1648
1671
|
onClosed: o,
|
1649
|
-
onSubmit: e(
|
1672
|
+
onSubmit: e(S)
|
1650
1673
|
}, {
|
1651
1674
|
default: t(() => [
|
1652
|
-
l(
|
1675
|
+
l(m, {
|
1653
1676
|
ref_key: "form",
|
1654
1677
|
ref: n,
|
1655
|
-
model: e(
|
1678
|
+
model: e(f),
|
1656
1679
|
"label-width": "auto",
|
1657
|
-
rules:
|
1680
|
+
rules: b,
|
1658
1681
|
disabled: e(g) || e(h)
|
1659
1682
|
}, {
|
1660
1683
|
default: t(() => [
|
1661
|
-
l(
|
1684
|
+
l(O, { gutter: 20 }, {
|
1662
1685
|
default: t(() => [
|
1663
1686
|
l(_, { span: 12 }, {
|
1664
1687
|
default: t(() => [
|
@@ -1668,8 +1691,8 @@ const De = /* @__PURE__ */ D({
|
|
1668
1691
|
}, {
|
1669
1692
|
default: t(() => [
|
1670
1693
|
l(x, {
|
1671
|
-
modelValue: e(
|
1672
|
-
"onUpdate:modelValue":
|
1694
|
+
modelValue: e(f).module,
|
1695
|
+
"onUpdate:modelValue": r[0] || (r[0] = (L) => e(f).module = L),
|
1673
1696
|
placeholder: e(a)("base.placeholder.input")
|
1674
1697
|
}, null, 8, ["modelValue", "placeholder"])
|
1675
1698
|
]),
|
@@ -1687,8 +1710,8 @@ const De = /* @__PURE__ */ D({
|
|
1687
1710
|
default: t(() => [
|
1688
1711
|
l(y, {
|
1689
1712
|
class: "w-full",
|
1690
|
-
modelValue: e(
|
1691
|
-
"onUpdate:modelValue":
|
1713
|
+
modelValue: e(f).sort,
|
1714
|
+
"onUpdate:modelValue": r[1] || (r[1] = (L) => e(f).sort = L),
|
1692
1715
|
min: 0,
|
1693
1716
|
placeholder: e(a)("base.placeholder.input")
|
1694
1717
|
}, null, 8, ["modelValue", "placeholder"])
|
@@ -1707,8 +1730,8 @@ const De = /* @__PURE__ */ D({
|
|
1707
1730
|
}, {
|
1708
1731
|
default: t(() => [
|
1709
1732
|
l(x, {
|
1710
|
-
modelValue: e(
|
1711
|
-
"onUpdate:modelValue":
|
1733
|
+
modelValue: e(f).name,
|
1734
|
+
"onUpdate:modelValue": r[2] || (r[2] = (L) => e(f).name = L),
|
1712
1735
|
placeholder: e(a)("base.placeholder.input")
|
1713
1736
|
}, null, 8, ["modelValue", "placeholder"])
|
1714
1737
|
]),
|
@@ -1720,8 +1743,8 @@ const De = /* @__PURE__ */ D({
|
|
1720
1743
|
}, {
|
1721
1744
|
default: t(() => [
|
1722
1745
|
l(x, {
|
1723
|
-
modelValue: e(
|
1724
|
-
"onUpdate:modelValue":
|
1746
|
+
modelValue: e(f).en_name,
|
1747
|
+
"onUpdate:modelValue": r[3] || (r[3] = (L) => e(f).en_name = L),
|
1725
1748
|
placeholder: e(a)("base.placeholder.input")
|
1726
1749
|
}, null, 8, ["modelValue", "placeholder"])
|
1727
1750
|
]),
|
@@ -1733,8 +1756,8 @@ const De = /* @__PURE__ */ D({
|
|
1733
1756
|
}, {
|
1734
1757
|
default: t(() => [
|
1735
1758
|
l(x, {
|
1736
|
-
modelValue: e(
|
1737
|
-
"onUpdate:modelValue":
|
1759
|
+
modelValue: e(f).remark,
|
1760
|
+
"onUpdate:modelValue": r[4] || (r[4] = (L) => e(f).remark = L),
|
1738
1761
|
placeholder: e(a)("base.placeholder.input")
|
1739
1762
|
}, null, 8, ["modelValue", "placeholder"])
|
1740
1763
|
]),
|
@@ -1748,8 +1771,8 @@ const De = /* @__PURE__ */ D({
|
|
1748
1771
|
l(Ke, {
|
1749
1772
|
ref_key: "rulesCheck",
|
1750
1773
|
ref: w,
|
1751
|
-
modelValue: e(
|
1752
|
-
"onUpdate:modelValue":
|
1774
|
+
modelValue: e(f).rules,
|
1775
|
+
"onUpdate:modelValue": r[5] || (r[5] = (L) => e(f).rules = L),
|
1753
1776
|
disabled: e(g) || e(h)
|
1754
1777
|
}, null, 8, ["modelValue", "disabled"])
|
1755
1778
|
]),
|
@@ -1807,42 +1830,49 @@ const De = /* @__PURE__ */ D({
|
|
1807
1830
|
}, null)
|
1808
1831
|
}
|
1809
1832
|
], {
|
1810
|
-
requesting:
|
1833
|
+
requesting: R
|
1811
1834
|
} = K(J), {
|
1812
1835
|
tableRef: w,
|
1813
1836
|
infoRef: k,
|
1814
|
-
keyword:
|
1837
|
+
keyword: b,
|
1815
1838
|
search: s,
|
1816
1839
|
refresh: i,
|
1817
1840
|
reset: n,
|
1818
|
-
openInfo:
|
1841
|
+
openInfo: f,
|
1819
1842
|
modifyInfo: g
|
1820
1843
|
} = F(C);
|
1821
1844
|
return (h, V) => {
|
1822
|
-
const q = d("el-input"),
|
1823
|
-
return
|
1845
|
+
const q = d("el-input"), S = d("el-space"), c = d("el-page-header"), p = d("el-card");
|
1846
|
+
return M(), T(p, {
|
1824
1847
|
class: "basic-card flex-full",
|
1825
1848
|
"body-class": "flex-1"
|
1826
1849
|
}, {
|
1827
|
-
header: t(() => [l(
|
1828
|
-
class: "
|
1850
|
+
header: t(() => [l(c, {
|
1851
|
+
class: "basic-header"
|
1829
1852
|
}, {
|
1830
|
-
|
1831
|
-
loading: e(
|
1853
|
+
title: t(() => [l(e(W), {
|
1854
|
+
loading: e(R),
|
1832
1855
|
onRefresh: e(i)
|
1833
|
-
}, null, 8, ["loading", "onRefresh"]), l(e(
|
1834
|
-
onOpen: e(
|
1835
|
-
}, null, 8, ["onOpen"]),
|
1836
|
-
|
1837
|
-
|
1838
|
-
|
1839
|
-
|
1840
|
-
|
1841
|
-
|
1842
|
-
|
1843
|
-
|
1844
|
-
|
1845
|
-
|
1856
|
+
}, null, 8, ["loading", "onRefresh"]), l(e(te), {
|
1857
|
+
onOpen: e(f)
|
1858
|
+
}, null, 8, ["onOpen"])]),
|
1859
|
+
content: t(() => [l(S, {
|
1860
|
+
class: "search-bar"
|
1861
|
+
}, {
|
1862
|
+
default: t(() => [l(q, {
|
1863
|
+
class: "basic-search-input",
|
1864
|
+
modelValue: e(b).keyword,
|
1865
|
+
"onUpdate:modelValue": V[0] || (V[0] = (o) => e(b).keyword = o),
|
1866
|
+
placeholder: e(a)("base.placeholder.keyword"),
|
1867
|
+
clearable: "",
|
1868
|
+
onKeyup: X(e(s), ["enter"]),
|
1869
|
+
onClear: e(s)
|
1870
|
+
}, null, 8, ["modelValue", "placeholder", "onKeyup", "onClear"]), l(e(oe), {
|
1871
|
+
disabled: e(R),
|
1872
|
+
onSearch: e(s)
|
1873
|
+
}, null, 8, ["disabled", "onSearch"])]),
|
1874
|
+
_: 1
|
1875
|
+
})]),
|
1846
1876
|
_: 1
|
1847
1877
|
})]),
|
1848
1878
|
default: t(() => [l(e(le), {
|
@@ -1851,7 +1881,7 @@ const De = /* @__PURE__ */ D({
|
|
1851
1881
|
size: "small",
|
1852
1882
|
columns: v,
|
1853
1883
|
url: e(J).urls[e(ae)],
|
1854
|
-
"search-param": e(
|
1884
|
+
"search-param": e(b),
|
1855
1885
|
autoSearch: ""
|
1856
1886
|
}, null, 8, ["url", "search-param"]), l(Ne, {
|
1857
1887
|
ref_key: "infoRef",
|