@dt-frames/ui 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/container/index.d.ts +4 -3
- package/es/components/container/index.js +24 -22
- package/es/components/container/src/slot-container.d.ts +5 -3
- package/es/components/curd/index.js +304 -282
- package/es/components/curd/src/components/Curd.d.ts +126 -331
- package/es/components/curd/src/props.d.ts +14 -15
- package/es/components/drawer/index.d.ts +2 -4
- package/es/components/drawer/index.js +64 -63
- package/es/components/drawer/src/components/DrawerHeader.d.ts +1 -3
- package/es/components/drawer/src/index.d.ts +2 -4
- package/es/components/form/index.d.ts +196 -344
- package/es/components/form/index.js +140 -139
- package/es/components/form/src/components/FormButtons.d.ts +3 -3
- package/es/components/form/src/components/FormItem.d.ts +156 -304
- package/es/components/form/src/components/formIcon.d.ts +10 -10
- package/es/components/form/src/components/formInputUseDialog.d.ts +5 -5
- package/es/components/form/src/index.d.ts +186 -334
- package/es/components/form/src/props.d.ts +7 -7
- package/es/components/form/src/types/form.type.d.ts +1 -1
- package/es/components/icons/index.d.ts +496 -2
- package/es/components/icons/src/pick-icon.d.ts +5 -5
- package/es/components/modal/index.js +87 -86
- package/es/components/modal/src/components/Modal.d.ts +108 -215
- package/es/components/modal/src/index.d.ts +107 -214
- package/es/components/source/index.js +1 -0
- package/es/components/table/index.js +357 -788
- package/es/components/table/index.less +9 -0
- package/es/components/table/src/components/TableAction.d.ts +1 -1
- package/es/components/table/src/components/TableHeader.d.ts +109 -216
- package/es/components/table/src/components/TableRender.d.ts +13 -9
- package/es/components/table/src/components/tableSetting/Download.d.ts +107 -214
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +107 -214
- package/es/components/table/src/components/tableSetting/index.d.ts +107 -214
- package/es/components/table/src/hooks/useDataSource.d.ts +1 -2
- package/es/components/table/src/hooks/usePagination.d.ts +3 -118
- package/es/components/table/src/index.d.ts +79 -425
- package/es/components/table/src/props.d.ts +11 -70
- package/es/components/table/src/types/actions.type.d.ts +1 -2
- package/es/components/table/src/types/table.type.d.ts +9 -3
- package/es/index.d.ts +1 -1
- package/es/index.js +2 -3240
- package/es/theme/index.js +406 -393
- package/es/theme/src/components/header/components/logo.d.ts +0 -1
- package/es/theme/src/components/header/components/notify.d.ts +4 -3
- package/es/theme/src/components/header/components/setting-theme.d.ts +2 -1
- package/es/theme/src/components/header/components/size.d.ts +5 -5
- package/es/theme/src/components/header/components/user-info.d.ts +4 -3
- package/es/theme/src/components/header/index.d.ts +13 -12
- package/es/theme/src/components/header/multiple-header.d.ts +26 -28
- package/es/theme/src/hooks/useMenu.d.ts +1 -1
- package/es/theme/src/index.d.ts +27 -28
- package/es/theme/src/types/theme.type.d.ts +1 -1
- package/package.json +3 -2
- package/vite.config.ts +0 -27
package/es/theme/index.js
CHANGED
|
@@ -1,22 +1,31 @@
|
|
|
1
1
|
import { BackTop, Breadcrumb, Empty, InputSearch, Popover, Avatar, Tooltip, Select, Switch, Divider, Button, Drawer, MenuItem, SubMenu, Menu, LayoutHeader, LayoutSider, MenuDivider, Dropdown, TabPane, Tabs, LayoutContent, Layout, ConfigProvider } from "ant-design-vue/es";
|
|
2
2
|
import "ant-design-vue/es/config-provider/style";
|
|
3
3
|
import "ant-design-vue/es/layout/style";
|
|
4
|
-
import { toRaw, unref
|
|
5
|
-
import { useRouter
|
|
4
|
+
import { toRaw, unref, computed, onMounted, nextTick, defineComponent, openBlock, createBlock, createCommentVNode, createElementBlock, createElementVNode, normalizeClass, normalizeStyle, withDirectives, toDisplayString, vShow, ref, watchEffect, createVNode, withCtx, Fragment, renderList, resolveDirective, getCurrentInstance, inject, onUnmounted, h, provide, onBeforeUnmount, resolveDynamicComponent, renderSlot, mergeProps, createTextVNode, watch, normalizeProps, guardReactiveProps, resolveComponent, reactive, toRef, withModifiers, createSlots, Transition, KeepAlive } from "vue";
|
|
5
|
+
import { useRouter, RouterView } from "vue-router";
|
|
6
6
|
import { DtCache, CacheKey, deepMerge, Pages, useGo, useRedo, Language, isObject, useTimeoutFn, useI18n, isBoolean, localeList, changeLocale, off, on, getParentSlots, isFunction, copyText, isUrl, openWindow, isNullAndUnDef, menuList2Map, useApp, withInstall as withInstall$1 } from "@dt-frames/core";
|
|
7
7
|
import { defineStore } from "pinia";
|
|
8
8
|
import { trim } from "lodash-es";
|
|
9
9
|
import { useDebounceFn, useFullscreen, useThrottleFn } from "@vueuse/core";
|
|
10
10
|
import "ant-design-vue/es/back-top/style";
|
|
11
|
+
import "ant-design-vue/es/breadcrumb/style";
|
|
11
12
|
import "ant-design-vue/es/popover/style";
|
|
12
13
|
import "ant-design-vue/es/input/style";
|
|
13
14
|
import "ant-design-vue/es/empty/style";
|
|
14
15
|
import { Popover as Popover$1, Modal, LayoutFooter } from "ant-design-vue";
|
|
16
|
+
import "ant-design-vue/es/avatar/style";
|
|
17
|
+
import "ant-design-vue/es/drawer/style";
|
|
15
18
|
import "ant-design-vue/es/button/style";
|
|
19
|
+
import "ant-design-vue/es/divider/style";
|
|
20
|
+
import "ant-design-vue/es/tooltip/style";
|
|
21
|
+
import "ant-design-vue/es/select/style";
|
|
22
|
+
import "ant-design-vue/es/switch/style";
|
|
23
|
+
import "ant-design-vue/es/menu/style";
|
|
24
|
+
import "ant-design-vue/es/tabs/style";
|
|
25
|
+
import "ant-design-vue/es/dropdown/style";
|
|
16
26
|
import zhCN from "ant-design-vue/es/locale/zh_CN";
|
|
17
27
|
import en from "ant-design-vue/es/locale/en_US";
|
|
18
28
|
import require$$0 from "dayjs";
|
|
19
|
-
import "dayjs/locale/zh-cn";
|
|
20
29
|
var Theme = /* @__PURE__ */ ((Theme2) => {
|
|
21
30
|
Theme2["DARK"] = "dark";
|
|
22
31
|
Theme2["LIGHT"] = "light";
|
|
@@ -159,8 +168,8 @@ const useRouteReuseStore = defineStore({
|
|
|
159
168
|
return;
|
|
160
169
|
}
|
|
161
170
|
let updateIndex = -1;
|
|
162
|
-
const tabHasExits = this.tabList.some((tab,
|
|
163
|
-
updateIndex =
|
|
171
|
+
const tabHasExits = this.tabList.some((tab, index) => {
|
|
172
|
+
updateIndex = index;
|
|
164
173
|
return (tab.fullPath || tab.path) === (fullPath || path);
|
|
165
174
|
});
|
|
166
175
|
if (tabHasExits) {
|
|
@@ -176,14 +185,14 @@ const useRouteReuseStore = defineStore({
|
|
|
176
185
|
},
|
|
177
186
|
closeTab(path, router) {
|
|
178
187
|
const go = useGo(router);
|
|
179
|
-
const
|
|
188
|
+
const index = this.tabList.findIndex((item) => item.path === path);
|
|
180
189
|
let page;
|
|
181
|
-
if (
|
|
190
|
+
if (index === 0) {
|
|
182
191
|
if (this.tabList.length !== 1) {
|
|
183
|
-
page = this.tabList[
|
|
192
|
+
page = this.tabList[index + 1];
|
|
184
193
|
}
|
|
185
194
|
} else {
|
|
186
|
-
page = this.tabList[
|
|
195
|
+
page = this.tabList[index - 1];
|
|
187
196
|
}
|
|
188
197
|
this.bulkCloseTabs([path]);
|
|
189
198
|
this.updateCacheTab();
|
|
@@ -192,15 +201,15 @@ const useRouteReuseStore = defineStore({
|
|
|
192
201
|
closeAllTab(currentRoute, router) {
|
|
193
202
|
const go = useGo(router);
|
|
194
203
|
let filterTabList = this.tabList.filter((item) => item?.meta?.affix ?? false);
|
|
195
|
-
const route = filterTabList.length > 0 ? filterTabList[filterTabList.length - 1] : unref
|
|
204
|
+
const route = filterTabList.length > 0 ? filterTabList[filterTabList.length - 1] : unref(currentRoute);
|
|
196
205
|
this.tabList = [route];
|
|
197
206
|
this.updateCacheTab();
|
|
198
207
|
go(route.path);
|
|
199
208
|
},
|
|
200
209
|
closeLeftTabs(path) {
|
|
201
|
-
const
|
|
202
|
-
if (
|
|
203
|
-
const leftTabs = this.tabList.slice(0,
|
|
210
|
+
const index = this.tabList.findIndex((item) => item.path === path);
|
|
211
|
+
if (index > 0) {
|
|
212
|
+
const leftTabs = this.tabList.slice(0, index);
|
|
204
213
|
const pathList = [];
|
|
205
214
|
for (const item of leftTabs) {
|
|
206
215
|
const affix = item?.meta?.affix ?? false;
|
|
@@ -213,9 +222,9 @@ const useRouteReuseStore = defineStore({
|
|
|
213
222
|
this.updateCacheTab();
|
|
214
223
|
},
|
|
215
224
|
closeRightTabs(path) {
|
|
216
|
-
const
|
|
217
|
-
if (
|
|
218
|
-
const rightTabs = this.tabList.slice(
|
|
225
|
+
const index = this.tabList.findIndex((item) => item.path === path);
|
|
226
|
+
if (index >= 0 && index < this.tabList.length - 1) {
|
|
227
|
+
const rightTabs = this.tabList.slice(index + 1, this.tabList.length);
|
|
219
228
|
const pathList = [];
|
|
220
229
|
for (const item of rightTabs) {
|
|
221
230
|
const affix = item?.meta?.affix ?? false;
|
|
@@ -255,7 +264,7 @@ const useRouteReuseStore = defineStore({
|
|
|
255
264
|
this.cacheTabList = cacheMap;
|
|
256
265
|
},
|
|
257
266
|
async refreshPage(router) {
|
|
258
|
-
const findTab = this.getCachedTabList.find((item) => item === unref
|
|
267
|
+
const findTab = this.getCachedTabList.find((item) => item === unref(router.currentRoute).name);
|
|
259
268
|
if (findTab) {
|
|
260
269
|
this.cacheTabList.delete(findTab.toString());
|
|
261
270
|
}
|
|
@@ -272,41 +281,41 @@ const useRouteReuseStore = defineStore({
|
|
|
272
281
|
});
|
|
273
282
|
function useMenu() {
|
|
274
283
|
const { getMenuConf, setThemeConf } = useThemeStore();
|
|
275
|
-
const getCollapsedShowTitle = computed
|
|
276
|
-
const getIsSidebarType = computed
|
|
277
|
-
const getMenuFixed = computed
|
|
278
|
-
const getShowMenu = computed
|
|
279
|
-
const getShowSidebar = computed
|
|
280
|
-
return unref
|
|
284
|
+
const getCollapsedShowTitle = computed(() => getMenuConf.collapsedShowTitle);
|
|
285
|
+
const getIsSidebarType = computed(() => getMenuConf.type === MenuType.SIDE);
|
|
286
|
+
const getMenuFixed = computed(() => getMenuConf.fixed);
|
|
287
|
+
const getShowMenu = computed(() => getMenuConf.show);
|
|
288
|
+
const getShowSidebar = computed(() => {
|
|
289
|
+
return unref(getSplit) || unref(getShowMenu) && unref(getMenuMode) !== MenuMode.HORIZONTAL;
|
|
281
290
|
});
|
|
282
|
-
const getMenuHidden = computed
|
|
283
|
-
const getMenuTheme = computed
|
|
284
|
-
const getTrigger = computed
|
|
285
|
-
const getCanDrag = computed
|
|
286
|
-
const getIsMixMode = computed
|
|
287
|
-
return unref
|
|
291
|
+
const getMenuHidden = computed(() => getMenuConf.hidden);
|
|
292
|
+
const getMenuTheme = computed(() => getMenuConf.theme);
|
|
293
|
+
const getTrigger = computed(() => getMenuConf.trigger);
|
|
294
|
+
const getCanDrag = computed(() => getMenuConf.canDrag);
|
|
295
|
+
const getIsMixMode = computed(() => {
|
|
296
|
+
return unref(getMenuMode) === MenuMode.INLINE && unref(getMenuType) === MenuType.MIX;
|
|
288
297
|
});
|
|
289
|
-
const getMenuWidth = computed
|
|
290
|
-
const getLogoWidth = computed
|
|
291
|
-
const getMenuType = computed
|
|
292
|
-
const getIsTopMenu = computed
|
|
293
|
-
const getMenuMode = computed
|
|
294
|
-
const getSplit = computed
|
|
295
|
-
const getCollapsed = computed
|
|
296
|
-
const getIsHorizontal = computed
|
|
298
|
+
const getMenuWidth = computed(() => unref(getIsMixMode) ? Number(getMenuConf.menuWidth) - 40 : getMenuConf.menuWidth);
|
|
299
|
+
const getLogoWidth = computed(() => getMenuConf.menuWidth);
|
|
300
|
+
const getMenuType = computed(() => getMenuConf.type);
|
|
301
|
+
const getIsTopMenu = computed(() => unref(getMenuType) === MenuType.TOP_MENU);
|
|
302
|
+
const getMenuMode = computed(() => getMenuConf.mode);
|
|
303
|
+
const getSplit = computed(() => getMenuConf.split);
|
|
304
|
+
const getCollapsed = computed(() => getMenuConf.collapsed);
|
|
305
|
+
const getIsHorizontal = computed(() => unref(getMenuMode) === MenuMode.HORIZONTAL);
|
|
297
306
|
const setThemeStore = (conf = {}) => setThemeConf(conf);
|
|
298
307
|
const toggleCollapsed = () => setThemeStore({
|
|
299
308
|
menuOptions: {
|
|
300
|
-
collapsed: !unref
|
|
309
|
+
collapsed: !unref(getCollapsed)
|
|
301
310
|
}
|
|
302
311
|
});
|
|
303
|
-
const getMiniWidthNumber = computed
|
|
304
|
-
const getRealWidth = computed
|
|
305
|
-
return unref
|
|
312
|
+
const getMiniWidthNumber = computed(() => getMenuConf.collapsedShowTitle ? 80 : 48);
|
|
313
|
+
const getRealWidth = computed(() => {
|
|
314
|
+
return unref(getCollapsed) ? unref(getMiniWidthNumber) : unref(getMenuWidth);
|
|
306
315
|
});
|
|
307
|
-
const getCalcContentWidth = computed
|
|
308
|
-
const width = unref
|
|
309
|
-
return `calc(100% - ${unref
|
|
316
|
+
const getCalcContentWidth = computed(() => {
|
|
317
|
+
const width = unref(getIsTopMenu) || !unref(getShowMenu) || unref(getSplit) && unref(getMenuHidden) ? 0 : unref(getRealWidth);
|
|
318
|
+
return `calc(100% - ${unref(width)}px)`;
|
|
310
319
|
});
|
|
311
320
|
return {
|
|
312
321
|
getCollapsedShowTitle,
|
|
@@ -365,51 +374,51 @@ function useHeader() {
|
|
|
365
374
|
getIsMixMode
|
|
366
375
|
} = useMenu();
|
|
367
376
|
const { getShowMultipleTab } = useMultipleTab();
|
|
368
|
-
const getHeaderTheme = computed
|
|
369
|
-
const getFixed = computed
|
|
370
|
-
const getShowHeaderLogo = computed
|
|
371
|
-
const getShowSearch = computed
|
|
372
|
-
const getShowHeaderTrigger = computed
|
|
373
|
-
if (unref
|
|
377
|
+
const getHeaderTheme = computed(() => getHeaderConf.theme);
|
|
378
|
+
const getFixed = computed(() => getHeaderConf.fixed);
|
|
379
|
+
const getShowHeaderLogo = computed(() => unref(getShowLogo) && !unref(getIsSidebarType));
|
|
380
|
+
const getShowSearch = computed(() => getHeaderConf.showSearch);
|
|
381
|
+
const getShowHeaderTrigger = computed(() => {
|
|
382
|
+
if (unref(getMenuType) === MenuType.TOP_MENU || !unref(getShowMenu) || unref(getMenuHidden)) {
|
|
374
383
|
return false;
|
|
375
384
|
}
|
|
376
|
-
return unref
|
|
385
|
+
return unref(getTrigger);
|
|
377
386
|
});
|
|
378
|
-
const getShowBreadCrumb = computed
|
|
379
|
-
const getShowBread = computed
|
|
380
|
-
() => unref
|
|
387
|
+
const getShowBreadCrumb = computed(() => getHeaderConf.showBreadCrumb);
|
|
388
|
+
const getShowBread = computed(
|
|
389
|
+
() => unref(getMenuMode) !== MenuMode.HORIZONTAL && !unref(getSplit) && unref(getShowBreadCrumb)
|
|
381
390
|
);
|
|
382
|
-
const getShowTopMenu = computed
|
|
383
|
-
const getShowNotice = computed
|
|
384
|
-
const getShowFullScreen = computed
|
|
385
|
-
const getShowLocale = computed
|
|
386
|
-
const getShowSettingTheme = computed
|
|
387
|
-
const getShowFullHeaderRef = computed
|
|
388
|
-
return !unref
|
|
391
|
+
const getShowTopMenu = computed(() => unref(getMenuMode) === MenuMode.HORIZONTAL || unref(getSplit));
|
|
392
|
+
const getShowNotice = computed(() => getHeaderConf.showNotice);
|
|
393
|
+
const getShowFullScreen = computed(() => getHeaderConf.showFullScreen);
|
|
394
|
+
const getShowLocale = computed(() => getHeaderConf.showLocaleSwitch);
|
|
395
|
+
const getShowSettingTheme = computed(() => getHeaderConf.showSettingTheme);
|
|
396
|
+
const getShowFullHeaderRef = computed(() => {
|
|
397
|
+
return !unref(getIsSidebarType) && !unref(getIsTopMenu);
|
|
389
398
|
});
|
|
390
|
-
const getHeaderHeight = computed
|
|
399
|
+
const getHeaderHeight = computed(() => {
|
|
391
400
|
let height = 0;
|
|
392
401
|
height += HEADER_HEIGHT;
|
|
393
|
-
if (unref
|
|
402
|
+
if (unref(getShowMultipleTab) && !unref(getSplit)) {
|
|
394
403
|
height += TABS_HEIGHT;
|
|
395
404
|
}
|
|
396
405
|
return height;
|
|
397
406
|
});
|
|
398
|
-
const getTabsHeight = computed
|
|
399
|
-
const getShowInsetHeaderRef = computed
|
|
400
|
-
return unref
|
|
407
|
+
const getTabsHeight = computed(() => TABS_HEIGHT);
|
|
408
|
+
const getShowInsetHeaderRef = computed(() => {
|
|
409
|
+
return unref(getIsSidebarType) || unref(getIsTopMenu);
|
|
401
410
|
});
|
|
402
|
-
const getShowBackToTop = computed
|
|
403
|
-
const getIsZH = computed
|
|
411
|
+
const getShowBackToTop = computed(() => getHeaderConf.showBackToTop);
|
|
412
|
+
const getIsZH = computed(() => {
|
|
404
413
|
let local = DtCache.getLocal(CacheKey.LOCALE);
|
|
405
414
|
if (!local)
|
|
406
415
|
return true;
|
|
407
416
|
return local === Language.ZH;
|
|
408
417
|
});
|
|
409
|
-
const getUiSize = computed
|
|
410
|
-
const getShowUiSize = computed
|
|
411
|
-
const getShowLogo = computed
|
|
412
|
-
const getShowLoginOut = computed
|
|
418
|
+
const getUiSize = computed(() => getHeaderConf?.size ?? UiSize.SMALL);
|
|
419
|
+
const getShowUiSize = computed(() => getHeaderConf?.showSize);
|
|
420
|
+
const getShowLogo = computed(() => getHeaderConf.showLogo);
|
|
421
|
+
const getShowLoginOut = computed(() => getHeaderConf.showLoginOut);
|
|
413
422
|
const loginOutClick = getHeaderConf.logoutClick;
|
|
414
423
|
return {
|
|
415
424
|
getHeaderTheme,
|
|
@@ -438,11 +447,11 @@ function useHeader() {
|
|
|
438
447
|
}
|
|
439
448
|
function useTheme() {
|
|
440
449
|
const { getThemeConf, getPageLoading } = useThemeStore();
|
|
441
|
-
const getLayoutContentMode = computed
|
|
442
|
-
const getFooter = computed
|
|
443
|
-
const getShowFooter = computed
|
|
444
|
-
const getContentMode = computed
|
|
445
|
-
const getOpenPageLoading = computed
|
|
450
|
+
const getLayoutContentMode = computed(() => getThemeConf.content.contentMode);
|
|
451
|
+
const getFooter = computed(() => getThemeConf.footerOptions || {});
|
|
452
|
+
const getShowFooter = computed(() => isObject(getThemeConf.footerOptions) ? getThemeConf.footerOptions.show : true);
|
|
453
|
+
const getContentMode = computed(() => getThemeConf.content.contentMode);
|
|
454
|
+
const getOpenPageLoading = computed(() => getPageLoading);
|
|
446
455
|
return {
|
|
447
456
|
getLayoutContentMode,
|
|
448
457
|
getPageLoading,
|
|
@@ -510,7 +519,7 @@ function useOpenKeys(menuState, menus, type) {
|
|
|
510
519
|
true
|
|
511
520
|
);
|
|
512
521
|
}
|
|
513
|
-
const getOpenKeys = computed
|
|
522
|
+
const getOpenKeys = computed(() => menuState.openKeys);
|
|
514
523
|
function resetKeys() {
|
|
515
524
|
menuState.selectedKeys = [];
|
|
516
525
|
menuState.openKeys = [];
|
|
@@ -527,27 +536,27 @@ function useOpenKeys(menuState, menus, type) {
|
|
|
527
536
|
}
|
|
528
537
|
function useDragLine(siderRef, dragBarRef) {
|
|
529
538
|
const { getMiniWidthNumber, getCollapsed, setThemeStore } = useMenu();
|
|
530
|
-
onMounted
|
|
531
|
-
nextTick
|
|
539
|
+
onMounted(() => {
|
|
540
|
+
nextTick(() => {
|
|
532
541
|
const exec = useDebounceFn(changeWrapWidth, 80);
|
|
533
542
|
exec();
|
|
534
543
|
});
|
|
535
544
|
});
|
|
536
545
|
function getEl(elRef) {
|
|
537
|
-
const el = unref
|
|
546
|
+
const el = unref(elRef);
|
|
538
547
|
if (!el)
|
|
539
548
|
return null;
|
|
540
549
|
if (Reflect.has(el, "$el")) {
|
|
541
|
-
return unref
|
|
550
|
+
return unref(elRef)?.$el;
|
|
542
551
|
}
|
|
543
|
-
return unref
|
|
552
|
+
return unref(elRef);
|
|
544
553
|
}
|
|
545
554
|
function handleMouseMove(ele, wrap, clientX) {
|
|
546
555
|
document.onmousemove = function(innerE) {
|
|
547
556
|
innerE = innerE || window.event;
|
|
548
557
|
let iT = ele.left + (innerE.clientX - clientX);
|
|
549
558
|
const maxT = 800;
|
|
550
|
-
const minT = unref
|
|
559
|
+
const minT = unref(getMiniWidthNumber);
|
|
551
560
|
iT < 0 && (iT = 0);
|
|
552
561
|
iT > maxT && (iT = maxT);
|
|
553
562
|
iT < minT && (iT = minT);
|
|
@@ -588,14 +597,14 @@ function useDragLine(siderRef, dragBarRef) {
|
|
|
588
597
|
};
|
|
589
598
|
}
|
|
590
599
|
}
|
|
591
|
-
const _sfc_main$y = /* @__PURE__ */ defineComponent
|
|
600
|
+
const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
592
601
|
__name: "back-top",
|
|
593
602
|
setup(__props) {
|
|
594
603
|
const getTarget = () => document.getElementById("dt-layout-content");
|
|
595
604
|
const { getShowBackToTop } = useHeader();
|
|
596
605
|
return (_ctx, _cache) => {
|
|
597
606
|
const _component_ABackTop = BackTop;
|
|
598
|
-
return unref
|
|
607
|
+
return unref(getShowBackToTop) ? (openBlock(), createBlock(_component_ABackTop, {
|
|
599
608
|
key: 0,
|
|
600
609
|
target: getTarget,
|
|
601
610
|
visibilityHeight: 300
|
|
@@ -603,7 +612,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent$1({
|
|
|
603
612
|
};
|
|
604
613
|
}
|
|
605
614
|
});
|
|
606
|
-
const _sfc_main$x = /* @__PURE__ */ defineComponent
|
|
615
|
+
const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
607
616
|
__name: "index",
|
|
608
617
|
setup(__props) {
|
|
609
618
|
return (_ctx, _cache) => {
|
|
@@ -611,25 +620,24 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent$1({
|
|
|
611
620
|
};
|
|
612
621
|
}
|
|
613
622
|
});
|
|
614
|
-
const _sfc_main$w = /* @__PURE__ */ defineComponent
|
|
623
|
+
const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
615
624
|
__name: "fullscreen",
|
|
616
625
|
setup(__props) {
|
|
617
626
|
const { toggle, isFullscreen } = useFullscreen();
|
|
618
627
|
return (_ctx, _cache) => {
|
|
619
628
|
return openBlock(), createElementBlock("span", {
|
|
620
629
|
class: "dt_header_icon text-lg text-gray-800 cursor-pointer px-3 hover:bg-gray-500 hover:bg-opacity-50 transition-all duration-300",
|
|
621
|
-
onClick: _cache[0] || (_cache[0] = (...args) => unref
|
|
630
|
+
onClick: _cache[0] || (_cache[0] = (...args) => unref(toggle) && unref(toggle)(...args))
|
|
622
631
|
}, [
|
|
623
632
|
createElementVNode("i", {
|
|
624
|
-
class: normalizeClass(["i block", !unref
|
|
633
|
+
class: normalizeClass(["i block", !unref(isFullscreen) ? "ic:baseline-fullscreen" : "ic:baseline-fullscreen-exit"])
|
|
625
634
|
}, null, 2)
|
|
626
635
|
]);
|
|
627
636
|
};
|
|
628
637
|
}
|
|
629
638
|
});
|
|
630
|
-
const DtLogo = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADkAAAA5CAYAAACMGIOFAAAACXBIWXMAAAsTAAALEwEAmpwYAAAzfGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDggNzkuMTY0MDM2LCAyMDE5LzA4LzEzLTAxOjA2OjU3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOS0wNS0wNlQxMToyNzoyOCswODowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMS0xMC0yNFQxNDozMToxNiswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjEtMTAtMjRUMTQ6MzE6MTYrMDg6MDAiIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NWU1YmFlNWUtOTQzOS1lYjQ4LWJiMjEtZjZjM2UwOWYxODM2IiB4bXBNTTpEb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZGU4M2YxYWYtODBkMS1kMTRlLTg5ZWMtNGE1MjUzNzFkZTcwIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OTg1ODkwODQtMjkyYi01ODRiLTkzODAtNWJmY2E3NjJmYzk5Ij4gPHBob3Rvc2hvcDpEb2N1bWVudEFuY2VzdG9ycz4gPHJkZjpCYWc+IDxyZGY6bGk+MDBCQTBEMEExQ0M5RDAwNTMxNTlBMjBGRTcxOTA2RTg8L3JkZjpsaT4gPHJkZjpsaT4wMTQwNjdEM0ZDNjM5OTM3RTc4QkFCNDFBMzdCNzMwNTwvcmRmOmxpPiA8cmRmOmxpPjAyRDI2REY0MDMxREJFOUM5N0Q5Mzg1RjE5QTUwMUQ0PC9yZGY6bGk+IDxyZGY6bGk+MDcxNDVGQzc5RjkxODMwQjNGRUNFOUZCODNEMDZDN0M8L3JkZjpsaT4gPHJkZjpsaT4wRDgyMkI0MThFM0E2RjZCMjBDMEM2NjkwOUI0QTc5QTwvcmRmOmxpPiA8cmRmOmxpPjBGOUM0NTJBMkZGQTE3QzU4RTQ5MzVFQUU3RUJEQzI1PC9yZGY6bGk+IDxyZGY6bGk+MTY2N0I2OTg3MUJGRjQ4MThEODU5RENGMjIzOTUyMjg8L3JkZjpsaT4gPHJkZjpsaT4xOTNFMUQ2M0ExRDJEN0VBN0U0MTFBMzlBQzNENkJBMzwvcmRmOmxpPiA8cmRmOmxpPjIwNjY1MENBM0RBNUM2OURFQjZCRjAyMTQ3MEUzM0Y1PC9yZGY6bGk+IDxyZGY6bGk+MjE1QzM3NDMwNUM1MUVDQ0FENUM1RDUzQThCMEMwMkI8L3JkZjpsaT4gPHJkZjpsaT4yMThDREMzM0Y0OTE1NTMzQzRFQjMwRUIzQTU3MjM1RjwvcmRmOmxpPiA8cmRmOmxpPjI0N0QxRUVDRThCMjkzOTJCNzQ3RjVCMzQ3Rjc5RDRGPC9yZGY6bGk+IDxyZGY6bGk+MkVDOURBNDM2NEQ2RTBCRjYwNzExRDJFOUY1OEM4ODg8L3JkZjpsaT4gPHJkZjpsaT4zNzEyQTgyQjE3NEM0OUMwMDg2MTUxMEJBODEzMDlBOTwvcmRmOmxpPiA8cmRmOmxpPjNEQjIwQTEwQzQyQjZGMkZEMEMwQkYyNUZDNEU5NzFFPC9yZGY6bGk+IDxyZGY6bGk+NDFDMTBEM0IzRUFBQTUwQjI5ODRBNzY1MEM5QzQzMTc8L3JkZjpsaT4gPHJkZjpsaT40OTQxN0MwQjQxMDgxRkJDRDQxNjAwQTM1QUE0MkEwMzwvcmRmOmxpPiA8cmRmOmxpPjRCQUVBREUyQjhFMTk4MTA2MkM5RjQzMTFCREI5Njg5PC9yZGY6bGk+IDxyZGY6bGk+NEU5NTUxOEI4OUI2MjEwOTRFNDdGMEU3MUQ4MUYxRjQ8L3JkZjpsaT4gPHJkZjpsaT41NDlEOUJFODJBRjc3NzVFOTMzRDc3QjJDOEY4N0QwMDwvcmRmOmxpPiA8cmRmOmxpPjU1NTQ4QzhDN0VEODdCRDI2MUI1RTNDRTBCQzdGNUM3PC9yZGY6bGk+IDxyZGY6bGk+NTg0RjVFMjNEMEFFMDA0NUQ4OENBM0I3MTUxNDQyODk8L3JkZjpsaT4gPHJkZjpsaT41OUVDMTdCMzk5Q0Y3QzFDQkJEN0FBMDUwODYyMzY1OTwvcmRmOmxpPiA8cmRmOmxpPjVDRUFCMzA0QUVFMTUyMzVGMDM3Mjg1NTdDMjFCQTBBPC9yZGY6bGk+IDxyZGY6bGk+NUUwRkI3MDI4QjU5NDlBNEFDRkU0NjIwNjRCQjVFNTc8L3JkZjpsaT4gPHJkZjpsaT42NzlCNDI1OEZGQjVDQTZBQUM2MDgzQkJBQTNFMDYwRTwvcmRmOmxpPiA8cmRmOmxpPjZDMDkzMzdDRjQxRTU3NTQ2NTFFMTJCNkRDMTU5OTcyPC9yZGY6bGk+IDxyZGY6bGk+NzU1RTZBRjM1MzM3ODA5MkM3NzlCNDE1MDAwRDg0RkE8L3JkZjpsaT4gPHJkZjpsaT43OUJDMjI2N0QxODVCOTM4MTA4RDQ2N0ZBNEI0QzVBOTwvcmRmOmxpPiA8cmRmOmxpPjdDMTMzQkQ1NDA3MzQ3RTVBREJFMzJBNDlCODIzRUFEPC9yZGY6bGk+IDxyZGY6bGk+ODE2QzZGQUI0NTQ4NzMyNjU5NTc2NkNCNEYzNDFEQUQ8L3JkZjpsaT4gPHJkZjpsaT44MzZFNkZCNjlEMDk4Njg5RDc4RDdEQjlEQjhDREExRTwvcmRmOmxpPiA8cmRmOmxpPjg1QTM5MUEyMkM2NEY1Q0IwQTM3QTg2MzZFNTRGOUY2PC9yZGY6bGk+IDxyZGY6bGk+OEE0QkZEOTQzQUZGOTlEMDdEREU1MUYwMDFDNEE5REE8L3JkZjpsaT4gPHJkZjpsaT45NEMzMkU2QTE1MTdCNzBBNDM5ODVBQTc2NTM0NEI2OTwvcmRmOmxpPiA8cmRmOmxpPkFCMzlENjBENTExNEVFOEE4RkJBREUyRTkyMEM0NUExPC9yZGY6bGk+IDxyZGY6bGk+QjIwMUZGOTM3QzYwNzkxMEY4MUY5REJERkNDRkZGRTk8L3JkZjpsaT4gPHJkZjpsaT5CRTYxMzMxREQ1MkI2MjlFNjgwNUVCMzQ3MkRFRTJEMjwvcmRmOmxpPiA8cmRmOmxpPkJFQzM4NTRBODA1RkQ1NkM3RThEMkUxN0M0NzA5ODkwPC9yZGY6bGk+IDxyZGY6bGk+Qzg5NkI0OTZGMTgyREU1MTgzNTg3MEIwOTM0MUQ4RTg8L3JkZjpsaT4gPHJkZjpsaT5DQkJEN0U5OEM1MEI0RTE0RDA0MkNFNTMzQUE1QTgyMDwvcmRmOmxpPiA8cmRmOmxpPkQ5NjQzNUIwNkRFNTQ2OTg4MDUyMjVDNERBRkUzOEIyPC9yZGY6bGk+IDxyZGY6bGk+RTJCNTc3NDY4ODE4NEI2Mzk4OTE0RTI4MkQ5RThFODQ8L3JkZjpsaT4gPHJkZjpsaT5FNDJCMEFDNjg1OTAyMTcyQzIxNjEyQkJGMjFGRjg0QjwvcmRmOmxpPiA8cmRmOmxpPkU1QjQzNTBCREVFMTQ1NUMxM0UxNTU1NEM2MEY2QjQ0PC9yZGY6bGk+IDxyZGY6bGk+RUI3NzhBRjNENDVERUNBQkFCRUEwRkZDQTg4QTEyNDM8L3JkZjpsaT4gPHJkZjpsaT5GNTY3RjdBNDRCNTJFQUMwNTYxNkVBODdGRjlEMzMxQzwvcmRmOmxpPiA8cmRmOmxpPkY1RjgzQTQyMzI4N0E0MUUyMTM5ODdDNTRERjhFOUQ3PC9yZGY6bGk+IDxyZGY6bGk+RkVBQkZDQTQyQzY1N0ZFN0Y1MjEzOEQ0NkQyRTQ2MjM8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6MDQ3NzM4NzYtZTg2Zi0xMWU3LTg4MmMtYWRiZmQ5NWE3NjU0PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjA4ZjFmZmI5LWM1MWUtMTE3OS1iNTJlLWFkNGFiZjVjNmRhZDwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDowYjM2MmY4Yi1hY2I2LTExZTUtOGZmZS1lMzQ2MTgxMGQzZTk8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6MTAwMDFlZTUtZGVmNy03MjRiLTg3OTctZDg4YjE0ZWI3YjExPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjE0Y2YxMGI4LWNlOTItMTE3OS04ZDJhLWIzNjcyY2QwOWI2MzwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDoxNzM4ZDA5ZS05YTk4LTExZTUtOTE3ZS1kNGExOTRhYWE2N2U8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6MWZkODY3YmItYzJlOC0xMTc5LWFkOTYtZjBjODUzNzZkYjFkPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjIxMzMzNjE3LWNjYWItMDg0OS04YWFmLWE0MzQwY2ZiZGVmZjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDoyNGI4YzllYS05MDU3LTExZTYtODBkYi04ZTk5ZjZiZDFiNTY8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6MmRmNzZkN2YtOWMyMy0xMWU1LWJlOTUtZDNiYjFlNDBhYmZhPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjM0NDUxNTQyLTlhYjQtMTFlNS05MTdlLWQ0YTE5NGFhYTY3ZTwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDozNTU4NmExZi00M2FiLTExNzktYTg2Ny1hMmFiMmIxYjU2OTY8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6Mzg2ZDAwYzAtNmRjMi0xMTc3LWFiNjUtYTIwYWMzNDdjYzI2PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjNhNDdmMTQxLWJlNmItZjE0My1hMzM3LTM4ZmIwZGQzMzljYjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDozYjk1ZmY2Zi1hYjAwLTExNzktOGEyYS1lYmY4MzMyOTc0NTc8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6NDVjOGUzYjMtYjg5Mi00ZTQwLTg3YjUtYWIwNTk0NmFjMDE2PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjQ4YTI0ZDkyLWUyMzMtMjM0NC1iNTQ1LWE3OTA3MDY1MjJiMzwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDo0YmNiZWZkMS04MTBlLTJkNGEtYTA4NS04MGVmYmMwZjJiODA8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6NTUzNTRjMmEtYzMyOC0xMTc5LWFkOTYtZjBjODUzNzZkYjFkPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjcxODQ0ZWUwLWMwY2MtMTE3OS05ODliLWNlNWRkM2Y3NmNhYjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDo3MzFhNjYwZC1jY2Q4LWNiNDQtOWZkYS1jOTY1NjAwYTlmOTI8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6NzdiYjEwZmYtYjI4ZC0xMWU4LThiN2UtZjE3MTY4ZDMxZTljPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjgyNGIxODI5LTliYTUtMTFlNS1hZmM2LTg3NjcxZTA3ZTBjNDwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDo4MzQ2YzY1NC1kMzM0LTEwNDMtYjZjNS1kYTM3N2QwYWIyNTg8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6OTgyODRiN2UtOWIzNi0xMWU1LTkxN2UtZDRhMTk0YWFhNjdlPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjlkNDM5Y2UwLWIyM2UtMTFlNS05MTYxLWY5ZDdjYzE1OTQzMjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDo5ZWQ1MWIzNS1hYzM2LTExNzktYmE0ZS1kZjIxY2JlNzI1Yjk8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6YTE2NTQzNjYtODg0ZS0xMWU1LThjOTAtYzY5MjYzYzdiOTYxPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmEzMzUzZGI3LWE4MDItOTc0Mi1iZmYzLTI0Mzk4YjY5OTI5ZTwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDphZDM0MWU1Ni1iMjczLTE2NDktODY2ZC0xN2E5MjcxZjExODg8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6YmExNjlmMjMtOTA1OC0xMWU2LTgwZGItOGU5OWY2YmQxYjU2PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmJlNjYzNjRhLWUwM2YtNWU0OS05YmY0LWM0YjIwMTc3NTliNTwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDpiZTY2YzcxYy1hYTQ1LTExZTUtYmY4Yi1hZWNlNTk4MWMzNmQ8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6Yzc5Yzc3YzYtOWMxOS0xMWU1LWJlOTUtZDNiYjFlNDBhYmZhPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmNjZDJjZGNhLTQ2OWUtMTE3OS1iYzUzLWRmNDJmNjRkYjZhYzwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkZDE2YWYyNi1iNGI2LTExNzktODkwYi05YjY5NDhiZDgzZTk8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6ZTNmZmVlNjgtM2MxMi03MzQzLWE1NTItOTAxYmFkMTViOGMwPC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmVhOGYyYzNkLTkwNTMtMTFlNi04MGRiLThlOTlmNmJkMWI1NjwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDpmMTc1NDg3ZC05YjcwLTExZTUtYWU3Mi1lYmI4OWUwZmQwZWY8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6Zjg4Y2M5NGQtYzcwZS0xMTc5LWJjNzQtYzljNmY5NjcyYTQ0PC9yZGY6bGk+IDxyZGY6bGk+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOmY5MTdmNjM5LTkwNGUtMTFlNi05MThjLWZmZjgyYjQxY2YyZTwvcmRmOmxpPiA8cmRmOmxpPmFkb2JlOmRvY2lkOnBob3Rvc2hvcDpmYWU1ZDczNy05YTIzLTExZTUtOTJlNC04YzM5MzI2N2QwMWM8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjAwMWU2NDI1LWI5ZTgtMWQ0My1hY2EzLWQwMzM3MDM4NGFjYzwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MDE4MDExNzQwNzIwNjgxMTgwODNBMzJBMUI2ODVERTQ8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjAyZDdmMjgzLTE0ZTUtNDAyOS1hZWZhLThmMGIwOTk0NWQyMDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MDUyN2I1ODctZGRiZi1jNzQ2LWI3YzYtZGQ5MDlhNzhhZDllPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDowRUVEMzFGQkQxQjBFMjExQjc5OUFEQTUzNjYzOTg5NTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MGNkOWFiZWMtM2UyOC1hZjQ3LTk1NjctZjBlY2EwZTU4MGFkPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoxMDdGMjg5NDUxNTAxMUU4QkNGOEU4NzI4QzNERDBCMDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MTBjZGNiZGMtY2M2NS00ZWJmLWEzZmEtMWZmNjIyMTc2ODZjPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoxM2Q2YjY5My0zM2QwLWZmNDctOTk1Yy0yZGRkYzQ0NTgxMTI8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjFGRjAyMjJBNzI3RkUzMTE4QTIyRkI5QzU1Rjk3RkVGPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoxY2MzNWUzOC0yMTY3LTk4NDgtOTNhOC05ZmMyNTAxNGMzMzM8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjI2NzdiOWEzLTQxZDItMzE0NC1iNTI0LWQ3N2U1YTYyZGI0MDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MjZlYjJmNWItNWViYy00ODk3LWEyZmItYjc0MGQ5ZTMwZDc2PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoyQkU5QjkyOUIyNkExMUU1QjIxNjhFODMzRDJENUU0RjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MmEyYTA2OWEtNjEwNS00NzM3LWE0ZjktNmJiNWEwNzI2ZjdhPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDoyYzRhZDFjYy1lNzUwLTFlNDctYTlmMi0xNTEwZTFiMDRiOTM8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjJkZWZlNGVjLTdjYzctYmU0OS1iYzg5LTQ5OGUzZmQ1ZjVmZjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6MzRDNjBDN0JCMkQwMTFFNTg4NUM5MjhFNTk3ODMxQ0Y8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjM2Y2ViMGI3LTU4MTktNTQ0NC1iN2NmLWU2OWEyODBmNWFhMTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6M0VBQzJERDc1MzUxRTgxMTk3NkFGMzlCNEI2QUZCRjg8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjNhNWFiMjgwLTQwZmUtNGY1ZS05ZmE2LTcxNjE2YjczODEyYjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6M2Q1Njg0OTgtOTg0ZC00NThhLWIyNDktZWFjYzMyMjUyYTIwPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo0MTk0ZmE2Mi1jYWRlLThmNDktYTIxNy1lY2E3ZWUzZDIyYTA8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjQ0MzMyRjU5QjI2MDExRTU4RDNGOEJEQUJDMENEMEFDPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo0NmVkZjRlNC05MTUyLTVlNGItODA4Ny1kYTQzN2JjNWRjM2M8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjQ4RTNEMDA3MDgyMDY4MTE4MjJBRDdEMjNEMDQ0QTk1PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo1Y2EzNTUzMS1lOTZmLTRjMjAtOWViYi01M2U3NTJkMDMxYWQ8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjVlODc5ZTZmLWE3MjMtMjI0Ny1iOGQ4LWE5MDI4YzY4YmQyZjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6NjViOTJlMzAtNWU0NC0wNjRmLTk3YWQtMzg2YWI5ZTQ3NzEwPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo2ODc0QjFFNzZBMjA2ODExODIyQUM2N0Y1OEJFQTE3OTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6NjliYWZkZWItNDM4NS04MjQ4LTk2NDgtMTIyN2YxMTE2ZTViPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo2QTc0QjFFNzZBMjA2ODExODIyQUM2N0Y1OEJFQTE3OTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6NkZENTNBMzgwQTIwNjgxMTgyMkFDRjE5MTgwRTgxQjI8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjZlYjFkY2Y1LTliNjctOWQ0NC05MWJmLWZmODQzYWNmMTZmMTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6NzI2MGY1YjQtY2MxNy1kZjRlLWIwMWUtZjEzYWQyMWQwODkwPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo3NDljYmFlOC0xNTRmLTM5NDAtOWVlNi0yMmQxZjgwZmEzYTE8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjc3OUQyNjQwQjI1QjExRTU5M0MxRDg5NTlDNDg0NDg1PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo3YTE1ZGNmMS1kYTE4LTQ3YzUtYWI0ZS1iOTQ4NTUyOTAyNjc8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjdhOTJkNDBiLTY5ZTctNDlhMy04ZDIzLTIzZjNkNzc0ZmVkYTwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6N2MwMmQ3YjEtMDNkYS00Zjg1LTk5YzAtMDBiM2YwMzI5MDNmPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo3ZGRjODNmMS1jYTIxLTlhNDMtYWFlMS1kMjhkZTkyMjc3OWQ8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjhEMzA2NTQ0OTYxQjExRTQ4OTM3REM3Rjg4OUZGMDQzPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo4RkNCRUNBRkIyNkMxMUU1OUExNDgwMjUxQTI3MzQzNjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6OGM2NWIxOTYtOWNhNC1mNDQ0LTlkMzQtZDM1MzM4YTllMjE1PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDo4Y2M3ODA2MS0yNzk2LTRlYTAtYTVhZC1hNjk3ZDRjMjA3OGU8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjkzNTk1Mzc0LTc5MjUtM2U0ZC1iMDRjLTk2YzU2OTY1NGNkYjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6OTU5NkI5OTE3NzIwNjgxMTgyMkFDNjdGNThCRUExNzk8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOjlGMUZFMkJFRTNDMEU1MTE5QUU5OUNFNTZGNjc4NzY3PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpCQkFFMjI5OEYxMTlFOTExODhFMjgzQjVGRjY0QkU5MjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6QzM3MTlGNDQwMkM0RTUxMUJBNDE4NUE1ODhCNTEwODc8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOkM5NjUwQ0I5MDcyMDY4MTE4MDgzQTE1REU3MzQzNjUyPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpENTNBODdBQzQxNjdFNDExQkZERUY2ODdGMzU2NEY5NzwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6REJDMjdENjQyRTZCRTUxMTlGQkVGMkREMkU4REFDRUY8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOkRFQjkwOEE1OEI3OEU1MTE5MTk5OUVFQkJCRDI4M0UyPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUNCNkU2OTFDMjRGRjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YTIyZmVmZDItNTM0MS05NDQ4LWFiNDQtYWJhZjhmNDgxOTlhPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDphMjk1Y2U2Ny1iOWIxLThhNGUtOGZmYS02YjJjOTIxMDlmMTY8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmE2NDcwMTE5LTg3ZWUtOGU0ZC04ODZlLTM1MDUwY2Y3YTBjYzwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YTdiMjA5MmItMDg2Zi02NTQ3LWJhNTUtNzEzN2ZhOTRmZjVjPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDphN2M2ZjA0NS1lNTE3LTVlNGUtOTUzZi1mY2I3ODMyMzZkMDY8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmE4NGU1MWFmLWJhZTYtNGNiOS05ZGQ3LTZmOTJjYWVjZDQ1NDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YWVkZjcwYWMtOGExNy05OTQ1LTgxYzctM2FmNWFlM2UwM2VhPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpiMjljYzBmMi05MTg1LTQ0ZjEtOWU5YS1kMzhkMTkwMmU5OGQ8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmJhMGJjNGViLTJjYzgtMTg0ZC1iN2Q1LTE2MzQxM2JkY2I5MjwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YmMxYzdmNWYtNTMzMy1kZDQ3LTg1NmMtMDFlNTJhN2NiMWY4PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpiZTE0OWFhNy0zZDM4LTc5NGEtOWVhMi0xYWFiMDAxNGMwNzY8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmJmYWIwNDVmLTQ4MTItNDdlNi05N2NlLWNjNzk1NmUzYTFhNzwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6YzIxNWY4ODUtNGI4Ny01YjQxLTg1M2YtM2Q5NmRlNWMxOThlPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpjNWIxODhiNC1hZTMzLTRiODctYmRjZC05M2U5Yzk0MWM1YjA8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmM5YTI2YzkyLTQ1MTgtNGI1YS04NjIwLWIxYjExMTZlMGZkZDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6Y2YwMDViZTUtNWYzZi1mMTQ1LWI5OGEtYTU2YjU1NTk4YzkyPC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDpkZDliOTBkMi01MjcyLTQyOWUtODQ2Zi1mMTMxMmE0ODNlNjE8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmU1NmQyNjUyLWM3YzQtMzk0ZC05MzA4LTlmM2Q5YmQzMGU1MDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6ZTcwNTM5OWQtNDY0ZS00M2ZmLWE1MmMtY2RjOGE4YmY3ZWE2PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDplZDAxYWNlYS0xNDYwLTYxNGQtODdlNC1mMmEzNDM1NjA3Njk8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmVlNDYzYjU0LTRjMjItNGMyZC1hZjQwLTdlN2U0Yzc2YTcwMDwvcmRmOmxpPiA8cmRmOmxpPnhtcC5kaWQ6ZWVlNzBjZjMtZDRiZC05MjQxLThiNzAtN2NjYmFkMzViZGU2PC9yZGY6bGk+IDxyZGY6bGk+eG1wLmRpZDplZmQ5MzI1Mi01MjBkLWYxNDEtOTAxMy0wZGI3MTBhZWRmNzU8L3JkZjpsaT4gPHJkZjpsaT54bXAuZGlkOmY1YjljZjZkLTM2YjgtYTc0MS1iMGZmLTE3ZGU0YzQwNjZjNjwvcmRmOmxpPiA8L3JkZjpCYWc+IDwvcGhvdG9zaG9wOkRvY3VtZW50QW5jZXN0b3JzPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjk4NTg5MDg0LTI5MmItNTg0Yi05MzgwLTViZmNhNzYyZmM5OSIgc3RFdnQ6d2hlbj0iMjAxOS0wNS0wNlQxMToyNzoyOCswODowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplY2UyZWZjMi01NDlkLTBkNDgtYTExNi1kZTI1ZmU1NzNkYzkiIHN0RXZ0OndoZW49IjIwMTktMDUtMDZUMTE6NDM6MjQrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NDQ5NDBhMmEtNzEwNy00YmFlLThjOTMtY2ZjNGRkM2UyYjc2IiBzdEV2dDp3aGVuPSIyMDE5LTA3LTAyVDEyOjIwOjE5KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNvbnZlcnRlZCIgc3RFdnQ6cGFyYW1ldGVycz0iZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iZGVyaXZlZCIgc3RFdnQ6cGFyYW1ldGVycz0iY29udmVydGVkIGZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmciLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjZlYjlkOTFjLTI5NDAtNGMwZS1iMjEwLTg3NGMwNmY5NzBkMyIgc3RFdnQ6d2hlbj0iMjAxOS0wNy0wMlQxMjoyMDoxOSswODowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo1ZTViYWU1ZS05NDM5LWViNDgtYmIyMS1mNmMzZTA5ZjE4MzYiIHN0RXZ0OndoZW49IjIwMjEtMTAtMjRUMTQ6MzE6MTYrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMS4wIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NDQ5NDBhMmEtNzEwNy00YmFlLThjOTMtY2ZjNGRkM2UyYjc2IiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6NWJmZGU1MDUtMmVkMy1lZjQxLWFiYjgtNWRjYTRhNjUxZjVlIiBzdFJlZjpvcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OTg1ODkwODQtMjkyYi01ODRiLTkzODAtNWJmY2E3NjJmYzk5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+UQTyIAAAAptJREFUaN7l2ktoE0EYwPH/xtRXbRupRlsQ04JoRRQE8aQiYhHFg+JFRD1oC4oVfJx6UDwIRSsURYUiorWCiohaRSz0IIoExMfBS7A+wEIjqXFpFySm6XrYTTEmpunuJu7OfJdsJjNf8svMJDPsKLqu82covWpmQWliDHgF3ARuAKqdZHpjIOO5D3eED1gNnAcGgHPAHCeTuy3KgaPAB/PRLyIyHQGzR18CS0RFpmOVOV+3i4wEmAXcBY6LjARQgLPACZGR6TgFHPAEUkGnpixKtf+7leYXgK2uRU5XErTVtvJ1WYjI0gYuLThkJc0UoAsIFVLZX+re6wrtZVPl0/GyZ9paO38x14D1gO6antxc9SQDGBudS3d8l52U64B9rhquO2ffGr9WUwF2f7nOcKrSbtrTQIWjwzVYBg0zrH2aqcoYfSMbePtzBZ1DzUST85z47oLAYRObe5pMdheyoxo6661tVEJvFIZTRRkkg+aP0C8370LsRg2wzbHhOpCAB/Hs8uXlUDfNuA6PwLdkdp1kcXeqB4HbjiDDGoQ1Jau8faFOXdC47ogq9Kol7801Zo8OirCsy7e2bRRl7ZovtsiA3JjLJBoyACwSHQmwUgbkYhmQ9TIga2VAzpcBWSEDskoG5EwZkKMyIDUZkDEZkP0yICMyIN/LgHwhOvIj8El05P1chaIhu0VHvgbeiY5s/9cLoiAjwB3Rkccwjq4Ji3wEPM5XwevIGNA8USUvI3VgPzlu8IiEbAUeFlLRq8iLQFuhlb2I7ABaJtPA57E5eBI4wgTndv4Ov0eAKrAH6LHS2As9+RzjTlWP1QRuRv4AmjBOXX22k8iNw1UDLgNngCEnEroJGQeumLuJmJOJ/zdSB/qAq8A9IFGMN/kNt6GNd9kLeHQAAAAASUVORK5CYII=";
|
|
631
639
|
const _hoisted_1$i = ["src"];
|
|
632
|
-
const _sfc_main$v = /* @__PURE__ */ defineComponent
|
|
640
|
+
const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
633
641
|
__name: "logo",
|
|
634
642
|
props: {
|
|
635
643
|
theme: { type: String, validator: (v) => ["light", "dark"].includes(v) },
|
|
@@ -640,25 +648,25 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent$1({
|
|
|
640
648
|
const { t } = useI18n("UI");
|
|
641
649
|
const title = t("COMPANY_NAME");
|
|
642
650
|
const { getLogoWidth } = useMenu();
|
|
643
|
-
const getLogoClass = computed
|
|
651
|
+
const getLogoClass = computed(() => {
|
|
644
652
|
return `${props.theme} dt-logo px-2.5 text-sm flex items-center pl-2.5 cursor-pointer text-center transition-all duration-200 ease-in-out `;
|
|
645
653
|
});
|
|
646
654
|
return (_ctx, _cache) => {
|
|
647
655
|
return openBlock(), createElementBlock("div", {
|
|
648
|
-
class: normalizeClass(unref
|
|
656
|
+
class: normalizeClass(unref(getLogoClass)),
|
|
649
657
|
style: normalizeStyle({
|
|
650
|
-
minWidth: `${unref
|
|
658
|
+
minWidth: `${unref(getLogoWidth)}px`
|
|
651
659
|
})
|
|
652
660
|
}, [
|
|
653
|
-
createElementVNode("img", { src:
|
|
654
|
-
withDirectives(createElementVNode("div", { class: "dt-logo__title text-base font-bold transition-all duration-500 pl-3" }, toDisplayString(unref
|
|
661
|
+
createElementVNode("img", { src: "/node_modules/@dt-frames/ui/es/assets/imgs/logo/logo.png" }, null, 8, _hoisted_1$i),
|
|
662
|
+
withDirectives(createElementVNode("div", { class: "dt-logo__title text-base font-bold transition-all duration-500 pl-3" }, toDisplayString(unref(title)), 513), [
|
|
655
663
|
[vShow, __props.showTitle]
|
|
656
664
|
])
|
|
657
665
|
], 6);
|
|
658
666
|
};
|
|
659
667
|
}
|
|
660
668
|
});
|
|
661
|
-
const _sfc_main$u = /* @__PURE__ */ defineComponent
|
|
669
|
+
const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
662
670
|
__name: "trigger",
|
|
663
671
|
props: { theme: String },
|
|
664
672
|
setup(__props) {
|
|
@@ -667,28 +675,22 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent$1({
|
|
|
667
675
|
return (_ctx, _cache) => {
|
|
668
676
|
return openBlock(), createElementBlock("div", {
|
|
669
677
|
class: normalizeClass(["flex w-12 h-full cursor-pointer items-center justify-center", props.theme]),
|
|
670
|
-
onClick: _cache[0] || (_cache[0] = (...args) => unref
|
|
678
|
+
onClick: _cache[0] || (_cache[0] = (...args) => unref(toggleCollapsed) && unref(toggleCollapsed)(...args))
|
|
671
679
|
}, [
|
|
672
680
|
createElementVNode("i", {
|
|
673
|
-
class: normalizeClass(["i leading-none", unref
|
|
681
|
+
class: normalizeClass(["i leading-none", unref(getCollapsed) ? "ic:baseline-format-indent-increase" : "ic:baseline-format-indent-decrease"])
|
|
674
682
|
}, null, 2)
|
|
675
683
|
], 2);
|
|
676
684
|
};
|
|
677
685
|
}
|
|
678
686
|
});
|
|
679
|
-
const _default = "";
|
|
680
|
-
const index$b = "";
|
|
681
|
-
const index$a = "";
|
|
682
|
-
const index$9 = "";
|
|
683
|
-
const index$8 = "";
|
|
684
|
-
const index$7 = "";
|
|
685
687
|
const _hoisted_1$h = { class: "dt-breadcrumb" };
|
|
686
|
-
const _sfc_main$t = /* @__PURE__ */ defineComponent
|
|
688
|
+
const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
687
689
|
__name: "bread-crumb",
|
|
688
690
|
setup(__props) {
|
|
689
691
|
const { getIsZH } = useHeader();
|
|
690
|
-
let routes = ref
|
|
691
|
-
const { currentRoute = null } = useRouter
|
|
692
|
+
let routes = ref([]);
|
|
693
|
+
const { currentRoute = null } = useRouter();
|
|
692
694
|
watchEffect(() => {
|
|
693
695
|
if (!currentRoute || currentRoute.value.path === "/")
|
|
694
696
|
return;
|
|
@@ -697,9 +699,9 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent$1({
|
|
|
697
699
|
return (_ctx, _cache) => {
|
|
698
700
|
const _component_ABreadcrumb = Breadcrumb;
|
|
699
701
|
return openBlock(), createElementBlock("div", _hoisted_1$h, [
|
|
700
|
-
createVNode(_component_ABreadcrumb, { routes: unref
|
|
702
|
+
createVNode(_component_ABreadcrumb, { routes: unref(routes) }, {
|
|
701
703
|
itemRender: withCtx(({ route }) => [
|
|
702
|
-
createElementVNode("span", null, toDisplayString((unref
|
|
704
|
+
createElementVNode("span", null, toDisplayString((unref(getIsZH) ? route.label : route.enLabel) || route.meta?.title), 1)
|
|
703
705
|
]),
|
|
704
706
|
_: 1
|
|
705
707
|
}, 8, ["routes"])
|
|
@@ -716,12 +718,12 @@ const _hoisted_3$5 = {
|
|
|
716
718
|
key: 0,
|
|
717
719
|
class: "flex items-center justify-center h-full overflow-hidden"
|
|
718
720
|
};
|
|
719
|
-
const _sfc_main$s = /* @__PURE__ */ defineComponent
|
|
721
|
+
const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
720
722
|
__name: "menu-filter",
|
|
721
723
|
setup(__props) {
|
|
722
724
|
const { t } = useI18n("UI");
|
|
723
725
|
const menuList = ref([]);
|
|
724
|
-
const router = useRouter
|
|
726
|
+
const router = useRouter();
|
|
725
727
|
const filter = ref("");
|
|
726
728
|
const { getShowSearch, getIsZH } = useHeader();
|
|
727
729
|
const isUseDef = computed(() => {
|
|
@@ -748,7 +750,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent$1({
|
|
|
748
750
|
const _component_AEmpty = Empty;
|
|
749
751
|
const _component_AInputSearch = InputSearch;
|
|
750
752
|
const _component_APopover = Popover;
|
|
751
|
-
return unref
|
|
753
|
+
return unref(isUseDef) ? (openBlock(), createElementBlock("div", _hoisted_1$g, [
|
|
752
754
|
createVNode(_component_APopover, {
|
|
753
755
|
placement: "bottom",
|
|
754
756
|
overlayClassName: "dt-menu-filter__popover",
|
|
@@ -756,13 +758,13 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent$1({
|
|
|
756
758
|
onVisibleChange: visibleChange
|
|
757
759
|
}, {
|
|
758
760
|
content: withCtx(() => [
|
|
759
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(
|
|
761
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(menuList.value, (menu) => {
|
|
760
762
|
return openBlock(), createElementBlock("p", {
|
|
761
763
|
onClick: ($event) => navigation(menu.url),
|
|
762
764
|
class: "px-5 leading-9 border-gray-200 border-dashed border-b m-0 cursor-pointer transition-all duration-300 text-13"
|
|
763
|
-
}, toDisplayString(unref
|
|
765
|
+
}, toDisplayString(unref(getIsZH) ? menu.label : menu.enLabel), 9, _hoisted_2$8);
|
|
764
766
|
}), 256)),
|
|
765
|
-
!
|
|
767
|
+
!menuList.value.length ? (openBlock(), createElementBlock("div", _hoisted_3$5, [
|
|
766
768
|
createVNode(_component_AEmpty, {
|
|
767
769
|
description: "\u6682\u65E0\u6570\u636E",
|
|
768
770
|
imageStyle: { width: "100%" }
|
|
@@ -771,11 +773,11 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent$1({
|
|
|
771
773
|
]),
|
|
772
774
|
default: withCtx(() => [
|
|
773
775
|
createVNode(_component_AInputSearch, {
|
|
774
|
-
value:
|
|
775
|
-
"onUpdate:value": _cache[0] || (_cache[0] = ($event) =>
|
|
776
|
-
placeholder: unref
|
|
776
|
+
value: filter.value,
|
|
777
|
+
"onUpdate:value": _cache[0] || (_cache[0] = ($event) => filter.value = $event),
|
|
778
|
+
placeholder: unref(t)("FILTER_MORE"),
|
|
777
779
|
onInput: filterMenu,
|
|
778
|
-
size: unref
|
|
780
|
+
size: unref(UiSize).SMALL
|
|
779
781
|
}, null, 8, ["value", "placeholder", "size"])
|
|
780
782
|
]),
|
|
781
783
|
_: 1
|
|
@@ -793,14 +795,14 @@ const _hoisted_3$4 = {
|
|
|
793
795
|
const _hoisted_4$2 = /* @__PURE__ */ createElementVNode("span", { class: "dt_header_icon text-lg text-gray-800 cursor-pointer px-3 hover:bg-gray-500 hover:bg-opacity-50 transition-all duration-300" }, [
|
|
794
796
|
/* @__PURE__ */ createElementVNode("i", { class: "block i ic:baseline-language" })
|
|
795
797
|
], -1);
|
|
796
|
-
const _sfc_main$r = /* @__PURE__ */ defineComponent
|
|
798
|
+
const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
797
799
|
__name: "lang-picker",
|
|
798
800
|
props: {
|
|
799
801
|
reload: { type: Boolean }
|
|
800
802
|
},
|
|
801
803
|
setup(__props) {
|
|
802
804
|
const props = __props;
|
|
803
|
-
const visible = ref
|
|
805
|
+
const visible = ref(false);
|
|
804
806
|
let currentLang = DtCache.getLocal(CacheKey.LOCALE);
|
|
805
807
|
async function toggleLang(lang) {
|
|
806
808
|
visible.value = false;
|
|
@@ -822,10 +824,10 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent$1({
|
|
|
822
824
|
}, {
|
|
823
825
|
content: withCtx(() => [
|
|
824
826
|
createElementVNode("ul", _hoisted_1$f, [
|
|
825
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(unref
|
|
827
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(localeList), (it) => {
|
|
826
828
|
return openBlock(), createElementBlock("li", {
|
|
827
829
|
onClick: ($event) => toggleLang(it.event),
|
|
828
|
-
class: normalizeClass(["px-4 my-1 leading-9 flex border-gray-200 cursor-pointer hover:bg-gray-100 transition-all duration-300 text-13", it.event === unref
|
|
830
|
+
class: normalizeClass(["px-4 my-1 leading-9 flex border-gray-200 cursor-pointer hover:bg-gray-100 transition-all duration-300 text-13", it.event === unref(currentLang) ? "active bg-gray-100" : ""])
|
|
829
831
|
}, [
|
|
830
832
|
withDirectives(createElementVNode("span", _hoisted_3$4, null, 512), [
|
|
831
833
|
[_directive_icon, it.icon]
|
|
@@ -903,7 +905,7 @@ function removeResizeListener(element, fn) {
|
|
|
903
905
|
element.__ro__.disconnect();
|
|
904
906
|
}
|
|
905
907
|
}
|
|
906
|
-
const Bar = defineComponent
|
|
908
|
+
const Bar = defineComponent({
|
|
907
909
|
name: "Bar",
|
|
908
910
|
props: {
|
|
909
911
|
vertical: Boolean,
|
|
@@ -912,13 +914,13 @@ const Bar = defineComponent$1({
|
|
|
912
914
|
},
|
|
913
915
|
setup(props) {
|
|
914
916
|
const instance = getCurrentInstance();
|
|
915
|
-
const thumb = ref
|
|
917
|
+
const thumb = ref();
|
|
916
918
|
const wrap = inject("scroll-bar-wrap", {});
|
|
917
|
-
const bar = computed
|
|
919
|
+
const bar = computed(() => {
|
|
918
920
|
return BAR_MAP[props.vertical ? "vertical" : "horizontal"];
|
|
919
921
|
});
|
|
920
|
-
const barStore = ref
|
|
921
|
-
const cursorDown = ref
|
|
922
|
+
const barStore = ref({});
|
|
923
|
+
const cursorDown = ref();
|
|
922
924
|
const clickThumbHandler = (e) => {
|
|
923
925
|
if (e.ctrlKey || e.button === 2) {
|
|
924
926
|
return;
|
|
@@ -962,13 +964,13 @@ const Bar = defineComponent$1({
|
|
|
962
964
|
onUnmounted(() => {
|
|
963
965
|
off(document, "mouseup", mouseUpDocumentHandler);
|
|
964
966
|
});
|
|
965
|
-
return () => h
|
|
967
|
+
return () => h(
|
|
966
968
|
"div",
|
|
967
969
|
{
|
|
968
970
|
class: ["scrollbar__bar", "is-" + bar.value.key],
|
|
969
971
|
onMousedown: clickTrackHandler
|
|
970
972
|
},
|
|
971
|
-
h
|
|
973
|
+
h("div", {
|
|
972
974
|
ref: thumb,
|
|
973
975
|
class: "scrollbar__thumb",
|
|
974
976
|
onMousedown: clickThumbHandler,
|
|
@@ -982,7 +984,7 @@ const Bar = defineComponent$1({
|
|
|
982
984
|
}
|
|
983
985
|
});
|
|
984
986
|
const _hoisted_1$e = { class: "scrollbar relative h-full overflow-hidden" };
|
|
985
|
-
const _sfc_main$q = /* @__PURE__ */ defineComponent
|
|
987
|
+
const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
986
988
|
__name: "scroll-bar",
|
|
987
989
|
props: {
|
|
988
990
|
wrapClass: {
|
|
@@ -1056,7 +1058,7 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent$1({
|
|
|
1056
1058
|
ref_key: "wrap",
|
|
1057
1059
|
ref: wrap,
|
|
1058
1060
|
class: normalizeClass([[__props.wrapClass, "scrollbar__wrap--hidden-default"], "h-full overflow-auto"]),
|
|
1059
|
-
style: normalizeStyle(unref
|
|
1061
|
+
style: normalizeStyle(unref(style)),
|
|
1060
1062
|
onScroll: handleScroll
|
|
1061
1063
|
}, [
|
|
1062
1064
|
(openBlock(), createBlock(resolveDynamicComponent(__props.tag), {
|
|
@@ -1071,20 +1073,20 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent$1({
|
|
|
1071
1073
|
_: 3
|
|
1072
1074
|
}, 8, ["class", "style"]))
|
|
1073
1075
|
], 38),
|
|
1074
|
-
createVNode(unref
|
|
1075
|
-
move:
|
|
1076
|
-
size:
|
|
1076
|
+
createVNode(unref(Bar), {
|
|
1077
|
+
move: moveX.value,
|
|
1078
|
+
size: sizeWidth.value
|
|
1077
1079
|
}, null, 8, ["move", "size"]),
|
|
1078
|
-
createVNode(unref
|
|
1080
|
+
createVNode(unref(Bar), {
|
|
1079
1081
|
vertical: "",
|
|
1080
|
-
move:
|
|
1081
|
-
size:
|
|
1082
|
+
move: moveY.value,
|
|
1083
|
+
size: sizeHeight.value
|
|
1082
1084
|
}, null, 8, ["move", "size"])
|
|
1083
1085
|
]);
|
|
1084
1086
|
};
|
|
1085
1087
|
}
|
|
1086
1088
|
});
|
|
1087
|
-
const _sfc_main$p = /* @__PURE__ */ defineComponent
|
|
1089
|
+
const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
1088
1090
|
__name: "scroll-container",
|
|
1089
1091
|
setup(__props) {
|
|
1090
1092
|
const scrollbarRef = ref(null);
|
|
@@ -1101,8 +1103,8 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent$1({
|
|
|
1101
1103
|
};
|
|
1102
1104
|
}
|
|
1103
1105
|
});
|
|
1104
|
-
const _sfc_main$o = defineComponent({
|
|
1105
|
-
|
|
1106
|
+
const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
1107
|
+
__name: "slot-container",
|
|
1106
1108
|
props: {
|
|
1107
1109
|
template: {
|
|
1108
1110
|
type: Function
|
|
@@ -1111,9 +1113,11 @@ const _sfc_main$o = defineComponent({
|
|
|
1111
1113
|
type: Object
|
|
1112
1114
|
}
|
|
1113
1115
|
},
|
|
1114
|
-
setup(
|
|
1115
|
-
|
|
1116
|
-
|
|
1116
|
+
setup(__props) {
|
|
1117
|
+
const props = __props;
|
|
1118
|
+
const Container = h("div", [props.template(props.data)]);
|
|
1119
|
+
return (_ctx, _cache) => {
|
|
1120
|
+
return openBlock(), createBlock(unref(Container));
|
|
1117
1121
|
};
|
|
1118
1122
|
}
|
|
1119
1123
|
});
|
|
@@ -1126,7 +1130,7 @@ const withInstall = (comp) => {
|
|
|
1126
1130
|
const DtScrollContainer = withInstall(_sfc_main$p);
|
|
1127
1131
|
const DtSlotContainer = withInstall(_sfc_main$o);
|
|
1128
1132
|
const _hoisted_1$d = { class: "dt_header_icon text-lg text-gray-800 cursor-pointer px-3 hover:bg-gray-500 hover:bg-opacity-50 transition-all duration-300 relative" };
|
|
1129
|
-
const _sfc_main$n = /* @__PURE__ */ defineComponent
|
|
1133
|
+
const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
1130
1134
|
__name: "notify",
|
|
1131
1135
|
setup(__props) {
|
|
1132
1136
|
const slots = getParentSlots(null, "dt-theme");
|
|
@@ -1138,9 +1142,9 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent$1({
|
|
|
1138
1142
|
overlayClassName: "dt-notify__popover"
|
|
1139
1143
|
}, {
|
|
1140
1144
|
content: withCtx(() => [
|
|
1141
|
-
unref
|
|
1145
|
+
unref(slots).notify ? (openBlock(), createBlock(unref(DtSlotContainer), {
|
|
1142
1146
|
key: 0,
|
|
1143
|
-
template: unref
|
|
1147
|
+
template: unref(slots).notify
|
|
1144
1148
|
}, null, 8, ["template"])) : createCommentVNode("", true)
|
|
1145
1149
|
]),
|
|
1146
1150
|
default: withCtx(() => [
|
|
@@ -1148,9 +1152,9 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent$1({
|
|
|
1148
1152
|
withDirectives(createElementVNode("span", null, null, 512), [
|
|
1149
1153
|
[_directive_icon, "ant-design:bell-outlined"]
|
|
1150
1154
|
]),
|
|
1151
|
-
unref
|
|
1155
|
+
unref(slots).notifyBadge ? (openBlock(), createBlock(unref(DtSlotContainer), {
|
|
1152
1156
|
key: 0,
|
|
1153
|
-
template: unref
|
|
1157
|
+
template: unref(slots).notifyBadge
|
|
1154
1158
|
}, null, 8, ["template"])) : createCommentVNode("", true)
|
|
1155
1159
|
])
|
|
1156
1160
|
]),
|
|
@@ -1164,7 +1168,7 @@ const _hoisted_2$6 = ["onClick"];
|
|
|
1164
1168
|
const _hoisted_3$3 = /* @__PURE__ */ createElementVNode("span", { class: "dt_header_icon text-lg text-gray-800 cursor-pointer px-3 hover:bg-gray-500 hover:bg-opacity-50 transition-all duration-300" }, [
|
|
1165
1169
|
/* @__PURE__ */ createElementVNode("i", { class: "block i ic:baseline-format-size" })
|
|
1166
1170
|
], -1);
|
|
1167
|
-
const _sfc_main$m = /* @__PURE__ */ defineComponent
|
|
1171
|
+
const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
1168
1172
|
__name: "size",
|
|
1169
1173
|
setup(__props) {
|
|
1170
1174
|
const { t } = useI18n("UI");
|
|
@@ -1184,7 +1188,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent$1({
|
|
|
1184
1188
|
event: UiSize.SMALL
|
|
1185
1189
|
}
|
|
1186
1190
|
];
|
|
1187
|
-
const visible = ref
|
|
1191
|
+
const visible = ref(false);
|
|
1188
1192
|
async function toggleLang(size) {
|
|
1189
1193
|
visible.value = false;
|
|
1190
1194
|
setThemeConf({
|
|
@@ -1194,7 +1198,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent$1({
|
|
|
1194
1198
|
});
|
|
1195
1199
|
}
|
|
1196
1200
|
return (_ctx, _cache) => {
|
|
1197
|
-
return openBlock(), createBlock(unref
|
|
1201
|
+
return openBlock(), createBlock(unref(Popover$1), {
|
|
1198
1202
|
placement: "bottom",
|
|
1199
1203
|
visible: visible.value,
|
|
1200
1204
|
"onUpdate:visible": _cache[0] || (_cache[0] = ($event) => visible.value = $event),
|
|
@@ -1206,7 +1210,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent$1({
|
|
|
1206
1210
|
(openBlock(), createElementBlock(Fragment, null, renderList(sizeList, (it) => {
|
|
1207
1211
|
return createElementVNode("li", {
|
|
1208
1212
|
onClick: ($event) => toggleLang(it.event),
|
|
1209
|
-
class: normalizeClass(["px-4 my-1 leading-9 flex border-gray-200 cursor-pointer hover:bg-gray-100 transition-all duration-300 text-13", it.event === unref
|
|
1213
|
+
class: normalizeClass(["px-4 my-1 leading-9 flex border-gray-200 cursor-pointer hover:bg-gray-100 transition-all duration-300 text-13", it.event === unref(getUiSize) ? "active bg-gray-100" : ""])
|
|
1210
1214
|
}, [
|
|
1211
1215
|
createElementVNode("span", null, toDisplayString(it.text), 1)
|
|
1212
1216
|
], 10, _hoisted_2$6);
|
|
@@ -1221,17 +1225,15 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent$1({
|
|
|
1221
1225
|
};
|
|
1222
1226
|
}
|
|
1223
1227
|
});
|
|
1224
|
-
const index$6 = "";
|
|
1225
|
-
const _imports_0 = "data:image/png;base64,/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCAG9AfQDASIAAhEBAxEB/8QAHAAAAgMBAQEBAAAAAAAAAAAAAAECAwUEBgcI/8QASRAAAQQABAMFBAYJAQYEBwAAAQACAxEEBRIhMUFRBhMiYXEUMoGRFUJSobHBBxYjM2JyktHh8CRDRGOCkyU0U1QXc4Oio8Lx/8QAGgEBAQEBAQEBAAAAAAAAAAAAAAECAwQFBv/EACMRAQEAAgICAgMBAQEAAAAAAAABAhESEwMhBDEUQVFhIjL/2gAMAwEAAhEDEQA/AMZCSYX3XyQRso0rEtKCFJ0p0onjSKSSlSSATSKEQHihCEQVaYbSSlyQIpJoQACC1McUFGde0AnVqVIRoqRVKSRRESkFIpAIpp8kgmESoqQA4opHBGdAkJcuKDxTpDRX5qQ3CVIooaHNNCENEmhCGghCENBCEIaHNNKk0TQUlFNDQ5ppIQ0akFFCGkyUAgpct0BF0ldIQhDQQhCGghCENBAQhDR802lLmpDmjZpoCEELIQpaUIOSh0TpMJ0io0lR5lSpBCCBtHqmU0ESEgN1Kk6RESLSAU0Uio0kVOkUiIAFOlKkUilSVKVJIyKQhCKEIQgEk0+CCKQUikgKTQhAIQhAkUmhECEIQCEJoEhCaBJoTKJsghAKEU0IQjIUkhsnSCKEc1JFJMCimFJAkbIRSACaEIBCE0CQmhAqTCaECA3UggKSNEOKaKQgEKSEHKhCEUkJpoI6bSpSRSIiQkpI5oopFBCBuEZLmhHNCKSE0IpITKSMbCEIQCKTQhEUJlJGghCEAhCEAhNJAJ0gIQCSE0CTAQmiWiklJJGdgJpJ2ilSKTQhslKtlFSB5IhFNFIHBFFIohP0QCgOCklSaAQikIBOkIRAhCEUIQmgFIJBSRoJhIJoGjZJCA2QnQQg5qRSY4JhFCVhBUa80DQkhESoKKEIpEIATHFTAREKQQpUhBWmpEKKBVaKpSRVoliKFLSkQiaJATpCLoklIo2CCKE9k6CFqKEEboQlFITCCibJCaEAhHNCISE00CTQjjwQJCdJoFyST5pUiGEwEBSCKVJ1sjimio0gjdSpCACEJhAihSpIcUAmikIBJNCIE0k0U6TCN+aLRowmlYTQNCEIC/JCEIOfkhOikijilSaEEKRRU0IiFFFFTQgiAbUkIQCR2TSItEqNoTAKCDSJshxTKQTRdi0yEkEooI2SpCkEZ2ikUykgSYQUBECSkl6oEmEkwgEIISQNCAE6RLSQmkjJKQASrZMBGodIpPfki0UqQPRSKjRQFJ0gDgmlIQTtJOkUIQhAJhACaASTQiAIQikAhOkwECTCdJ1SKOKRGyYTRsgE00UgQTRwQpU2EIQs6NoUoEKaS0qFIpNNUQTpFJoIopNCIVboUqtFIIoTQgSE6QU2hUlW6aEQiFEhTQi1XW6mCikVuiIoTISQJCaaIje6CpJUmwgmEUnSbQqTpFJoQkJ+SKQRKdJ0mAiaRPBG6lSKRqEnW9opNEJNCECQik6RYSdIKaKKRSEUiGAmRSAgoEgKWyKCm1GnZIA2pUgDdNhUmAmhNgpBQhTYEIATpGoEIQgCE6QNynSRgUhCFUV0UVspJUjqrQp7JbKiKE6SpAIRSYG4QJMi0VXFHNERKFIhKkCpFJ0nSCFIUq2UaRAlSdIRSQmkiBKlKkkQqQVKkKbVBCnSVKoVJopCjNgQQnVIKoiAmik6QJNFJ1siUqTQikWCkUmhVSTrZOkKIVGklZdBQpFClSjSkCgRpKlIi0wKKJsqRQUkk2WlSAE6TUq7CEJrJskJoVkTZApopFJpdhSBCjVphpTS7M0ikBqelDYaKTKKQgVITQqK0UUwLTpG0NJS0q2lFVUaRVJoITYinSKQm0RJKjzVhCVJtCQpbUlsUCtFopFIBRKkUkCSpMoq0Z2SdIpMBFJKk0Im0UUpUilEtJCdJInIUlW6kikXaNbopTrdBCIhSkOCYaigFWSpClyRt0RSpKlKkqQFJ0nSDsgW6elQMzW8/ijvLIppPwWbTVSpSpJhD22OPRAIPBNnsUnsi0KApI8VInZJaCvyTRSdIhJoQgLQDaEwkCIQmnSKSE6RRKAATARRCYKVTGyEBNYaKkUmE6VKjSE6QqyiPEEI4BNJXSUioKylHSqqCEyN06URFKlKkUgimmQkqpEJUpIIQJIqVIKWpaiAik+CRU2zsUhMIpVKiQmikKUgpFIpOkibR0popNW1NoUnpUkgVNpsqpHEplATZsJ0jkhQ2XAJVe6ZCdK7TZAJbqVITZsqSUkiDRIF1upvXurjLldQi6gKok8AsGfP4HTOjidZa7T3h90eg5qeaZqYIS2G5Q6y+Rh2aLrj62B6LyEZMWKYWni67PBeXy/Jkvp7fH8W/eT2fexOojEEuP1tQ39AOHopsliFt7x5cebgvKywTuZ31FzQW2Rx3VXdStnMZDmnkL3vouU+U6/iV7iNwFU+M1xPAj4rqaTsCS41d0vneuZjxqeTW4B3HyXocgzDESGSLVTI26i0cK4bdOK1j8qVL8T09NRHEUik4iJIvCQADz+qUyC004URxC9WOfKPHn4+NKkJopdHMk06RSoigJ6VLSgjSadJUiaCaAE6RQmOKVKQCBEWigpUgBFKk6Ug21INpZaR0IIpTSJtBDSUJoVRXSNlOkqWY0SSnSRC0I0ik0FBDTaVUVMBMhNlV0igp0ilNm0CEqViKtXZtCikRSs0qJG5Ri1BFKekIApGUKQp0kWqqilSdJqJpFClSKoqIiik0IhUhNFIhITpJA0qKaKQKk06RSBWhOt0b8haVZNoPIZG97iA1g1OJ5BeQzLOZsZh8SY9bIe8DByscr9d/kpdpc9MkpwWHf8AsWkai0+84cfhy+Cwo5NMWmrFFwvejVL5/n8u7qPp/H8Uwm61MC4ZjlDcGHFr+8HeOI5Wa+CMJgLficM5ge+G5ATten3gfhRWNg8S7Duk0k29tceNb0t2PFDE5tC5hZqmjIJviSOfnyXkr2bdGVMbistbcgEbnmEuI901YPlsV05lhI5nRy4eN1OI0kHc7Wb+9Z/ZrxwZnhXcO7ErWHjqY69j6Wtrs/K2V0uCxIaS17Xxgi6uwfxHzWbHWfTMjwLcRghNRNF2wbxF/ipYZ2Iy7MJWRNAc9phLSRRttgrawOKwmXTY7CTDvBDiXVYrwu8viuPOJIZc2bNh2FzG4VwdX2hwPy3WFVZfmbmOayejy1hoFetcluume3u5dTdDyBdHw3wPoVhNwXfsLgCbeCHDzBP91oZa9roH4J5JEfgLeZb5f65L2/F8t3xrx/K8Prli0Q0jg4H4Keypw73SMIkNysOlzvtdD8R+a6AADwX05XyrNI0mpEJUqhAKVIA2TAUUiNkg1TSWgqRSlSEQgN0KQG6ZCWCICdKQRaypDZSSAtNRZQghCFVKkJoT2aRDdklOlBSKelGlS5BG60KyKNIpTQgroopWFGkIKqRSs07KNKIjSFPSo1ugSFKrRVFGUDwRxUiEUk2mkSEUnSKVEXNUdKmAnSCFIq1OkVSIr0opWVaVIiOlGlSpFIIkUoq0N2RShpWBaKVlIQVEFMDZWUgBBDSsjtHmf0blxEf76e42fwitz/rqttfPu1+KM+dOivwQMDAPM7n8Vy82XHF3+PhyzYLnlzrJs9SuvDlwgdK3cx7EeV/5XCuvCV3Uup2ztqHEGtj+XxXzK+oeKwhhghxDSCyRmrbluQunK7EzHBwuOng3y/uqIptUDIT7lFo8if8ANLnjPdSO1g2NtuqixoZLixh83MkosPLmkfzWD+K7xjhgcdG6MsJY3SL89ivPsP7Yb7Erqe3vzTW+ME209eoWbG5WjmGN77Mp5oydEwseuyjhMb3kohFuBj0H5gk/IV81lB5MO54FWYKYw4psjTRG1+SzYsvt9SghYyIYe6dpNu+s3YH/AAuR0TDjpDBRf3TJSWt92rbV/wCuCxoM3kkw+u2lk8niu9tgT8NvuW3kkrH4TEYvei5oFnc71/dT/wA3bf8A6mkzG7W2Ztjangcxf5H810ijwUWOa4vHujUCK5g0VIsOq21f4r7Hgy5YSvjfJw4Z6gSpWDccKRS7vOghTpKk0EEyEwN06VEKTATAtSQRCfFOkwlojWyYCZFopZ2AJ0gClIBRqRGikQVYAnWyqqqQrKQqqtAYpAbqZasiqtkUp0mGpRXSKU6RSCukbqdI0psQQpUjSKVEUqBKnpRpQQ0pFu6nSVJUsQpGlTpNTbKukiFbSWlXaKqQrNKC1BAC0iFaBSCERWG7cUlYWpaVRCkUp6UUgiAlSsDUtKCFJK7TsoFigjWyAFLSUw3ZDSqaRsMEkruDGlxXybEzyYnFSzyE65HlxtfUM5a76HxWkEkMJ24r5Vw2HJeP5d+o93w590iFdhXHU9gdWppG/DgqShpIcCOK8L26WuG/HZ3FVE1w3VwuWPQTw3CqdG5lEjwngeqbIY3pWuJcQ6zY+5Vaiask0KCRcb4qtL5S15LhQ1USByPNUt4pElJuymlaAxJbC2NpquY2tehyvNnx4SOBgpgdqJ9BQ/15ryjQTvyXbDO6PDvuqJFFZsWXT1mBzG8XGwgBznadN8uW69IwkgXV+S+Z4PFSOzGFznb940AjpfBfUNO5X0Pif+Xz/me7silSlSNK9u3iRRSlpRpTYjzTTpOk2EAmmAjTus7Ea3TTpSATYgFIC0y1MAhQFWilKkUm2keCFIhIBXabKvNClSE2bRDeClaYCNKioAbqRUw1BbslVWihSelOtlNptBOrRp3UqVES1RpWblGlNqhSKU9NhGilJRVpspFqu0qLm7rWxVSKVmlLSjKFIpSpCiI6UaVJCCOlGlSQiIkJUVNMBXYrpFKykUghSKUiEUVRGkqU6KVKfSI0ilLSildptB4Gg3w/FfLs8yp+XY2TSLw7nHQ4b1vwX1ReN+jZ24/MMLioXHCYiR0jXnZrDex+Nj4rx/Kl47j3fCs5ca8RSS7Mbg34LFPheN28PNch4rwbfRuNl9pxSd3I1xFgHcdQrsRLHK4iNrmx7U0nn1XMmDSJocCpPbW4Njqo8UcLWgAWeNJJptF6vIckVMFpGogANG/Vys74GOgPgT/rguetxSsALmk8AOaDry1wdmOHFf7wfcvrAJO+26+d9k8C3EZw2UjvGQDU6uANbDzPP4L6KANjt5Uvb8X6eD5f2NJ4pgWpXaVL1PGNKVKXJJIhEJKXFFKVCTCek9E9JRSpMBMNUiPJUQITClSelF0jSdKWmkUioEIDVIhMCkRCkKdIVNLO6PMI7s9Fs/R8n2QpNy2UngFw7Hq6axBE7opGJ3Qr0MWWADx8V1RYKKM7AfJZvmbngteVbhZX3TCfgpeySAbtr1XrjhmkbCvRROGadiL9VnvX8aft5IYR3RBgral6d2Xx7nelQ/K4zuCfkr3bPxv4wRhhSm3CtvcWtj6M6E/JTblpve0vlh0VkswbCd27K/6Nic3hS1G4At4K5mF6ilm+WfpueFhHKG1s4rlflsjd+K9UMMOgS9lUnmqXwSvHuwcrQTpUPZ3/AGV7J2DYRu0FVfRsH/pi1rurH4ryPs55qPc79F685ZC4UW/JVPyeI7iwrPMx+NXlDCo6COIXpzlIB2cUhlexDgHLXazfjZPM6Ewxek+hIjzIUHZGz6rz8k7Yn41ed0eSNK2n5Q5gNPN+YVD8C4buBWp5IzfBlGZpRpWkMI0t90hVuwJvwlXmxfFk4CEUul2HkBNsOyh3Z6H5LXJi4ZRTSKV3d+Sl3PknJONc+kpad11CFx4NKs9glIsAJyi9eTi0rO7QMJyPENAJJ0jj/EFuHBzA+6qMVl/teFlw8gIbI3SSOI81jOyyx18WNxylr552gwftDI8S0EOc0avXn968pJGWOIN+q+l5jgXyQuiIDZmm3t5B3OjzB4jycvOYjIiIXiXYEW1w+qfPyXxt8MrK/RXDHyeOZY/byiFbPh5cNMYpWkOHyPoq6C6y7eTVn2SLQhaBxVjvC2hxPHqrI5I20O4jI5k2T+KtczDFgeO8J38PCv8AX+igojkIAjeT3d2aaCR6WpyOEjgGB3px3XTh8uxOJbUcOltjdwIu/MrYynK48HKcXiS0OZ7uvcNJ51yrqs2/weh7J4D2PA6CP2u5kcNqJrb716JreN+qxchxLPa2OaSI5HPq+gA3+6l6BgLgXOFFxul7Pi/TxfL1tXpTpW1W1JaV7XhV6UaVZSKUNKy3ZAburNKYaomkNKWlW0npV2sVgKQaphiYapa1pWWoDFbpTAU2ulQZunoCtpFK7FOjySLT0V9JUmzSrShW0hORp67SrA0BRtTC8D60HFNJFoqYKdKI4IBWESoJaAjUkTaqw6ACYApRtAKKlQT07KKdrIdJ0FHUjVa0mjIBCjSkNkbFTRpGkqU6CV0qaQLVAgK4utVlJRAqJKmQo6VpixW5uoKDsO1w4q7SmGqbZscZwbOpVTsGAditLSomK1qZU4bZjsI6tiCqDhCeRW33SYhA5Ba5s3xRgjBNB9w/JWDCt+xXwW53Y6I7pvMBXsJ4oxhhGkVSl7LXAlbAib9kI7pv2Qs9q9cYpw8l7NUThXkbhbvdtrgFHu29E7Drjxef5S5+DOLYCJYRua4s6fBeUeDzX14wse0tcAWuFEdQvm+eZS/Kse+E2YnEuif9pv8AccCvF8ibu3t+Ndf8vHZvl8crQWt0+VbLzE+DMZtvyXvcTFriIXl8xgdGSa2tcsMnTy4S+2A5haaIVuHgbK4hxIAFk9B1V72Nc4auC7sKcPHAWRxBwLx3kzzsxvIVzPQLvK81jMkh7mNjntcNfAFA1REOAN2DwXVmuOjxuJGmPTEyPQwk0duBKrgIMMYsjUHAhx2FcP8AXkrb6R1QB+L21Eni7U7Zu/FauWZfPmFvleBDHIIw0Cg40TXnw4eazMHgw4kvm06SNTQOI6r6B2ew8UMbQJWyQwudIGu4uca4fh8SsTL/AKa4+ksty7/bW4drNsOzSQBW5r/XxXoRhpCfcK1MkysQQPnmY3vpSTdUQCfz/ILUdh2le7HPUeTPwzK+3mhgZnb6SEjgZR9Ur0ZhA4Kt8RHILpPK53wYvPjBzH6hR7DN9lbDmHoo11WuzbN8OMZPscg4hQMZaapazm2CFzuw5PBXmxfHP0zy3dGldjsPR3UO4dfBOTFwqgBPSujuq9Ud35JvZwqikUr+6R3aHFQGkp6CrhGR0R3ZTZxUaSjTSv7soLD0VONU6QhWaD0KEONenKNSnQUdK8j6ekgbRsgCtiE68lNqLRZ6pIUU0rQUIhotRTpFSsotRQmhK0WkhA7RaSYBcaAsoESgFS0OB3aVEjmmw0FJFpAIpFpqpYVJ0lraOYQZWN4kBSpo6TpXNjjc0EPq1W8CM8fms7EU0tQPNNFHFFIQm00fBFqKe6ho0UlYHFRMg5bqmllBcObZZDmuCMEuxB1MeBu0rq7wFRdKPM/BSyWaal17j5hmGWYjL8QYcRHpP1SODh1C8/jsIJWujI26r7Ri8PFj8P3M0IkZ0I3HoeS8D2oyD6JdHNGS6CYkDVxa4cj19V574+L0zPlHyvFQPwx0PadIPhd1C4w8N8JLg3nS9bi4g5rtTQ4caIWI/JsRiRI/CRPkDKLmt3oHyVxy0554XfpjPdqkcQKB4K8OrDt4mjw6hLE4SXCymOVha8bkFd2U5Zic4xkGX4VtyyF2m+e10tXKOcxu9O/L5hiYBq0Me1paaFEr6F2NwD8RMx72O7lg2a4Ub8+v/wDV5/Kf0d5gcY1k7ixrSdTwPdr8b/JfUcjy04HCYeMm3tYdW3GjQWMZvJ1u5NVpgUKHJFFWaU6Xq242KSkWF3AE/BdLYHP3AC6IW6Hi9q4rW2bHCMuklANADzXQ3J4NPie+/JdEmIp1R0VaJKjt3FTlVmM/bz78GGyOaHXRUfZD/oLXme158LAPNVhqvOpcMWScIbpAwh6LZ7sIDAOS12VnqjG9j8imMGeh+S2dI6KYiJHuqc16owzgXng1I5fJ0C3dFGiN0aPJO2nViwvo9/QKJy6Q8lv6QOKelo3Tup1R5/6Nl6JtyqY9Fulwum0TanpTup0Rg/REvVqFvafJCd1Xojh1hDZQDZ5Kq0WFK06TjWH6vDyVTsWZDVUq7A4o1BZFoOyLVYcApam8ym02d7pqOpn2ggOZ1T2bSSa/fxNcAnqZ9oJamn6wRUzJGRQYQepUQUgAVKgmwWVEkqYCNKbNKi4nalNmIbFvvqTIASIBQWsxpfZ/EKDpmPu6BHGlEUNtkvD0CgQlDuCldqIAUxSoQKe5BCLAUXWBabES3ZUvhL3XqV2oJd40c03UEYkYK1gqbi5w3NqIkaeYUrbyKII2EPF8F06RSo4KsCiTZ+JUWOkgclEkDcrnIvg771B5ICK6myMdwITtccZYeLwFZr1Cr2CoudpdxcgRt5Fc4furo9TiCXCvJQWiIKQY3oFIVSajUg0josLtjhRiOzU7vrQObKPnR+4rdL65LE7Q45seV4uJzHS64i3TGOF8yTsFLN+mt6fHMQ7iCVr9ls3weTYXFzTiR75HANZFHqdQHO9gFx4nBvi/eQOYTv4xWy5e7LjVH4K/jbn2535XG/S3tRjsH2ikDocsnw8mwErnajXmAKX1zIuyeV5XDhsVhcP3czomEu53pFlfKMHhf2gp1EniV91yFrX5Bgr8VRAWTa55eDi6YfI5/pF8ILaoXVDbkqWN0k7UNmj0C1X4dpGxIXNJg33qaLPkphLGsspXKdI4kBUTYhrBTCCevRWTxua8tkBaRyXI/DtdfGiuscquixuhp8YKuEgkYXGSr6LNdhHAeF/zUBDMRs8V0tb1GN1ojExtd4LPmrhMZdrWdHA5reIJ6Loia5pNrNXa4ceKsaKUGgcyp22veCRqRP1SMjAPeFqosY7cuPzVLsJEeEjh8UWulmIZr3NAK2THtYyxufJZZwe+0yPZHc5b+Cek9upuML3f3VonPQLjZhy03rB+CsDT1QXmVxKHyktohQFUpayBwHyUIrbIasDdWCdxO4KRcT0StNNLO8fyIQoWhNDg1J2qgUaq2XV591bqS1KDXAncgJGg7bgppd1ZqKLUNSNSaXaSdqGpRLzy4Ii3UlqUA6wkTSHtc1+ngVLvD1XPfBG6aV096eqXeEmrVPJIOIKaN1frKWs2qg/fdTe6MgabvmmjdS1p94qS5Acmktq0vtRs9Sok0kHBNG6tDvNT7w1S5y9Jrt00u1pNqKfeMI4UolwPBBIGlJrlWCEBwBTQv7x3VIyOvkqy5K1NLtZrJ6J2SOCq1UgYhzRQCaNpOoHglarL7UTKI2FzzTRzKaNuhtk0ASfJdMWExEvuxkDq40FHL8ZBodJdMYRb+p6Lc1cD13UWOGPLZyRqmaB5bq9uXtb70rnfCl1h4TtZ037Vtw8Ta8HzKjLhcPM0NlhY9oNgOFgHqrkrUT2yc+y2LH5RiYntGrTqa6twQvlD8mkMMkobuyQMIql9sc0PaQdwVguydkkGKjDdpZi4eS3jlYxlhMvt8yw2WTNcHafdIX2LLYTh8vgiNW1gBrgsbL+zww07zLT2EAfmvSAAAUFcstrjjMfo0kKKw3Cmw8eIaA8cOBHFYWLwsmGfTiSw8HL0ChNCyaMseLBQeZs9UA7q/E4WTCvp3un3Xciuc0Oi3GdLmuUtRBXOJQ3krBLq5UpUWl5UdYUL33TboLtyo1KmHKYDjvyUDoHAhS74kUapNGyJQCol7em6O8FJo2s1BGoLnL902ljvecbVV0/FImlQe7G4JtMSA81BfH4zV0m6mjja59ZB8JSdITxKCzvChU6/JCpt8yzV/assmxGImnhhjbq0xHR4euy4ML2vzjByMD8UZGB4aWzN1A+V8QvVT4JmMw8kT89xfdyf7s4YhrQP4RsVwt7MYBrHBuZs1uNl7sK/wmqsALPKscP438v7R4PHlsbCO/vxMYb8P2htw8juunOM6wOTta+X2h8b26mFkROra68ivPZbkkGV4v2lmbRSu0Ful8L6s+g6LRmlEwcyTG4d0BbpdE5sgDh0Oyc6sxZ8/b/BtgZ7PhJJMQ7ix7gA3oLHFcGJ7aZzFqecDHAxpFl0ZcG3w3VuI7O4OXECWDGYKFmk0DJINLuRaNOwvkVdHkpZDMfpXDvkkDRqEx94b72N05sXGuOTtnnWFkrFYaKIkA6JIC3Y7g8ea1MD2nzTG4L2qPLMLMy3NqLEFrgRw2I3tcUWWYlr+7nzDDyRkkOa7FahdVzCeF7P9zCWNmwcwq7GIDSCeI2IsKXNZi75e1WYYbDd7iOzmLaeNh9trzoWs/DduMzzCTRg8lBG51O1aQBxJNcFoS4TGufHNHicP3jYiyvaA2ugBB6DmqMThc7xgLHSwnwhrJPaG2xt78D0SZ1bh/GVN+kHMoi5smCw8Jb9trvzKsZ+kbEGrwMB9C4K76Hzc4hjzHE9ou9MrCQOW5P3K79Xu9HeYjK2STuaNTu8G21XsaVmf9Z41yu/SDii8Vh8IxtEkOLuCvi/SBO5rnHK2S1uRFKdh13BVkWS4iJggOTxyQt2cH1bx5kXv8lXLkWIkcZYsufhJtOlskDdVNHLzPJLnGuFXP7e3A0xZRO6Y7e/4fuFruwnbTL5sG+eVksLoxbmEA/AHms2DLs3jwjIvZcQ+QGyTFd1zXDmOT5tj3xtflTmMiNnRh/3nka5f3SZ7S46aGI/SNhY3ObBl0sg5F0obfnVLnP6Rw6PwZewP396UkeXJYWM7JZiGsdhstxWpjSHDuiCTxH4/gs79V+0JaHfRWJuiSDGQQFrmxZXpMR27zWeUHDMw8EYA8JZrN1vuVx/rfnT3ud7eQb4ANr4CleMgxT8iZg5cnmixTC0982I6z1FjjuVjN7N5qcxbE/K8a+Kx43wkBw6q8p/U41rQduc1wzw6fEMxEYNFr4xv5WOBXaP0jytGp2XxEHhUhC5JsTiMjihgMj4GUSyOXDsaDvysG1lTYA5k8Ow8Q1SuJc6NoAJ34m63sFSZbWyx6SH9JBPikyxobfKY3Vctl6PKu1GWZqGtZL3OId/uZdifQ8CvnDuyeIjZRfNHOGglk0Vb1uAQSCOipGR5pHLXdSnTThIwGgfVa2m6+zVRo7eqa8Zl+KxeEfhtWPnDXPAkifEa4cAXbX8VtYfPQXuZi2Mio7PDxuCdrF2PvTZLWxx5p2sqXtDlcTmt9ricXfZcDXqm3P8tdwxLONUrJsucn207tBq9lkHtBghK5ne+EC9e1HySHaLAGVsMcveyPOlrW1uVdJ2YtdYOe4wtlbA001u7vVdGMzTEYR1OwT9FWXteHC+mwO68/jp3YjFOe7i42o1t6OQPwfY3DS0WyYiTWfnf4L1OV4w4vIIJg7xN8DiCvOTXjuxhYwW/ByNJH8NV+al2RxoHe4J5GiTYXyPIrnldV3xnp6cTSYnLnPiNSt2rzC5sDnwedEzfIkcQqoJ3ZfmL2OHg5hZWe4OXL8WMbhnf7NNuCPqu5grNdNPaMkbLEHxu1NPNIu0jdeOynO3NkDX7E/Ir17HieAPbuCLUlYsWtIcLUiLXPC/w10VrXG6K0idIQhAIQhECEIRUZ4mzwOjeLDl5p8Bje5hPiBIIXp1g5w0xYwPvaQfeFqFcZjI5KQs8G/eqQ8hBebV1tja5zH9Eu7ceS5hM4yuYDRbWys7w1vxTVOUWFhCA4NBLjsFUXnqq5XksIvjsmjbuYQeKbmM5cVyCQkcUtRPNOJyjqDQTxU6aBuuIEjgU9R6pxOTrc1lKFUqdZA4o7w9U0vJ0BOgVy96VEYhrWlz5Gtb1caTjtOTs0hC4RjsK7cYmL+sIV605MFsmkeFnHopaz9kqmrQGjqvL2/46cP9XCT+A/cn3l/UcqNhzT26qd0/i9f+rNZ6OUQT9k/JRPlzQLrj96d3+HX/AKHMDxRDx5jYqsxNBO8pJ6gf2Vuo9UtZ6qzzSp1/6p7pp28X9Lf7IdC0iqI6bDZXA+ae3Wle6T9J1/65G4XYh0hfvfjY38gpdyxrvdbR4il0h9c0zL1NJ3yfo6v9cpiZvTAoDDtO0jAaNigaC7e95XaQeAOSfkY/xL4b/VBoCi6QdKKgKBsPk+a6w9reQQJmXuW/Ja78f4nTf65WyvaDU04H8yl7ZP8A+4xA/wCo/wB1094zo35J94z7LD8FO/C/o6cv6obmOKA8OMxI/wCsqQzXGN4Y3ED/AKyrNUf2G/JGuE8WNV7vH/F6s/655cxnmi7uad8rOOmUax8iqDM1zNBZEWj6phbX4LQacOfqNSIw5vwgKzzYfxL4s/64TiOAqPp+6H9lESMAIbDCATZ/ZgWu7RCTsB8UwyIbloKvbgxfFn/XP7WNIDoonerUhimNeX9xGJCA3WC4GhyXRogO2g/AqJgw/Jp+avbgdfk/rgxWGwmMa4+yhs5Fd6PEfvCqbl2AiGkYUabunuJo+W2w8lpezw8g75lP2eE83D1K1PJgxfDm4XYXASPEj8OHODaHi5dFEQYVrSBhomgyd5wJo8Numy7/AGSCv3jkvZIftkjzV7cE6c2TLl0Er2SMllw5bygNB2973auw0BxmYwwji+QALQdhoWtJBOy5Mrc5ucYcs2d3lN9VZlL9NcMp9vQdnJmMzCfBYg+CYOie09eC4vZ5cnzh8TxRY6r6jkVDF4guzd+JaBHJfjaNvEOJXpMdhm5/lbMXAB7ZA2nNA3cOY/Nc8npjtxAbjME3Fs3kaAHVzSwc0c8LsHiAHQSCqdyKz8hxpaO5fvXLqF2Y3C9w8Sw33Ttx5FZa28tiIZcszGSCT3mGvUcivW9nceHM7lx48PVZ+dYc4/Lm41jQZoPDJXEt5H4LIy7Fugl4nYqX0PeykwTi92O+5X9CFxsmbmGEDmEa2j5qzBzd7BTvebsVqXaWOprlNVA7qwG1pk0IQogQhCKFg9sPaosglxeCY18+HIfpc0utl06gOfP4LeSkjE0L4ne69pafiqV8ifn+cNwsmIfFCxkZ3aInaz8Cs7EZ3n2KhlxEL5WYQAHZgaR8t+K7sTFiMNiZIZJZdbHFp8Z5FQ1ztFDETAdNS6SV5cvJPpktizKbexsa7x7y0kn1Ujj87w7TG042m8dGpwHxWmHzg7YiUf8AUpDEYwNoYuWulrfGscooyzGZti5CybMJMG47h+IvSR8lE55nmDLW4h7JWXs7SN10DFYtp2xD760FTMJZzqkmluq8LtP4KaXsiX6z5r3wjPssJcLAkbqNddirW9pcxYblnwxAHKAi/vXPUhADpC+uGoAphjhxI/pCp2x0N7XYx9iGCCahdx3X3q53aPNmOAky5jCRfiB/uuENPIgH+Uf2UiJDv3hv0CL2LsT2lzVkDnHDNa0t95jLr7+KMJ2nxErIIW62E7OnmjDhXU1zXP3bgQQ4AjnpFq0SYgbid49AFNLzVsz7NsQCTiu6F1Qh39eC5MwklsOkl72hu6zutDvMTyxLwPgoufii6/bJQOgOysljNzlYjsWdt3VW3hKFvjE4wXeIcbN7tCFrdY3HT6UpD1UEL5b6UTNJX4edJUOSk2hxo/BNRRqPIlMmuLiUjd8TSidiFPQZ62SgCxs4j4o4i0rIO6ulGkji53zT35F3zUi5p+oAfUpXRUQCzzKC1wF6j80Bwvn8EO33F/FNQNpeSacT6p+McwotPDwt36hNwBA1bHyTjAiXXxS8X2vuCZ0k+GwPNFjkU1Ajq+3t6IBcPr/cmUk1FAe67v7kFxJum/0pgEA8Um6iTrodK/NNQAc4cNP9KduqyGEfy/5QTSqfGHOa8Ma5wrdzjtv06pqCR1WKawfAqQ1Vvp+CGt8I1SXXMt/IKu5O9q3kOuvCKZXU+fJUWDWN9vknbvJKn2C5wrT4vDuT19PJDgaoVZO2rgiDe+CDqGxpQkxIgk8YIiq9QGok9KG6jNPRY4ua6KQ0C36prYHnx6fFVFhDwNg35p+ICwAfiqnSueJGRtDZWjYPOx+I5eisLnaToovrbXdX8FFhkuDTYA9Cs5r+7xDXtJBa4EFdksz45o2tw8kjX+89tUz1srgeLcV38P7cvJ9t3OWtdJh8yiBMeJb+0aOTxx+fFduRZp7JOJGEkfWZfFcWUTMxMMuXTuAZM22E8GyDgVmjvMHiS1wIc004Lecaxr3Ga4RjDHmuCbUT6MgaNgevkuzDyNxeF0F3vbtPms7s9mbP3MjgYZdqPAHp8V3y4N2Xzks3wzz4T9g9FiVvblgf3ExbILY4Fr2novO4/CPwOYSR76Rux3Vp4L1GLa1zWzUCD4X+R6rLzRveYWPVZcw013keSX6E8lx/duawmxW62YJhFj6a645OXQryWHJikFLYbI46XtO43WJdD07wasFSikDjR2K5cJivacODzGxCYdpkK67Y00EKmKQuNFXIBCEKoEIQqr5/2mgiw+eTamgCUCQbdf8AKxScN1HyK9f21wYdHhcWG7gmN3pxH3rxpH8IXO+XKMdWNTvD/aaPgkRhzvqHwUQ0bGgm4WbofJTvyOrEEQXsW/Ep6YujUg3fgnSvfkdOJ6IvJPREfs/NRpHBPyMjpxS7qP8Ah+aBHFdW35qKYTuyOnFIMhHNqNMXVqN0FO7JOnEu7jrVtXkm2FjxbaI+SV9KS8XIp35L04rBh6+qhVgO6hCd+R0YGRVb38ExpvxEgeQtRLiVNsgaKLbPquDqZDfquJ9RSipmWMsI7sgnhzpQ1A/WA9WqqSLTJ/iafQUkXWeFKCQc4AgHYo5qAKeq+SKaE3PYTTWV8VE+RCBoUQU+aBotJPh5qgCYZtdtHqVEFhbqpxB3BtAqj9yIldHl80jxSo9a80yoGHGuJQW7XyUbPVLmgny2SQNuLmn0TsdUUgaUrPQBRuygGweSCVcr5cVGRjHgtcA9vRwtK65qTdJbZc0H1QQAq0MadbtZBYapoFV135qV7oVFb43Cdro4oy0gh7nOpwHKtt91I3oOgAu+qHGhfwU0iaRFGJd3TdZcWkCqB2N9fRZxfqN2tDEMbLpDhYXO7CM/3Zo9F6PHZI5ZTdThkcynN94bhbmawMxeEizOIe/TJgOTuR+K89G8teGlp40V6rs5EMXDicI7929tG/xVtXFmZdKYZQ0nYr3mWZgzGQiCYaiBW/NeAkhfBO6N4p7HEH4LZy7Fubokaac07rnft0et9kbE5zW7seKLTzCxcZhdPeQO3rgTz6Fb8ErcXAJGndcmZR3GyQDcbH0RHj3NLH0RRC78HI0tLHeoUMZGBLqHNVRO0kUs2e1a+GnOHlvfSeIWqXagHjgVigh8YPOlbDinRVG8nTyVlXTWZNocBa7myW0ELDfJbdQNc124DFCVrmOPiXRmxpB1prnjfpeWuPHgrwbVY0aEk1Rw53hRjMmxUP1tGpvqN18yO+6+tEAgg8DsV8ux+FdgsdPhnCu7eQPTl9y4ZxqOa0wQOVpUmGnofkuahx8kgUwK6/JP1JPqgOSSkNwjhyKBN2Oyk55IrS0bVYG/zUdV8kW7m2vVVUQKbWpxrmTZUrHmnR5gI07oECiwCmAQfdtS9okAotsegQIEdEJE2fdP3oQRCD62kNuaam0FWkrA1t7uoVyCTwz6hcf5gFVQQhOkCUgATRc1vqkmBR80Im6JoNd9ET5E/wBlBwrgQfRG9oPFFRQmOKYHmgSd7IpGlAGiOJ+SXJOkz5bII0pJgIJQTY4Ns2wGq8TbVbiTvt8BSCgV0RAGF3CuHM0mYw3Y7HpxSHxQfS0UAhpPVWx4fWbdKxg6mz+Cra10jgGtJPQBX+zaC32hxjaeFDUrJti0xDh2/wDGA+kRKRjwoBIxDyend1+aLwYsB7nk8CQgMhO4Y+uuj/K1qptQ8NB8NkeYTDQW+frsr6wwFuv00/5Q44OjUct/zLLUqimgfvG35NKi6utpupxOhrq6cUiK4/epVUTuDQCSuZsxsKzGbuLTyAIXGCQQvTJ/y5W/9adEh8QkHNbfZ/Huw+NYGuYGSHS7XwHyWGypGOaee4UoXdzJe6y1Hq8/h/21sj4u7c9lkggtd5grjwZ0O08jwWlHMc37Puju8RhTr83N5/d+CxonFstD1Cxk1HqsmxJjlMROzuHqtuWMTQPjP1hS8fh5vEx3mvX4KYSQizuPvVg8tONQII3B3XGditfNovZ8e8AeGTxN/NZTwLWcldMEtUCVe9utuyzmOpwNrQheHBSVpHvDHsTsRSsw+J7uVrkpIw4bcVzFpaVrY9OZBLE2Znx9V1xSB7Aeq89luL7l3dvFsdx8lqiTuX6CduR6rUrFjvHFSVTHahxVg2C2wa8V2wwhjzCLFNB0zN0u6ah/he1WXn+DGNymZrW6pI/2jPUcfmLWcptXzw6Byd/V/hMNDxs4D+Z4USAdxwKACOH4LjVAIBN7+hT1sI/dn+ophrpDxb03cAouaWkg18DaKiNneSZcUAHmmTtVD5KCIdXJSa87+LSD5WgMc7g1x9ArWwPawufBIR1ohFQLgdy8E+YKk0xfWc6/4W3+arGx4J7FGVxdHXO/5P8AKhaQCdI0NbhwND0QhsbnC9TB5F1IQVuOo3QHLwjZRCA8hmmh60hZSJKKkhXaoqxjGFvinYzyLSfwCiokkFUXOjjE8cbJmva4Euk001hHI3vv5BTdho9Q04qIj4j8ly3Q23UiRaCcjQx1a2v822o7UkDdopSqNgVLUSKLtlDe+CKtBNTETzyHxcFRvd0mAeiCwijSQNqPxTBafdI+CbEqUm62btcBfUKLQXnQwFzjtQ4lbeW9ndUbsTmAdFE1tht0a6nohpjuke8DU6/gogBZua5rBh8U9mBLpIg406TiR8FLDZlHNhHSv8Lm7FvX0W5hbdMZWSPQty/B4XANxmaYwwseLZHGLeR8VjYrPcnga57cJN3TOMk+I0ivgFj47HT46XvJnk17o5ALz3aMn6I0g+9M0fIFe7HwY44+3jvntuo9dB267NQvBkgaehY6R34ruZ+kjsZE4O+jZ5q46cMP/wBnL4wBVLTw2XYpmIY8d0HNcCNe4vzWOMv012cft9X/APi92egZqw3Z+YOvazEwfdaol/TS5tiDIIwP+ZP/AGC8rBkOYEWMRg4dhXdwA8PP71P9T+/eZsVjnOe86nFkYFlTgne1B+k6PMsYGZlk+Fw0LzTp8KT3kf8AEb2cOo4r0seXSzSlkJMoFHvGN8BB3BB6EbhfHszwf0fmEuHa4ua13hceJHIr6V+i/NsPmsbuz+Yl/exMc/BSh5BDeLo/hxHxC5+Tx2/Tr4vJyvt6aPIzCQ7F4gNB+rHsfmvRYHC4OLC91HAzSR4tVO1epXi+1cWY9noJsVDI7GQw+KSCT3gw/WaRxA5grTyPNG43ARTwvDo5Ggt34rzWWXT2zjZ6YnaIsj7Q4yKKNrI2Oa0NaKA8IWNIKcei1e0bS3PcS/8A9QteP6Qs14tq9mP/AJeLL/0i1xaQQuqRoBDhzXHS7YAZIK5tNLLri78nzCTA4pr2m2g05v2m8wuvGRCDHPDDcZOph/hO4WS6GSKnOaQDwscV2RzOlYGuJJaKF9FitRpQHgV6DKMU7eNx2HBeYwzySWlaWExJw8zXfVJ3Ui2N/PIDLgWztG8Rs+h4rzT917OFzZoKO7HCj6FeQxEJw+JkhdxY4j4KZJHOFdE/S7dUu4oDt1huNJr7CHNB3XLFJ1XQCtBAUVrYOYYiHuHkax7pKzBupNLmODgaITaWNiGWSA6SCQOIPJaTHh7bCy4cQMUzxCpWjfzXXhn1bTwK6ysWOrigJAhSoK72y+eZ3gnYPNpomxfsjT4y1tDSf82sl87I36HuDTxor2/a7AHEYJmKjA1wbOvm0/2K8VUgFNaB8Vwy9NQnTBrC4MBA4+IKtuLicQC1wNK0t23HyTIsAC1nbSr2xo2EU3qG7KAxYJBEMnqRS6PFzb/9yA4OsOjeBXqgqbjYr0nW2/4T+SubMx4rXt/ESPxUS1lVW3ok0RkVqr1QXhjKsOiIHLWgywsA1Mi24kuI/NVAx8A5ppS1RgbuZ6EhBK4TVSNHUWpgRAWZR6AhVtfG4GnMI50mTFxplenNBLU3kSUKADK4BCCqvIqXdu+y6hx2XrXZdlLiaYB5NkIR9F5W7iHbitpisc8XSeHJ5PQ4tsNNJaTuKK9X9EZWODpBfSUoOS5a7hLL/wBy/wAlOeJfFk8nSi8E7br1hyDL3b97N/WP7Jfq/gTwxM3luCnKJ115WFr492mT4lWEyScSa6UvS/q3g/8A3U33JO7NYUm/a5R8AkzXryeZMLtqbR6kqQhfQHhvpa9CezWHv/zr/wCkJDszCP8AjXf9v/KvKHXkwe4cD4nMA66lAta2/EP7rfPZhl2Mb/8Aj/yj9Wb4YxvxYf7pyhwyed3cSOXIhSb4RQjbfU7r0H6sG9sWwnoGEfmvJPz3KYu0L8pdinO0Sd0Zw2mF3T57K4+/pizX27HaWtc4gNaNzQXo8qwOTYrCslDe923LpCCD6clyvynCljmSF5BFHxUvKdqIz2YwceY5XiZhEJBHPhzJex4OaTvY6Hja3wpjnH1KKDDsruGsY0cAwALy/b7OH4LARYGE06c6nkH6o5fFeZyPtnOx0cpk7+B/nuFwdp86Oc5iZh7jWhrR0ST23lrXpjySlzr5Jd5L3bmxPLXndvQkcj5KknzQHUbB3Xqw9PJnbW3A9s+Gjma0jW0Oo8R1HzWH2kjccscW3UczXH0Nj8aWpgMwY0dzK2gbp3Q+auxOFZiGvjkoxytLSfI816Ln6eXhqvnJPJeiwUvfYVknOqPqF5+eGTDYiSCUVJG4td8Fp5PLTZI/MOC54XSeXH/l7TLM2c6BkYhMjme9vvp8vmt9hkNuLGNaHaQaNOrmvH5Xiu4kcA8N1deHReuila+FkgkLw4bHUSPgrftyxrwfavCmPF6wNgdJ9DuFy9lcydlPanLMbqIbFiWav5SaP3Fes7Q4SPHZbKWAvkq2lovgvnTXECwacNx6rNdsLqv0n21MMWHY99FskckbhXvCv8rB7D9mZcoyDCtzJ4GJou7kHaME2ATzPVec7RZ/jc5zHKRuzCQYSGUAHeWR7GkuPkOHqFou7Q5jOwCEOLBxe2MkfNeHK/8Aen1fFjrDk48wmOJx88pN2816A0Fz8WpE+Ljx3Tba9mtR5L7qNALpwhp5F7ELnKsg2eCuddY9jlUcOZZW/B4jcA+F3Np5ELCkhdg8bJBIPEw6fUdV1ZRiHRYoAH3jwXf2lw477D4sA/tG6XHzClVl4d1TDz2WhdiissECQLRY62rn9K38lzAD/Z3GnfV34qefYMOYMZH7zQA8dRyP5LFwrBLO1heWE8HDkV6CV7ntZHNRduyTo4EcVUeYO6hzUnDQ9zPskj5KCy0sa5dEcliiuIGlYx5VV3NfSuabXGDatY6tkHdE4xvDmncLXhmZNHrGzh7wCwmP3XXBIY3h7fiOq1tlsFxa0m1YyTW3zHFUgtfFrbwI4dFTBOGyV50VrbGnXNEzEwPgkFskaWu9F8wnDsNNJDIQHRvLT4SOBX1E8V4jtLhSzOHvDgO+aH79eB/BZzmyXTAEwNkOB9L2Q6Q3p1MB52VN0Ubvee5pH2SuYYWZsm2Lk0DfbZY4NbWiV2nZ8NdS/in3k17xtr+F9qp2FkcwtdIHgm/HHqN9U2YMBll7dfXugKV4z+m6vc5wApl31NILpSaA01/EFHuHOFmRwIGxAG/wT0y6A0PbtzIWbqLsqe4mwBvzAUixp20gHzAR4xx0HrdhBMnEMZ8HFRUDpbpHdtc53ADa/jWyk3DzOcA5sTgeV0R0Ck1x1eJh35hwNfcrBrLz+1kYAByAb8lvGT9s239KXNa00Y2/NCtlhdI+2zSAcPdbuhb44s7yeZ+i8yvwyj/vFTGUZxVte/1Ei9M1+9nikZJAfD8ybXLowdfyM3m/o/PIwP2slf8Azh/dLuM9B2lm+EoXo9r8MfiPU7IBceACnRis+Rm861vaFpFPxP8AUEGbtGzbvcUPiF6KrJFtJHKkjbSADR/hUvgxX8jJ58Y3tI3bvcUT/KE/pDtK3jJiv6R/Zeg8AFus+fO0Ncw+FrXndToiz5WTz4zbtMzbvcT/ANsf2Uvp7tGOM0/xiH9lvhzxtQPmFLW7w0Dvx34K9EPyr/Hnv1k7RN/30tD/AJP+EN7V5/f70n1iXpLN03fqSdkanl2528gn48T8q/xgN7XZ+3fWNv8Alr53iNftUpeTrLySTxu7X2QmzuvGdp+zWJxmOdj8vh7x0lCWIbG+GodduK3h45g5+Tzc5ptYDPXS5RhZHy+MxgON8xsvOdr85Zist9ka7U58jSd+Q3UsD2VzOSJkWMxYwkDd+7j8Tzf3Ba2G7I5JCLkw8mJfzM0hN/AUFvlI5SbfPcsx7sBiPFZgefG3mPMea9Q5mpoeHNcx27XDgV6iTJ8pkibH9HQRsG/7MaT8SOK81LmTZsY5r4I4cMKZG2NtBgHAnr5rncpt28eNy9RyvZSporUkw4P+FQcOCavjst4eTd0nk8WvbiIm0F8MLpK6cFns7QYyBzmNYGEGnNdZo/Feqa0NYGgUBtSzMZlTMZmsTqIDmEyOHQbV6mwvZwrxcnnMViRmmLMz2hs5ABLGGnVzPQ8lGIT4HENe+CQcdi0iwvo2T9nn4g91g4A2NvEMbt8177J+x2BghdLmEbZ3ng1xtrQrZjE1lk+AOzad7qZFE0jfxO/uuzDZ5mjIRE3MoYIw7kASPkCvs2Z5v2ay0vbluUYGbEcDMYGlvpuN14jFyjE4h87o4tTzZ/ZtAHwpJja55TGXUeKxGY4yZjWuzSeZ7veYCWj7uPyV+C7NZ3mFex5RjpgebYHV8zsve5Hn82SYpr2w4eVl+Jj4m2fR1WCvRZz+kCbFQnD4GKTDMe2nSah3g6hvIeqzcMm8eP7rz2EwuW5c3LsPneJPteFwrYsRh2bgOBcQ0uHQOAIC3My7UYSfKHYPLHNFkNcGCg1m9ivNeSGCy+V1+2Stcd/HRN+tJNihw0r2QSF7drc6uK8eHgz7N19DLz4Tx8ZXSHWrAdlztcNe5oK4GxsvXlHmxqXNWRe+FWpx7PBXKx1ldrHFrg4cRuF6rGBuO7MCSyXRkO9DzXlGOXqMikZiMsxeE+uWEjz2U01tgEHS3yXZCdQFLj37vztdGFdTg1c7Pax2sJa8OHI2t10veRxym6ewHf5LCC2Wn/w2DqCQgxcedGYTtrYuv5qlTzE6sa93WvwVLHclKqdJjZK0KKvY5WalQwqwFIq9j12wvL9uiy9RBXZhpKe08jxWka+Fn7l9O9x2xTkaWSmjfP1XPQK6GHvIqPvs3HmOi1ErvicXRA3usftFl0uYRQPw7QZGEg26tj/laOEfdtVGcYp+ByfF4mNmt0LNYbdXRF/cpl9MyTbyhyDMAKOHB9HgpDJMwr/y5+YXJ+v9Cjhnn0IUm/pAZW+GmB9QvJc3pnhdByjHgG8LJ5UAVX9GY4bHBzeuhNvb/DUCYpLUx2/wgI1RyjzpTmdKl2BxbTvhJx/9MqHs2Iad8PKPPuyu9vb7Ac3P+LVazt5lxdTpS0eYV7E6cmV3Mod+7eD5sKCx1bNcHDnpK2x22yo/8S371JvbHKT/AMRF8U5xOqvPeIWTpJP8PBJ5kLPA9oPk3cL0o7U5O7/fQH5Kbe0WUnYSYb5hXnDqrxgMsYDXTazzc6OyfPZC9sM5yetnYb5BCvOf06q8g3S1xGtgvlabSHXUgrjsLT0s67+oUnOYGihY5AL0fbzaQBo0LIvmKUiCRsDxUu8GkbeiRlANjcp6n7C7vUQb0lSEdkkv/wAKBmfRpoJ6JF7jfCk5YosMLC0BxuudpBzQ7bYdaVW6fNTmadHeAitQ38qUGygufYFDZvmoDekeSlzpo2ucCSCTfXkjvXnhp/NRoIo8qU51dBztTC02L5g0VLvXOO9JEbG1ECwpyppYJHE0dPTYJFx6ptbRJ4fFGlTaxEu0miDfJZ0mS4OR+osdvuWg7LTLDdhFPG9URzUals+nAcswwjaxkRj07DSs7M8E3B4T2nWC1rgCKo7mvzXoj4QbHFVyMZLGY3xhzHCnNduCPNJdXZcrlNV5ceOTUCNIFAeatwbmzvn0792Qwnz3JVOYdnsxwzJ/oqbvGFgMMTiNTHA7izxFcL3Cu7NSQYnAvfFIH3Rcbsg8CCvX+Rv04Tw/6+g4fH4XJclw4hGuaRoNDa+pPksjP+1E+KwrMFhyY43NBmcOLj09FnSOe7TrcTQoX0UTEHDdoXSZT9plLrTIJsqEjtI24ldMkelxAHNUhmpx+S9UeOzSpjAdyqMVJOXaIxQ4Wu54DIiTtQXPQ7vU7pZVrKvD4U92S52p3DyUGyOhlcx92TsurKnd7BK92/7Q16cl3uwkGJbXB3msXKR0xwtcDJA7iuhsgA4qqXLZot4zYva1V3WIbs5vyWLqus3HaJbPEK1r1yRxP40fkuyLCySCxwWLJG5bVjZTsQvS9lpgMxFjiKWLHhWtbR3Xdgn+yYiN0Zo6guWWWP6dscb+1uLjEeJmj+y8jb1VMFCQLszSm5niABsXX8wuKIVIuWTcaQ3HwW14fouMgblyxIzbR6LXw7ryvSeUn5KRWHjf31qhpFrpx7aeK57rlalVbakFWNlMFFTaVYCqwbUwVNBkqyJ+k0qigGjaDdjNxg2rIpO6kDqvdc2HdqhaVZe6sSu9hEWJ23a7dvoVLGwsxGDxMEm7JInNPxBVTTccD+ltV87tLHk/YP4FaZvp8wOVYA0RCQCBtqOyrOU4H/03b/xK3VPoBYCdrBqrU9M43dPuARs0dVjLw4/dWeXJzjJMC4bax18Sg7I8IOD5fmu/xNaRroql3tYa4hrSb8ILuS59WH9O3NyuyLC6RUkt8+CgcggO4mk+SvccwvS0jyJZw+STcXionASBzzyqM7p0+Otd3kUfq82v35/pUT2e2vvx6kFaEWYkhwlgew3wIuwrG4mKhGwFgHLSQAtfj4fo/Izn2yXdnSP+IZX8pUP1ecRtPGf+khbgnF/vWeQvdVT4vuTelzxXBqdGJ+RkyBkOJA8MkdfFC1Pa4ySdTR1tyFOmH5GSxu9jexX1dvmraaGtAPHj5IoXwQGhwvnxWGCbwOqj6CtkxXDa1MtDWjzUHNAdfOuKGiOwSAPLim4bWhpNkbUFQEOHFOthyS41ueA5qXO+aoXoh7GyRljrq+RpHIlMdUQmMDdgwEDqm/xVoJFHlz8kwN6S01uTaLoz5AEeZTFaqquarld3UL5KvQ266pRu70A1V8kFpLeVk9EtTia2UNOp/FMtPeEBx2V4ptZr35WomU3XL1QxtkOLiQb2Kg62gjYkEC64pxpyT1uPA0EhexJ8/VRa7UXbUrNNAi0mNJRqJ3aLVDMNh4Se5w8URd72hgBJ+CuYXGhdb9EprB2NO5GleNTlFb4qNHiFWfCr9BY0EuLr6qqQbtXXHZ6sZ8jDqNjdUxxHSNgFpStFE+Shh2NdDuN6XqnkefLx7ZmLFQub12VOKj04R38tLuxrBsP4gq8ZG04R46BdJluOVw04srcGsMYHErQ3G6x4HGORrhyK2ZBSzfbWK6LEloo7q9ssbuIAKzbU2uIXHLD+O+OTWY2MiwGlWlzQNhXos2ORwojZdDZHHiVxuNdZYv1JsdcjR5qq1KP3wVJjppoYh/ezvf1VIFO2UjxQD4laO+Fv7MLTjdpyx/8AOFmwe4F3A/8Ahk3k9n5rMGfjd3D0XIAr8UfG0eSqUqhASTRVjVJQarFaBAKDwSapRq4B+qAtPFpV90uDAOqYjq1djzurB2Md/szD0fSszKXu8sxUlbtgeR/SVzxk+ytH/MU82NZVifOKvnQWkfOMN7RoDmMZZHiLm18t1M4iaM3JExovjqpaPdgOq/CORSMbXcQD6hYucvqxzmLlinjkZqDmt9XBWRyNJ1CRhadr1WFN2HiJ1GNhI23aoMw8MbjoiYCOjaWK3IuI2O49Qo20cSDY4IcNOw6WFawNIHhCzVUgXvvw3UZMLDMAXxgkiiSu7u26QaScBVVdJummZNlmFc5pELS8HVd1v12TGAgjIcWuOp2/iJXbbdWkMAT0hXdTUcz8Oxzv3TD51aF0AoTdNR//2Q==";
|
|
1226
1228
|
const _hoisted_1$b = { class: "m-0" };
|
|
1227
1229
|
const _hoisted_2$5 = {
|
|
1228
1230
|
class: "pr-2",
|
|
1229
1231
|
size: 16
|
|
1230
1232
|
};
|
|
1231
1233
|
const _hoisted_3$2 = { class: "dt_header_icon h-12 text-lg text-gray-800 cursor-pointer px-3 hover:bg-gray-500 hover:bg-opacity-50 transition-all duration-300 flex items-center" };
|
|
1232
|
-
const _hoisted_4$1 =
|
|
1234
|
+
const _hoisted_4$1 = ["src"];
|
|
1233
1235
|
const _hoisted_5 = { class: "pl-2 text-13" };
|
|
1234
|
-
const _sfc_main$l = /* @__PURE__ */ defineComponent
|
|
1236
|
+
const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
1235
1237
|
__name: "user-info",
|
|
1236
1238
|
setup(__props) {
|
|
1237
1239
|
const { t } = useI18n("UI");
|
|
@@ -1257,11 +1259,11 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent$1({
|
|
|
1257
1259
|
}, {
|
|
1258
1260
|
content: withCtx(() => [
|
|
1259
1261
|
createElementVNode("div", _hoisted_1$b, [
|
|
1260
|
-
unref
|
|
1262
|
+
unref(slots).userInfo ? (openBlock(), createBlock(unref(DtSlotContainer), {
|
|
1261
1263
|
key: 0,
|
|
1262
|
-
template: unref
|
|
1264
|
+
template: unref(slots).userInfo
|
|
1263
1265
|
}, null, 8, ["template"])) : createCommentVNode("", true),
|
|
1264
|
-
unref
|
|
1266
|
+
unref(getShowLoginOut) ? (openBlock(), createElementBlock("div", {
|
|
1265
1267
|
key: 1,
|
|
1266
1268
|
onClick: _cache[0] || (_cache[0] = ($event) => signOut()),
|
|
1267
1269
|
class: "px-4 my-1 leading-9 flex border-gray-200 cursor-pointer hover:bg-gray-100 transition-all duration-300 text-13"
|
|
@@ -1269,7 +1271,7 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent$1({
|
|
|
1269
1271
|
withDirectives(createElementVNode("span", _hoisted_2$5, null, 512), [
|
|
1270
1272
|
[_directive_icon, "ant-design:logout-outlined"]
|
|
1271
1273
|
]),
|
|
1272
|
-
createElementVNode("span", null, toDisplayString(unref
|
|
1274
|
+
createElementVNode("span", null, toDisplayString(unref(t)("LOGIN_OUT")), 1)
|
|
1273
1275
|
])) : createCommentVNode("", true)
|
|
1274
1276
|
])
|
|
1275
1277
|
]),
|
|
@@ -1277,11 +1279,11 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent$1({
|
|
|
1277
1279
|
createElementVNode("div", _hoisted_3$2, [
|
|
1278
1280
|
createVNode(_component_AAvatar, { size: 28 }, {
|
|
1279
1281
|
icon: withCtx(() => [
|
|
1280
|
-
_hoisted_4$1
|
|
1282
|
+
createElementVNode("img", { src: "/node_modules/@dt-frames/ui/es/assets/imgs/header/avatar.png" }, null, 8, _hoisted_4$1)
|
|
1281
1283
|
]),
|
|
1282
1284
|
_: 1
|
|
1283
1285
|
}),
|
|
1284
|
-
createElementVNode("span", _hoisted_5, toDisplayString(unref
|
|
1286
|
+
createElementVNode("span", _hoisted_5, toDisplayString(unref(getUserInfo)?.userNo), 1)
|
|
1285
1287
|
])
|
|
1286
1288
|
]),
|
|
1287
1289
|
_: 1
|
|
@@ -1289,8 +1291,6 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent$1({
|
|
|
1289
1291
|
};
|
|
1290
1292
|
}
|
|
1291
1293
|
});
|
|
1292
|
-
const index$5 = "";
|
|
1293
|
-
const index$4 = "";
|
|
1294
1294
|
var HandlerEnum = /* @__PURE__ */ ((HandlerEnum2) => {
|
|
1295
1295
|
HandlerEnum2[HandlerEnum2["CHANGE_LAYOUT"] = 0] = "CHANGE_LAYOUT";
|
|
1296
1296
|
HandlerEnum2[HandlerEnum2["SHOW_BREADCRUMB"] = 1] = "SHOW_BREADCRUMB";
|
|
@@ -1394,7 +1394,7 @@ const _hoisted_3$1 = /* @__PURE__ */ createElementVNode("div", { class: "dt-menu
|
|
|
1394
1394
|
const _hoisted_4 = [
|
|
1395
1395
|
_hoisted_3$1
|
|
1396
1396
|
];
|
|
1397
|
-
const _sfc_main$k = /* @__PURE__ */ defineComponent
|
|
1397
|
+
const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
1398
1398
|
__name: "menu-type",
|
|
1399
1399
|
setup(__props) {
|
|
1400
1400
|
const { getMenuType, getMenuMode } = useMenu();
|
|
@@ -1444,7 +1444,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent$1({
|
|
|
1444
1444
|
shadow-gray-200`,
|
|
1445
1445
|
`dt-menu-type__item--${item.type}`,
|
|
1446
1446
|
{
|
|
1447
|
-
[`dt-menu-type__item--active`]: unref
|
|
1447
|
+
[`dt-menu-type__item--active`]: unref(getMenuType) === item.type && unref(getMenuMode) === item.mode
|
|
1448
1448
|
}
|
|
1449
1449
|
])
|
|
1450
1450
|
}, _hoisted_4, 10, _hoisted_2$4)
|
|
@@ -1456,10 +1456,8 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent$1({
|
|
|
1456
1456
|
};
|
|
1457
1457
|
}
|
|
1458
1458
|
});
|
|
1459
|
-
const index$3 = "";
|
|
1460
|
-
const index$2 = "";
|
|
1461
1459
|
const _hoisted_1$9 = { class: "flex justify-between mb-5" };
|
|
1462
|
-
const _sfc_main$j = /* @__PURE__ */ defineComponent
|
|
1460
|
+
const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
1463
1461
|
__name: "select",
|
|
1464
1462
|
props: {
|
|
1465
1463
|
event: { type: Number },
|
|
@@ -1484,7 +1482,7 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent$1({
|
|
|
1484
1482
|
const _component_ASelect = Select;
|
|
1485
1483
|
return openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|
1486
1484
|
createElementVNode("span", null, toDisplayString(__props.title), 1),
|
|
1487
|
-
createVNode(_component_ASelect, mergeProps(unref
|
|
1485
|
+
createVNode(_component_ASelect, mergeProps(unref(getBindValue), {
|
|
1488
1486
|
disabled: __props.disabled,
|
|
1489
1487
|
size: "small",
|
|
1490
1488
|
class: "w-32",
|
|
@@ -1495,9 +1493,8 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent$1({
|
|
|
1495
1493
|
};
|
|
1496
1494
|
}
|
|
1497
1495
|
});
|
|
1498
|
-
const index$1 = "";
|
|
1499
1496
|
const _hoisted_1$8 = { class: "flex justify-between mb-5" };
|
|
1500
|
-
const _sfc_main$i = /* @__PURE__ */ defineComponent
|
|
1497
|
+
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
1501
1498
|
__name: "switch",
|
|
1502
1499
|
props: {
|
|
1503
1500
|
event: {
|
|
@@ -1522,17 +1519,17 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent$1({
|
|
|
1522
1519
|
const _component_ASwitch = Switch;
|
|
1523
1520
|
return openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
1524
1521
|
createElementVNode("span", null, toDisplayString(__props.title), 1),
|
|
1525
|
-
createVNode(_component_ASwitch, mergeProps(unref
|
|
1522
|
+
createVNode(_component_ASwitch, mergeProps(unref(getBindValue), {
|
|
1526
1523
|
disabled: __props.disabled,
|
|
1527
|
-
checkedChildren: unref
|
|
1528
|
-
unCheckedChildren: unref
|
|
1524
|
+
checkedChildren: unref(t)("ON"),
|
|
1525
|
+
unCheckedChildren: unref(t)("OFF"),
|
|
1529
1526
|
onChange: handleChange
|
|
1530
1527
|
}), null, 16, ["disabled", "checkedChildren", "unCheckedChildren"])
|
|
1531
1528
|
]);
|
|
1532
1529
|
};
|
|
1533
1530
|
}
|
|
1534
1531
|
});
|
|
1535
|
-
const _sfc_main$h = /* @__PURE__ */ defineComponent
|
|
1532
|
+
const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
1536
1533
|
__name: "feature",
|
|
1537
1534
|
setup(__props) {
|
|
1538
1535
|
const { t } = useI18n("UI");
|
|
@@ -1612,7 +1609,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent$1({
|
|
|
1612
1609
|
key: item.title,
|
|
1613
1610
|
title: item.title,
|
|
1614
1611
|
event: item.event,
|
|
1615
|
-
def: unref
|
|
1612
|
+
def: unref(item.def)
|
|
1616
1613
|
}, null, 8, ["title", "event", "def"]);
|
|
1617
1614
|
}), 64)),
|
|
1618
1615
|
(openBlock(), createElementBlock(Fragment, null, renderList(selectItems, (item) => {
|
|
@@ -1620,7 +1617,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent$1({
|
|
|
1620
1617
|
key: item.title,
|
|
1621
1618
|
title: item.title,
|
|
1622
1619
|
event: item.event,
|
|
1623
|
-
def: unref
|
|
1620
|
+
def: unref(item.def),
|
|
1624
1621
|
options: item.options
|
|
1625
1622
|
}, null, 8, ["title", "event", "def", "options"]);
|
|
1626
1623
|
}), 64))
|
|
@@ -1630,7 +1627,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent$1({
|
|
|
1630
1627
|
});
|
|
1631
1628
|
const _hoisted_1$7 = { class: "mt-5" };
|
|
1632
1629
|
const _hoisted_2$3 = { class: "dt-setting-theme__tips p-3 text-12 bg-gray-100 rounded" };
|
|
1633
|
-
const _sfc_main$g = /* @__PURE__ */ defineComponent
|
|
1630
|
+
const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
1634
1631
|
__name: "setting-theme",
|
|
1635
1632
|
setup(__props) {
|
|
1636
1633
|
const { t } = useI18n("UI");
|
|
@@ -1725,27 +1722,27 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent$1({
|
|
|
1725
1722
|
])
|
|
1726
1723
|
]),
|
|
1727
1724
|
createVNode(_component_ADrawer, {
|
|
1728
|
-
visible:
|
|
1729
|
-
"onUpdate:visible": _cache[1] || (_cache[1] = ($event) =>
|
|
1730
|
-
title: unref
|
|
1725
|
+
visible: visible.value,
|
|
1726
|
+
"onUpdate:visible": _cache[1] || (_cache[1] = ($event) => visible.value = $event),
|
|
1727
|
+
title: unref(t)("PROJECT_SETTING"),
|
|
1731
1728
|
placement: "right",
|
|
1732
1729
|
width: "320"
|
|
1733
1730
|
}, {
|
|
1734
1731
|
default: withCtx(() => [
|
|
1735
1732
|
createVNode(_component_ADivider, null, {
|
|
1736
1733
|
default: withCtx(() => [
|
|
1737
|
-
createTextVNode(toDisplayString(unref
|
|
1734
|
+
createTextVNode(toDisplayString(unref(t)("NAV_MODE")), 1)
|
|
1738
1735
|
]),
|
|
1739
1736
|
_: 1
|
|
1740
1737
|
}),
|
|
1741
|
-
createVNode(unref
|
|
1738
|
+
createVNode(unref(_sfc_main$k)),
|
|
1742
1739
|
createVNode(_component_ADivider, null, {
|
|
1743
1740
|
default: withCtx(() => [
|
|
1744
|
-
createTextVNode(toDisplayString(unref
|
|
1741
|
+
createTextVNode(toDisplayString(unref(t)("PAGE_SHOW")), 1)
|
|
1745
1742
|
]),
|
|
1746
1743
|
_: 1
|
|
1747
1744
|
}),
|
|
1748
|
-
createVNode(unref
|
|
1745
|
+
createVNode(unref(_sfc_main$h)),
|
|
1749
1746
|
createVNode(_component_ADivider),
|
|
1750
1747
|
createElementVNode("div", _hoisted_1$7, [
|
|
1751
1748
|
createVNode(_component_AButton, {
|
|
@@ -1755,7 +1752,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent$1({
|
|
|
1755
1752
|
block: ""
|
|
1756
1753
|
}, {
|
|
1757
1754
|
default: withCtx(() => [
|
|
1758
|
-
createTextVNode(toDisplayString(unref
|
|
1755
|
+
createTextVNode(toDisplayString(unref(t)("COPY")), 1)
|
|
1759
1756
|
]),
|
|
1760
1757
|
_: 1
|
|
1761
1758
|
}),
|
|
@@ -1765,12 +1762,12 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent$1({
|
|
|
1765
1762
|
block: ""
|
|
1766
1763
|
}, {
|
|
1767
1764
|
default: withCtx(() => [
|
|
1768
|
-
createTextVNode(toDisplayString(unref
|
|
1765
|
+
createTextVNode(toDisplayString(unref(t)("RESET")), 1)
|
|
1769
1766
|
]),
|
|
1770
1767
|
_: 1
|
|
1771
1768
|
})
|
|
1772
1769
|
]),
|
|
1773
|
-
createElementVNode("div", _hoisted_2$3, toDisplayString(unref
|
|
1770
|
+
createElementVNode("div", _hoisted_2$3, toDisplayString(unref(t)("DRAWER_TIPS")), 1)
|
|
1774
1771
|
]),
|
|
1775
1772
|
_: 1
|
|
1776
1773
|
}, 8, ["visible", "title"])
|
|
@@ -1779,27 +1776,27 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent$1({
|
|
|
1779
1776
|
}
|
|
1780
1777
|
});
|
|
1781
1778
|
function useSplitMenu(splitType) {
|
|
1782
|
-
const menusRef = ref
|
|
1783
|
-
const { currentRoute } = useRouter
|
|
1779
|
+
const menusRef = ref([]);
|
|
1780
|
+
const { currentRoute } = useRouter();
|
|
1784
1781
|
const { menusMap } = getMenusMap();
|
|
1785
1782
|
const { getIsHorizontal, getSplit } = useMenu();
|
|
1786
1783
|
const throttleHandleSplitLeftMenu = useThrottleFn(handleSplitLeftMenu, 50);
|
|
1787
|
-
const splitNotLeft = computed
|
|
1788
|
-
() => unref
|
|
1784
|
+
const splitNotLeft = computed(
|
|
1785
|
+
() => unref(splitType) !== MenuSplitTye.LEFT && !unref(getIsHorizontal)
|
|
1789
1786
|
);
|
|
1790
|
-
const getSplitLeft = computed
|
|
1791
|
-
() => !unref
|
|
1787
|
+
const getSplitLeft = computed(
|
|
1788
|
+
() => !unref(getSplit) || unref(splitType) !== MenuSplitTye.LEFT
|
|
1792
1789
|
);
|
|
1793
|
-
const getSplitTop = computed
|
|
1794
|
-
() => unref
|
|
1790
|
+
const getSplitTop = computed(
|
|
1791
|
+
() => unref(splitType) === MenuSplitTye.TOP
|
|
1795
1792
|
);
|
|
1796
|
-
const normalType = computed
|
|
1797
|
-
() => !unref
|
|
1793
|
+
const normalType = computed(
|
|
1794
|
+
() => !unref(getSplit) || unref(splitType) === MenuSplitTye.NONE
|
|
1798
1795
|
);
|
|
1799
|
-
watch
|
|
1800
|
-
[() => unref
|
|
1796
|
+
watch(
|
|
1797
|
+
[() => unref(currentRoute)?.path, () => unref(splitType)],
|
|
1801
1798
|
([path]) => {
|
|
1802
|
-
if (unref
|
|
1799
|
+
if (unref(splitNotLeft))
|
|
1803
1800
|
return;
|
|
1804
1801
|
throttleHandleSplitLeftMenu(path);
|
|
1805
1802
|
},
|
|
@@ -1807,25 +1804,25 @@ function useSplitMenu(splitType) {
|
|
|
1807
1804
|
immediate: true
|
|
1808
1805
|
}
|
|
1809
1806
|
);
|
|
1810
|
-
watch
|
|
1807
|
+
watch(
|
|
1811
1808
|
() => getSplit.value,
|
|
1812
1809
|
() => {
|
|
1813
|
-
if (unref
|
|
1810
|
+
if (unref(splitNotLeft))
|
|
1814
1811
|
return;
|
|
1815
1812
|
getMenus2();
|
|
1816
1813
|
}
|
|
1817
1814
|
);
|
|
1818
1815
|
function handleSplitLeftMenu(path) {
|
|
1819
|
-
if (unref
|
|
1816
|
+
if (unref(getSplitLeft))
|
|
1820
1817
|
return;
|
|
1821
1818
|
menusRef.value = menusMap.filter((it) => it.includesPath.includes(path))[0]?.children;
|
|
1822
1819
|
}
|
|
1823
1820
|
async function getMenus2() {
|
|
1824
|
-
if (unref
|
|
1821
|
+
if (unref(normalType)) {
|
|
1825
1822
|
menusRef.value = DtCache.getLocal(CacheKey.MENUS)?.children;
|
|
1826
1823
|
return;
|
|
1827
1824
|
}
|
|
1828
|
-
if (unref
|
|
1825
|
+
if (unref(getSplitTop)) {
|
|
1829
1826
|
menusRef.value = await getShallowMenus();
|
|
1830
1827
|
}
|
|
1831
1828
|
}
|
|
@@ -1945,24 +1942,24 @@ const contentProps = {
|
|
|
1945
1942
|
},
|
|
1946
1943
|
isSplitMenu: Boolean
|
|
1947
1944
|
});
|
|
1948
|
-
const _sfc_main$f = /* @__PURE__ */ defineComponent
|
|
1945
|
+
const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
1949
1946
|
__name: "menu-item-content",
|
|
1950
1947
|
props: contentProps,
|
|
1951
1948
|
setup(__props) {
|
|
1952
1949
|
const { getIsZH, getUiSize } = useHeader();
|
|
1953
1950
|
return (_ctx, _cache) => {
|
|
1954
1951
|
return openBlock(), createElementBlock("span", {
|
|
1955
|
-
class: normalizeClass(["dt-basic-menu-item-content-flex items-center dt-menu-item h-full", unref
|
|
1952
|
+
class: normalizeClass(["dt-basic-menu-item-content-flex items-center dt-menu-item h-full", unref(getUiSize)])
|
|
1956
1953
|
}, [
|
|
1957
1954
|
createElementVNode("i", {
|
|
1958
1955
|
class: normalizeClass(["menu-icon i", _ctx.item.icon])
|
|
1959
1956
|
}, null, 2),
|
|
1960
|
-
createElementVNode("span", null, toDisplayString(unref
|
|
1957
|
+
createElementVNode("span", null, toDisplayString(unref(getIsZH) ? _ctx.item.label : _ctx.item.enLabel), 1)
|
|
1961
1958
|
], 2);
|
|
1962
1959
|
};
|
|
1963
1960
|
}
|
|
1964
1961
|
});
|
|
1965
|
-
const _sfc_main$e = /* @__PURE__ */ defineComponent
|
|
1962
|
+
const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
1966
1963
|
__name: "basic-menu-item",
|
|
1967
1964
|
props: ItemProp,
|
|
1968
1965
|
setup(__props) {
|
|
@@ -1980,7 +1977,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent$1({
|
|
|
1980
1977
|
};
|
|
1981
1978
|
}
|
|
1982
1979
|
});
|
|
1983
|
-
const _sfc_main$d = /* @__PURE__ */ defineComponent
|
|
1980
|
+
const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
1984
1981
|
__name: "basic-sub-menu-item",
|
|
1985
1982
|
props: ItemProp,
|
|
1986
1983
|
setup(__props) {
|
|
@@ -1997,17 +1994,17 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent$1({
|
|
|
1997
1994
|
const _component_BasicSubMenuItem = resolveComponent("BasicSubMenuItem", true);
|
|
1998
1995
|
const _component_ASubMenu = SubMenu;
|
|
1999
1996
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
2000
|
-
!menuHasChildren(unref
|
|
2001
|
-
menuHasChildren(unref
|
|
2002
|
-
class: normalizeClass([unref
|
|
2003
|
-
key: unref
|
|
1997
|
+
!menuHasChildren(unref(item)) && unref(getShowMenu) ? (openBlock(), createBlock(_sfc_main$e, normalizeProps(mergeProps({ key: 0 }, props)), null, 16)) : createCommentVNode("", true),
|
|
1998
|
+
menuHasChildren(unref(item)) && unref(getShowMenu) ? (openBlock(), createBlock(_component_ASubMenu, {
|
|
1999
|
+
class: normalizeClass([unref(theme)]),
|
|
2000
|
+
key: unref(item).id,
|
|
2004
2001
|
popupClassName: "app-top-menu-popup"
|
|
2005
2002
|
}, {
|
|
2006
2003
|
title: withCtx(() => [
|
|
2007
|
-
createVNode(_sfc_main$f, mergeProps(props, { item: unref
|
|
2004
|
+
createVNode(_sfc_main$f, mergeProps(props, { item: unref(item) }), null, 16, ["item"])
|
|
2008
2005
|
]),
|
|
2009
2006
|
default: withCtx(() => [
|
|
2010
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(unref
|
|
2007
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(item).children, (childrenItem) => {
|
|
2011
2008
|
return openBlock(), createBlock(_component_BasicSubMenuItem, mergeProps({
|
|
2012
2009
|
key: childrenItem.id
|
|
2013
2010
|
}, props, { item: childrenItem }), null, 16, ["item"]);
|
|
@@ -2019,7 +2016,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent$1({
|
|
|
2019
2016
|
};
|
|
2020
2017
|
}
|
|
2021
2018
|
});
|
|
2022
|
-
const _sfc_main$c = /* @__PURE__ */ defineComponent
|
|
2019
|
+
const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
2023
2020
|
__name: "basic-menu",
|
|
2024
2021
|
props: BasicMenu,
|
|
2025
2022
|
emits: ["menuClick"],
|
|
@@ -2035,7 +2032,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent$1({
|
|
|
2035
2032
|
beforeClickFn
|
|
2036
2033
|
} = __props;
|
|
2037
2034
|
const { getSplit } = useMenu();
|
|
2038
|
-
const { currentRoute } = useRouter
|
|
2035
|
+
const { currentRoute } = useRouter();
|
|
2039
2036
|
const menuState = reactive({
|
|
2040
2037
|
defaultSelectedKeys: [],
|
|
2041
2038
|
openKeys: [],
|
|
@@ -2047,7 +2044,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent$1({
|
|
|
2047
2044
|
items,
|
|
2048
2045
|
type
|
|
2049
2046
|
);
|
|
2050
|
-
watch
|
|
2047
|
+
watch(
|
|
2051
2048
|
() => currentRoute.value.path,
|
|
2052
2049
|
(val) => {
|
|
2053
2050
|
if (val === "/")
|
|
@@ -2060,7 +2057,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent$1({
|
|
|
2060
2057
|
);
|
|
2061
2058
|
async function handleMenuChange(path) {
|
|
2062
2059
|
setOpenKeys(path);
|
|
2063
|
-
if (isHorizontal && unref
|
|
2060
|
+
if (isHorizontal && unref(getSplit)) {
|
|
2064
2061
|
const parentPath = getBreadCrumb(path, items);
|
|
2065
2062
|
menuState.selectedKeys = [parentPath?.[0]?.url];
|
|
2066
2063
|
} else {
|
|
@@ -2072,10 +2069,10 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent$1({
|
|
|
2072
2069
|
}
|
|
2073
2070
|
}
|
|
2074
2071
|
const { getCollapsed } = useMenu();
|
|
2075
|
-
const getInlineCollapsed = computed
|
|
2076
|
-
const isInline = unref
|
|
2072
|
+
const getInlineCollapsed = computed(() => {
|
|
2073
|
+
const isInline = unref(mode) === MenuMode.INLINE;
|
|
2077
2074
|
if (isInline) {
|
|
2078
|
-
return mixSider ? false : unref
|
|
2075
|
+
return mixSider ? false : unref(getCollapsed);
|
|
2079
2076
|
}
|
|
2080
2077
|
return false;
|
|
2081
2078
|
});
|
|
@@ -2100,9 +2097,9 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent$1({
|
|
|
2100
2097
|
mode: _ctx.mode,
|
|
2101
2098
|
collapsible: "",
|
|
2102
2099
|
onClick: handleMenuClick,
|
|
2103
|
-
onOpenChange: unref
|
|
2104
|
-
collapsed: unref
|
|
2105
|
-
class: normalizeClass(unref
|
|
2100
|
+
onOpenChange: unref(handleOpenChange),
|
|
2101
|
+
collapsed: unref(getInlineCollapsed),
|
|
2102
|
+
class: normalizeClass(unref(getSplit) ? "dt-split-menu" : "")
|
|
2106
2103
|
}, {
|
|
2107
2104
|
default: withCtx(() => [
|
|
2108
2105
|
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.items, (item) => {
|
|
@@ -2119,7 +2116,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent$1({
|
|
|
2119
2116
|
};
|
|
2120
2117
|
}
|
|
2121
2118
|
});
|
|
2122
|
-
const _sfc_main$b = defineComponent
|
|
2119
|
+
const _sfc_main$b = defineComponent({
|
|
2123
2120
|
name: "LayoutMenu",
|
|
2124
2121
|
props: {
|
|
2125
2122
|
theme: String,
|
|
@@ -2148,22 +2145,22 @@ const _sfc_main$b = defineComponent$1({
|
|
|
2148
2145
|
menusRef
|
|
2149
2146
|
} = useSplitMenu(toRef(props, "splitType"));
|
|
2150
2147
|
const slots = getParentSlots(null, "dt-theme");
|
|
2151
|
-
const getComputedTheme = computed
|
|
2152
|
-
const getComputedMenuMode = computed
|
|
2153
|
-
const getIsShowLogo = computed
|
|
2154
|
-
const getUseScroll = computed
|
|
2155
|
-
return !unref
|
|
2148
|
+
const getComputedTheme = computed(() => props.theme || unref(getMenuTheme));
|
|
2149
|
+
const getComputedMenuMode = computed(() => props.menuMode || unref(getMenuMode));
|
|
2150
|
+
const getIsShowLogo = computed(() => unref(getShowLogo) && unref(getIsSidebarType));
|
|
2151
|
+
const getUseScroll = computed(() => {
|
|
2152
|
+
return !unref(getIsHorizontal) && (unref(getIsSidebarType) || props.splitType === MenuSplitTye.LEFT || props.splitType === MenuSplitTye.NONE);
|
|
2156
2153
|
});
|
|
2157
|
-
const getLogoClass = computed
|
|
2158
|
-
const getMenuProps = computed
|
|
2159
|
-
const menus = unref
|
|
2154
|
+
const getLogoClass = computed(() => [`dt-menu-logo`, unref(getComputedTheme)]);
|
|
2155
|
+
const getMenuProps = computed(() => {
|
|
2156
|
+
const menus = unref(menusRef);
|
|
2160
2157
|
return {
|
|
2161
2158
|
menus,
|
|
2162
2159
|
beforeClickFn: beforeMenuClickFn,
|
|
2163
2160
|
items: menus,
|
|
2164
|
-
theme: unref
|
|
2165
|
-
collapse: unref
|
|
2166
|
-
collapsedShowTitle: unref
|
|
2161
|
+
theme: unref(getComputedTheme),
|
|
2162
|
+
collapse: unref(getCollapsed),
|
|
2163
|
+
collapsedShowTitle: unref(getCollapsedShowTitle),
|
|
2167
2164
|
onMenuClick: handleMenuClick
|
|
2168
2165
|
};
|
|
2169
2166
|
});
|
|
@@ -2183,26 +2180,26 @@ const _sfc_main$b = defineComponent$1({
|
|
|
2183
2180
|
return createVNode(DtSlotContainer, {
|
|
2184
2181
|
"template": slots.logo,
|
|
2185
2182
|
"data": {
|
|
2186
|
-
theme: unref
|
|
2187
|
-
collapsed: unref
|
|
2183
|
+
theme: unref(getComputedTheme),
|
|
2184
|
+
collapsed: unref(getCollapsed)
|
|
2188
2185
|
}
|
|
2189
2186
|
}, null);
|
|
2190
2187
|
}
|
|
2191
|
-
if (!unref
|
|
2188
|
+
if (!unref(getIsShowLogo))
|
|
2192
2189
|
return null;
|
|
2193
2190
|
return createVNode(_sfc_main$v, {
|
|
2194
|
-
"showTitle": !unref
|
|
2195
|
-
"class": unref
|
|
2196
|
-
"theme": unref
|
|
2191
|
+
"showTitle": !unref(getCollapsed),
|
|
2192
|
+
"class": unref(getLogoClass),
|
|
2193
|
+
"theme": unref(getComputedTheme)
|
|
2197
2194
|
}, null);
|
|
2198
2195
|
}
|
|
2199
2196
|
function renderFooter() {
|
|
2200
|
-
if (unref
|
|
2197
|
+
if (unref(getMenuType) === MenuType.SIDE || unref(getMenuType) === MenuType.MIX && props.splitType === 2) {
|
|
2201
2198
|
return slots.menuFooter ? createVNode(DtSlotContainer, {
|
|
2202
2199
|
"template": slots.menuFooter,
|
|
2203
2200
|
"data": {
|
|
2204
|
-
theme: unref
|
|
2205
|
-
collapsed: unref
|
|
2201
|
+
theme: unref(getComputedTheme),
|
|
2202
|
+
collapsed: unref(getCollapsed)
|
|
2206
2203
|
}
|
|
2207
2204
|
}, null) : null;
|
|
2208
2205
|
}
|
|
@@ -2212,19 +2209,19 @@ const _sfc_main$b = defineComponent$1({
|
|
|
2212
2209
|
const {
|
|
2213
2210
|
menus,
|
|
2214
2211
|
...menuProps
|
|
2215
|
-
} = unref
|
|
2212
|
+
} = unref(getMenuProps);
|
|
2216
2213
|
if (!menus || !menus.length)
|
|
2217
2214
|
return null;
|
|
2218
2215
|
return createVNode(_sfc_main$c, mergeProps(menuProps, {
|
|
2219
2216
|
"isHorizontal": props.isHorizontal,
|
|
2220
|
-
"type": unref
|
|
2221
|
-
"showLogo": unref
|
|
2222
|
-
"mode": unref
|
|
2217
|
+
"type": unref(getMenuType),
|
|
2218
|
+
"showLogo": unref(getIsShowLogo),
|
|
2219
|
+
"mode": unref(getComputedMenuMode),
|
|
2223
2220
|
"items": menus
|
|
2224
2221
|
}), null);
|
|
2225
2222
|
}
|
|
2226
2223
|
return () => {
|
|
2227
|
-
return createVNode(Fragment, null, [renderHeader(), unref
|
|
2224
|
+
return createVNode(Fragment, null, [renderHeader(), unref(getUseScroll) ? createVNode(DtScrollContainer, null, {
|
|
2228
2225
|
default: () => renderMenu()
|
|
2229
2226
|
}) : renderMenu(), renderFooter()]);
|
|
2230
2227
|
};
|
|
@@ -2235,7 +2232,7 @@ const _hoisted_2$2 = {
|
|
|
2235
2232
|
key: 0,
|
|
2236
2233
|
class: "flex-1 h-full min-w-0 items-center"
|
|
2237
2234
|
};
|
|
2238
|
-
const _sfc_main$a = /* @__PURE__ */ defineComponent
|
|
2235
|
+
const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
2239
2236
|
__name: "index",
|
|
2240
2237
|
props: {
|
|
2241
2238
|
fixed: Boolean
|
|
@@ -2256,14 +2253,14 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent$1({
|
|
|
2256
2253
|
getShowSearch,
|
|
2257
2254
|
getShowUiSize
|
|
2258
2255
|
} = useHeader();
|
|
2259
|
-
const getSplitType = computed
|
|
2260
|
-
return unref
|
|
2256
|
+
const getSplitType = computed(() => {
|
|
2257
|
+
return unref(getSplit) ? MenuSplitTye.TOP : MenuSplitTye.NONE;
|
|
2261
2258
|
});
|
|
2262
|
-
const getMenuMode = computed
|
|
2263
|
-
return unref
|
|
2259
|
+
const getMenuMode = computed(() => {
|
|
2260
|
+
return unref(getSplit) ? MenuMode.HORIZONTAL : null;
|
|
2264
2261
|
});
|
|
2265
|
-
const getHeaderCls = computed
|
|
2266
|
-
let theme = unref
|
|
2262
|
+
const getHeaderCls = computed(() => {
|
|
2263
|
+
let theme = unref(getHeaderTheme);
|
|
2267
2264
|
let cls = "dt-header flex p-0 items-center justify-between ";
|
|
2268
2265
|
if (props.fixed) {
|
|
2269
2266
|
cls += "fixed top-0 left-0 w-full z-10 ";
|
|
@@ -2274,45 +2271,45 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent$1({
|
|
|
2274
2271
|
return (_ctx, _cache) => {
|
|
2275
2272
|
const _component_ALayoutHeader = LayoutHeader;
|
|
2276
2273
|
return openBlock(), createBlock(_component_ALayoutHeader, {
|
|
2277
|
-
class: normalizeClass([unref
|
|
2274
|
+
class: normalizeClass([unref(getHeaderCls), "flex items-center justify-between"])
|
|
2278
2275
|
}, {
|
|
2279
2276
|
default: withCtx(() => [
|
|
2280
2277
|
createElementVNode("div", _hoisted_1$6, [
|
|
2281
|
-
unref
|
|
2278
|
+
unref(getShowHeaderLogo) ? (openBlock(), createBlock(unref(_sfc_main$v), {
|
|
2282
2279
|
key: 0,
|
|
2283
|
-
theme: unref
|
|
2280
|
+
theme: unref(getHeaderTheme),
|
|
2284
2281
|
class: "dt-header-logo"
|
|
2285
2282
|
}, null, 8, ["theme"])) : createCommentVNode("", true),
|
|
2286
|
-
unref
|
|
2283
|
+
unref(getShowHeaderTrigger) && !unref(getSplit) ? (openBlock(), createBlock(unref(_sfc_main$u), {
|
|
2287
2284
|
key: 1,
|
|
2288
|
-
theme: unref
|
|
2285
|
+
theme: unref(getHeaderTheme)
|
|
2289
2286
|
}, null, 8, ["theme"])) : createCommentVNode("", true),
|
|
2290
|
-
unref
|
|
2287
|
+
unref(getShowBread) ? (openBlock(), createBlock(unref(_sfc_main$t), { key: 2 })) : createCommentVNode("", true)
|
|
2291
2288
|
]),
|
|
2292
|
-
unref
|
|
2289
|
+
unref(getShowTopMenu) ? (openBlock(), createElementBlock("div", _hoisted_2$2, [
|
|
2293
2290
|
createVNode(_sfc_main$b, {
|
|
2294
2291
|
isHorizontal: true,
|
|
2295
|
-
theme: unref
|
|
2296
|
-
splitType: unref
|
|
2297
|
-
menuMode: unref
|
|
2292
|
+
theme: unref(getHeaderTheme),
|
|
2293
|
+
splitType: unref(getSplitType),
|
|
2294
|
+
menuMode: unref(getMenuMode)
|
|
2298
2295
|
}, null, 8, ["theme", "splitType", "menuMode"])
|
|
2299
2296
|
])) : createCommentVNode("", true),
|
|
2300
2297
|
createElementVNode("div", {
|
|
2301
2298
|
class: "dt-header-action flex items-center",
|
|
2302
2299
|
style: normalizeStyle({
|
|
2303
|
-
"padding-right": unref
|
|
2300
|
+
"padding-right": unref(getShowSettingTheme) ? "" : "20px"
|
|
2304
2301
|
})
|
|
2305
2302
|
}, [
|
|
2306
|
-
unref
|
|
2307
|
-
unref
|
|
2308
|
-
unref
|
|
2309
|
-
unref
|
|
2310
|
-
unref
|
|
2303
|
+
unref(getShowSearch) ? (openBlock(), createBlock(unref(_sfc_main$s), { key: 0 })) : createCommentVNode("", true),
|
|
2304
|
+
unref(getShowNotice) ? (openBlock(), createBlock(unref(_sfc_main$n), { key: 1 })) : createCommentVNode("", true),
|
|
2305
|
+
unref(getShowUiSize) ? (openBlock(), createBlock(unref(_sfc_main$m), { key: 2 })) : createCommentVNode("", true),
|
|
2306
|
+
unref(getShowFullScreen) ? (openBlock(), createBlock(unref(_sfc_main$w), { key: 3 })) : createCommentVNode("", true),
|
|
2307
|
+
unref(getShowLocale) ? (openBlock(), createBlock(unref(_sfc_main$r), {
|
|
2311
2308
|
key: 4,
|
|
2312
2309
|
reload: true
|
|
2313
2310
|
})) : createCommentVNode("", true),
|
|
2314
|
-
createVNode(unref
|
|
2315
|
-
unref
|
|
2311
|
+
createVNode(unref(_sfc_main$l)),
|
|
2312
|
+
unref(getShowSettingTheme) ? (openBlock(), createBlock(unref(_sfc_main$g), { key: 5 })) : createCommentVNode("", true)
|
|
2316
2313
|
], 4)
|
|
2317
2314
|
]),
|
|
2318
2315
|
_: 1
|
|
@@ -2347,7 +2344,7 @@ function useTrigger() {
|
|
|
2347
2344
|
});
|
|
2348
2345
|
return { getTriggerAttr, getShowTrigger };
|
|
2349
2346
|
}
|
|
2350
|
-
const _sfc_main$9 = /* @__PURE__ */ defineComponent
|
|
2347
|
+
const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
2351
2348
|
__name: "sider-trigger",
|
|
2352
2349
|
props: {
|
|
2353
2350
|
type: {
|
|
@@ -2360,44 +2357,44 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent$1({
|
|
|
2360
2357
|
return (_ctx, _cache) => {
|
|
2361
2358
|
return openBlock(), createElementBlock("div", {
|
|
2362
2359
|
onClick: _cache[0] || (_cache[0] = withModifiers(
|
|
2363
|
-
(...args) => unref
|
|
2360
|
+
(...args) => unref(toggleCollapsed) && unref(toggleCollapsed)(...args),
|
|
2364
2361
|
["stop"]
|
|
2365
2362
|
))
|
|
2366
2363
|
}, [
|
|
2367
2364
|
createElementVNode("i", {
|
|
2368
|
-
class: normalizeClass(["i", unref
|
|
2365
|
+
class: normalizeClass(["i", unref(getCollapsed) ? "ant-design:double-right-outlined" : "ant-design:double-left-outlined"])
|
|
2369
2366
|
}, null, 2)
|
|
2370
2367
|
]);
|
|
2371
2368
|
};
|
|
2372
2369
|
}
|
|
2373
2370
|
});
|
|
2374
|
-
const _sfc_main$8 = /* @__PURE__ */ defineComponent
|
|
2371
|
+
const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
2375
2372
|
__name: "drag-bar",
|
|
2376
2373
|
setup(__props) {
|
|
2377
2374
|
const { getCollapsed, getCanDrag, getMenuWidth } = useMenu();
|
|
2378
|
-
const getDragBarStyle = computed
|
|
2379
|
-
if (!unref
|
|
2380
|
-
return { left: `${unref
|
|
2375
|
+
const getDragBarStyle = computed(() => {
|
|
2376
|
+
if (!unref(getCollapsed)) {
|
|
2377
|
+
return { left: `${unref(getMenuWidth)}px` };
|
|
2381
2378
|
}
|
|
2382
2379
|
return {};
|
|
2383
2380
|
});
|
|
2384
|
-
const getClass = computed
|
|
2381
|
+
const getClass = computed(() => {
|
|
2385
2382
|
return [
|
|
2386
2383
|
"dt-darg-bar",
|
|
2387
2384
|
{
|
|
2388
|
-
"dt-darg-bar--hide": !unref
|
|
2385
|
+
"dt-darg-bar--hide": !unref(getCanDrag)
|
|
2389
2386
|
}
|
|
2390
2387
|
];
|
|
2391
2388
|
});
|
|
2392
2389
|
return (_ctx, _cache) => {
|
|
2393
2390
|
return openBlock(), createElementBlock("div", {
|
|
2394
|
-
class: normalizeClass(unref
|
|
2395
|
-
style: normalizeStyle(unref
|
|
2391
|
+
class: normalizeClass(unref(getClass)),
|
|
2392
|
+
style: normalizeStyle(unref(getDragBarStyle))
|
|
2396
2393
|
}, null, 6);
|
|
2397
2394
|
};
|
|
2398
2395
|
}
|
|
2399
2396
|
});
|
|
2400
|
-
const _sfc_main$7 = /* @__PURE__ */ defineComponent
|
|
2397
|
+
const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
2401
2398
|
__name: "index",
|
|
2402
2399
|
setup(__props) {
|
|
2403
2400
|
const {
|
|
@@ -2459,41 +2456,40 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent$1({
|
|
|
2459
2456
|
const renderTrigger = h(_sfc_main$9);
|
|
2460
2457
|
return (_ctx, _cache) => {
|
|
2461
2458
|
const _component_ALayoutSider = LayoutSider;
|
|
2462
|
-
return openBlock(), createElementBlock(Fragment, null, [unref
|
|
2459
|
+
return openBlock(), createElementBlock(Fragment, null, [unref(getMenuFixed) ? withDirectives((openBlock(), createElementBlock("div", {
|
|
2463
2460
|
key: 0,
|
|
2464
|
-
style: normalizeStyle(unref
|
|
2465
|
-
}, null, 4)), [[vShow, unref
|
|
2461
|
+
style: normalizeStyle(unref(hiddenDomStyle))
|
|
2462
|
+
}, null, 4)), [[vShow, unref(showClassSideBarRef)]]) : createCommentVNode("", true), withDirectives(createVNode(_component_ALayoutSider, mergeProps({
|
|
2466
2463
|
ref_key: "sideRef",
|
|
2467
2464
|
ref: sideRef,
|
|
2468
2465
|
collapsible: "",
|
|
2469
2466
|
breakpoint: "lg",
|
|
2470
|
-
class: unref
|
|
2471
|
-
width: unref
|
|
2472
|
-
collapsed: unref
|
|
2473
|
-
collapsedWidth: unref
|
|
2474
|
-
onBreakpoint: unref
|
|
2475
|
-
theme: unref
|
|
2476
|
-
trigger: unref
|
|
2477
|
-
}, unref
|
|
2467
|
+
class: unref(getSiderClass),
|
|
2468
|
+
width: unref(getMenuWidth),
|
|
2469
|
+
collapsed: unref(getCollapsed),
|
|
2470
|
+
collapsedWidth: unref(getCollapsedWidth),
|
|
2471
|
+
onBreakpoint: unref(onBreakPointChange),
|
|
2472
|
+
theme: unref(getMenuTheme),
|
|
2473
|
+
trigger: unref(renderTrigger)
|
|
2474
|
+
}, unref(getTriggerAttr)), {
|
|
2478
2475
|
default: withCtx(() => [createVNode(_sfc_main$b, {
|
|
2479
|
-
theme: unref
|
|
2480
|
-
menuMode: unref
|
|
2481
|
-
splitType: unref
|
|
2476
|
+
theme: unref(getMenuTheme),
|
|
2477
|
+
menuMode: unref(getMode),
|
|
2478
|
+
splitType: unref(getSplitType)
|
|
2482
2479
|
}, null, 8, ["theme", "menuMode", "splitType"]), createVNode(_sfc_main$8, {
|
|
2483
2480
|
ref_key: "dragBarRef",
|
|
2484
2481
|
ref: dragBarRef
|
|
2485
2482
|
}, null, 512)]),
|
|
2486
2483
|
_: 1
|
|
2487
|
-
}, 16, ["class", "width", "collapsed", "collapsedWidth", "onBreakpoint", "theme", "trigger"]), [[vShow, unref
|
|
2484
|
+
}, 16, ["class", "width", "collapsed", "collapsedWidth", "onBreakpoint", "theme", "trigger"]), [[vShow, unref(showClassSideBarRef)]])], 64);
|
|
2488
2485
|
};
|
|
2489
2486
|
}
|
|
2490
2487
|
});
|
|
2491
|
-
const index = "";
|
|
2492
2488
|
const _hoisted_1$5 = /* @__PURE__ */ createElementVNode("i", { class: "block i ic:baseline-autorenew" }, null, -1);
|
|
2493
2489
|
const _hoisted_2$1 = [
|
|
2494
2490
|
_hoisted_1$5
|
|
2495
2491
|
];
|
|
2496
|
-
const _sfc_main$6 = /* @__PURE__ */ defineComponent
|
|
2492
|
+
const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
2497
2493
|
__name: "TabRedo",
|
|
2498
2494
|
setup(__props) {
|
|
2499
2495
|
const tabStore = useRouteReuseStore();
|
|
@@ -2510,22 +2506,22 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent$1({
|
|
|
2510
2506
|
}
|
|
2511
2507
|
});
|
|
2512
2508
|
function useTabDropdown() {
|
|
2513
|
-
const router = useRouter
|
|
2509
|
+
const router = useRouter();
|
|
2514
2510
|
const { currentRoute } = router;
|
|
2515
2511
|
const tabStore = useRouteReuseStore();
|
|
2516
2512
|
const state = reactive({
|
|
2517
2513
|
current: null,
|
|
2518
2514
|
currentIndex: 0
|
|
2519
2515
|
});
|
|
2520
|
-
const getDropMenuList = computed
|
|
2516
|
+
const getDropMenuList = computed(() => {
|
|
2521
2517
|
const { t } = useI18n("UI");
|
|
2522
|
-
const { path, meta } = unref
|
|
2518
|
+
const { path, meta } = unref(currentRoute);
|
|
2523
2519
|
const curItem = state.current;
|
|
2524
2520
|
const isCurItem = curItem ? curItem.path === path : false;
|
|
2525
|
-
const
|
|
2526
|
-
const closeLeftDisabled =
|
|
2521
|
+
const index = state.currentIndex;
|
|
2522
|
+
const closeLeftDisabled = index === 0 || !isCurItem;
|
|
2527
2523
|
const disabled = tabStore.getTabList.length === 1;
|
|
2528
|
-
const closeRightDisabled = !isCurItem ||
|
|
2524
|
+
const closeRightDisabled = !isCurItem || index === tabStore.getTabList.length - 1 && tabStore.getLastDragEndIndex >= 0;
|
|
2529
2525
|
const dropMenuList = [
|
|
2530
2526
|
{
|
|
2531
2527
|
icon: "ic:baseline-close",
|
|
@@ -2565,10 +2561,10 @@ function useTabDropdown() {
|
|
|
2565
2561
|
});
|
|
2566
2562
|
function handleContext(e) {
|
|
2567
2563
|
e?.preventDefault();
|
|
2568
|
-
const { path } = unref
|
|
2569
|
-
const
|
|
2570
|
-
state.current = unref
|
|
2571
|
-
state.currentIndex =
|
|
2564
|
+
const { path } = unref(currentRoute);
|
|
2565
|
+
const index = tabStore.getTabList.findIndex((tab) => tab.path === path);
|
|
2566
|
+
state.current = unref(currentRoute);
|
|
2567
|
+
state.currentIndex = index;
|
|
2572
2568
|
}
|
|
2573
2569
|
function handleMenuEvent(item) {
|
|
2574
2570
|
item.onClick?.();
|
|
@@ -2584,7 +2580,7 @@ const _hoisted_2 = [
|
|
|
2584
2580
|
_hoisted_1$4
|
|
2585
2581
|
];
|
|
2586
2582
|
const _hoisted_3 = { class: "text-13" };
|
|
2587
|
-
const _sfc_main$5 = /* @__PURE__ */ defineComponent
|
|
2583
|
+
const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
2588
2584
|
__name: "TabContent",
|
|
2589
2585
|
setup(__props) {
|
|
2590
2586
|
const { getDropMenuList, handleContext, handleMenuEvent } = useTabDropdown();
|
|
@@ -2601,10 +2597,10 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent$1({
|
|
|
2601
2597
|
overlay: withCtx(() => [
|
|
2602
2598
|
createVNode(_component_AMenu, null, {
|
|
2603
2599
|
default: withCtx(() => [
|
|
2604
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(unref
|
|
2605
|
-
return openBlock(), createElementBlock(Fragment, { key:
|
|
2600
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(getDropMenuList), (item, index) => {
|
|
2601
|
+
return openBlock(), createElementBlock(Fragment, { key: index }, [
|
|
2606
2602
|
createVNode(_component_AMenuItem, {
|
|
2607
|
-
onClick: ($event) => unref
|
|
2603
|
+
onClick: ($event) => unref(handleMenuEvent)(item),
|
|
2608
2604
|
disabled: item.disabled
|
|
2609
2605
|
}, {
|
|
2610
2606
|
default: withCtx(() => [
|
|
@@ -2616,7 +2612,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent$1({
|
|
|
2616
2612
|
_: 2
|
|
2617
2613
|
}, 1032, ["onClick", "disabled"]),
|
|
2618
2614
|
item.divider ? (openBlock(), createBlock(_component_AMenuDivider, {
|
|
2619
|
-
key: `d-${
|
|
2615
|
+
key: `d-${index}`
|
|
2620
2616
|
})) : createCommentVNode("", true)
|
|
2621
2617
|
], 64);
|
|
2622
2618
|
}), 128))
|
|
@@ -2626,7 +2622,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent$1({
|
|
|
2626
2622
|
]),
|
|
2627
2623
|
default: withCtx(() => [
|
|
2628
2624
|
createElementVNode("span", {
|
|
2629
|
-
onClick: _cache[0] || (_cache[0] = (...args) => unref
|
|
2625
|
+
onClick: _cache[0] || (_cache[0] = (...args) => unref(handleContext) && unref(handleContext)(...args)),
|
|
2630
2626
|
class: "inline-block w-9 h-9 leading-9 -mt-0.5 text-zinc-600 text-center cursor-pointer border-l border-zinc-300 hover:text-zinc-900"
|
|
2631
2627
|
}, _hoisted_2)
|
|
2632
2628
|
]),
|
|
@@ -2636,9 +2632,9 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent$1({
|
|
|
2636
2632
|
}
|
|
2637
2633
|
});
|
|
2638
2634
|
function initAffixTabs() {
|
|
2639
|
-
const affixList = ref
|
|
2635
|
+
const affixList = ref([]);
|
|
2640
2636
|
const tabStore = useRouteReuseStore();
|
|
2641
|
-
const router = useRouter
|
|
2637
|
+
const router = useRouter();
|
|
2642
2638
|
const filterAffixTabs = (routes = []) => {
|
|
2643
2639
|
return routes && routes.reduce((tabs, route) => {
|
|
2644
2640
|
if (route.meta && route.meta.affix) {
|
|
@@ -2667,11 +2663,11 @@ function initAffixTabs() {
|
|
|
2667
2663
|
}
|
|
2668
2664
|
function useSortable(el, options) {
|
|
2669
2665
|
function initSortable() {
|
|
2670
|
-
nextTick
|
|
2666
|
+
nextTick(async () => {
|
|
2671
2667
|
if (!el)
|
|
2672
2668
|
return;
|
|
2673
2669
|
const Sortable = (await import("sortablejs")).default;
|
|
2674
|
-
Sortable.create(unref
|
|
2670
|
+
Sortable.create(unref(el), {
|
|
2675
2671
|
animation: 500,
|
|
2676
2672
|
delay: 400,
|
|
2677
2673
|
delayOnTouchOnly: true,
|
|
@@ -2684,8 +2680,8 @@ function useSortable(el, options) {
|
|
|
2684
2680
|
function useTabsDrag(affixList) {
|
|
2685
2681
|
const tabStore = useRouteReuseStore();
|
|
2686
2682
|
const { getCanDrag } = useMultipleTab();
|
|
2687
|
-
nextTick
|
|
2688
|
-
if (!unref
|
|
2683
|
+
nextTick(() => {
|
|
2684
|
+
if (!unref(getCanDrag))
|
|
2689
2685
|
return;
|
|
2690
2686
|
const el = document.querySelectorAll(`.dt-reuse-tabs .ant-tabs-nav-list`)?.[0];
|
|
2691
2687
|
const { initSortable } = useSortable(el, {
|
|
@@ -2706,7 +2702,7 @@ function useTabsDrag(affixList) {
|
|
|
2706
2702
|
});
|
|
2707
2703
|
}
|
|
2708
2704
|
const _hoisted_1$3 = { class: "dt-reuse-tabs leading-8 border-b border-solid border-gray-200" };
|
|
2709
|
-
const _sfc_main$4 = /* @__PURE__ */ defineComponent
|
|
2705
|
+
const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
2710
2706
|
__name: "index",
|
|
2711
2707
|
setup(__props) {
|
|
2712
2708
|
const { t } = useI18n("UI");
|
|
@@ -2759,19 +2755,19 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent$1({
|
|
|
2759
2755
|
animated: false,
|
|
2760
2756
|
hideAdd: true,
|
|
2761
2757
|
tabBarGutter: 3,
|
|
2762
|
-
activeKey:
|
|
2758
|
+
activeKey: activeKeyRef.value,
|
|
2763
2759
|
onChange: handleChange,
|
|
2764
2760
|
onEdit: handleEdit,
|
|
2765
2761
|
class: "h-8"
|
|
2766
2762
|
}, createSlots({
|
|
2767
2763
|
default: withCtx(() => [
|
|
2768
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(unref
|
|
2764
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(getTabsState), (item) => {
|
|
2769
2765
|
return openBlock(), createBlock(_component_ATabPane, {
|
|
2770
2766
|
key: item.query ? item.fullPath : item.path,
|
|
2771
2767
|
closable: !(item && item.meta && item.meta.affix)
|
|
2772
2768
|
}, {
|
|
2773
2769
|
tab: withCtx(() => [
|
|
2774
|
-
createElementVNode("span", null, toDisplayString(unref
|
|
2770
|
+
createElementVNode("span", null, toDisplayString(unref(menuLabelMap).get(item.path) || unref(t)("UNKNOWN_ROUTE")), 1)
|
|
2775
2771
|
]),
|
|
2776
2772
|
_: 2
|
|
2777
2773
|
}, 1032, ["closable"]);
|
|
@@ -2779,11 +2775,11 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent$1({
|
|
|
2779
2775
|
]),
|
|
2780
2776
|
_: 2
|
|
2781
2777
|
}, [
|
|
2782
|
-
unref
|
|
2778
|
+
unref(getShowRedo) || unref(getShowQuick) ? {
|
|
2783
2779
|
name: "rightExtra",
|
|
2784
2780
|
fn: withCtx(() => [
|
|
2785
|
-
unref
|
|
2786
|
-
unref
|
|
2781
|
+
unref(getShowRedo) ? (openBlock(), createBlock(unref(_sfc_main$6), { key: 0 })) : createCommentVNode("", true),
|
|
2782
|
+
unref(getShowQuick) ? (openBlock(), createBlock(unref(_sfc_main$5), { key: 1 })) : createCommentVNode("", true)
|
|
2787
2783
|
]),
|
|
2788
2784
|
key: "0"
|
|
2789
2785
|
} : void 0
|
|
@@ -2792,7 +2788,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent$1({
|
|
|
2792
2788
|
};
|
|
2793
2789
|
}
|
|
2794
2790
|
});
|
|
2795
|
-
const _sfc_main$3 = /* @__PURE__ */ defineComponent
|
|
2791
|
+
const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
2796
2792
|
__name: "multiple-header",
|
|
2797
2793
|
setup(__props) {
|
|
2798
2794
|
const {
|
|
@@ -2805,61 +2801,61 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent$1({
|
|
|
2805
2801
|
} = useHeader();
|
|
2806
2802
|
const { getCalcContentWidth, getIsMixMode, getIsTopMenu, getSplit } = useMenu();
|
|
2807
2803
|
const { getShowMultipleTab } = useMultipleTab();
|
|
2808
|
-
const getPlaceholderDomStyle = computed
|
|
2809
|
-
let height = unref
|
|
2810
|
-
if (unref
|
|
2811
|
-
height = unref
|
|
2804
|
+
const getPlaceholderDomStyle = computed(() => {
|
|
2805
|
+
let height = unref(getHeaderHeight);
|
|
2806
|
+
if (unref(getIsMixMode)) {
|
|
2807
|
+
height = unref(getShowMultipleTab) ? unref(getTabsHeight) : 0;
|
|
2812
2808
|
}
|
|
2813
2809
|
return {
|
|
2814
2810
|
height: `${height}px`
|
|
2815
2811
|
};
|
|
2816
2812
|
});
|
|
2817
|
-
const getSplitType = computed
|
|
2818
|
-
return unref
|
|
2813
|
+
const getSplitType = computed(() => {
|
|
2814
|
+
return unref(getSplit) ? MenuSplitTye.LEFT : MenuSplitTye.NONE;
|
|
2819
2815
|
});
|
|
2820
2816
|
const { menusRef } = useSplitMenu(getSplitType);
|
|
2821
|
-
const getWrapStyle = computed
|
|
2817
|
+
const getWrapStyle = computed(() => {
|
|
2822
2818
|
const style = {};
|
|
2823
|
-
if (unref
|
|
2819
|
+
if (unref(getSplit) && !unref(menusRef)?.length) {
|
|
2824
2820
|
style.width = "100%";
|
|
2825
|
-
} else if (unref
|
|
2826
|
-
style.width = unref
|
|
2821
|
+
} else if (unref(getFixed)) {
|
|
2822
|
+
style.width = unref(getCalcContentWidth);
|
|
2827
2823
|
}
|
|
2828
|
-
if (unref
|
|
2824
|
+
if (unref(getShowFullHeaderRef))
|
|
2829
2825
|
style.top = "48px";
|
|
2830
2826
|
return style;
|
|
2831
2827
|
});
|
|
2832
|
-
const getClass = computed
|
|
2828
|
+
const getClass = computed(() => {
|
|
2833
2829
|
let cls = "transition-width duration-200 flex-auto";
|
|
2834
|
-
if (unref
|
|
2830
|
+
if (unref(getFixed)) {
|
|
2835
2831
|
cls += " fixed top-0 right-0 w-full";
|
|
2836
2832
|
}
|
|
2837
2833
|
return cls;
|
|
2838
2834
|
});
|
|
2839
2835
|
return (_ctx, _cache) => {
|
|
2840
2836
|
return openBlock(), createElementBlock("div", null, [
|
|
2841
|
-
unref
|
|
2837
|
+
unref(getFixed) ? (openBlock(), createElementBlock("div", {
|
|
2842
2838
|
key: 0,
|
|
2843
|
-
style: normalizeStyle(unref
|
|
2839
|
+
style: normalizeStyle(unref(getPlaceholderDomStyle))
|
|
2844
2840
|
}, null, 4)) : createCommentVNode("", true),
|
|
2845
2841
|
createElementVNode("div", {
|
|
2846
|
-
style: normalizeStyle(unref
|
|
2847
|
-
class: normalizeClass(unref
|
|
2842
|
+
style: normalizeStyle(unref(getWrapStyle)),
|
|
2843
|
+
class: normalizeClass(unref(getClass))
|
|
2848
2844
|
}, [
|
|
2849
|
-
unref
|
|
2850
|
-
unref
|
|
2845
|
+
unref(getShowInsetHeaderRef) ? (openBlock(), createBlock(_sfc_main$a, { key: 0 })) : createCommentVNode("", true),
|
|
2846
|
+
unref(getShowMultipleTab) ? (openBlock(), createBlock(_sfc_main$4, { key: 1 })) : createCommentVNode("", true)
|
|
2851
2847
|
], 6)
|
|
2852
2848
|
]);
|
|
2853
2849
|
};
|
|
2854
2850
|
}
|
|
2855
2851
|
});
|
|
2856
2852
|
const _hoisted_1$2 = { class: "pr-2.5" };
|
|
2857
|
-
const _sfc_main$2 = /* @__PURE__ */ defineComponent
|
|
2853
|
+
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
2858
2854
|
__name: "index",
|
|
2859
2855
|
setup(__props) {
|
|
2860
2856
|
const { getFooter } = useTheme();
|
|
2861
|
-
const { title, subTitle, height } = unref
|
|
2862
|
-
const footerOptions = computed
|
|
2857
|
+
const { title, subTitle, height } = unref(getFooter);
|
|
2858
|
+
const footerOptions = computed(() => {
|
|
2863
2859
|
return {
|
|
2864
2860
|
lineHeight: `${height - 1}px`,
|
|
2865
2861
|
height: `${height}px`,
|
|
@@ -2869,13 +2865,13 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent$1({
|
|
|
2869
2865
|
};
|
|
2870
2866
|
});
|
|
2871
2867
|
return (_ctx, _cache) => {
|
|
2872
|
-
return openBlock(), createBlock(unref
|
|
2868
|
+
return openBlock(), createBlock(unref(LayoutFooter), {
|
|
2873
2869
|
class: "text-center p-0 w-full block border-t border-gray-200",
|
|
2874
|
-
style: normalizeStyle(unref
|
|
2870
|
+
style: normalizeStyle(unref(footerOptions))
|
|
2875
2871
|
}, {
|
|
2876
2872
|
default: withCtx(() => [
|
|
2877
|
-
createElementVNode("span", _hoisted_1$2, toDisplayString(unref
|
|
2878
|
-
createElementVNode("span", null, toDisplayString(unref
|
|
2873
|
+
createElementVNode("span", _hoisted_1$2, toDisplayString(unref(title)), 1),
|
|
2874
|
+
createElementVNode("span", null, toDisplayString(unref(subTitle)), 1)
|
|
2879
2875
|
]),
|
|
2880
2876
|
_: 1
|
|
2881
2877
|
}, 8, ["style"]);
|
|
@@ -2883,7 +2879,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent$1({
|
|
|
2883
2879
|
}
|
|
2884
2880
|
});
|
|
2885
2881
|
const _hoisted_1$1 = ["loading"];
|
|
2886
|
-
const _sfc_main$1 = /* @__PURE__ */ defineComponent
|
|
2882
|
+
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
2887
2883
|
__name: "index",
|
|
2888
2884
|
setup(__props) {
|
|
2889
2885
|
const { getTransitionMode } = useApp();
|
|
@@ -2901,8 +2897,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent$1({
|
|
|
2901
2897
|
const _component_ALayoutContent = LayoutContent;
|
|
2902
2898
|
return openBlock(), createElementBlock("div", {
|
|
2903
2899
|
id: "dt-layout-content",
|
|
2904
|
-
class: normalizeClass([["dt-layout-content", unref
|
|
2905
|
-
loading: unref
|
|
2900
|
+
class: normalizeClass([["dt-layout-content", unref(getLayoutContentMode)], "relative flex-auto overflow-x-hidden min-h-0 flex"]),
|
|
2901
|
+
loading: unref(getPageLoading) && unref(getOpenPageLoading)
|
|
2906
2902
|
}, [
|
|
2907
2903
|
createVNode(_component_ALayoutContent, null, {
|
|
2908
2904
|
default: withCtx(() => [
|
|
@@ -2912,9 +2908,9 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent$1({
|
|
|
2912
2908
|
name: getTransitionName(route)
|
|
2913
2909
|
}, {
|
|
2914
2910
|
default: withCtx(() => [
|
|
2915
|
-
!route.meta.hideTab && unref
|
|
2911
|
+
!route.meta.hideTab && unref(getCanCache) ? (openBlock(), createBlock(KeepAlive, {
|
|
2916
2912
|
key: 0,
|
|
2917
|
-
include: unref
|
|
2913
|
+
include: unref(getCaches)
|
|
2918
2914
|
}, [
|
|
2919
2915
|
(openBlock(), createBlock(resolveDynamicComponent(Component), {
|
|
2920
2916
|
key: route.path
|
|
@@ -2934,6 +2930,23 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent$1({
|
|
|
2934
2930
|
}
|
|
2935
2931
|
});
|
|
2936
2932
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
2933
|
+
var zhCn = { exports: {} };
|
|
2934
|
+
(function(module, exports) {
|
|
2935
|
+
!function(e, _) {
|
|
2936
|
+
module.exports = _(require$$0);
|
|
2937
|
+
}(commonjsGlobal, function(e) {
|
|
2938
|
+
function _(e2) {
|
|
2939
|
+
return e2 && "object" == typeof e2 && "default" in e2 ? e2 : { default: e2 };
|
|
2940
|
+
}
|
|
2941
|
+
var t = _(e), d = { name: "zh-cn", weekdays: "\u661F\u671F\u65E5_\u661F\u671F\u4E00_\u661F\u671F\u4E8C_\u661F\u671F\u4E09_\u661F\u671F\u56DB_\u661F\u671F\u4E94_\u661F\u671F\u516D".split("_"), weekdaysShort: "\u5468\u65E5_\u5468\u4E00_\u5468\u4E8C_\u5468\u4E09_\u5468\u56DB_\u5468\u4E94_\u5468\u516D".split("_"), weekdaysMin: "\u65E5_\u4E00_\u4E8C_\u4E09_\u56DB_\u4E94_\u516D".split("_"), months: "\u4E00\u6708_\u4E8C\u6708_\u4E09\u6708_\u56DB\u6708_\u4E94\u6708_\u516D\u6708_\u4E03\u6708_\u516B\u6708_\u4E5D\u6708_\u5341\u6708_\u5341\u4E00\u6708_\u5341\u4E8C\u6708".split("_"), monthsShort: "1\u6708_2\u6708_3\u6708_4\u6708_5\u6708_6\u6708_7\u6708_8\u6708_9\u6708_10\u6708_11\u6708_12\u6708".split("_"), ordinal: function(e2, _2) {
|
|
2942
|
+
return "W" === _2 ? e2 + "\u5468" : e2 + "\u65E5";
|
|
2943
|
+
}, weekStart: 1, yearStart: 4, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "YYYY/MM/DD", LL: "YYYY\u5E74M\u6708D\u65E5", LLL: "YYYY\u5E74M\u6708D\u65E5Ah\u70B9mm\u5206", LLLL: "YYYY\u5E74M\u6708D\u65E5ddddAh\u70B9mm\u5206", l: "YYYY/M/D", ll: "YYYY\u5E74M\u6708D\u65E5", lll: "YYYY\u5E74M\u6708D\u65E5 HH:mm", llll: "YYYY\u5E74M\u6708D\u65E5dddd HH:mm" }, relativeTime: { future: "%s\u5185", past: "%s\u524D", s: "\u51E0\u79D2", m: "1 \u5206\u949F", mm: "%d \u5206\u949F", h: "1 \u5C0F\u65F6", hh: "%d \u5C0F\u65F6", d: "1 \u5929", dd: "%d \u5929", M: "1 \u4E2A\u6708", MM: "%d \u4E2A\u6708", y: "1 \u5E74", yy: "%d \u5E74" }, meridiem: function(e2, _2) {
|
|
2944
|
+
var t2 = 100 * e2 + _2;
|
|
2945
|
+
return t2 < 600 ? "\u51CC\u6668" : t2 < 900 ? "\u65E9\u4E0A" : t2 < 1100 ? "\u4E0A\u5348" : t2 < 1300 ? "\u4E2D\u5348" : t2 < 1800 ? "\u4E0B\u5348" : "\u665A\u4E0A";
|
|
2946
|
+
} };
|
|
2947
|
+
return t.default.locale(d, null, true), d;
|
|
2948
|
+
});
|
|
2949
|
+
})(zhCn);
|
|
2937
2950
|
var esUs = { exports: {} };
|
|
2938
2951
|
(function(module, exports) {
|
|
2939
2952
|
!function(e, s) {
|
|
@@ -2949,33 +2962,33 @@ var esUs = { exports: {} };
|
|
|
2949
2962
|
});
|
|
2950
2963
|
})(esUs);
|
|
2951
2964
|
const _hoisted_1 = { class: "dt-theme w-full h-full" };
|
|
2952
|
-
const _sfc_main = /* @__PURE__ */ defineComponent
|
|
2965
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
2953
2966
|
__name: "index",
|
|
2954
2967
|
setup(__props) {
|
|
2955
|
-
const { currentRoute } = useRouter
|
|
2968
|
+
const { currentRoute } = useRouter();
|
|
2956
2969
|
const { getShowFullHeaderRef, getIsZH, getHeaderHeight, getUiSize } = useHeader();
|
|
2957
2970
|
const { getSplit, getShowMenu, getShowSidebar } = useMenu();
|
|
2958
2971
|
const { getFooter, getShowFooter } = useTheme();
|
|
2959
|
-
const { height } = unref
|
|
2960
|
-
require$$0.locale(unref
|
|
2961
|
-
const layoutClass = computed
|
|
2972
|
+
const { height } = unref(getFooter);
|
|
2973
|
+
require$$0.locale(unref(getIsZH) ? "zh-cn" : "en");
|
|
2974
|
+
const layoutClass = computed(() => {
|
|
2962
2975
|
let cls = "ant-layout";
|
|
2963
|
-
if (unref
|
|
2976
|
+
if (unref(getShowMenu)) {
|
|
2964
2977
|
cls += " flex flex-auto min-h-0 flex-row";
|
|
2965
2978
|
}
|
|
2966
2979
|
return cls;
|
|
2967
2980
|
});
|
|
2968
|
-
const layoutOption = computed
|
|
2969
|
-
if (unref
|
|
2981
|
+
const layoutOption = computed(() => {
|
|
2982
|
+
if (unref(getSplit)) {
|
|
2970
2983
|
return {
|
|
2971
|
-
paddingTop: unref
|
|
2984
|
+
paddingTop: unref(getHeaderHeight) + "px",
|
|
2972
2985
|
background: "#f0f2f5"
|
|
2973
2986
|
};
|
|
2974
2987
|
}
|
|
2975
2988
|
});
|
|
2976
|
-
const getContentStyle = computed
|
|
2989
|
+
const getContentStyle = computed(() => {
|
|
2977
2990
|
return {
|
|
2978
|
-
flex: unref
|
|
2991
|
+
flex: unref(getSplit) ? `0 0 calc(100% - ${unref(getShowFooter) || 0}px)` : `0 0 calc(100% - ${unref(getShowFooter) ? height : 0}px - ${unref(getHeaderHeight)}px)`,
|
|
2979
2992
|
overflowY: "auto"
|
|
2980
2993
|
};
|
|
2981
2994
|
});
|
|
@@ -2984,33 +2997,33 @@ const _sfc_main = /* @__PURE__ */ defineComponent$1({
|
|
|
2984
2997
|
const _component_AConfigProvider = ConfigProvider;
|
|
2985
2998
|
return openBlock(), createElementBlock("div", _hoisted_1, [
|
|
2986
2999
|
createVNode(_component_AConfigProvider, {
|
|
2987
|
-
locale: unref
|
|
2988
|
-
"component-size": unref
|
|
3000
|
+
locale: unref(getIsZH) ? unref(zhCN) : unref(en),
|
|
3001
|
+
"component-size": unref(getUiSize)
|
|
2989
3002
|
}, {
|
|
2990
3003
|
default: withCtx(() => [
|
|
2991
|
-
unref
|
|
3004
|
+
unref(currentRoute)?.name && unref(currentRoute).meta?.requiresAuth !== false ? (openBlock(), createBlock(_component_ALayout, {
|
|
2992
3005
|
key: 0,
|
|
2993
3006
|
class: "w-full h-full flex"
|
|
2994
3007
|
}, {
|
|
2995
3008
|
default: withCtx(() => [
|
|
2996
3009
|
createVNode(_sfc_main$x),
|
|
2997
|
-
unref
|
|
3010
|
+
unref(getShowFullHeaderRef) ? (openBlock(), createBlock(_sfc_main$a, {
|
|
2998
3011
|
key: 0,
|
|
2999
3012
|
fixed: ""
|
|
3000
3013
|
})) : createCommentVNode("", true),
|
|
3001
3014
|
createVNode(_component_ALayout, {
|
|
3002
|
-
class: normalizeClass(unref
|
|
3003
|
-
style: normalizeStyle(unref
|
|
3015
|
+
class: normalizeClass(unref(layoutClass)),
|
|
3016
|
+
style: normalizeStyle(unref(layoutOption))
|
|
3004
3017
|
}, {
|
|
3005
3018
|
default: withCtx(() => [
|
|
3006
|
-
unref
|
|
3019
|
+
unref(getShowSidebar) ? (openBlock(), createBlock(_sfc_main$7, { key: 0 })) : createCommentVNode("", true),
|
|
3007
3020
|
createVNode(_component_ALayout, { class: "dt-theme-main flex w-full h-ful" }, {
|
|
3008
3021
|
default: withCtx(() => [
|
|
3009
3022
|
createVNode(_sfc_main$3),
|
|
3010
3023
|
createVNode(_sfc_main$1, {
|
|
3011
|
-
style: normalizeStyle(unref
|
|
3024
|
+
style: normalizeStyle(unref(getContentStyle))
|
|
3012
3025
|
}, null, 8, ["style"]),
|
|
3013
|
-
unref
|
|
3026
|
+
unref(getFooter) && unref(getFooter)["show"] ? (openBlock(), createBlock(_sfc_main$2, { key: 0 })) : createCommentVNode("", true)
|
|
3014
3027
|
]),
|
|
3015
3028
|
_: 1
|
|
3016
3029
|
})
|
|
@@ -3019,7 +3032,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent$1({
|
|
|
3019
3032
|
}, 8, ["class", "style"])
|
|
3020
3033
|
]),
|
|
3021
3034
|
_: 1
|
|
3022
|
-
})) : (openBlock(), createBlock(unref
|
|
3035
|
+
})) : (openBlock(), createBlock(unref(RouterView), { key: 1 }))
|
|
3023
3036
|
]),
|
|
3024
3037
|
_: 1
|
|
3025
3038
|
}, 8, ["locale", "component-size"])
|