mamba-layout 0.43.0 → 0.45.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/README.md +96 -47
- package/dist/index.css +1 -1
- package/dist/index.js +722 -971
- package/dist/layout/BaseLayout.vue.d.ts +1 -0
- package/dist/layout/components/index.d.ts +0 -1
- package/dist/layout/hooks/useLayoutState.d.ts +0 -72
- package/dist/layout/hooks/useSetting.d.ts +0 -2
- package/dist/layout.css +1 -1
- package/dist/layout.global.js +32 -32
- package/dist/standalone/data/applist.d.ts +2 -0
- package/dist/standalone/data/menu.d.ts +854 -0
- package/dist/standalone/data/user.d.ts +2 -0
- package/dist/standalone/utils.d.ts +25 -0
- package/dist/utils/repoUtils.d.ts +1 -1
- package/package.json +69 -68
- package/dist/layout/components/LayoutBreadcrumb.vue.d.ts +0 -29
- package/dist/utils/createContext.d.ts +0 -8
package/dist/index.js
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Fold as
|
|
3
|
-
import { useRouter as
|
|
4
|
-
import { createI18n as
|
|
5
|
-
|
|
6
|
-
const a = at();
|
|
7
|
-
return a ? a.appContext.config.globalProperties.$route : null;
|
|
8
|
-
}
|
|
9
|
-
const gt = 3600 * 24 * 7, _e = "UTC", Je = "timezone", ft = [
|
|
1
|
+
import { ref as N, readonly as De, onMounted as ie, onUnmounted as ce, defineComponent as I, computed as v, openBlock as r, createElementBlock as f, normalizeClass as M, unref as p, resolveComponent as w, Fragment as D, createBlock as S, resolveDynamicComponent as X, mergeProps as ue, withCtx as b, createCommentVNode as C, createElementVNode as c, toDisplayString as T, renderList as E, withDirectives as Me, vShow as Ee, createVNode as y, renderSlot as U, watchEffect as de, watch as pe, Transition as ne } from "vue";
|
|
2
|
+
import { Fold as me, ArrowDown as W, Moon as Ne, Sunny as Ue, Expand as Be, User as Re, Clock as Ke, ArrowRight as oe } from "@element-plus/icons-vue";
|
|
3
|
+
import { useRouter as Je } from "vue-router";
|
|
4
|
+
import { createI18n as Oe } from "vue-i18n";
|
|
5
|
+
const Fe = 3600 * 24 * 7, G = "UTC", ge = "timezone", He = [
|
|
10
6
|
"UTC",
|
|
11
7
|
"Asia/Shanghai",
|
|
12
8
|
"Asia/Hong_Kong",
|
|
@@ -16,99 +12,83 @@ const gt = 3600 * 24 * 7, _e = "UTC", Je = "timezone", ft = [
|
|
|
16
12
|
"Europe/Berlin",
|
|
17
13
|
"America/New_York",
|
|
18
14
|
"America/Los_Angeles"
|
|
19
|
-
],
|
|
15
|
+
], ae = /* @__PURE__ */ new Map(), q = () => {
|
|
20
16
|
try {
|
|
21
17
|
return globalThis.localStorage;
|
|
22
18
|
} catch {
|
|
23
19
|
return;
|
|
24
20
|
}
|
|
25
|
-
},
|
|
26
|
-
get(
|
|
27
|
-
const t =
|
|
21
|
+
}, B = {
|
|
22
|
+
get(o, e = null) {
|
|
23
|
+
const t = q(), n = t == null ? void 0 : t.getItem(o.toUpperCase());
|
|
28
24
|
if (!n) return e;
|
|
29
25
|
try {
|
|
30
|
-
const
|
|
31
|
-
if (
|
|
32
|
-
return
|
|
33
|
-
t == null || t.removeItem(
|
|
26
|
+
const a = JSON.parse(n);
|
|
27
|
+
if (a.expire === null || a.expire >= Date.now())
|
|
28
|
+
return a.value;
|
|
29
|
+
t == null || t.removeItem(o.toUpperCase());
|
|
34
30
|
} catch {
|
|
35
31
|
return e;
|
|
36
32
|
}
|
|
37
33
|
return e;
|
|
38
34
|
},
|
|
39
|
-
set(
|
|
40
|
-
const n =
|
|
35
|
+
set(o, e, t = Fe) {
|
|
36
|
+
const n = q(), a = {
|
|
41
37
|
value: e,
|
|
42
38
|
expire: t === null ? null : Date.now() + t * 1e3
|
|
43
39
|
};
|
|
44
|
-
n == null || n.setItem(
|
|
40
|
+
n == null || n.setItem(o.toUpperCase(), JSON.stringify(a));
|
|
45
41
|
},
|
|
46
42
|
clear() {
|
|
47
|
-
var
|
|
48
|
-
(
|
|
43
|
+
var o;
|
|
44
|
+
(o = q()) == null || o.clear();
|
|
49
45
|
}
|
|
50
|
-
},
|
|
51
|
-
if (!
|
|
52
|
-
const e = Object.getPrototypeOf(
|
|
46
|
+
}, Qe = (o) => typeof o == "object" && o !== null, se = (o) => {
|
|
47
|
+
if (!Qe(o) || Object.prototype.toString.call(o) !== "[object Object]") return !1;
|
|
48
|
+
const e = Object.getPrototypeOf(o);
|
|
53
49
|
return e === null || e === Object.prototype;
|
|
54
50
|
};
|
|
55
|
-
function
|
|
56
|
-
if (!
|
|
57
|
-
if (!
|
|
58
|
-
const t =
|
|
51
|
+
function fe(o, e) {
|
|
52
|
+
if (!se(o)) return e;
|
|
53
|
+
if (!se(e)) return o;
|
|
54
|
+
const t = o;
|
|
59
55
|
return Object.keys(e).concat(Object.getOwnPropertySymbols(e)).forEach((n) => {
|
|
60
|
-
t[n] =
|
|
56
|
+
t[n] = fe(
|
|
61
57
|
t[n],
|
|
62
58
|
e[n]
|
|
63
59
|
);
|
|
64
60
|
}), t;
|
|
65
61
|
}
|
|
66
|
-
function
|
|
67
|
-
const
|
|
68
|
-
return String(
|
|
62
|
+
function he() {
|
|
63
|
+
const o = typeof navigator > "u" ? "en-US" : navigator.language;
|
|
64
|
+
return String(B.get("locale", o)).includes("zh") ? "zh-CN" : "en-US";
|
|
69
65
|
}
|
|
70
|
-
const
|
|
66
|
+
const re = (o, e, t) => {
|
|
71
67
|
var n;
|
|
72
|
-
return ((n = e == null ? void 0 : e[t]) == null ? void 0 : n[
|
|
73
|
-
},
|
|
74
|
-
const n =
|
|
75
|
-
return
|
|
76
|
-
},
|
|
77
|
-
|
|
78
|
-
for (const d of e) {
|
|
79
|
-
const m = ((n = d.path) == null ? void 0 : n.replace(/\/:(\w+)/g, "/([^/]+)")) || "", i = new RegExp(`^${m}$`);
|
|
80
|
-
if (((s = d.path) == null ? void 0 : s.toLowerCase()) === a || i.test(a))
|
|
81
|
-
return ((o = d.meta) == null ? void 0 : o.visible) === "0" && (t == null ? void 0 : t.path) || "";
|
|
82
|
-
if ((l = d.children) != null && l.length) {
|
|
83
|
-
const g = He(
|
|
84
|
-
a,
|
|
85
|
-
d.children,
|
|
86
|
-
((c = d.meta) == null ? void 0 : c.visible) === "1" ? d : t
|
|
87
|
-
);
|
|
88
|
-
if (g) return g;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
return "";
|
|
92
|
-
}, yt = (a, e) => {
|
|
93
|
-
const t = a.resolve(e);
|
|
68
|
+
return ((n = e == null ? void 0 : e[t]) == null ? void 0 : n[o]) || "";
|
|
69
|
+
}, F = (o, e, t = "") => {
|
|
70
|
+
const n = o;
|
|
71
|
+
return re(e, n, he()) || t || re(e, n, "en-US");
|
|
72
|
+
}, Ze = (o = "") => o.replace(/【.*】/, ""), je = (o, e) => {
|
|
73
|
+
const t = o.resolve(e);
|
|
94
74
|
if (!(t != null && t.name)) return !1;
|
|
95
|
-
const n = String(t.name).split("-").filter((
|
|
96
|
-
return n.length ===
|
|
97
|
-
},
|
|
75
|
+
const n = String(t.name).split("-").filter((s) => !!s && s !== "index"), a = t.path.split("-").join("/").split("/").filter(Boolean);
|
|
76
|
+
return n.length === a.length && n.every((s, l) => s === a[l]);
|
|
77
|
+
}, H = (o) => typeof o == "string" && ve(o) ? o : "", ve = (o) => {
|
|
98
78
|
try {
|
|
99
|
-
return new Intl.DateTimeFormat("en-US", { timeZone:
|
|
79
|
+
return new Intl.DateTimeFormat("en-US", { timeZone: o }).format(/* @__PURE__ */ new Date()), !0;
|
|
100
80
|
} catch {
|
|
101
81
|
return !1;
|
|
102
82
|
}
|
|
103
|
-
},
|
|
104
|
-
|
|
105
|
-
),
|
|
106
|
-
function
|
|
107
|
-
const e =
|
|
108
|
-
e && (
|
|
83
|
+
}, ye = () => H(Intl.DateTimeFormat().resolvedOptions().timeZone) || G, V = N(
|
|
84
|
+
H(B.get(ge)) || ye()
|
|
85
|
+
), ze = () => De(V);
|
|
86
|
+
function qe(o) {
|
|
87
|
+
const e = H(o);
|
|
88
|
+
e && (V.value = e, B.set(ge, e, null));
|
|
109
89
|
}
|
|
110
|
-
const
|
|
111
|
-
const e =
|
|
90
|
+
const Ye = (o) => {
|
|
91
|
+
const e = H(o) || G, t = ae.get(e);
|
|
112
92
|
if (t) return t;
|
|
113
93
|
const n = new Intl.DateTimeFormat("en-US", {
|
|
114
94
|
timeZone: e,
|
|
@@ -120,9 +100,9 @@ const _t = (a) => {
|
|
|
120
100
|
second: "2-digit",
|
|
121
101
|
hourCycle: "h23"
|
|
122
102
|
});
|
|
123
|
-
return
|
|
124
|
-
},
|
|
125
|
-
const t =
|
|
103
|
+
return ae.set(e, n), n;
|
|
104
|
+
}, Xe = (o, e) => Ye(e).formatToParts(o).reduce((n, a) => (a.type !== "literal" && (n[a.type] = Number(a.value)), n), {}), We = (o, e = /* @__PURE__ */ new Date()) => {
|
|
105
|
+
const t = H(o) || G, n = Xe(e, t), a = Date.UTC(
|
|
126
106
|
n.year || 0,
|
|
127
107
|
(n.month || 1) - 1,
|
|
128
108
|
n.day || 1,
|
|
@@ -131,106 +111,148 @@ const _t = (a) => {
|
|
|
131
111
|
n.second || 0,
|
|
132
112
|
e.getMilliseconds()
|
|
133
113
|
);
|
|
134
|
-
return Math.round((
|
|
135
|
-
},
|
|
136
|
-
const t =
|
|
137
|
-
return `UTC${n}${String(
|
|
114
|
+
return Math.round((a - e.getTime()) / 6e4);
|
|
115
|
+
}, be = (o, e = /* @__PURE__ */ new Date()) => {
|
|
116
|
+
const t = We(o, e), n = t >= 0 ? "+" : "-", a = Math.abs(t), s = Math.floor(a / 60), l = a % 60;
|
|
117
|
+
return `UTC${n}${String(s).padStart(2, "0")}:${String(
|
|
138
118
|
l
|
|
139
119
|
).padStart(2, "0")}`;
|
|
140
|
-
},
|
|
120
|
+
}, Ge = (o, e = /* @__PURE__ */ new Date()) => `${o} (${be(o, e)})`, Ve = (o = /* @__PURE__ */ new Date()) => {
|
|
141
121
|
const e = new Set(
|
|
142
|
-
[
|
|
143
|
-
|
|
122
|
+
[ye(), ...He, V.value].filter(
|
|
123
|
+
ve
|
|
144
124
|
)
|
|
145
125
|
);
|
|
146
126
|
return Array.from(e).map((t) => {
|
|
147
|
-
const n =
|
|
127
|
+
const n = be(t, o);
|
|
148
128
|
return {
|
|
149
129
|
value: t,
|
|
150
130
|
label: `${t} (${n})`,
|
|
151
131
|
offset: n
|
|
152
132
|
};
|
|
153
133
|
});
|
|
154
|
-
},
|
|
155
|
-
|
|
156
|
-
|
|
134
|
+
}, $e = 1024, Ae = N(!0), _e = N(!1), et = N(), tt = () => {
|
|
135
|
+
const o = () => {
|
|
136
|
+
const e = window.innerWidth < $e;
|
|
137
|
+
_e.value = e, Ae.value = !e;
|
|
138
|
+
};
|
|
139
|
+
o(), ie(() => {
|
|
140
|
+
window.addEventListener("resize", o);
|
|
141
|
+
}), ce(() => {
|
|
142
|
+
window.removeEventListener("resize", o);
|
|
143
|
+
});
|
|
144
|
+
};
|
|
145
|
+
function Q() {
|
|
146
|
+
return {
|
|
147
|
+
initLayoutState: tt,
|
|
148
|
+
sideOpen: Ae,
|
|
149
|
+
isMobile: _e,
|
|
150
|
+
leftScrollRef: et
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
const nt = { class: "menu-item-icon" }, ot = ["innerHTML"], at = /* @__PURE__ */ I({
|
|
154
|
+
__name: "MenuItemIcon",
|
|
155
|
+
props: {
|
|
156
|
+
icon: { default: "metisicon-yingyong" }
|
|
157
|
+
},
|
|
158
|
+
setup(o) {
|
|
159
|
+
const e = o, t = v(() => e.icon || "metisicon-yingyong"), n = /^\s*<svg[\s>]/i, a = /\son[a-z]+\s*=\s*("[^"]*"|'[^']*'|[^\s>]+)/gi, s = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, l = /\s(?:href|xlink:href)\s*=\s*("\s*javascript:[^"]*"|'\s*javascript:[^']*')/gi, u = (i) => !!i && n.test(i), d = (i) => !i || !u(i) ? "" : i.replace(s, "").replace(a, "").replace(l, ""), m = v(() => d(t.value));
|
|
160
|
+
return (i, A) => (r(), f("div", nt, [
|
|
161
|
+
u(t.value) ? (r(), f("span", {
|
|
162
|
+
key: 0,
|
|
163
|
+
class: "menu-item-icon__svg",
|
|
164
|
+
innerHTML: m.value
|
|
165
|
+
}, null, 8, ot)) : (r(), f("i", {
|
|
166
|
+
key: 1,
|
|
167
|
+
class: M(t.value)
|
|
168
|
+
}, null, 2))
|
|
169
|
+
]));
|
|
170
|
+
}
|
|
171
|
+
}), L = (o, e) => {
|
|
172
|
+
const t = o.__vccOpts || o;
|
|
173
|
+
for (const [n, a] of e)
|
|
174
|
+
t[n] = a;
|
|
175
|
+
return t;
|
|
176
|
+
}, Se = /* @__PURE__ */ L(at, [["__scopeId", "data-v-ed060390"]]), O = N("light");
|
|
177
|
+
function Ce() {
|
|
178
|
+
const o = "theme", e = "(prefers-color-scheme: dark)", t = N(!1);
|
|
157
179
|
let n = !1;
|
|
158
|
-
const
|
|
159
|
-
const
|
|
160
|
-
return
|
|
161
|
-
},
|
|
162
|
-
typeof document > "u" || document.documentElement.classList.toggle("dark",
|
|
163
|
-
}, d = (
|
|
164
|
-
const
|
|
165
|
-
return
|
|
166
|
-
}, m = (
|
|
167
|
-
|
|
180
|
+
const a = (g) => g === "dark" || g === "light" ? g : null, s = () => typeof window > "u" || typeof window.matchMedia != "function" ? "light" : window.matchMedia(e).matches ? "dark" : "light", l = (g) => {
|
|
181
|
+
const _ = a(B.get(o, null));
|
|
182
|
+
return _ ? (t.value = !0, _) : g || s();
|
|
183
|
+
}, u = (g) => {
|
|
184
|
+
typeof document > "u" || document.documentElement.classList.toggle("dark", g === "dark");
|
|
185
|
+
}, d = (g) => {
|
|
186
|
+
const _ = l(g);
|
|
187
|
+
return O.value = _, u(_), n = !0, _;
|
|
188
|
+
}, m = (g, _) => {
|
|
189
|
+
O.value = g, u(g), (_ == null ? void 0 : _.persist) !== !1 && (B.set(o, g, null), t.value = !0);
|
|
168
190
|
}, i = () => {
|
|
169
|
-
m(
|
|
170
|
-
},
|
|
191
|
+
m(O.value === "dark" ? "light" : "dark");
|
|
192
|
+
}, A = (g) => {
|
|
171
193
|
if (!n) {
|
|
172
|
-
d(
|
|
194
|
+
d(g);
|
|
173
195
|
return;
|
|
174
196
|
}
|
|
175
|
-
!t.value &&
|
|
176
|
-
},
|
|
197
|
+
!t.value && g && m(g, { persist: !1 });
|
|
198
|
+
}, h = v(() => O.value === "dark");
|
|
177
199
|
return {
|
|
178
|
-
theme:
|
|
179
|
-
isDark:
|
|
200
|
+
theme: O,
|
|
201
|
+
isDark: h,
|
|
180
202
|
initTheme: d,
|
|
181
203
|
setTheme: m,
|
|
182
204
|
toggleTheme: i,
|
|
183
|
-
syncThemeFromSetting:
|
|
205
|
+
syncThemeFromSetting: A
|
|
184
206
|
};
|
|
185
207
|
}
|
|
186
|
-
const
|
|
187
|
-
typeof location > "u" || (location.href =
|
|
188
|
-
},
|
|
189
|
-
var
|
|
190
|
-
const e =
|
|
208
|
+
const st = () => typeof location > "u" ? "" : location.href, we = (o) => (o == null ? void 0 : o.loginPath) || `/login?redirect=${encodeURIComponent(st())}`, j = (o) => {
|
|
209
|
+
typeof location > "u" || (location.href = we(o));
|
|
210
|
+
}, rt = (o) => (o == null ? void 0 : o.userCenterPath) || "/usercenter/home", lt = (o) => {
|
|
211
|
+
var s;
|
|
212
|
+
const e = o.themeColor, t = {};
|
|
191
213
|
if (e)
|
|
192
214
|
for (const l in e) {
|
|
193
215
|
if (!e[l]) continue;
|
|
194
|
-
const
|
|
195
|
-
t[
|
|
216
|
+
const u = "--layout-" + l.replace(/([A-Z])/g, "-$1").toLocaleLowerCase();
|
|
217
|
+
t[u] = e[l], l == "colorPrimary" && it(e[l]);
|
|
196
218
|
}
|
|
197
219
|
let n = document.getElementById("layout-style");
|
|
198
|
-
n && ((
|
|
199
|
-
const
|
|
200
|
-
n.innerHTML = `html:root{${
|
|
220
|
+
n && ((s = n.parentNode) == null || s.removeChild(n)), n = document.createElement("style"), n.id = "layout-style", document.head.appendChild(n);
|
|
221
|
+
const a = Object.keys(t).map((l) => l + ":" + t[l]).join(";");
|
|
222
|
+
n.innerHTML = `html:root{${a}}`;
|
|
201
223
|
};
|
|
202
|
-
function
|
|
203
|
-
var
|
|
224
|
+
function it(o) {
|
|
225
|
+
var a;
|
|
204
226
|
let e = document.getElementById("primary-style");
|
|
205
|
-
if (
|
|
206
|
-
(
|
|
227
|
+
if (o == "theme-default" && e) {
|
|
228
|
+
(a = e.parentNode) == null || a.removeChild(e);
|
|
207
229
|
return;
|
|
208
230
|
}
|
|
209
|
-
const t =
|
|
231
|
+
const t = ct(o);
|
|
210
232
|
e || (e = document.createElement("style"), e.id = "primary-style", document.head.appendChild(e));
|
|
211
|
-
const n = Object.keys(t).map((
|
|
233
|
+
const n = Object.keys(t).map((s) => s + ":" + t[s]).join(";");
|
|
212
234
|
e.innerHTML = `html:root{${n}}`;
|
|
213
235
|
}
|
|
214
|
-
function
|
|
236
|
+
function ct(o) {
|
|
215
237
|
var d;
|
|
216
|
-
const e = ((d =
|
|
217
|
-
const i = m / 100,
|
|
218
|
-
return `rgb(${
|
|
219
|
-
},
|
|
238
|
+
const e = ((d = o.match(/\d+/g)) == null ? void 0 : d.map(Number)) || [], [t, n, a] = e, s = `rgb(${t}, ${n}, ${a})`, l = (m) => {
|
|
239
|
+
const i = m / 100, A = Math.min(255, t + (255 - t) * i), h = Math.min(255, n + (255 - n) * i), g = Math.min(255, a + (255 - a) * i);
|
|
240
|
+
return `rgb(${A.toFixed(1)}, ${h.toFixed(1)}, ${g.toFixed(1)})`;
|
|
241
|
+
}, u = (m) => {
|
|
220
242
|
const i = 1 - m / 100;
|
|
221
|
-
return `rgb(${Math.round(t * i)} ${Math.round(n * i)} ${Math.round(
|
|
243
|
+
return `rgb(${Math.round(t * i)} ${Math.round(n * i)} ${Math.round(a * i)})`;
|
|
222
244
|
};
|
|
223
245
|
return {
|
|
224
|
-
"--el-color-primary":
|
|
246
|
+
"--el-color-primary": s,
|
|
225
247
|
"--el-color-primary-light-3": l(30),
|
|
226
248
|
"--el-color-primary-light-5": l(50),
|
|
227
249
|
"--el-color-primary-light-7": l(70),
|
|
228
250
|
"--el-color-primary-light-8": l(80),
|
|
229
251
|
"--el-color-primary-light-9": l(90),
|
|
230
|
-
"--el-color-primary-dark-2":
|
|
252
|
+
"--el-color-primary-dark-2": u(20)
|
|
231
253
|
};
|
|
232
254
|
}
|
|
233
|
-
const
|
|
255
|
+
const Y = N({
|
|
234
256
|
menus: [],
|
|
235
257
|
layout: "classic",
|
|
236
258
|
title: "",
|
|
@@ -238,117 +260,16 @@ const fe = U({
|
|
|
238
260
|
tabs: "tab",
|
|
239
261
|
pageType: "common"
|
|
240
262
|
});
|
|
241
|
-
function
|
|
242
|
-
return
|
|
263
|
+
function x() {
|
|
264
|
+
return Y;
|
|
243
265
|
}
|
|
244
|
-
const
|
|
245
|
-
const e =
|
|
266
|
+
const ut = (o) => {
|
|
267
|
+
const e = x(), t = o && p(o) || {};
|
|
246
268
|
if (!(e != null && e.value)) return t;
|
|
247
|
-
|
|
248
|
-
const { syncThemeFromSetting: n } =
|
|
249
|
-
n(),
|
|
250
|
-
},
|
|
251
|
-
const a = () => {
|
|
252
|
-
var o;
|
|
253
|
-
return ((o = re.value.menus) == null ? void 0 : o.filter((l) => {
|
|
254
|
-
var c;
|
|
255
|
-
return ((c = l.meta) == null ? void 0 : c.appId) == se.value;
|
|
256
|
-
})) || [];
|
|
257
|
-
}, e = (o, l, c = 0, d) => {
|
|
258
|
-
var A, P, x, J;
|
|
259
|
-
const m = ge();
|
|
260
|
-
if (!m) return;
|
|
261
|
-
const i = d ? [...d] : [], y = [], g = [];
|
|
262
|
-
for (const I in o) {
|
|
263
|
-
[...i], o[I];
|
|
264
|
-
const R = ((A = m.meta) == null ? void 0 : A.parent) || m.path, z = ((P = o[I].path) == null ? void 0 : P.replace(/\/:(\w+)/g, "/([^/]+)")) || "", q = new RegExp(`^${z}$`);
|
|
265
|
-
R == o[I].path ? y.push({ index: I, item: o[I] }) : q.test(R) && g.push({ index: I, item: o[I] });
|
|
266
|
-
}
|
|
267
|
-
const f = y.length > 0 ? y : g;
|
|
268
|
-
if (f.length > 0) {
|
|
269
|
-
const I = f[0], R = [...i];
|
|
270
|
-
R[c] = I.item, oe.value = {
|
|
271
|
-
...I.item,
|
|
272
|
-
paths: R.slice(0, c + 1)
|
|
273
|
-
}, se.value = ((x = I.item.meta) == null ? void 0 : x.appId) || "", Dt.value = l;
|
|
274
|
-
}
|
|
275
|
-
for (const I in o)
|
|
276
|
-
if (o[I].children && ((J = o[I].children) != null && J.length)) {
|
|
277
|
-
const R = o[I].children || [], z = [...i];
|
|
278
|
-
z[c] = o[I], e(R, o[I], c + 1, z);
|
|
279
|
-
}
|
|
280
|
-
Nt.value = m.meta.parentPath || He(
|
|
281
|
-
m.path.toLowerCase(),
|
|
282
|
-
re.value.menus || []
|
|
283
|
-
) || m.path;
|
|
284
|
-
}, t = () => {
|
|
285
|
-
var d, m, i, y, g, f, A, P, x, J;
|
|
286
|
-
e(re.value.menus || []), se.value || (se.value = ((i = (m = (d = re.value.menus) == null ? void 0 : d.find(
|
|
287
|
-
(I) => {
|
|
288
|
-
var R;
|
|
289
|
-
return (R = I.path) == null ? void 0 : R.startsWith(me.value);
|
|
290
|
-
}
|
|
291
|
-
)) == null ? void 0 : m.meta) == null ? void 0 : i.appId) || "");
|
|
292
|
-
const o = ((y = oe.value) == null ? void 0 : y.paths) || [], l = ie(
|
|
293
|
-
te(((f = (g = oe.value) == null ? void 0 : g.meta) == null ? void 0 : f.translations) || {}, "name")
|
|
294
|
-
), c = ((A = oe.value) == null ? void 0 : A.path) == ((P = o[1]) == null ? void 0 : P.path) ? "" : ie(te(((J = (x = o[1]) == null ? void 0 : x.meta) == null ? void 0 : J.translations) || {}, "name"));
|
|
295
|
-
document.title = l + (c ? ` - ${c}` : "");
|
|
296
|
-
}, n = () => {
|
|
297
|
-
const o = ge();
|
|
298
|
-
me.value = "/" + (o.path.split("/").filter(Boolean).shift() || ""), t(), ve.value = a();
|
|
299
|
-
}, s = () => {
|
|
300
|
-
const o = window.innerWidth < Mt;
|
|
301
|
-
We.value = o, Ye.value = !o;
|
|
302
|
-
};
|
|
303
|
-
s(), n(), st(() => {
|
|
304
|
-
n();
|
|
305
|
-
}), De(() => {
|
|
306
|
-
window.addEventListener("resize", s);
|
|
307
|
-
}), Ne(() => {
|
|
308
|
-
window.removeEventListener("resize", s);
|
|
309
|
-
}), ye(
|
|
310
|
-
() => me.value,
|
|
311
|
-
() => void (ve.value = a())
|
|
312
|
-
);
|
|
313
|
-
};
|
|
314
|
-
function ae() {
|
|
315
|
-
return {
|
|
316
|
-
initLayoutState: Rt,
|
|
317
|
-
menus: ve,
|
|
318
|
-
// currentEndRoute,
|
|
319
|
-
// currentTabPath,
|
|
320
|
-
// currentAppId,
|
|
321
|
-
// defaultParentActive,
|
|
322
|
-
sideOpen: Ye,
|
|
323
|
-
isMobile: We,
|
|
324
|
-
// currentEndParentRoute,
|
|
325
|
-
leftScrollRef: Bt
|
|
326
|
-
};
|
|
327
|
-
}
|
|
328
|
-
const Ut = { class: "menu-item-icon" }, Kt = ["innerHTML"], Jt = /* @__PURE__ */ N({
|
|
329
|
-
__name: "MenuItemIcon",
|
|
330
|
-
props: {
|
|
331
|
-
icon: { default: "metisicon-yingyong" }
|
|
332
|
-
},
|
|
333
|
-
setup(a) {
|
|
334
|
-
const e = a, t = C(() => e.icon || "metisicon-yingyong"), n = /^\s*<svg[\s>]/i, s = /\son[a-z]+\s*=\s*("[^"]*"|'[^']*'|[^\s>]+)/gi, o = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, l = /\s(?:href|xlink:href)\s*=\s*("\s*javascript:[^"]*"|'\s*javascript:[^']*')/gi, c = (i) => !!i && n.test(i), d = (i) => !i || !c(i) ? "" : i.replace(o, "").replace(s, "").replace(l, ""), m = C(() => d(t.value));
|
|
335
|
-
return (i, y) => (r(), v("div", Ut, [
|
|
336
|
-
c(t.value) ? (r(), v("span", {
|
|
337
|
-
key: 0,
|
|
338
|
-
class: "menu-item-icon__svg",
|
|
339
|
-
innerHTML: m.value
|
|
340
|
-
}, null, 8, Kt)) : (r(), v("i", {
|
|
341
|
-
key: 1,
|
|
342
|
-
class: H(t.value)
|
|
343
|
-
}, null, 2))
|
|
344
|
-
]));
|
|
345
|
-
}
|
|
346
|
-
}), B = (a, e) => {
|
|
347
|
-
const t = a.__vccOpts || a;
|
|
348
|
-
for (const [n, s] of e)
|
|
349
|
-
t[n] = s;
|
|
350
|
-
return t;
|
|
351
|
-
}, Xe = /* @__PURE__ */ B(Jt, [["__scopeId", "data-v-9373691a"]]), Ot = { key: 0 }, Ft = /* @__PURE__ */ N({
|
|
269
|
+
Y.value = fe(e.value, t);
|
|
270
|
+
const { syncThemeFromSetting: n } = Ce();
|
|
271
|
+
n(), lt(Y.value);
|
|
272
|
+
}, dt = { key: 0 }, pt = /* @__PURE__ */ I({
|
|
352
273
|
__name: "AsideSubMenuItem",
|
|
353
274
|
props: {
|
|
354
275
|
menu: {
|
|
@@ -360,73 +281,73 @@ const Ut = { class: "menu-item-icon" }, Kt = ["innerHTML"], Jt = /* @__PURE__ */
|
|
|
360
281
|
default: 1
|
|
361
282
|
}
|
|
362
283
|
},
|
|
363
|
-
setup(
|
|
364
|
-
const e =
|
|
284
|
+
setup(o) {
|
|
285
|
+
const e = o, t = v(
|
|
365
286
|
() => {
|
|
366
287
|
var i;
|
|
367
|
-
return (i = e.menu.children) == null ? void 0 : i.filter((
|
|
368
|
-
var
|
|
369
|
-
return ((
|
|
288
|
+
return (i = e.menu.children) == null ? void 0 : i.filter((A) => {
|
|
289
|
+
var h;
|
|
290
|
+
return ((h = A.meta) == null ? void 0 : h.visible) != "0";
|
|
370
291
|
});
|
|
371
292
|
}
|
|
372
|
-
), n =
|
|
293
|
+
), n = x(), a = v(() => n.value.defaultParentActive || ""), s = v(() => n.value.currentTabPath || ""), l = Je(), u = v(() => {
|
|
373
294
|
var i;
|
|
374
|
-
return e.level == 1 && !
|
|
375
|
-
}), d =
|
|
295
|
+
return e.level == 1 && !je(l, e.menu.path || "") ? "div" : /^http/.test(e.menu.path || "") || !((i = e.menu.path) != null && i.startsWith(s.value)) ? "a" : "router-link";
|
|
296
|
+
}), d = v(() => {
|
|
376
297
|
var i;
|
|
377
|
-
return /^http/.test(e.menu.path || "") || !((i = e.menu.path) != null && i.startsWith(
|
|
298
|
+
return /^http/.test(e.menu.path || "") || !((i = e.menu.path) != null && i.startsWith(s.value)) ? {
|
|
378
299
|
href: e.menu.path || ""
|
|
379
300
|
} : {
|
|
380
301
|
to: e.menu.path || ""
|
|
381
302
|
};
|
|
382
|
-
}), m =
|
|
303
|
+
}), m = v(
|
|
383
304
|
() => {
|
|
384
305
|
var i;
|
|
385
306
|
return String(e.menu.icon || ((i = e.menu.meta) == null ? void 0 : i.icon) || "metisicon-yingyong");
|
|
386
307
|
}
|
|
387
308
|
);
|
|
388
|
-
return (i,
|
|
389
|
-
var
|
|
390
|
-
const
|
|
391
|
-
return r(),
|
|
392
|
-
(r(),
|
|
309
|
+
return (i, A) => {
|
|
310
|
+
var g, _;
|
|
311
|
+
const h = w("AsideSubMenuItem", !0);
|
|
312
|
+
return r(), f(D, null, [
|
|
313
|
+
(r(), S(X(u.value), ue({
|
|
393
314
|
class: ["pt-1 pb-1 pl-3 pr-3 flex items-center gap-2 rounded-md", [
|
|
394
|
-
e.menu.path ==
|
|
395
|
-
(
|
|
315
|
+
e.menu.path == a.value ? "bg-[var(--ui-sidebar-active-bg,var(--el-fill-color))] text-[var(--ui-sidebar-active-fg)] font-medium" : "text-[var(--ui-sidebar-foreground)]",
|
|
316
|
+
(g = t.value) != null && g.length ? " h-7" : " h-9.5 cursor-pointer hover:bg-[var(--ui-sidebar-hover-bg)]"
|
|
396
317
|
]],
|
|
397
318
|
style: { paddingLeft: "calc(var(--spacing) * 3)" }
|
|
398
319
|
}, d.value), {
|
|
399
|
-
default:
|
|
400
|
-
var P,
|
|
320
|
+
default: b(() => {
|
|
321
|
+
var P, k, K, J;
|
|
401
322
|
return [
|
|
402
|
-
(P = t.value) != null && P.length ?
|
|
323
|
+
(P = t.value) != null && P.length ? C("", !0) : (r(), S(Se, {
|
|
403
324
|
key: 0,
|
|
404
325
|
icon: m.value,
|
|
405
|
-
class:
|
|
406
|
-
e.menu.path ==
|
|
326
|
+
class: M(["text-md", [
|
|
327
|
+
e.menu.path == a.value ? "opacity-100" : "opacity-60"
|
|
407
328
|
]])
|
|
408
329
|
}, null, 8, ["icon", "class"])),
|
|
409
|
-
|
|
410
|
-
class:
|
|
411
|
-
},
|
|
330
|
+
c("div", {
|
|
331
|
+
class: M(["truncate", (k = t.value) != null && k.length ? "text-xs text-gray-400" : ""])
|
|
332
|
+
}, T(p(Ze)(p(F)(((J = (K = e.menu) == null ? void 0 : K.meta) == null ? void 0 : J.translations) || {}, "name"))), 3)
|
|
412
333
|
];
|
|
413
334
|
}),
|
|
414
335
|
_: 1
|
|
415
336
|
}, 16, ["class"])),
|
|
416
|
-
(
|
|
417
|
-
(r(!0),
|
|
337
|
+
(_ = t.value) != null && _.length ? (r(), f("div", dt, [
|
|
338
|
+
(r(!0), f(D, null, E(t.value, (P, k) => (r(), S(h, {
|
|
418
339
|
menu: P,
|
|
419
|
-
key:
|
|
340
|
+
key: k,
|
|
420
341
|
level: e.level + 1
|
|
421
342
|
}, null, 8, ["menu", "level"]))), 128))
|
|
422
|
-
])) :
|
|
343
|
+
])) : C("", !0)
|
|
423
344
|
], 64);
|
|
424
345
|
};
|
|
425
346
|
}
|
|
426
|
-
}),
|
|
347
|
+
}), mt = { class: "h-full" }, gt = {
|
|
427
348
|
key: 0,
|
|
428
349
|
class: ""
|
|
429
|
-
},
|
|
350
|
+
}, Pe = /* @__PURE__ */ I({
|
|
430
351
|
__name: "AsideSubMenus",
|
|
431
352
|
props: {
|
|
432
353
|
menus: {
|
|
@@ -434,173 +355,179 @@ const Ut = { class: "menu-item-icon" }, Kt = ["innerHTML"], Jt = /* @__PURE__ */
|
|
|
434
355
|
default: () => []
|
|
435
356
|
}
|
|
436
357
|
},
|
|
437
|
-
setup(
|
|
438
|
-
const e =
|
|
358
|
+
setup(o) {
|
|
359
|
+
const e = o;
|
|
439
360
|
return (t, n) => {
|
|
440
|
-
var
|
|
441
|
-
return
|
|
442
|
-
(
|
|
443
|
-
(r(!0),
|
|
361
|
+
var a;
|
|
362
|
+
return Me((r(), f("div", mt, [
|
|
363
|
+
(a = e.menus) != null && a.length ? (r(), f("div", gt, [
|
|
364
|
+
(r(!0), f(D, null, E(e.menus.filter((s) => {
|
|
444
365
|
var l;
|
|
445
|
-
return ((l =
|
|
446
|
-
}), (
|
|
447
|
-
key:
|
|
448
|
-
menu:
|
|
366
|
+
return ((l = s.meta) == null ? void 0 : l.visible) != "0";
|
|
367
|
+
}), (s, l) => (r(), S(pt, {
|
|
368
|
+
key: l,
|
|
369
|
+
menu: s
|
|
449
370
|
}, null, 8, ["menu"]))), 128))
|
|
450
|
-
])) :
|
|
371
|
+
])) : C("", !0)
|
|
451
372
|
], 512)), [
|
|
452
|
-
[
|
|
373
|
+
[Ee, e.menus.length]
|
|
453
374
|
]);
|
|
454
375
|
};
|
|
455
376
|
}
|
|
456
|
-
}),
|
|
377
|
+
}), ft = {
|
|
457
378
|
key: 0,
|
|
458
379
|
class: "aside-bar__mobile-head flex justify-between items-center pt-4 pb-4 px-4"
|
|
459
|
-
},
|
|
380
|
+
}, ht = { class: "p-3" }, vt = /* @__PURE__ */ I({
|
|
460
381
|
__name: "AsideBar",
|
|
461
|
-
setup(
|
|
462
|
-
const
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
382
|
+
setup(o) {
|
|
383
|
+
const e = x(), t = v(() => {
|
|
384
|
+
var l;
|
|
385
|
+
return ((l = e.value.menus) == null ? void 0 : l.filter((u) => {
|
|
386
|
+
var d;
|
|
387
|
+
return ((d = u.meta) == null ? void 0 : d.appId) == e.value.currentAppId;
|
|
388
|
+
})) || [];
|
|
389
|
+
}), { isMobile: n, sideOpen: a } = Q(), s = () => void (a.value = !a.value);
|
|
390
|
+
return (l, u) => {
|
|
391
|
+
const d = w("el-icon"), m = w("el-scrollbar");
|
|
392
|
+
return t.value.length && !l.$route.meta.hideSidebar ? (r(), f("div", {
|
|
466
393
|
key: 0,
|
|
467
|
-
class:
|
|
468
|
-
|
|
469
|
-
|
|
394
|
+
class: M(["aside-bar flex flex-col h-full min-h-0 w-64 min-width-50", [
|
|
395
|
+
p(n) ? "fixed top-0 left-0 z-200 transition-all" : "",
|
|
396
|
+
p(a) ? "translate-x-[0px]" : "translate-x-[-100%]"
|
|
470
397
|
]])
|
|
471
398
|
}, [
|
|
472
|
-
|
|
473
|
-
|
|
399
|
+
p(n) ? (r(), f("div", ft, [
|
|
400
|
+
c("div", {
|
|
474
401
|
class: "aside-bar__close text-lg cursor-pointer p-2 leading-4",
|
|
475
402
|
onClick: s
|
|
476
403
|
}, [
|
|
477
|
-
|
|
478
|
-
default:
|
|
479
|
-
|
|
404
|
+
y(d, null, {
|
|
405
|
+
default: b(() => [
|
|
406
|
+
y(p(me))
|
|
480
407
|
]),
|
|
481
408
|
_: 1
|
|
482
409
|
})
|
|
483
410
|
])
|
|
484
|
-
])) :
|
|
485
|
-
|
|
486
|
-
default:
|
|
487
|
-
|
|
488
|
-
|
|
411
|
+
])) : C("", !0),
|
|
412
|
+
y(m, { ref: "leftScrollRef" }, {
|
|
413
|
+
default: b(() => [
|
|
414
|
+
c("div", ht, [
|
|
415
|
+
y(Pe, { menus: t.value }, null, 8, ["menus"])
|
|
489
416
|
])
|
|
490
417
|
]),
|
|
491
418
|
_: 1
|
|
492
419
|
}, 512),
|
|
493
|
-
|
|
494
|
-
], 2)) :
|
|
420
|
+
U(l.$slots, "sidebar-foot", {}, void 0, !0)
|
|
421
|
+
], 2)) : C("", !0);
|
|
495
422
|
};
|
|
496
423
|
}
|
|
497
|
-
}),
|
|
498
|
-
function
|
|
499
|
-
const
|
|
424
|
+
}), yt = /* @__PURE__ */ L(vt, [["__scopeId", "data-v-4ebd3eba"]]);
|
|
425
|
+
function Te() {
|
|
426
|
+
const o = x(), e = v(() => o.value.appList || []);
|
|
500
427
|
return {
|
|
501
428
|
appList: e,
|
|
502
|
-
getAppPath: (
|
|
503
|
-
findAppById: (
|
|
504
|
-
if (
|
|
505
|
-
return
|
|
429
|
+
getAppPath: (a) => (a == null ? void 0 : a.path) || "",
|
|
430
|
+
findAppById: (a) => {
|
|
431
|
+
if (a)
|
|
432
|
+
return Ie(e.value, a);
|
|
506
433
|
}
|
|
507
434
|
};
|
|
508
435
|
}
|
|
509
|
-
const
|
|
510
|
-
(t, n) => t || (n.appId === e ? n :
|
|
436
|
+
const Ie = (o, e) => o.reduce(
|
|
437
|
+
(t, n) => t || (n.appId === e ? n : Ie(n.children || [], e)),
|
|
511
438
|
void 0
|
|
512
|
-
),
|
|
439
|
+
), bt = {
|
|
513
440
|
key: 0,
|
|
514
441
|
class: "app-select"
|
|
515
|
-
},
|
|
442
|
+
}, At = ["href"], _t = {
|
|
516
443
|
key: 0,
|
|
517
444
|
class: "app-select__dropdown"
|
|
518
|
-
},
|
|
445
|
+
}, St = ["href"], Ct = { class: "app-select__dropdown-icon text-xl" }, wt = { key: 0 }, Pt = { key: 1 }, Tt = { class: "app-select__dropdown-desc" }, It = /* @__PURE__ */ I({
|
|
519
446
|
__name: "AppSelect",
|
|
520
|
-
setup(
|
|
521
|
-
const e =
|
|
522
|
-
var
|
|
523
|
-
return t.value === l.appId || !!((
|
|
447
|
+
setup(o) {
|
|
448
|
+
const e = x(), t = v(() => e.value.currentAppId || ""), { appList: n, getAppPath: a } = Te(), s = (l) => {
|
|
449
|
+
var u;
|
|
450
|
+
return t.value === l.appId || !!((u = l.children) != null && u.some((d) => d.appId === t.value));
|
|
524
451
|
};
|
|
525
|
-
return (l,
|
|
452
|
+
return (l, u) => {
|
|
526
453
|
var m;
|
|
527
|
-
const d =
|
|
528
|
-
return (m =
|
|
529
|
-
(r(!0),
|
|
530
|
-
var
|
|
531
|
-
return r(),
|
|
454
|
+
const d = w("el-icon");
|
|
455
|
+
return (m = p(n)) != null && m.length ? (r(), f("div", bt, [
|
|
456
|
+
(r(!0), f(D, null, E(p(n), (i) => {
|
|
457
|
+
var A, h;
|
|
458
|
+
return r(), f("div", {
|
|
532
459
|
key: i.appId,
|
|
533
460
|
class: "app-select__group"
|
|
534
461
|
}, [
|
|
535
|
-
|
|
536
|
-
class:
|
|
537
|
-
"app-select__link--active":
|
|
462
|
+
c("a", {
|
|
463
|
+
class: M(["app-select__link", {
|
|
464
|
+
"app-select__link--active": s(i)
|
|
538
465
|
}]),
|
|
539
|
-
href:
|
|
466
|
+
href: p(a)(i) || void 0
|
|
540
467
|
}, [
|
|
541
|
-
|
|
542
|
-
(
|
|
543
|
-
default:
|
|
544
|
-
|
|
468
|
+
c("span", null, T(p(F)(i.translations || {}, "name", i.name)), 1),
|
|
469
|
+
(A = i.children) != null && A.length ? (r(), S(d, { key: 0 }, {
|
|
470
|
+
default: b(() => [
|
|
471
|
+
y(p(W))
|
|
545
472
|
]),
|
|
546
473
|
_: 1
|
|
547
|
-
})) :
|
|
548
|
-
], 10,
|
|
549
|
-
(
|
|
550
|
-
(r(!0),
|
|
551
|
-
key:
|
|
552
|
-
class:
|
|
553
|
-
"app-select__dropdown-item--active":
|
|
474
|
+
})) : C("", !0)
|
|
475
|
+
], 10, At),
|
|
476
|
+
(h = i.children) != null && h.length ? (r(), f("div", _t, [
|
|
477
|
+
(r(!0), f(D, null, E(i.children, (g) => (r(), f("a", {
|
|
478
|
+
key: g.appId,
|
|
479
|
+
class: M(["app-select__dropdown-item", {
|
|
480
|
+
"app-select__dropdown-item--active": s(g)
|
|
554
481
|
}]),
|
|
555
|
-
href:
|
|
482
|
+
href: p(a)(g) || void 0
|
|
556
483
|
}, [
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
class:
|
|
484
|
+
c("span", Ct, [
|
|
485
|
+
c("i", {
|
|
486
|
+
class: M(g.icon || "metisicon-moxingku")
|
|
560
487
|
}, null, 2)
|
|
561
488
|
]),
|
|
562
|
-
|
|
563
|
-
p("div",
|
|
564
|
-
|
|
489
|
+
c("div", null, [
|
|
490
|
+
g.translations ? (r(), f("div", wt, T(p(F)(g.translations || {}, "name", g.name)), 1)) : (r(), f("div", Pt, T(g.name), 1)),
|
|
491
|
+
c("div", Tt, T(p(F)(g.translations || {}, "description", g.desc)), 1)
|
|
565
492
|
])
|
|
566
|
-
], 10,
|
|
567
|
-
])) :
|
|
493
|
+
], 10, St))), 128))
|
|
494
|
+
])) : C("", !0)
|
|
568
495
|
]);
|
|
569
496
|
}), 128))
|
|
570
|
-
])) :
|
|
497
|
+
])) : C("", !0);
|
|
571
498
|
};
|
|
572
499
|
}
|
|
573
|
-
}),
|
|
500
|
+
}), kt = /* @__PURE__ */ L(It, [["__scopeId", "data-v-edbb0fe6"]]), Lt = /* @__PURE__ */ I({
|
|
574
501
|
__name: "NavIconBtn",
|
|
575
502
|
props: {
|
|
576
503
|
tag: { default: "button" },
|
|
577
504
|
type: { default: "button" },
|
|
578
505
|
iconOnly: { type: Boolean, default: !0 }
|
|
579
506
|
},
|
|
580
|
-
setup(
|
|
581
|
-
return (e, t) => (r(),
|
|
582
|
-
type:
|
|
583
|
-
class:
|
|
507
|
+
setup(o) {
|
|
508
|
+
return (e, t) => (r(), S(X(o.tag), {
|
|
509
|
+
type: o.tag === "button" ? o.type : void 0,
|
|
510
|
+
class: M(["nav-icon-btn", { "nav-icon-btn--icon-only": o.iconOnly }])
|
|
584
511
|
}, {
|
|
585
|
-
default:
|
|
586
|
-
|
|
512
|
+
default: b(() => [
|
|
513
|
+
U(e.$slots, "default", {}, void 0, !0)
|
|
587
514
|
]),
|
|
588
515
|
_: 3
|
|
589
516
|
}, 8, ["type", "class"]));
|
|
590
517
|
}
|
|
591
|
-
}),
|
|
518
|
+
}), R = /* @__PURE__ */ L(Lt, [["__scopeId", "data-v-824bbddc"]]), xt = /* @__PURE__ */ I({
|
|
592
519
|
__name: "ThemeToggle",
|
|
593
|
-
setup(
|
|
594
|
-
const e =
|
|
595
|
-
return
|
|
520
|
+
setup(o) {
|
|
521
|
+
const e = x(), { theme: t, isDark: n, toggleTheme: a } = Ce();
|
|
522
|
+
return de(() => {
|
|
596
523
|
e.value.theme = t.value;
|
|
597
|
-
}), (
|
|
598
|
-
const
|
|
599
|
-
return r(),
|
|
600
|
-
default:
|
|
601
|
-
|
|
602
|
-
default:
|
|
603
|
-
|
|
524
|
+
}), (s, l) => {
|
|
525
|
+
const u = w("el-icon");
|
|
526
|
+
return r(), S(R, { onClick: p(a) }, {
|
|
527
|
+
default: b(() => [
|
|
528
|
+
y(u, null, {
|
|
529
|
+
default: b(() => [
|
|
530
|
+
p(n) ? (r(), S(p(Ue), { key: 1 })) : (r(), S(p(Ne), { key: 0 }))
|
|
604
531
|
]),
|
|
605
532
|
_: 1
|
|
606
533
|
})
|
|
@@ -609,7 +536,7 @@ const $e = (a, e) => a.reduce(
|
|
|
609
536
|
}, 8, ["onClick"]);
|
|
610
537
|
};
|
|
611
538
|
}
|
|
612
|
-
}),
|
|
539
|
+
}), ke = /* @__PURE__ */ L(xt, [["__scopeId", "data-v-e6ea60b7"]]), Dt = {
|
|
613
540
|
label: {
|
|
614
541
|
clickToChangeImage: "Click to change image"
|
|
615
542
|
},
|
|
@@ -617,7 +544,7 @@ const $e = (a, e) => a.reduce(
|
|
|
617
544
|
uploadIng: "Uploading...",
|
|
618
545
|
agreementTip1: "Terms of Service and Privacy Policy"
|
|
619
546
|
}
|
|
620
|
-
},
|
|
547
|
+
}, Mt = {
|
|
621
548
|
label: {
|
|
622
549
|
agreement: "I agree to",
|
|
623
550
|
and: "and",
|
|
@@ -822,7 +749,7 @@ const $e = (a, e) => a.reduce(
|
|
|
822
749
|
loginHeroTitle: "Enterprise AI Platform for Model Services & Compute",
|
|
823
750
|
loginHeroDesc: "Unified API access to multi-model routing, compute orchestration, and AI service operations, built for enterprise."
|
|
824
751
|
}
|
|
825
|
-
},
|
|
752
|
+
}, Et = {
|
|
826
753
|
btn: {
|
|
827
754
|
agree: "Agree",
|
|
828
755
|
disagree: "Disagree",
|
|
@@ -860,7 +787,7 @@ const $e = (a, e) => a.reduce(
|
|
|
860
787
|
},
|
|
861
788
|
pleaseSelect: "Please select {0}",
|
|
862
789
|
seeMore: "See More"
|
|
863
|
-
},
|
|
790
|
+
}, Nt = {
|
|
864
791
|
notFound: {
|
|
865
792
|
title: "Coming Soon!",
|
|
866
793
|
description: "This page is under development. Please refresh the page or click the button below to return to the homepage.",
|
|
@@ -895,7 +822,7 @@ const $e = (a, e) => a.reduce(
|
|
|
895
822
|
folder: "folder",
|
|
896
823
|
file: "file"
|
|
897
824
|
}
|
|
898
|
-
},
|
|
825
|
+
}, Ut = {
|
|
899
826
|
label: {
|
|
900
827
|
languageModel: "Language Model"
|
|
901
828
|
},
|
|
@@ -1044,7 +971,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1044
971
|
CNY: "Chinese Yuan",
|
|
1045
972
|
USD: "US Dollar"
|
|
1046
973
|
}
|
|
1047
|
-
},
|
|
974
|
+
}, Bt = {
|
|
1048
975
|
label: {},
|
|
1049
976
|
btn: {
|
|
1050
977
|
search: "Search",
|
|
@@ -1053,7 +980,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1053
980
|
expand: "Expand"
|
|
1054
981
|
},
|
|
1055
982
|
msg: {}
|
|
1056
|
-
},
|
|
983
|
+
}, Rt = {
|
|
1057
984
|
label: {
|
|
1058
985
|
otherConfig: "Other Settings"
|
|
1059
986
|
},
|
|
@@ -1068,7 +995,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1068
995
|
StaticPrefixInput: {
|
|
1069
996
|
notEmpty: "Cannot be empty"
|
|
1070
997
|
}
|
|
1071
|
-
},
|
|
998
|
+
}, Kt = {
|
|
1072
999
|
label: {},
|
|
1073
1000
|
btn: {},
|
|
1074
1001
|
msg: {
|
|
@@ -1084,17 +1011,17 @@ const $e = (a, e) => a.reduce(
|
|
|
1084
1011
|
charError: "Passwords must contain letters, numbers, and special symbols",
|
|
1085
1012
|
charTypeError: "The password must contain at least three types: uppercase letters, lowercase letters, numbers, and special symbols"
|
|
1086
1013
|
}
|
|
1087
|
-
},
|
|
1014
|
+
}, Jt = {
|
|
1088
1015
|
name: "English",
|
|
1089
|
-
common:
|
|
1090
|
-
account:
|
|
1091
|
-
admin:
|
|
1092
|
-
components:
|
|
1093
|
-
constant:
|
|
1094
|
-
filterBox:
|
|
1095
|
-
password:
|
|
1096
|
-
instanceForm:
|
|
1097
|
-
},
|
|
1016
|
+
common: Et,
|
|
1017
|
+
account: Dt,
|
|
1018
|
+
admin: Mt,
|
|
1019
|
+
components: Nt,
|
|
1020
|
+
constant: Ut,
|
|
1021
|
+
filterBox: Bt,
|
|
1022
|
+
password: Kt,
|
|
1023
|
+
instanceForm: Rt
|
|
1024
|
+
}, Ot = {
|
|
1098
1025
|
label: {
|
|
1099
1026
|
clickToChangeImage: "点击更换图像"
|
|
1100
1027
|
},
|
|
@@ -1102,7 +1029,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1102
1029
|
uploadIng: "上传中...",
|
|
1103
1030
|
agreementTip1: "服务协议及隐私保护"
|
|
1104
1031
|
}
|
|
1105
|
-
},
|
|
1032
|
+
}, Ft = {
|
|
1106
1033
|
label: {
|
|
1107
1034
|
agreement: "我已同意",
|
|
1108
1035
|
and: "和",
|
|
@@ -1305,7 +1232,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1305
1232
|
loginHeroTitle: "泛 AI 聚合与分发服务",
|
|
1306
1233
|
loginHeroDesc: "通过 API 调度,实现模型调用、AI 应用构建、数据与工具服务的在线分发与使用。"
|
|
1307
1234
|
}
|
|
1308
|
-
},
|
|
1235
|
+
}, Ht = {
|
|
1309
1236
|
btn: {
|
|
1310
1237
|
agree: "同意",
|
|
1311
1238
|
disagree: "不同意",
|
|
@@ -1343,7 +1270,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1343
1270
|
},
|
|
1344
1271
|
pleaseSelect: "请选择{0}",
|
|
1345
1272
|
seeMore: "查看更多"
|
|
1346
|
-
},
|
|
1273
|
+
}, Qt = {
|
|
1347
1274
|
notFound: {
|
|
1348
1275
|
title: "开发中,敬请期待!",
|
|
1349
1276
|
description: "页面开发中,请刷新页面,或者点击下面的按钮返回主页.",
|
|
@@ -1378,7 +1305,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1378
1305
|
folder: "文件夹",
|
|
1379
1306
|
file: "文件"
|
|
1380
1307
|
}
|
|
1381
|
-
},
|
|
1308
|
+
}, Zt = {
|
|
1382
1309
|
label: {
|
|
1383
1310
|
languageModel: "语言模型"
|
|
1384
1311
|
},
|
|
@@ -1527,7 +1454,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1527
1454
|
CNY: "人民币",
|
|
1528
1455
|
USD: "美元"
|
|
1529
1456
|
}
|
|
1530
|
-
},
|
|
1457
|
+
}, jt = {
|
|
1531
1458
|
label: {},
|
|
1532
1459
|
btn: {
|
|
1533
1460
|
search: "搜索",
|
|
@@ -1536,7 +1463,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1536
1463
|
expand: "展开"
|
|
1537
1464
|
},
|
|
1538
1465
|
msg: {}
|
|
1539
|
-
},
|
|
1466
|
+
}, zt = {
|
|
1540
1467
|
label: {
|
|
1541
1468
|
otherConfig: "其他配置"
|
|
1542
1469
|
},
|
|
@@ -1551,7 +1478,7 @@ const $e = (a, e) => a.reduce(
|
|
|
1551
1478
|
StaticPrefixInput: {
|
|
1552
1479
|
notEmpty: "不能为空"
|
|
1553
1480
|
}
|
|
1554
|
-
},
|
|
1481
|
+
}, qt = {
|
|
1555
1482
|
label: {},
|
|
1556
1483
|
btn: {},
|
|
1557
1484
|
msg: {
|
|
@@ -1567,63 +1494,63 @@ const $e = (a, e) => a.reduce(
|
|
|
1567
1494
|
charError: "密码必须包含字母、数字、特殊符号",
|
|
1568
1495
|
charTypeError: "密码必须包含至少以下三种(大写字母、小写字母、数字、特殊符号)"
|
|
1569
1496
|
}
|
|
1570
|
-
},
|
|
1497
|
+
}, Yt = {
|
|
1571
1498
|
name: "中文简体",
|
|
1572
|
-
common:
|
|
1573
|
-
account:
|
|
1574
|
-
admin:
|
|
1575
|
-
components:
|
|
1576
|
-
constant:
|
|
1577
|
-
filterBox:
|
|
1578
|
-
password:
|
|
1579
|
-
instanceForm:
|
|
1580
|
-
},
|
|
1581
|
-
"en-US":
|
|
1582
|
-
"zh-CN":
|
|
1583
|
-
},
|
|
1584
|
-
locale:
|
|
1499
|
+
common: Ht,
|
|
1500
|
+
account: Ot,
|
|
1501
|
+
admin: Ft,
|
|
1502
|
+
components: Qt,
|
|
1503
|
+
constant: Zt,
|
|
1504
|
+
filterBox: jt,
|
|
1505
|
+
password: qt,
|
|
1506
|
+
instanceForm: zt
|
|
1507
|
+
}, Z = {
|
|
1508
|
+
"en-US": Jt,
|
|
1509
|
+
"zh-CN": Yt
|
|
1510
|
+
}, z = Oe({
|
|
1511
|
+
locale: he(),
|
|
1585
1512
|
fallbackLocale: "en-US",
|
|
1586
|
-
messages:
|
|
1513
|
+
messages: Z,
|
|
1587
1514
|
legacy: !1
|
|
1588
|
-
}),
|
|
1515
|
+
}), Xt = {
|
|
1589
1516
|
key: 0,
|
|
1590
1517
|
class: "language-select__current"
|
|
1591
|
-
},
|
|
1518
|
+
}, Wt = { class: "language-select__panel" }, Gt = ["onClick"], Vt = /* @__PURE__ */ I({
|
|
1592
1519
|
__name: "LanguageSelect",
|
|
1593
1520
|
props: {
|
|
1594
1521
|
showLabel: { type: Boolean, default: !1 }
|
|
1595
1522
|
},
|
|
1596
|
-
setup(
|
|
1597
|
-
const { locale: e } =
|
|
1598
|
-
() =>
|
|
1599
|
-
), n = Object.keys(
|
|
1600
|
-
label:
|
|
1601
|
-
value:
|
|
1602
|
-
})),
|
|
1603
|
-
|
|
1523
|
+
setup(o) {
|
|
1524
|
+
const { locale: e } = z.global, t = v(
|
|
1525
|
+
() => Z[e.value].name
|
|
1526
|
+
), n = Object.keys(Z).map((s) => ({
|
|
1527
|
+
label: Z[s].name,
|
|
1528
|
+
value: s
|
|
1529
|
+
})), a = (s) => {
|
|
1530
|
+
B.set("locale", s), location.reload();
|
|
1604
1531
|
};
|
|
1605
|
-
return (
|
|
1606
|
-
const
|
|
1607
|
-
return r(),
|
|
1532
|
+
return (s, l) => {
|
|
1533
|
+
const u = w("el-icon"), d = w("el-popover");
|
|
1534
|
+
return r(), S(d, {
|
|
1608
1535
|
placement: "bottom",
|
|
1609
1536
|
width: 180,
|
|
1610
1537
|
trigger: "hover",
|
|
1611
1538
|
"popper-class": "top-language-popover"
|
|
1612
1539
|
}, {
|
|
1613
|
-
reference:
|
|
1614
|
-
|
|
1540
|
+
reference: b(() => [
|
|
1541
|
+
y(R, {
|
|
1615
1542
|
"langselect-toggle": "",
|
|
1616
1543
|
tag: "div",
|
|
1617
1544
|
class: "language-select",
|
|
1618
|
-
"icon-only": !
|
|
1545
|
+
"icon-only": !o.showLabel,
|
|
1619
1546
|
title: t.value,
|
|
1620
1547
|
"aria-label": t.value
|
|
1621
1548
|
}, {
|
|
1622
|
-
default:
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
default:
|
|
1626
|
-
|
|
1549
|
+
default: b(() => [
|
|
1550
|
+
U(s.$slots, "prefix", {}, void 0, !0),
|
|
1551
|
+
y(u, null, {
|
|
1552
|
+
default: b(() => [...l[0] || (l[0] = [
|
|
1553
|
+
c("svg", {
|
|
1627
1554
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1628
1555
|
width: "24",
|
|
1629
1556
|
height: "24",
|
|
@@ -1637,80 +1564,80 @@ const $e = (a, e) => a.reduce(
|
|
|
1637
1564
|
"aria-hidden": "true",
|
|
1638
1565
|
class: "lucide lucide-globe"
|
|
1639
1566
|
}, [
|
|
1640
|
-
|
|
1567
|
+
c("circle", {
|
|
1641
1568
|
cx: "12",
|
|
1642
1569
|
cy: "12",
|
|
1643
1570
|
r: "10"
|
|
1644
1571
|
}),
|
|
1645
|
-
|
|
1646
|
-
|
|
1572
|
+
c("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
1573
|
+
c("path", { d: "M2 12h20" })
|
|
1647
1574
|
], -1)
|
|
1648
1575
|
])]),
|
|
1649
1576
|
_: 1
|
|
1650
1577
|
}),
|
|
1651
|
-
|
|
1652
|
-
|
|
1578
|
+
o.showLabel ? (r(), f("span", Xt, T(t.value), 1)) : C("", !0),
|
|
1579
|
+
o.showLabel ? (r(), S(u, {
|
|
1653
1580
|
key: 1,
|
|
1654
1581
|
class: "language-select__caret"
|
|
1655
1582
|
}, {
|
|
1656
|
-
default:
|
|
1657
|
-
|
|
1583
|
+
default: b(() => [
|
|
1584
|
+
y(p(W))
|
|
1658
1585
|
]),
|
|
1659
1586
|
_: 1
|
|
1660
|
-
})) :
|
|
1587
|
+
})) : C("", !0)
|
|
1661
1588
|
]),
|
|
1662
1589
|
_: 3
|
|
1663
1590
|
}, 8, ["icon-only", "title", "aria-label"])
|
|
1664
1591
|
]),
|
|
1665
|
-
default:
|
|
1666
|
-
|
|
1667
|
-
(r(!0),
|
|
1592
|
+
default: b(() => [
|
|
1593
|
+
c("div", Wt, [
|
|
1594
|
+
(r(!0), f(D, null, E(p(n), (m) => (r(), f("div", {
|
|
1668
1595
|
key: m.value,
|
|
1669
|
-
class:
|
|
1670
|
-
onClick: (i) =>
|
|
1671
|
-
},
|
|
1596
|
+
class: M(["language-select__option", { "language-select__option--active": m.value === p(e) }]),
|
|
1597
|
+
onClick: (i) => a(m.value)
|
|
1598
|
+
}, T(m.label), 11, Gt))), 128))
|
|
1672
1599
|
])
|
|
1673
1600
|
]),
|
|
1674
1601
|
_: 3
|
|
1675
1602
|
});
|
|
1676
1603
|
};
|
|
1677
1604
|
}
|
|
1678
|
-
}),
|
|
1605
|
+
}), Le = /* @__PURE__ */ L(Vt, [["__scopeId", "data-v-48306ad1"]]), $t = { class: "mobile-user-popover" }, en = ["href"], tn = /* @__PURE__ */ I({
|
|
1679
1606
|
__name: "AsideUserMobilePopover",
|
|
1680
|
-
setup(
|
|
1681
|
-
const { t: e } =
|
|
1682
|
-
var
|
|
1683
|
-
Promise.resolve((l = (
|
|
1684
|
-
t.value.onLogout ||
|
|
1607
|
+
setup(o) {
|
|
1608
|
+
const { t: e } = z.global, t = x(), n = v(() => rt(t.value)), a = () => {
|
|
1609
|
+
var s, l;
|
|
1610
|
+
Promise.resolve((l = (s = t.value).onLogout) == null ? void 0 : l.call(s)).finally(() => {
|
|
1611
|
+
t.value.onLogout || j(t.value);
|
|
1685
1612
|
});
|
|
1686
1613
|
};
|
|
1687
|
-
return (
|
|
1688
|
-
const
|
|
1689
|
-
return r(),
|
|
1614
|
+
return (s, l) => {
|
|
1615
|
+
const u = w("el-popover");
|
|
1616
|
+
return r(), S(u, {
|
|
1690
1617
|
width: 220,
|
|
1691
1618
|
trigger: "click",
|
|
1692
1619
|
"popper-class": "top-userinfo-popover"
|
|
1693
1620
|
}, {
|
|
1694
|
-
reference:
|
|
1695
|
-
|
|
1621
|
+
reference: b(() => [
|
|
1622
|
+
U(s.$slots, "reference", {}, void 0, !0)
|
|
1696
1623
|
]),
|
|
1697
|
-
default:
|
|
1698
|
-
|
|
1699
|
-
|
|
1624
|
+
default: b(() => [
|
|
1625
|
+
c("div", $t, [
|
|
1626
|
+
c("a", {
|
|
1700
1627
|
href: n.value,
|
|
1701
1628
|
class: "mobile-user-popover__item"
|
|
1702
1629
|
}, [
|
|
1703
|
-
l[0] || (l[0] =
|
|
1704
|
-
|
|
1705
|
-
], 8,
|
|
1706
|
-
|
|
1707
|
-
l[2] || (l[2] =
|
|
1708
|
-
|
|
1630
|
+
l[0] || (l[0] = c("i", { class: "metisicon-yonghu1" }, null, -1)),
|
|
1631
|
+
c("span", null, T(p(e)("admin.label.profile")), 1)
|
|
1632
|
+
], 8, en),
|
|
1633
|
+
y(Le),
|
|
1634
|
+
l[2] || (l[2] = c("div", { class: "mobile-user-popover__divider" }, null, -1)),
|
|
1635
|
+
c("div", {
|
|
1709
1636
|
class: "mobile-user-popover__item mobile-user-popover__item--danger",
|
|
1710
|
-
onClick:
|
|
1637
|
+
onClick: a
|
|
1711
1638
|
}, [
|
|
1712
|
-
l[1] || (l[1] =
|
|
1713
|
-
|
|
1639
|
+
l[1] || (l[1] = c("i", { class: "metisicon-exit-full" }, null, -1)),
|
|
1640
|
+
c("span", null, T(p(e)("common.btn.logout")), 1)
|
|
1714
1641
|
])
|
|
1715
1642
|
])
|
|
1716
1643
|
]),
|
|
@@ -1718,464 +1645,285 @@ const $e = (a, e) => a.reduce(
|
|
|
1718
1645
|
});
|
|
1719
1646
|
};
|
|
1720
1647
|
}
|
|
1721
|
-
}),
|
|
1648
|
+
}), xe = /* @__PURE__ */ L(tn, [["__scopeId", "data-v-87e082b1"]]), nn = { class: "header-right-mobile" }, on = /* @__PURE__ */ I({
|
|
1722
1649
|
__name: "HeaderRightMobile",
|
|
1723
|
-
setup(
|
|
1724
|
-
const e =
|
|
1650
|
+
setup(o) {
|
|
1651
|
+
const e = x(), t = v(
|
|
1725
1652
|
() => {
|
|
1726
|
-
var
|
|
1727
|
-
return !!((
|
|
1653
|
+
var a, s;
|
|
1654
|
+
return !!((a = e.value.user) != null && a.id || (s = e.value.user) != null && s.userId);
|
|
1728
1655
|
}
|
|
1729
1656
|
), n = () => {
|
|
1730
|
-
var
|
|
1731
|
-
(
|
|
1657
|
+
var a, s;
|
|
1658
|
+
(s = (a = e.value).onLogin) != null && s.call(a) || j(e.value);
|
|
1732
1659
|
};
|
|
1733
|
-
return (
|
|
1734
|
-
|
|
1735
|
-
t.value ? (r(),
|
|
1736
|
-
reference:
|
|
1737
|
-
|
|
1738
|
-
default:
|
|
1739
|
-
|
|
1660
|
+
return (a, s) => (r(), f("div", nn, [
|
|
1661
|
+
y(ke),
|
|
1662
|
+
t.value ? (r(), S(xe, { key: 0 }, {
|
|
1663
|
+
reference: b(() => [
|
|
1664
|
+
y(R, { class: "header-right-mobile__action" }, {
|
|
1665
|
+
default: b(() => [...s[0] || (s[0] = [
|
|
1666
|
+
c("i", { class: "metisicon-yonghu1" }, null, -1)
|
|
1740
1667
|
])]),
|
|
1741
1668
|
_: 1
|
|
1742
1669
|
})
|
|
1743
1670
|
]),
|
|
1744
1671
|
_: 1
|
|
1745
|
-
})) : (r(),
|
|
1672
|
+
})) : (r(), S(R, {
|
|
1746
1673
|
key: 1,
|
|
1747
1674
|
class: "header-right-mobile__action",
|
|
1748
1675
|
onClick: n
|
|
1749
1676
|
}, {
|
|
1750
|
-
default:
|
|
1751
|
-
|
|
1677
|
+
default: b(() => [...s[1] || (s[1] = [
|
|
1678
|
+
c("i", { class: "metisicon-yonghu1" }, null, -1)
|
|
1752
1679
|
])]),
|
|
1753
1680
|
_: 1
|
|
1754
1681
|
}))
|
|
1755
1682
|
]));
|
|
1756
1683
|
}
|
|
1757
|
-
}),
|
|
1684
|
+
}), an = /* @__PURE__ */ L(on, [["__scopeId", "data-v-48792b0a"]]), sn = ["aria-label", "aria-expanded"], rn = { class: "mobile-menu-toggle__icon" }, ln = /* @__PURE__ */ I({
|
|
1758
1685
|
__name: "MobileMenuToggle",
|
|
1759
|
-
setup(
|
|
1760
|
-
const { sideOpen: e } =
|
|
1686
|
+
setup(o) {
|
|
1687
|
+
const { sideOpen: e } = Q(), t = () => {
|
|
1761
1688
|
e.value = !e.value;
|
|
1762
1689
|
};
|
|
1763
|
-
return (n,
|
|
1764
|
-
const
|
|
1765
|
-
return r(),
|
|
1690
|
+
return (n, a) => {
|
|
1691
|
+
const s = w("el-icon");
|
|
1692
|
+
return r(), f("button", {
|
|
1766
1693
|
type: "button",
|
|
1767
1694
|
class: "mobile-menu-toggle",
|
|
1768
|
-
"aria-label":
|
|
1769
|
-
"aria-expanded":
|
|
1695
|
+
"aria-label": p(e) ? "Close menu" : "Open menu",
|
|
1696
|
+
"aria-expanded": p(e),
|
|
1770
1697
|
onClick: t
|
|
1771
1698
|
}, [
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
default:
|
|
1775
|
-
|
|
1699
|
+
c("div", rn, [
|
|
1700
|
+
y(s, null, {
|
|
1701
|
+
default: b(() => [
|
|
1702
|
+
y(p(Be))
|
|
1776
1703
|
]),
|
|
1777
1704
|
_: 1
|
|
1778
1705
|
})
|
|
1779
1706
|
])
|
|
1780
|
-
], 8,
|
|
1707
|
+
], 8, sn);
|
|
1781
1708
|
};
|
|
1782
1709
|
}
|
|
1783
|
-
}),
|
|
1710
|
+
}), cn = /* @__PURE__ */ L(ln, [["__scopeId", "data-v-b1a4f38a"]]), un = {
|
|
1784
1711
|
key: 0,
|
|
1785
1712
|
class: "user-avatar__fallback"
|
|
1786
|
-
},
|
|
1713
|
+
}, dn = /* @__PURE__ */ I({
|
|
1787
1714
|
__name: "UserAvatar",
|
|
1788
1715
|
props: {
|
|
1789
1716
|
src: { default: "" },
|
|
1790
1717
|
name: { default: "" }
|
|
1791
1718
|
},
|
|
1792
|
-
setup(
|
|
1793
|
-
const e =
|
|
1719
|
+
setup(o) {
|
|
1720
|
+
const e = o, t = N(!1), n = v(() => e.name.trim()), a = v(
|
|
1794
1721
|
() => n.value.charAt(0).toUpperCase() || "U"
|
|
1795
|
-
),
|
|
1722
|
+
), s = v(() => n.value || "User avatar"), l = v(() => e.src.trim()), u = v(
|
|
1796
1723
|
() => !l.value || t.value
|
|
1797
|
-
), d =
|
|
1798
|
-
() =>
|
|
1799
|
-
), m =
|
|
1800
|
-
() =>
|
|
1801
|
-
), i =
|
|
1724
|
+
), d = v(
|
|
1725
|
+
() => u.value && !!n.value
|
|
1726
|
+
), m = v(
|
|
1727
|
+
() => u.value && !n.value
|
|
1728
|
+
), i = v(
|
|
1802
1729
|
() => l.value && !t.value ? l.value : void 0
|
|
1803
1730
|
);
|
|
1804
|
-
|
|
1731
|
+
pe(
|
|
1805
1732
|
() => e.src,
|
|
1806
1733
|
() => {
|
|
1807
1734
|
t.value = !1;
|
|
1808
1735
|
}
|
|
1809
1736
|
);
|
|
1810
|
-
const
|
|
1737
|
+
const A = () => {
|
|
1811
1738
|
t.value = !0;
|
|
1812
1739
|
};
|
|
1813
|
-
return (
|
|
1814
|
-
const
|
|
1815
|
-
return r(),
|
|
1740
|
+
return (h, g) => {
|
|
1741
|
+
const _ = w("el-icon"), P = w("el-avatar");
|
|
1742
|
+
return r(), S(P, ue(h.$attrs, {
|
|
1816
1743
|
src: i.value,
|
|
1817
1744
|
"data-src": i.value,
|
|
1818
|
-
alt:
|
|
1819
|
-
class: ["user-avatar", { "user-avatar--fallback":
|
|
1820
|
-
onError:
|
|
1745
|
+
alt: s.value,
|
|
1746
|
+
class: ["user-avatar", { "user-avatar--fallback": u.value }],
|
|
1747
|
+
onError: A
|
|
1821
1748
|
}), {
|
|
1822
|
-
default:
|
|
1823
|
-
d.value ? (r(),
|
|
1749
|
+
default: b(() => [
|
|
1750
|
+
d.value ? (r(), f("span", un, T(a.value), 1)) : m.value ? (r(), S(_, {
|
|
1824
1751
|
key: 1,
|
|
1825
1752
|
class: "user-avatar__icon",
|
|
1826
1753
|
"aria-hidden": "true"
|
|
1827
1754
|
}, {
|
|
1828
|
-
default:
|
|
1829
|
-
|
|
1755
|
+
default: b(() => [
|
|
1756
|
+
y(p(Re))
|
|
1830
1757
|
]),
|
|
1831
1758
|
_: 1
|
|
1832
|
-
})) :
|
|
1759
|
+
})) : C("", !0)
|
|
1833
1760
|
]),
|
|
1834
1761
|
_: 1
|
|
1835
1762
|
}, 16, ["src", "data-src", "alt", "class"]);
|
|
1836
1763
|
};
|
|
1837
1764
|
}
|
|
1838
|
-
}),
|
|
1839
|
-
key: 0,
|
|
1840
|
-
class: "layout-breadcrumb text-xs",
|
|
1841
|
-
"aria-label": "Breadcrumb"
|
|
1842
|
-
}, On = ["aria-label", "title"], Fn = {
|
|
1843
|
-
key: 1,
|
|
1844
|
-
class: "flex min-w-0 items-center gap-1"
|
|
1845
|
-
}, Hn = ["href"], Qn = ["onClick"], zn = {
|
|
1846
|
-
key: 3,
|
|
1847
|
-
class: "layout-breadcrumb__current"
|
|
1848
|
-
}, Zn = /* @__PURE__ */ N({
|
|
1849
|
-
__name: "LayoutBreadcrumb",
|
|
1850
|
-
props: {
|
|
1851
|
-
items: { default: void 0 },
|
|
1852
|
-
currentTitle: { default: "" },
|
|
1853
|
-
parentPath: { default: "" },
|
|
1854
|
-
preserveQueryKeys: { default: () => [] },
|
|
1855
|
-
showCurrent: { type: Boolean, default: !0 },
|
|
1856
|
-
showBack: { type: Boolean, default: !0 },
|
|
1857
|
-
backTo: { default: void 0 },
|
|
1858
|
-
backLabel: { default: "返回" }
|
|
1859
|
-
},
|
|
1860
|
-
setup(a) {
|
|
1861
|
-
const e = a, t = ge(), n = Ke(), s = K(), o = C(() => {
|
|
1862
|
-
var Se, Pe, we, Te, ke;
|
|
1863
|
-
if ((Se = e.items) != null && Se.length)
|
|
1864
|
-
return e.items.filter((G) => G.title);
|
|
1865
|
-
const u = A(t.path), b = A(
|
|
1866
|
-
((Pe = t.meta) == null ? void 0 : Pe.parent) || ((we = t.meta) == null ? void 0 : we.parentPath) || t.path
|
|
1867
|
-
), w = l(), T = (Te = s.value.currentEndRoute) == null ? void 0 : Te.paths, M = c(T || []);
|
|
1868
|
-
let F = M.length ? M : y(w, b);
|
|
1869
|
-
const de = A(
|
|
1870
|
-
e.parentPath || ((ke = t.meta) == null ? void 0 : ke.parentPath) || ""
|
|
1871
|
-
);
|
|
1872
|
-
if (!F.length && de && (F = y(w, de)), !F.length) {
|
|
1873
|
-
const G = de || g(u, w);
|
|
1874
|
-
F = G ? y(w, G) : [];
|
|
1875
|
-
}
|
|
1876
|
-
const W = F.map(d).filter((G) => G.title), Z = W[W.length - 1], X = i();
|
|
1877
|
-
return e.showCurrent && X && P(Z == null ? void 0 : Z.path) !== P(u) ? W.push({
|
|
1878
|
-
title: X,
|
|
1879
|
-
path: u,
|
|
1880
|
-
disabled: !0
|
|
1881
|
-
}) : X && Z && P(Z.path) === P(u) && (Z.title = X, Z.disabled = !0), !W.length && X && W.push({
|
|
1882
|
-
title: X,
|
|
1883
|
-
path: u,
|
|
1884
|
-
disabled: !0
|
|
1885
|
-
}), W;
|
|
1886
|
-
}), l = () => {
|
|
1887
|
-
const u = [], b = /* @__PURE__ */ new Set();
|
|
1888
|
-
return (s.value.menus || []).forEach((w) => {
|
|
1889
|
-
var M;
|
|
1890
|
-
const T = w.path || w.name || JSON.stringify(((M = w.meta) == null ? void 0 : M.translations) || {});
|
|
1891
|
-
!T || b.has(T) || (b.add(T), u.push(w));
|
|
1892
|
-
}), u;
|
|
1893
|
-
}, c = (u) => u.filter((b) => {
|
|
1894
|
-
var w;
|
|
1895
|
-
return b && ((w = b.meta) == null ? void 0 : w.visible) !== "0";
|
|
1896
|
-
}), d = (u) => {
|
|
1897
|
-
var b;
|
|
1898
|
-
return {
|
|
1899
|
-
title: m(u),
|
|
1900
|
-
path: u.path,
|
|
1901
|
-
disabled: ((b = u.meta) == null ? void 0 : b.visible) === "0",
|
|
1902
|
-
children: u.children
|
|
1903
|
-
};
|
|
1904
|
-
}, m = (u) => {
|
|
1905
|
-
var w;
|
|
1906
|
-
return ((w = u == null ? void 0 : u.meta) != null && w.translations ? ie(te(u.meta.translations, "name", u.name)) : "") || (u == null ? void 0 : u.title) || (u == null ? void 0 : u.name) || "";
|
|
1907
|
-
}, i = () => {
|
|
1908
|
-
var u;
|
|
1909
|
-
return e.currentTitle ? e.currentTitle : typeof ((u = t.meta) == null ? void 0 : u.title) == "string" ? t.meta.title : String(t.params.id || t.params.tenantId || "");
|
|
1910
|
-
}, y = (u, b, w = []) => {
|
|
1911
|
-
if (!b) return [];
|
|
1912
|
-
for (const T of u) {
|
|
1913
|
-
const M = [...w, T];
|
|
1914
|
-
if (f(T.path, b))
|
|
1915
|
-
return c(M);
|
|
1916
|
-
const F = y(T.children || [], b, M);
|
|
1917
|
-
if (F.length) return F;
|
|
1918
|
-
}
|
|
1919
|
-
return [];
|
|
1920
|
-
}, g = (u, b) => {
|
|
1921
|
-
const w = u.split("/").filter(Boolean);
|
|
1922
|
-
for (let T = w.length - 1; T > 0; T -= 1) {
|
|
1923
|
-
const M = `/${w.slice(0, T).join("/")}`;
|
|
1924
|
-
if (y(b, M).length) return M;
|
|
1925
|
-
}
|
|
1926
|
-
return "";
|
|
1927
|
-
}, f = (u = "", b = "") => {
|
|
1928
|
-
const w = P(u), T = P(b);
|
|
1929
|
-
if (!w || !T) return !1;
|
|
1930
|
-
if (w === T) return !0;
|
|
1931
|
-
const M = w.replace(/\/:(\w+)/g, "/([^/]+)");
|
|
1932
|
-
return new RegExp(`^${M}$`, "i").test(T);
|
|
1933
|
-
}, A = (u = "") => u ? u.split("?")[0].split("#")[0] : "", P = (u = "") => (A(u).replace(/\/+$/, "") || "/").toLowerCase(), x = (u) => /^https?:\/\//.test(u.path || ""), J = (u) => {
|
|
1934
|
-
var b;
|
|
1935
|
-
return !!((b = u.children) != null && b.some((w) => !w.disabled));
|
|
1936
|
-
}, I = (u, b) => u.disabled || b === o.value.length - 1 || !u.path ? !1 : x(u) || !J(u), R = (u) => {
|
|
1937
|
-
const b = u.to || Y(u);
|
|
1938
|
-
b && n.push(b);
|
|
1939
|
-
}, z = () => {
|
|
1940
|
-
var b;
|
|
1941
|
-
if (e.backTo) {
|
|
1942
|
-
n.push(e.backTo);
|
|
1943
|
-
return;
|
|
1944
|
-
}
|
|
1945
|
-
if ((b = n.options.history.state) != null && b.back && window.history.length > 1) {
|
|
1946
|
-
n.back();
|
|
1947
|
-
return;
|
|
1948
|
-
}
|
|
1949
|
-
const u = q();
|
|
1950
|
-
u && n.push(u);
|
|
1951
|
-
}, q = () => {
|
|
1952
|
-
var w, T;
|
|
1953
|
-
const u = e.parentPath || ((w = t.meta) == null ? void 0 : w.parentPath) || ((T = t.meta) == null ? void 0 : T.parent) || "";
|
|
1954
|
-
if (u)
|
|
1955
|
-
return Y({ path: u });
|
|
1956
|
-
const b = o.value[o.value.length - 2];
|
|
1957
|
-
if (b != null && b.to) return b.to;
|
|
1958
|
-
if (b != null && b.path && !x(b))
|
|
1959
|
-
return Y(b);
|
|
1960
|
-
}, Y = (u) => {
|
|
1961
|
-
if (!u.path) return;
|
|
1962
|
-
const b = e.preserveQueryKeys.reduce((w, T) => {
|
|
1963
|
-
const M = t.query[T];
|
|
1964
|
-
return typeof M == "string" && (w[T] = M), Array.isArray(M) && (w[T] = M.filter(
|
|
1965
|
-
(F) => typeof F == "string"
|
|
1966
|
-
)), w;
|
|
1967
|
-
}, {});
|
|
1968
|
-
return Object.keys(b).length ? { path: u.path, query: b } : { path: u.path };
|
|
1969
|
-
};
|
|
1970
|
-
return (u, b) => {
|
|
1971
|
-
const w = E("el-icon");
|
|
1972
|
-
return e.showBack || o.value.length ? (r(), v("nav", Jn, [
|
|
1973
|
-
e.showBack ? (r(), v("button", {
|
|
1974
|
-
key: 0,
|
|
1975
|
-
class: "layout-breadcrumb__back",
|
|
1976
|
-
type: "button",
|
|
1977
|
-
"aria-label": e.backLabel,
|
|
1978
|
-
title: e.backLabel,
|
|
1979
|
-
onClick: z
|
|
1980
|
-
}, [
|
|
1981
|
-
_(w, null, {
|
|
1982
|
-
default: S(() => [
|
|
1983
|
-
_(h(pt))
|
|
1984
|
-
]),
|
|
1985
|
-
_: 1
|
|
1986
|
-
})
|
|
1987
|
-
], 8, On)) : L("", !0),
|
|
1988
|
-
o.value.length ? (r(), v("ol", Fn, [
|
|
1989
|
-
(r(!0), v(O, null, Q(o.value, (T, M) => (r(), v("li", {
|
|
1990
|
-
key: `${T.path || T.title}-${M}`,
|
|
1991
|
-
class: "flex min-w-0 items-center gap-1"
|
|
1992
|
-
}, [
|
|
1993
|
-
M > 0 ? (r(), k(w, {
|
|
1994
|
-
key: 0,
|
|
1995
|
-
class: "layout-breadcrumb__separator"
|
|
1996
|
-
}, {
|
|
1997
|
-
default: S(() => [
|
|
1998
|
-
_(h(he))
|
|
1999
|
-
]),
|
|
2000
|
-
_: 1
|
|
2001
|
-
})) : L("", !0),
|
|
2002
|
-
x(T) && I(T, M) ? (r(), v("a", {
|
|
2003
|
-
key: 1,
|
|
2004
|
-
class: "layout-breadcrumb__link",
|
|
2005
|
-
href: T.path
|
|
2006
|
-
}, D(T.title), 9, Hn)) : I(T, M) ? (r(), v("button", {
|
|
2007
|
-
key: 2,
|
|
2008
|
-
class: "layout-breadcrumb__link",
|
|
2009
|
-
type: "button",
|
|
2010
|
-
onClick: (F) => R(T)
|
|
2011
|
-
}, D(T.title), 9, Qn)) : (r(), v("span", zn, D(T.title), 1))
|
|
2012
|
-
]))), 128))
|
|
2013
|
-
])) : L("", !0)
|
|
2014
|
-
])) : L("", !0);
|
|
2015
|
-
};
|
|
2016
|
-
}
|
|
2017
|
-
}), za = /* @__PURE__ */ B(Zn, [["__scopeId", "data-v-1589a248"]]), jn = {
|
|
1765
|
+
}), le = /* @__PURE__ */ L(dn, [["__scopeId", "data-v-50be58a7"]]), pn = {
|
|
2018
1766
|
key: 0,
|
|
2019
1767
|
class: "timezone-select__current"
|
|
2020
|
-
},
|
|
1768
|
+
}, mn = { class: "timezone-select__panel" }, gn = ["onClick"], fn = { class: "timezone-select__name" }, hn = { class: "timezone-select__offset" }, vn = /* @__PURE__ */ I({
|
|
2021
1769
|
__name: "TimezoneSelect",
|
|
2022
1770
|
props: {
|
|
2023
1771
|
showLabel: { type: Boolean, default: !1 }
|
|
2024
1772
|
},
|
|
2025
|
-
setup(
|
|
2026
|
-
const e =
|
|
2027
|
-
|
|
1773
|
+
setup(o) {
|
|
1774
|
+
const e = ze(), t = N(!1), n = v(() => e.value), a = v(() => Ve()), s = v(() => Ge(n.value)), l = (u) => {
|
|
1775
|
+
qe(u), t.value = !1;
|
|
2028
1776
|
};
|
|
2029
|
-
return (
|
|
2030
|
-
const m =
|
|
2031
|
-
return r(),
|
|
1777
|
+
return (u, d) => {
|
|
1778
|
+
const m = w("el-icon"), i = w("el-popover");
|
|
1779
|
+
return r(), S(i, {
|
|
2032
1780
|
visible: t.value,
|
|
2033
|
-
"onUpdate:visible": d[0] || (d[0] = (
|
|
1781
|
+
"onUpdate:visible": d[0] || (d[0] = (A) => t.value = A),
|
|
2034
1782
|
placement: "bottom",
|
|
2035
1783
|
width: 280,
|
|
2036
1784
|
trigger: "hover",
|
|
2037
1785
|
"popper-class": "top-timezone-popover"
|
|
2038
1786
|
}, {
|
|
2039
|
-
reference:
|
|
2040
|
-
|
|
1787
|
+
reference: b(() => [
|
|
1788
|
+
y(R, {
|
|
2041
1789
|
tag: "div",
|
|
2042
1790
|
class: "timezone-select",
|
|
2043
|
-
"icon-only": !
|
|
2044
|
-
title:
|
|
2045
|
-
"aria-label":
|
|
1791
|
+
"icon-only": !o.showLabel,
|
|
1792
|
+
title: s.value,
|
|
1793
|
+
"aria-label": s.value
|
|
2046
1794
|
}, {
|
|
2047
|
-
default:
|
|
2048
|
-
|
|
2049
|
-
default:
|
|
2050
|
-
|
|
1795
|
+
default: b(() => [
|
|
1796
|
+
y(m, null, {
|
|
1797
|
+
default: b(() => [
|
|
1798
|
+
y(p(Ke))
|
|
2051
1799
|
]),
|
|
2052
1800
|
_: 1
|
|
2053
1801
|
}),
|
|
2054
|
-
|
|
2055
|
-
|
|
1802
|
+
o.showLabel ? (r(), f("span", pn, T(n.value), 1)) : C("", !0),
|
|
1803
|
+
o.showLabel ? (r(), S(m, {
|
|
2056
1804
|
key: 1,
|
|
2057
1805
|
class: "timezone-select__caret"
|
|
2058
1806
|
}, {
|
|
2059
|
-
default:
|
|
2060
|
-
|
|
1807
|
+
default: b(() => [
|
|
1808
|
+
y(p(W))
|
|
2061
1809
|
]),
|
|
2062
1810
|
_: 1
|
|
2063
|
-
})) :
|
|
1811
|
+
})) : C("", !0)
|
|
2064
1812
|
]),
|
|
2065
1813
|
_: 1
|
|
2066
1814
|
}, 8, ["icon-only", "title", "aria-label"])
|
|
2067
1815
|
]),
|
|
2068
|
-
default:
|
|
2069
|
-
|
|
2070
|
-
(r(!0),
|
|
2071
|
-
key:
|
|
1816
|
+
default: b(() => [
|
|
1817
|
+
c("div", mn, [
|
|
1818
|
+
(r(!0), f(D, null, E(a.value, (A) => (r(), f("button", {
|
|
1819
|
+
key: A.value,
|
|
2072
1820
|
type: "button",
|
|
2073
|
-
class:
|
|
2074
|
-
"timezone-select__option--active":
|
|
1821
|
+
class: M(["timezone-select__option", {
|
|
1822
|
+
"timezone-select__option--active": A.value === n.value
|
|
2075
1823
|
}]),
|
|
2076
|
-
onClick: (
|
|
1824
|
+
onClick: (h) => l(A.value)
|
|
2077
1825
|
}, [
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
], 10,
|
|
1826
|
+
c("span", fn, T(A.value), 1),
|
|
1827
|
+
c("span", hn, T(A.offset), 1)
|
|
1828
|
+
], 10, gn))), 128))
|
|
2081
1829
|
])
|
|
2082
1830
|
]),
|
|
2083
1831
|
_: 1
|
|
2084
1832
|
}, 8, ["visible"]);
|
|
2085
1833
|
};
|
|
2086
1834
|
}
|
|
2087
|
-
}),
|
|
1835
|
+
}), co = /* @__PURE__ */ L(vn, [["__scopeId", "data-v-e62f5f2d"]]), yn = { class: "user-info__panel" }, bn = { class: "user-info__profile" }, An = { class: "user-info__profile-main" }, _n = ["title"], Sn = ["title"], Cn = { class: "user-info__meta" }, wn = { class: "user-info__meta-label" }, Pn = ["title"], Tn = ["href"], In = /* @__PURE__ */ I({
|
|
2088
1836
|
__name: "UserInfo",
|
|
2089
|
-
setup(
|
|
2090
|
-
const { t: e } =
|
|
1837
|
+
setup(o) {
|
|
1838
|
+
const { t: e } = z.global, t = x(), n = v(() => t.value.user || {}), a = v(() => t.value.accountMenu || []), s = v(
|
|
2091
1839
|
() => {
|
|
2092
|
-
var d, m, i,
|
|
2093
|
-
return ((d = n.value) == null ? void 0 : d.name) || ((m = n.value) == null ? void 0 : m.username) || ((i = n.value) == null ? void 0 : i.email) || ((
|
|
1840
|
+
var d, m, i, A;
|
|
1841
|
+
return ((d = n.value) == null ? void 0 : d.name) || ((m = n.value) == null ? void 0 : m.username) || ((i = n.value) == null ? void 0 : i.email) || ((A = n.value) == null ? void 0 : A.userId) || "User";
|
|
2094
1842
|
}
|
|
2095
|
-
), l =
|
|
1843
|
+
), l = v(
|
|
2096
1844
|
() => {
|
|
2097
1845
|
var d, m, i;
|
|
2098
1846
|
return [
|
|
2099
1847
|
{ label: e("admin.label.userName"), value: (d = n.value) == null ? void 0 : d.username },
|
|
2100
1848
|
{ label: e("admin.label.email"), value: (m = n.value) == null ? void 0 : m.email },
|
|
2101
1849
|
{ label: e("admin.label.userId"), value: (i = n.value) == null ? void 0 : i.userId }
|
|
2102
|
-
].filter((
|
|
1850
|
+
].filter((A) => !!A.value);
|
|
2103
1851
|
}
|
|
2104
|
-
),
|
|
1852
|
+
), u = () => {
|
|
2105
1853
|
var d, m;
|
|
2106
1854
|
Promise.resolve((m = (d = t.value).onLogout) == null ? void 0 : m.call(d)).finally(() => {
|
|
2107
|
-
t.value.onLogout ||
|
|
1855
|
+
t.value.onLogout || j(t.value);
|
|
2108
1856
|
});
|
|
2109
1857
|
};
|
|
2110
1858
|
return (d, m) => {
|
|
2111
|
-
const i =
|
|
2112
|
-
return r(),
|
|
1859
|
+
const i = w("el-popover");
|
|
1860
|
+
return r(), S(i, {
|
|
2113
1861
|
width: 280,
|
|
2114
1862
|
trigger: "hover",
|
|
2115
1863
|
"popper-class": "top-userinfo-popover"
|
|
2116
1864
|
}, {
|
|
2117
|
-
reference:
|
|
2118
|
-
|
|
1865
|
+
reference: b(() => [
|
|
1866
|
+
y(p(le), {
|
|
2119
1867
|
class: "user-info__trigger ml-2",
|
|
2120
1868
|
src: n.value.avatar,
|
|
2121
|
-
name:
|
|
1869
|
+
name: s.value
|
|
2122
1870
|
}, null, 8, ["src", "name"])
|
|
2123
1871
|
]),
|
|
2124
|
-
default:
|
|
2125
|
-
var
|
|
1872
|
+
default: b(() => {
|
|
1873
|
+
var A;
|
|
2126
1874
|
return [
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
1875
|
+
c("div", yn, [
|
|
1876
|
+
c("div", bn, [
|
|
1877
|
+
y(p(le), {
|
|
2130
1878
|
class: "user-info__profile-avatar",
|
|
2131
1879
|
src: n.value.avatar,
|
|
2132
|
-
name:
|
|
1880
|
+
name: s.value
|
|
2133
1881
|
}, null, 8, ["src", "name"]),
|
|
2134
|
-
|
|
2135
|
-
|
|
1882
|
+
c("div", An, [
|
|
1883
|
+
c("div", {
|
|
2136
1884
|
class: "user-info__display-name",
|
|
2137
|
-
title:
|
|
2138
|
-
},
|
|
2139
|
-
(
|
|
1885
|
+
title: s.value
|
|
1886
|
+
}, T(s.value), 9, _n),
|
|
1887
|
+
(A = n.value) != null && A.username ? (r(), f("div", {
|
|
2140
1888
|
key: 0,
|
|
2141
1889
|
class: "user-info__username",
|
|
2142
1890
|
title: n.value.username
|
|
2143
|
-
}, " @" +
|
|
1891
|
+
}, " @" + T(n.value.username), 9, Sn)) : C("", !0)
|
|
2144
1892
|
])
|
|
2145
1893
|
]),
|
|
2146
|
-
|
|
2147
|
-
(r(!0),
|
|
2148
|
-
key:
|
|
1894
|
+
c("div", Cn, [
|
|
1895
|
+
(r(!0), f(D, null, E(l.value, (h) => (r(), f("div", {
|
|
1896
|
+
key: h.label,
|
|
2149
1897
|
class: "user-info__meta-row"
|
|
2150
1898
|
}, [
|
|
2151
|
-
|
|
2152
|
-
|
|
1899
|
+
c("span", wn, T(h.label), 1),
|
|
1900
|
+
c("span", {
|
|
2153
1901
|
class: "user-info__meta-value",
|
|
2154
|
-
title:
|
|
2155
|
-
},
|
|
1902
|
+
title: h.value
|
|
1903
|
+
}, T(h.value), 9, Pn)
|
|
2156
1904
|
]))), 128))
|
|
2157
1905
|
]),
|
|
2158
|
-
m[1] || (m[1] =
|
|
2159
|
-
(r(!0),
|
|
2160
|
-
var
|
|
2161
|
-
return r(),
|
|
2162
|
-
key:
|
|
2163
|
-
href:
|
|
1906
|
+
m[1] || (m[1] = c("div", { class: "user-info__divider" }, null, -1)),
|
|
1907
|
+
(r(!0), f(D, null, E(a.value, (h, g) => {
|
|
1908
|
+
var _, P;
|
|
1909
|
+
return r(), f("a", {
|
|
1910
|
+
key: g,
|
|
1911
|
+
href: h.path,
|
|
2164
1912
|
class: "user-info__item"
|
|
2165
1913
|
}, [
|
|
2166
|
-
|
|
2167
|
-
icon:
|
|
1914
|
+
y(Se, {
|
|
1915
|
+
icon: h.icon || ((_ = h.meta) == null ? void 0 : _.icon)
|
|
2168
1916
|
}, null, 8, ["icon"]),
|
|
2169
|
-
|
|
2170
|
-
], 8,
|
|
1917
|
+
c("span", null, T(p(F)(((P = h.meta) == null ? void 0 : P.translations) || {}, "name", h.name)), 1)
|
|
1918
|
+
], 8, Tn);
|
|
2171
1919
|
}), 128)),
|
|
2172
|
-
m[2] || (m[2] =
|
|
2173
|
-
|
|
1920
|
+
m[2] || (m[2] = c("div", { class: "user-info__divider" }, null, -1)),
|
|
1921
|
+
c("div", {
|
|
2174
1922
|
class: "user-info__item user-info__item--danger",
|
|
2175
|
-
onClick:
|
|
1923
|
+
onClick: u
|
|
2176
1924
|
}, [
|
|
2177
|
-
m[0] || (m[0] =
|
|
2178
|
-
|
|
1925
|
+
m[0] || (m[0] = c("i", { class: "metisicon-exit-full" }, null, -1)),
|
|
1926
|
+
c("span", null, T(p(e)("common.btn.logout")), 1)
|
|
2179
1927
|
])
|
|
2180
1928
|
])
|
|
2181
1929
|
];
|
|
@@ -2184,29 +1932,29 @@ const $e = (a, e) => a.reduce(
|
|
|
2184
1932
|
});
|
|
2185
1933
|
};
|
|
2186
1934
|
}
|
|
2187
|
-
}),
|
|
1935
|
+
}), kn = /* @__PURE__ */ L(In, [["__scopeId", "data-v-ac052463"]]), Ln = { class: "header-right" }, xn = ["href"], Dn = /* @__PURE__ */ I({
|
|
2188
1936
|
__name: "SHeaderRight",
|
|
2189
|
-
setup(
|
|
2190
|
-
const { t: e } =
|
|
1937
|
+
setup(o) {
|
|
1938
|
+
const { t: e } = z.global, t = x(), n = v(() => t.value.hideDoc ?? !1), a = v(() => we(t.value)), s = v(() => t.value.user), l = v(() => {
|
|
2191
1939
|
var m, i;
|
|
2192
|
-
return !!((m =
|
|
2193
|
-
}),
|
|
1940
|
+
return !!((m = s.value) != null && m.id || (i = s.value) != null && i.userId);
|
|
1941
|
+
}), u = (m) => {
|
|
2194
1942
|
t.value.onLogin && (m.preventDefault(), t.value.onLogin());
|
|
2195
|
-
}, d =
|
|
1943
|
+
}, d = v(() => t.value.docsPath || "");
|
|
2196
1944
|
return (m, i) => {
|
|
2197
|
-
const
|
|
2198
|
-
return r(),
|
|
2199
|
-
!n.value && d.value ? (r(),
|
|
1945
|
+
const A = w("el-icon");
|
|
1946
|
+
return r(), f("div", Ln, [
|
|
1947
|
+
!n.value && d.value ? (r(), S(R, {
|
|
2200
1948
|
key: 0,
|
|
2201
1949
|
tag: "a",
|
|
2202
1950
|
class: "whitespace-nowrap",
|
|
2203
1951
|
href: d.value,
|
|
2204
1952
|
target: "_blank"
|
|
2205
1953
|
}, {
|
|
2206
|
-
default:
|
|
2207
|
-
|
|
2208
|
-
default:
|
|
2209
|
-
|
|
1954
|
+
default: b(() => [
|
|
1955
|
+
y(A, null, {
|
|
1956
|
+
default: b(() => [...i[0] || (i[0] = [
|
|
1957
|
+
c("svg", {
|
|
2210
1958
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2211
1959
|
width: "24",
|
|
2212
1960
|
height: "24",
|
|
@@ -2220,143 +1968,143 @@ const $e = (a, e) => a.reduce(
|
|
|
2220
1968
|
"aria-hidden": "true",
|
|
2221
1969
|
class: "lucide lucide-book-open"
|
|
2222
1970
|
}, [
|
|
2223
|
-
|
|
2224
|
-
|
|
1971
|
+
c("path", { d: "M12 7v14" }),
|
|
1972
|
+
c("path", { d: "M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z" })
|
|
2225
1973
|
], -1)
|
|
2226
1974
|
])]),
|
|
2227
1975
|
_: 1
|
|
2228
1976
|
})
|
|
2229
1977
|
]),
|
|
2230
1978
|
_: 1
|
|
2231
|
-
}, 8, ["href"])) :
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
l.value ? (r(),
|
|
1979
|
+
}, 8, ["href"])) : C("", !0),
|
|
1980
|
+
y(Le),
|
|
1981
|
+
y(ke),
|
|
1982
|
+
l.value ? (r(), S(kn, { key: 1 })) : (r(), f("a", {
|
|
2235
1983
|
key: 2,
|
|
2236
1984
|
class: "header-right__login",
|
|
2237
|
-
href:
|
|
2238
|
-
onClick:
|
|
2239
|
-
},
|
|
1985
|
+
href: a.value,
|
|
1986
|
+
onClick: u
|
|
1987
|
+
}, T(p(e)("common.btn.login")), 9, xn))
|
|
2240
1988
|
]);
|
|
2241
1989
|
};
|
|
2242
1990
|
}
|
|
2243
|
-
}),
|
|
1991
|
+
}), Mn = /* @__PURE__ */ L(Dn, [["__scopeId", "data-v-3c5e16a6"]]), En = {
|
|
2244
1992
|
"header-bar": "",
|
|
2245
1993
|
class: "header-bar sticky top-0 z-200"
|
|
2246
|
-
},
|
|
1994
|
+
}, Nn = { class: "header-bar__left" }, Un = { class: "header-bar__logo-wrap" }, Bn = {
|
|
2247
1995
|
href: "/",
|
|
2248
1996
|
target: "_self",
|
|
2249
1997
|
rel: "noopener",
|
|
2250
1998
|
class: "header-bar__logo-link"
|
|
2251
|
-
},
|
|
1999
|
+
}, Rn = {
|
|
2252
2000
|
key: 1,
|
|
2253
2001
|
class: "header-bar__divider"
|
|
2254
|
-
},
|
|
2002
|
+
}, Kn = { class: "header-bar__right" }, Jn = /* @__PURE__ */ I({
|
|
2255
2003
|
__name: "HeaderBar",
|
|
2256
|
-
setup(
|
|
2257
|
-
const e =
|
|
2004
|
+
setup(o) {
|
|
2005
|
+
const e = x(), { isMobile: t } = Q(), n = v(
|
|
2258
2006
|
() => {
|
|
2259
|
-
var
|
|
2260
|
-
return !!((
|
|
2007
|
+
var a, s;
|
|
2008
|
+
return !!((a = e.value.user) != null && a.id || (s = e.value.user) != null && s.userId);
|
|
2261
2009
|
}
|
|
2262
2010
|
);
|
|
2263
|
-
return (
|
|
2264
|
-
const l =
|
|
2265
|
-
return r(),
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
src:
|
|
2011
|
+
return (a, s) => {
|
|
2012
|
+
const l = w("el-image");
|
|
2013
|
+
return r(), f("div", En, [
|
|
2014
|
+
c("div", Nn, [
|
|
2015
|
+
p(t) ? (r(), S(cn, { key: 0 })) : C("", !0),
|
|
2016
|
+
c("div", Un, [
|
|
2017
|
+
c("a", Bn, [
|
|
2018
|
+
y(l, {
|
|
2019
|
+
src: p(e).logo,
|
|
2272
2020
|
class: "h-7"
|
|
2273
2021
|
}, null, 8, ["src"])
|
|
2274
2022
|
])
|
|
2275
2023
|
]),
|
|
2276
|
-
n.value && !
|
|
2277
|
-
n.value && !
|
|
2024
|
+
n.value && !p(t) ? (r(), f("div", Rn)) : C("", !0),
|
|
2025
|
+
n.value && !p(t) ? (r(), S(kt, { key: 2 })) : C("", !0)
|
|
2278
2026
|
]),
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2027
|
+
c("div", Kn, [
|
|
2028
|
+
U(a.$slots, "default", {}, void 0, !0),
|
|
2029
|
+
p(t) ? C("", !0) : (r(), S(Mn, { key: 0 })),
|
|
2030
|
+
p(t) ? (r(), S(an, { key: 1 })) : C("", !0)
|
|
2283
2031
|
])
|
|
2284
2032
|
]);
|
|
2285
2033
|
};
|
|
2286
2034
|
}
|
|
2287
|
-
}),
|
|
2035
|
+
}), On = /* @__PURE__ */ L(Jn, [["__scopeId", "data-v-0ce1ab70"]]), Fn = {
|
|
2288
2036
|
key: 0,
|
|
2289
2037
|
class: "min-w-0 flex-1"
|
|
2290
|
-
},
|
|
2038
|
+
}, Hn = /* @__PURE__ */ I({
|
|
2291
2039
|
__name: "AppSelectMobile",
|
|
2292
|
-
setup(
|
|
2293
|
-
const e =
|
|
2294
|
-
const d =
|
|
2295
|
-
return d ?
|
|
2296
|
-
}),
|
|
2040
|
+
setup(o) {
|
|
2041
|
+
const e = x(), t = v(() => e.value.currentAppId || ""), { appList: n, getAppPath: a, findAppById: s } = Te(), l = v(() => {
|
|
2042
|
+
const d = s(t.value);
|
|
2043
|
+
return d ? a(d) : "";
|
|
2044
|
+
}), u = (d) => {
|
|
2297
2045
|
d && (location.href = d);
|
|
2298
2046
|
};
|
|
2299
2047
|
return (d, m) => {
|
|
2300
|
-
var
|
|
2301
|
-
const i =
|
|
2302
|
-
return (
|
|
2303
|
-
|
|
2048
|
+
var g;
|
|
2049
|
+
const i = w("el-option"), A = w("el-option-group"), h = w("el-select");
|
|
2050
|
+
return (g = p(n)) != null && g.length ? (r(), f("div", Fn, [
|
|
2051
|
+
y(h, {
|
|
2304
2052
|
"model-value": l.value,
|
|
2305
2053
|
class: "w-full",
|
|
2306
|
-
onChange:
|
|
2054
|
+
onChange: u
|
|
2307
2055
|
}, {
|
|
2308
|
-
default:
|
|
2309
|
-
(r(!0),
|
|
2056
|
+
default: b(() => [
|
|
2057
|
+
(r(!0), f(D, null, E(p(n), (_) => {
|
|
2310
2058
|
var P;
|
|
2311
|
-
return r(),
|
|
2312
|
-
key:
|
|
2059
|
+
return r(), f(D, {
|
|
2060
|
+
key: _.appId
|
|
2313
2061
|
}, [
|
|
2314
|
-
(P =
|
|
2062
|
+
(P = _.children) != null && P.length ? (r(), S(A, {
|
|
2315
2063
|
key: 0,
|
|
2316
|
-
label:
|
|
2064
|
+
label: _.name
|
|
2317
2065
|
}, {
|
|
2318
|
-
default:
|
|
2319
|
-
(r(!0),
|
|
2320
|
-
key:
|
|
2321
|
-
label:
|
|
2322
|
-
value:
|
|
2066
|
+
default: b(() => [
|
|
2067
|
+
(r(!0), f(D, null, E(_.children, (k) => (r(), S(i, {
|
|
2068
|
+
key: k.appId,
|
|
2069
|
+
label: k.name,
|
|
2070
|
+
value: p(a)(k),
|
|
2323
2071
|
style: { "padding-left": "30px" }
|
|
2324
2072
|
}, null, 8, ["label", "value"]))), 128))
|
|
2325
2073
|
]),
|
|
2326
2074
|
_: 2
|
|
2327
|
-
}, 1032, ["label"])) : (r(),
|
|
2075
|
+
}, 1032, ["label"])) : (r(), S(i, {
|
|
2328
2076
|
key: 1,
|
|
2329
|
-
label:
|
|
2330
|
-
value:
|
|
2077
|
+
label: _.name,
|
|
2078
|
+
value: p(a)(_)
|
|
2331
2079
|
}, null, 8, ["label", "value"]))
|
|
2332
2080
|
], 64);
|
|
2333
2081
|
}), 128))
|
|
2334
2082
|
]),
|
|
2335
2083
|
_: 1
|
|
2336
2084
|
}, 8, ["model-value"])
|
|
2337
|
-
])) :
|
|
2085
|
+
])) : C("", !0);
|
|
2338
2086
|
};
|
|
2339
2087
|
}
|
|
2340
|
-
}),
|
|
2088
|
+
}), Qn = { class: "aside-user-mobile" }, Zn = { class: "flex-1" }, jn = { class: "absolute right-4 top-1/2 -translate-y-1/2" }, zn = { class: "absolute right-4 top-1/2 -translate-y-1/2" }, qn = /* @__PURE__ */ I({
|
|
2341
2089
|
__name: "AsideUserMobile",
|
|
2342
|
-
setup(
|
|
2343
|
-
const e =
|
|
2344
|
-
var l,
|
|
2345
|
-
(
|
|
2090
|
+
setup(o) {
|
|
2091
|
+
const e = x(), t = v(() => e.value.user || {}), n = v(() => !!(t.value.id || t.value.userId)), a = v(() => t.value.name || t.value.username), s = () => {
|
|
2092
|
+
var l, u;
|
|
2093
|
+
(u = (l = e.value).onLogin) != null && u.call(l) || j(e.value);
|
|
2346
2094
|
};
|
|
2347
|
-
return (l,
|
|
2348
|
-
const d =
|
|
2349
|
-
return n.value ? (r(),
|
|
2350
|
-
reference:
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2095
|
+
return (l, u) => {
|
|
2096
|
+
const d = w("el-icon");
|
|
2097
|
+
return n.value ? (r(), S(xe, { key: 0 }, {
|
|
2098
|
+
reference: b(() => [
|
|
2099
|
+
c("div", Qn, [
|
|
2100
|
+
u[0] || (u[0] = c("div", { class: "aside-user-mobile__icon text-lg" }, [
|
|
2101
|
+
c("i", { class: "metisicon-yonghu1" })
|
|
2354
2102
|
], -1)),
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
default:
|
|
2359
|
-
|
|
2103
|
+
c("div", Zn, T(a.value), 1),
|
|
2104
|
+
c("div", jn, [
|
|
2105
|
+
y(d, null, {
|
|
2106
|
+
default: b(() => [
|
|
2107
|
+
y(p(oe))
|
|
2360
2108
|
]),
|
|
2361
2109
|
_: 1
|
|
2362
2110
|
})
|
|
@@ -2364,19 +2112,19 @@ const $e = (a, e) => a.reduce(
|
|
|
2364
2112
|
])
|
|
2365
2113
|
]),
|
|
2366
2114
|
_: 1
|
|
2367
|
-
})) : (r(),
|
|
2115
|
+
})) : (r(), f("div", {
|
|
2368
2116
|
key: 1,
|
|
2369
2117
|
class: "aside-user-mobile",
|
|
2370
|
-
onClick:
|
|
2118
|
+
onClick: s
|
|
2371
2119
|
}, [
|
|
2372
|
-
|
|
2373
|
-
|
|
2120
|
+
u[1] || (u[1] = c("div", { class: "aside-user-mobile__icon text-lg" }, [
|
|
2121
|
+
c("i", { class: "metisicon-yonghu1" })
|
|
2374
2122
|
], -1)),
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
default:
|
|
2379
|
-
|
|
2123
|
+
u[2] || (u[2] = c("div", { class: "flex-1" }, "登录/注册", -1)),
|
|
2124
|
+
c("div", zn, [
|
|
2125
|
+
y(d, null, {
|
|
2126
|
+
default: b(() => [
|
|
2127
|
+
y(p(oe))
|
|
2380
2128
|
]),
|
|
2381
2129
|
_: 1
|
|
2382
2130
|
})
|
|
@@ -2384,165 +2132,168 @@ const $e = (a, e) => a.reduce(
|
|
|
2384
2132
|
]));
|
|
2385
2133
|
};
|
|
2386
2134
|
}
|
|
2387
|
-
}),
|
|
2135
|
+
}), Yn = /* @__PURE__ */ L(qn, [["__scopeId", "data-v-c56964a5"]]), Xn = { class: "aside-bar-mobile__head flex items-center gap-3" }, Wn = { class: "p-3" }, Gn = /* @__PURE__ */ I({
|
|
2388
2136
|
__name: "AsideBarMobile",
|
|
2389
|
-
setup(
|
|
2390
|
-
const
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2137
|
+
setup(o) {
|
|
2138
|
+
const e = x(), t = v(() => {
|
|
2139
|
+
var s;
|
|
2140
|
+
return ((s = e.value.menus) == null ? void 0 : s.filter((l) => {
|
|
2141
|
+
var u;
|
|
2142
|
+
return ((u = l.meta) == null ? void 0 : u.appId) == e.value.currentAppId;
|
|
2143
|
+
})) || [];
|
|
2144
|
+
}), { sideOpen: n } = Q(), a = () => void (n.value = !1);
|
|
2145
|
+
return (s, l) => {
|
|
2146
|
+
const u = w("el-icon"), d = w("el-scrollbar");
|
|
2147
|
+
return t.value.length && !s.$route.meta.hideSidebar ? (r(), f("div", {
|
|
2394
2148
|
key: 0,
|
|
2395
|
-
class:
|
|
2149
|
+
class: M(["aside-bar-mobile fixed inset-y-0 left-0 z-200 flex min-h-0 flex-col transition-transform", [p(n) ? "translate-x-[0px]" : "translate-x-[-100%]"]])
|
|
2396
2150
|
}, [
|
|
2397
|
-
|
|
2398
|
-
|
|
2151
|
+
c("div", Xn, [
|
|
2152
|
+
c("button", {
|
|
2399
2153
|
type: "button",
|
|
2400
2154
|
class: "aside-bar-mobile__close",
|
|
2401
2155
|
"aria-label": "Close menu",
|
|
2402
|
-
onClick:
|
|
2156
|
+
onClick: a
|
|
2403
2157
|
}, [
|
|
2404
|
-
|
|
2405
|
-
default:
|
|
2406
|
-
|
|
2158
|
+
y(u, null, {
|
|
2159
|
+
default: b(() => [
|
|
2160
|
+
y(p(me))
|
|
2407
2161
|
]),
|
|
2408
2162
|
_: 1
|
|
2409
2163
|
})
|
|
2410
2164
|
]),
|
|
2411
|
-
|
|
2165
|
+
y(Hn)
|
|
2412
2166
|
]),
|
|
2413
|
-
|
|
2414
|
-
default:
|
|
2415
|
-
|
|
2416
|
-
|
|
2167
|
+
y(d, { ref: "leftScrollRef" }, {
|
|
2168
|
+
default: b(() => [
|
|
2169
|
+
c("div", Wn, [
|
|
2170
|
+
y(Pe, { menus: t.value }, null, 8, ["menus"])
|
|
2417
2171
|
])
|
|
2418
2172
|
]),
|
|
2419
2173
|
_: 1
|
|
2420
2174
|
}, 512),
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
], 2)) :
|
|
2175
|
+
U(s.$slots, "sidebar-foot", {}, void 0, !0),
|
|
2176
|
+
y(Yn)
|
|
2177
|
+
], 2)) : C("", !0);
|
|
2424
2178
|
};
|
|
2425
2179
|
}
|
|
2426
|
-
}), Ma = /* @__PURE__ */ B(Ea, [["__scopeId", "data-v-b13ff3bf"]]), Da = "data:image/png;base64,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", Na = { class: "layout-shell w-full flex flex-col" }, Ba = { class: "layout-shell__body flex flex-1 min-h-0 overflow-hidden" }, Ra = { class: "layout-shell__main flex flex-col flex-1 min-h-0 min-w-0 h-full" }, Ua = { class: "layout-shell__content flex-1 w-full min-h-0 flex flex-col overflow-hidden" }, Ka = /* @__PURE__ */ N({
|
|
2180
|
+
}), Vn = /* @__PURE__ */ L(Gn, [["__scopeId", "data-v-eddacff2"]]), $n = "data:image/png;base64,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", eo = { class: "layout-shell w-full flex flex-col" }, to = { class: "layout-shell__body flex flex-1 min-h-0 overflow-hidden" }, no = { class: "layout-shell__main flex flex-col flex-1 min-h-0 min-w-0 h-full" }, oo = { class: "layout-shell__content flex-1 w-full min-h-0 flex flex-col overflow-hidden" }, ao = /* @__PURE__ */ I({
|
|
2427
2181
|
__name: "BaseLayout",
|
|
2428
2182
|
props: {
|
|
2429
2183
|
setting: {}
|
|
2430
2184
|
},
|
|
2431
|
-
setup(
|
|
2432
|
-
const e =
|
|
2433
|
-
var
|
|
2185
|
+
setup(o) {
|
|
2186
|
+
const e = o, t = v(() => {
|
|
2187
|
+
var h, g, _, P, k, K, J, $, ee, te;
|
|
2434
2188
|
return {
|
|
2435
2189
|
...e.setting || {},
|
|
2436
|
-
logo: ((
|
|
2437
|
-
menus: ((
|
|
2438
|
-
accountMenu: ((
|
|
2190
|
+
logo: ((h = e.setting) == null ? void 0 : h.logo) || $n,
|
|
2191
|
+
menus: ((g = e.setting) == null ? void 0 : g.menus) || [],
|
|
2192
|
+
accountMenu: ((_ = e.setting) == null ? void 0 : _.accountMenu) || [],
|
|
2439
2193
|
user: ((P = e.setting) == null ? void 0 : P.user) ?? null,
|
|
2440
|
-
appList: ((
|
|
2441
|
-
onLogin: (
|
|
2442
|
-
onLogout: (
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
defaultParentActive: (Y = e.setting) == null ? void 0 : Y.defaultParentActive,
|
|
2447
|
-
currentTabPath: (u = e.setting) == null ? void 0 : u.currentTabPath
|
|
2194
|
+
appList: ((k = e.setting) == null ? void 0 : k.appList) || [],
|
|
2195
|
+
onLogin: (K = e.setting) == null ? void 0 : K.onLogin,
|
|
2196
|
+
onLogout: (J = e.setting) == null ? void 0 : J.onLogout,
|
|
2197
|
+
currentAppId: ($ = e.setting) == null ? void 0 : $.currentAppId,
|
|
2198
|
+
defaultParentActive: (ee = e.setting) == null ? void 0 : ee.defaultParentActive,
|
|
2199
|
+
currentTabPath: (te = e.setting) == null ? void 0 : te.currentTabPath
|
|
2448
2200
|
};
|
|
2449
2201
|
});
|
|
2450
|
-
|
|
2451
|
-
|
|
2202
|
+
de(() => {
|
|
2203
|
+
ut(t.value);
|
|
2452
2204
|
});
|
|
2453
|
-
const { isMobile: n, sideOpen:
|
|
2454
|
-
|
|
2455
|
-
let l = "",
|
|
2456
|
-
const d = () => void (
|
|
2457
|
-
const
|
|
2458
|
-
if (!
|
|
2459
|
-
const
|
|
2460
|
-
return [
|
|
2461
|
-
}, i = (
|
|
2462
|
-
|
|
2205
|
+
const { isMobile: n, sideOpen: a, initLayoutState: s } = Q();
|
|
2206
|
+
s();
|
|
2207
|
+
let l = "", u = !1;
|
|
2208
|
+
const d = () => void (a.value = !1), m = (h) => {
|
|
2209
|
+
const g = h.matched[1];
|
|
2210
|
+
if (!g) return h.path;
|
|
2211
|
+
const _ = i(g, h);
|
|
2212
|
+
return [g.path, _].filter(Boolean).join("|");
|
|
2213
|
+
}, i = (h, g) => Array.from(
|
|
2214
|
+
h.path.matchAll(/:(\w+)/g),
|
|
2463
2215
|
([, P]) => P
|
|
2464
2216
|
).map((P) => {
|
|
2465
|
-
const
|
|
2466
|
-
return `${P}:${Array.isArray(
|
|
2467
|
-
}).join("|"),
|
|
2468
|
-
|
|
2217
|
+
const k = g.params[P];
|
|
2218
|
+
return `${P}:${Array.isArray(k) ? k.join(",") : k || ""}`;
|
|
2219
|
+
}).join("|"), A = (h) => {
|
|
2220
|
+
h.key === "Escape" && n.value && a.value && d();
|
|
2469
2221
|
};
|
|
2470
|
-
return
|
|
2471
|
-
() => n.value &&
|
|
2472
|
-
(
|
|
2222
|
+
return pe(
|
|
2223
|
+
() => n.value && a.value,
|
|
2224
|
+
(h) => {
|
|
2473
2225
|
if (!(typeof document > "u")) {
|
|
2474
|
-
if (
|
|
2475
|
-
l = document.body.style.overflow, document.body.style.overflow = "hidden",
|
|
2226
|
+
if (h && !u) {
|
|
2227
|
+
l = document.body.style.overflow, document.body.style.overflow = "hidden", u = !0;
|
|
2476
2228
|
return;
|
|
2477
2229
|
}
|
|
2478
|
-
!
|
|
2230
|
+
!h && u && (document.body.style.overflow = l, u = !1);
|
|
2479
2231
|
}
|
|
2480
2232
|
},
|
|
2481
2233
|
{ immediate: !0 }
|
|
2482
|
-
),
|
|
2483
|
-
window.addEventListener("keydown",
|
|
2484
|
-
}),
|
|
2485
|
-
window.removeEventListener("keydown",
|
|
2486
|
-
}), (
|
|
2487
|
-
const
|
|
2488
|
-
return r(),
|
|
2489
|
-
|
|
2490
|
-
default:
|
|
2491
|
-
|
|
2234
|
+
), ie(() => {
|
|
2235
|
+
window.addEventListener("keydown", A);
|
|
2236
|
+
}), ce(() => {
|
|
2237
|
+
window.removeEventListener("keydown", A), typeof document < "u" && u && (document.body.style.overflow = l);
|
|
2238
|
+
}), (h, g) => {
|
|
2239
|
+
const _ = w("router-view");
|
|
2240
|
+
return r(), f("div", eo, [
|
|
2241
|
+
y(On, null, {
|
|
2242
|
+
default: b(() => [
|
|
2243
|
+
U(h.$slots, "header-right", {}, void 0, !0)
|
|
2492
2244
|
]),
|
|
2493
2245
|
_: 3
|
|
2494
2246
|
}),
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
default:
|
|
2501
|
-
|
|
2502
|
-
name: String(
|
|
2247
|
+
c("div", to, [
|
|
2248
|
+
p(n) ? (r(), S(Vn, { key: 1 })) : (r(), S(yt, { key: 0 })),
|
|
2249
|
+
c("main", no, [
|
|
2250
|
+
c("div", oo, [
|
|
2251
|
+
h.$slots.default ? U(h.$slots, "default", { key: 0 }, void 0, !0) : (r(), S(_, { key: 1 }, {
|
|
2252
|
+
default: b(({ Component: P, route: k }) => [
|
|
2253
|
+
y(ne, {
|
|
2254
|
+
name: String(k.meta.transition || "layout-page"),
|
|
2503
2255
|
mode: "out-in"
|
|
2504
2256
|
}, {
|
|
2505
|
-
default:
|
|
2506
|
-
(r(),
|
|
2507
|
-
key: m(
|
|
2257
|
+
default: b(() => [
|
|
2258
|
+
(r(), f("div", {
|
|
2259
|
+
key: m(k),
|
|
2508
2260
|
class: "layout-page-view"
|
|
2509
2261
|
}, [
|
|
2510
|
-
(r(),
|
|
2262
|
+
(r(), S(X(P)))
|
|
2511
2263
|
]))
|
|
2512
2264
|
]),
|
|
2513
2265
|
_: 2
|
|
2514
2266
|
}, 1032, ["name"])
|
|
2515
2267
|
]),
|
|
2516
2268
|
_: 1
|
|
2517
|
-
})
|
|
2269
|
+
}))
|
|
2518
2270
|
])
|
|
2519
2271
|
])
|
|
2520
2272
|
]),
|
|
2521
|
-
|
|
2522
|
-
default:
|
|
2523
|
-
|
|
2273
|
+
y(ne, { name: "layout-overlay" }, {
|
|
2274
|
+
default: b(() => [
|
|
2275
|
+
p(n) && p(a) ? (r(), f("div", {
|
|
2524
2276
|
key: 0,
|
|
2525
2277
|
class: "layout-shell__overlay",
|
|
2526
2278
|
onClick: d
|
|
2527
|
-
})) :
|
|
2279
|
+
})) : C("", !0)
|
|
2528
2280
|
]),
|
|
2529
2281
|
_: 1
|
|
2530
2282
|
})
|
|
2531
2283
|
]);
|
|
2532
2284
|
};
|
|
2533
2285
|
}
|
|
2534
|
-
}),
|
|
2286
|
+
}), uo = /* @__PURE__ */ L(ao, [["__scopeId", "data-v-474b62ee"]]);
|
|
2535
2287
|
export {
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
je as useTheme
|
|
2288
|
+
uo as BaseLayout,
|
|
2289
|
+
Le as LanguageSelect,
|
|
2290
|
+
ke as ThemeToggle,
|
|
2291
|
+
co as TimezoneSelect,
|
|
2292
|
+
le as UserAvatar,
|
|
2293
|
+
kn as UserInfo,
|
|
2294
|
+
z as i18n,
|
|
2295
|
+
Z as messages,
|
|
2296
|
+
Te as useApp,
|
|
2297
|
+
x as useSetting,
|
|
2298
|
+
Ce as useTheme
|
|
2548
2299
|
};
|