@dt-frames/ui 2.0.12 → 2.0.14
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 +93 -2
- package/es/components/curd/index.js +6 -3
- package/es/components/curd/src/components/Curd.d.ts +12 -6
- package/es/components/curd/src/props.d.ts +6 -3
- package/es/components/form/index.js +15 -2
- package/es/components/form/index.less +2 -0
- package/es/components/form/src/components/FormButtons.d.ts +7 -0
- package/es/components/form/src/props.d.ts +4 -4
- package/es/components/form/src/types/form.type.d.ts +3 -3
- package/es/components/form/src/types/items.type.d.ts +25 -0
- package/es/components/modal/index.js +13 -3
- package/es/components/modal/src/components/ModalFooter.d.ts +6 -0
- package/es/components/modal/src/index.d.ts +6 -0
- package/es/components/source/hooks/useSource.d.ts +2 -0
- package/es/components/source/index.js +4 -1
- package/es/components/source/types/source.type.d.ts +1 -0
- package/es/components/table/index.js +124 -57
- package/es/components/table/index.less +11 -0
- package/es/components/table/src/components/TableAction.d.ts +7 -0
- package/es/components/table/src/enums/table.enum.d.ts +5 -0
- package/es/components/table/src/index.d.ts +17 -10
- package/es/components/table/src/props.d.ts +6 -3
- package/es/components/table/src/types/table.type.d.ts +1 -0
- package/es/components/upload/index.d.ts +2 -0
- package/es/components/upload/index.js +207 -76
- package/es/components/upload/index.less +31 -6
- package/es/components/upload/src/basicProps.d.ts +3 -5
- package/es/components/upload/src/components/WordView.d.ts +6 -0
- package/es/components/upload/src/hooks/useFile.d.ts +2 -1
- package/es/components/upload/src/index.d.ts +23 -18
- package/es/components/upload/src/utils/upload.d.ts +1 -1
- package/es/packages/ui/src/assets/locales/en.d.ts +103 -0
- package/es/packages/ui/src/assets/locales/index.d.ts +2 -0
- package/es/packages/ui/src/assets/locales/zh.d.ts +104 -0
- package/es/packages/ui/src/components/form/index.d.ts +7 -0
- package/es/packages/ui/src/components/form/src/components/FormButtons.d.ts +105 -0
- package/es/packages/ui/src/components/form/src/components/FormItem.d.ts +159 -0
- package/es/packages/ui/src/components/form/src/components/componentMap.d.ts +4 -0
- package/es/packages/ui/src/components/form/src/components/formIcon.d.ts +1223 -0
- package/es/packages/ui/src/components/form/src/components/formInputUseDialog.d.ts +911 -0
- package/es/packages/ui/src/components/form/src/components/index.d.ts +4 -0
- package/es/packages/ui/src/components/form/src/components/radioButton.d.ts +34 -0
- package/es/packages/ui/src/components/form/src/enums/index.d.ts +7 -0
- package/es/packages/ui/src/components/form/src/hooks/helper.d.ts +14 -0
- package/es/packages/ui/src/components/form/src/hooks/useForm.d.ts +6 -0
- package/es/packages/ui/src/components/form/src/hooks/useFormActions.d.ts +12 -0
- package/es/packages/ui/src/components/form/src/hooks/useFormEvent.d.ts +25 -0
- package/es/packages/ui/src/components/form/src/hooks/useFormValue.d.ts +3 -0
- package/es/packages/ui/src/components/form/src/hooks/useFormValues.d.ts +11 -0
- package/es/packages/ui/src/components/form/src/hooks/useLabelWidth.d.ts +6 -0
- package/es/packages/ui/src/components/form/src/props.d.ts +127 -0
- package/es/packages/ui/src/components/form/src/types/actions.type.d.ts +15 -0
- package/es/packages/ui/src/components/form/src/types/form.type.d.ts +79 -0
- package/es/packages/ui/src/components/form/src/types/items.type.d.ts +409 -0
- package/es/packages/ui/src/components/iframe/index.d.ts +2 -0
- package/es/packages/ui/src/components/modal/index.d.ts +4 -0
- package/es/packages/ui/src/components/modal/src/hooks/useModal.d.ts +5 -0
- package/es/packages/ui/src/components/modal/src/props.d.ts +101 -0
- package/es/packages/ui/src/components/modal/src/types/modal.type.d.ts +17 -0
- package/es/packages/ui/src/components/upload/index.d.ts +4 -0
- package/es/packages/ui/src/components/upload/src/basicProps.d.ts +87 -0
- package/es/packages/ui/src/components/upload/src/components/PdfView.d.ts +9 -0
- package/es/packages/ui/src/components/upload/src/components/WordView.d.ts +6 -0
- package/es/packages/ui/src/components/upload/src/hooks/useFile.d.ts +16 -0
- package/es/packages/ui/src/components/upload/src/index.d.ts +242 -0
- package/es/packages/ui/src/components/upload/src/type/file.d.ts +10 -0
- package/es/packages/ui/src/components/upload/src/utils/upload.d.ts +2 -0
- package/es/packages/ui/src/global.d.ts +7 -0
- package/es/packages/ui/src/theme/index.d.ts +12 -0
- package/es/packages/ui/src/theme/src/components/header/helper/menu-tree.d.ts +4 -0
- package/es/packages/ui/src/theme/src/enums/index.d.ts +1 -0
- package/es/packages/ui/src/theme/src/enums/theme.enum.d.ts +34 -0
- package/es/packages/ui/src/theme/src/hooks/index.d.ts +6 -0
- package/es/packages/ui/src/theme/src/hooks/useDragLine.d.ts +2 -0
- package/es/packages/ui/src/theme/src/hooks/useHeader.d.ts +25 -0
- package/es/packages/ui/src/theme/src/hooks/useMenu.d.ts +29 -0
- package/es/packages/ui/src/theme/src/hooks/useMultifyTab.d.ts +8 -0
- package/es/packages/ui/src/theme/src/hooks/useOpenKeys.d.ts +7 -0
- package/es/packages/ui/src/theme/src/hooks/useTheme.d.ts +9 -0
- package/es/packages/ui/src/theme/src/setting/theme.setting.d.ts +2 -0
- package/es/packages/ui/src/theme/src/stores/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/stores/routeReuse.store.d.ts +25 -0
- package/es/packages/ui/src/theme/src/stores/theme.store.d.ts +19 -0
- package/es/packages/ui/src/theme/src/types/index.d.ts +3 -0
- package/es/packages/ui/src/theme/src/types/menu.type.d.ts +15 -0
- package/es/packages/ui/src/theme/src/types/theme.type.d.ts +62 -0
- package/es/packages/ui/src/utils/withInstall.d.ts +4 -0
- package/es/theme/index.js +703 -264
- package/es/theme/index.less +162 -11
- package/es/theme/src/components/header/components/lock/Lockscreen.d.ts +54 -0
- package/es/theme/src/components/header/components/lock/Recharge.d.ts +32 -0
- package/es/theme/src/components/header/components/lock/index.d.ts +3 -0
- package/es/theme/src/components/header/components/lock/useBattery.d.ts +11 -0
- package/es/theme/src/components/header/components/logo.d.ts +1 -3
- package/es/theme/src/components/header/components/notify.d.ts +1 -3
- package/es/theme/src/components/header/components/user-info.d.ts +3 -3
- package/es/theme/src/components/header/index.d.ts +805 -809
- package/es/theme/src/components/header/multiple-header.d.ts +914 -918
- package/es/theme/src/components/sider/index.d.ts +1 -3
- package/es/theme/src/components/sider/mix-sider.d.ts +1 -3
- package/es/theme/src/hooks/useHeader.d.ts +1 -0
- package/es/theme/src/index.d.ts +2102 -2059
- package/manualContentPath.js +4 -0
- package/package.json +2 -1
- package/vite.config.ts +1 -0
package/es/theme/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { BackTop, MenuItem, MenuDivider, Menu, Dropdown, TabPane, Tabs, Breadcrumb, Empty, InputSearch, Popover, Avatar, Tooltip, Select, Switch, Divider,
|
|
1
|
+
import { BackTop, MenuItem, MenuDivider, Menu, Dropdown, TabPane, Tabs, Breadcrumb, Empty, InputSearch, Popover, Avatar, InputPassword, Button, Modal, Tooltip, Select, Switch, Divider, Drawer, SubMenu, LayoutHeader, LayoutSider, LayoutContent as LayoutContent$1, 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 as unref$1, computed, onMounted, nextTick, defineComponent, openBlock, createBlock, createCommentVNode, createElementBlock, createElementVNode, reactive, withCtx, createVNode, Fragment, renderList, normalizeClass, toDisplayString, ref, watch, createSlots, getCurrentInstance, inject, onUnmounted, h, provide, onBeforeUnmount, normalizeStyle, resolveDynamicComponent, renderSlot, mergeProps, withDirectives, vShow, watchEffect, resolveDirective, createTextVNode, normalizeProps, guardReactiveProps, resolveComponent, toRef, withModifiers, Transition, KeepAlive } from "vue";
|
|
4
|
+
import { toRaw, unref as unref$1, computed, onMounted as onMounted$1, nextTick, defineComponent, openBlock, createBlock, createCommentVNode, createElementBlock, createElementVNode, reactive, withCtx, createVNode, Fragment, renderList, normalizeClass, toDisplayString, ref, watch, createSlots, getCurrentInstance, inject, onUnmounted as onUnmounted$1, h, provide, onBeforeUnmount, normalizeStyle, resolveDynamicComponent, renderSlot, mergeProps, withDirectives, vShow, watchEffect, resolveDirective, withKeys, createTextVNode, normalizeProps, guardReactiveProps, resolveComponent, toRef, withModifiers, Transition, KeepAlive, toRefs } from "vue";
|
|
5
5
|
import { useRouter, RouterView } from "vue-router";
|
|
6
6
|
import { DtCache, CacheKey, deepMerge, Pages, useGo, useRedo, Language, isObject, useTimeoutFn, useI18n, menuList2Map, isNullAndUnDef, off, on, getParentSlots, isBoolean, localeList, changeLocale, isFunction, copyText, isUrl, openWindow, useApp, withInstall as withInstall$1 } from "@dt-frames/core";
|
|
7
7
|
import { defineStore } from "pinia";
|
|
@@ -16,24 +16,25 @@ import "ant-design-vue/es/popover/style";
|
|
|
16
16
|
import "ant-design-vue/es/input/style";
|
|
17
17
|
import "ant-design-vue/es/empty/style";
|
|
18
18
|
import { DtSlotContainer as DtSlotContainer$1 } from "../components/container";
|
|
19
|
-
import { Popover as Popover$1, Modal, LayoutFooter } from "ant-design-vue";
|
|
19
|
+
import { Popover as Popover$1, Modal as Modal$1, LayoutFooter as LayoutFooter$1 } from "ant-design-vue";
|
|
20
|
+
import "ant-design-vue/es/modal/style";
|
|
21
|
+
import "ant-design-vue/es/button/style";
|
|
20
22
|
import "ant-design-vue/es/avatar/style";
|
|
21
23
|
import "ant-design-vue/es/drawer/style";
|
|
22
|
-
import "ant-design-vue/es/button/style";
|
|
23
24
|
import "ant-design-vue/es/divider/style";
|
|
24
25
|
import "ant-design-vue/es/tooltip/style";
|
|
25
26
|
import "ant-design-vue/es/select/style";
|
|
26
27
|
import "ant-design-vue/es/switch/style";
|
|
28
|
+
import dayjs from "dayjs";
|
|
27
29
|
import zhCN from "ant-design-vue/es/locale/zh_CN";
|
|
28
30
|
import en from "ant-design-vue/es/locale/en_US";
|
|
29
|
-
import dayjs from "dayjs";
|
|
30
31
|
import "dayjs/locale/zh-cn";
|
|
31
32
|
import "dayjs/locale/es-us";
|
|
32
|
-
var Theme = /* @__PURE__ */ ((Theme2) => {
|
|
33
|
+
var Theme$1 = /* @__PURE__ */ ((Theme2) => {
|
|
33
34
|
Theme2["DARK"] = "dark";
|
|
34
35
|
Theme2["LIGHT"] = "light";
|
|
35
36
|
return Theme2;
|
|
36
|
-
})(Theme || {});
|
|
37
|
+
})(Theme$1 || {});
|
|
37
38
|
var MenuType = /* @__PURE__ */ ((MenuType2) => {
|
|
38
39
|
MenuType2["SIDE"] = "sidebar";
|
|
39
40
|
MenuType2["TOP_MENU"] = "top-menu";
|
|
@@ -70,7 +71,7 @@ const defaultThemeConf = {
|
|
|
70
71
|
},
|
|
71
72
|
headOptions: {
|
|
72
73
|
fixed: true,
|
|
73
|
-
theme: Theme.LIGHT,
|
|
74
|
+
theme: Theme$1.LIGHT,
|
|
74
75
|
showLogo: true,
|
|
75
76
|
showBackToTop: true,
|
|
76
77
|
useLockPage: true,
|
|
@@ -86,7 +87,7 @@ const defaultThemeConf = {
|
|
|
86
87
|
},
|
|
87
88
|
menuOptions: {
|
|
88
89
|
fixed: true,
|
|
89
|
-
theme: Theme.DARK,
|
|
90
|
+
theme: Theme$1.DARK,
|
|
90
91
|
collapsed: false,
|
|
91
92
|
collapsedShowTitle: false,
|
|
92
93
|
canDrag: true,
|
|
@@ -474,6 +475,7 @@ function useHeader() {
|
|
|
474
475
|
const getShowUiSize = computed(() => getHeaderConf?.showSize);
|
|
475
476
|
const getShowLogo = computed(() => getHeaderConf.showLogo);
|
|
476
477
|
const getShowLoginOut = computed(() => getHeaderConf.showLoginOut);
|
|
478
|
+
const getLockscreen = computed(() => getHeaderConf.useLockPage);
|
|
477
479
|
const loginOutClick = getHeaderConf.logoutClick;
|
|
478
480
|
return {
|
|
479
481
|
getHeaderTheme,
|
|
@@ -497,6 +499,7 @@ function useHeader() {
|
|
|
497
499
|
getShowLogo,
|
|
498
500
|
getShowLoginOut,
|
|
499
501
|
getShowUiSize,
|
|
502
|
+
getLockscreen,
|
|
500
503
|
loginOutClick
|
|
501
504
|
};
|
|
502
505
|
}
|
|
@@ -611,7 +614,7 @@ function useOpenKeys(menuState, menus, type) {
|
|
|
611
614
|
}
|
|
612
615
|
function useDragLine(siderRef, dragBarRef) {
|
|
613
616
|
const { getMiniWidthNumber, getCollapsed, setThemeStore } = useMenu();
|
|
614
|
-
onMounted(() => {
|
|
617
|
+
onMounted$1(() => {
|
|
615
618
|
nextTick(() => {
|
|
616
619
|
const exec = useDebounceFn(changeWrapWidth, 80);
|
|
617
620
|
exec();
|
|
@@ -672,7 +675,7 @@ function useDragLine(siderRef, dragBarRef) {
|
|
|
672
675
|
};
|
|
673
676
|
}
|
|
674
677
|
}
|
|
675
|
-
const _sfc_main$
|
|
678
|
+
const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
676
679
|
__name: "back-top",
|
|
677
680
|
setup(__props) {
|
|
678
681
|
const getTarget = () => document.getElementById("dt-layout-content");
|
|
@@ -683,23 +686,32 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
683
686
|
key: 0,
|
|
684
687
|
target: getTarget,
|
|
685
688
|
visibilityHeight: 300
|
|
686
|
-
})) : createCommentVNode("", true);
|
|
689
|
+
})) : createCommentVNode("v-if", true);
|
|
687
690
|
};
|
|
688
691
|
}
|
|
689
692
|
});
|
|
690
|
-
const
|
|
693
|
+
const _export_sfc = (sfc, props) => {
|
|
694
|
+
const target = sfc.__vccOpts || sfc;
|
|
695
|
+
for (const [key, val] of props) {
|
|
696
|
+
target[key] = val;
|
|
697
|
+
}
|
|
698
|
+
return target;
|
|
699
|
+
};
|
|
700
|
+
const DtBackTop = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/feature/back-top.vue"]]);
|
|
701
|
+
const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
691
702
|
__name: "index",
|
|
692
703
|
setup(__props) {
|
|
693
704
|
return (_ctx, _cache) => {
|
|
694
|
-
return openBlock(), createBlock(
|
|
705
|
+
return openBlock(), createBlock(DtBackTop);
|
|
695
706
|
};
|
|
696
707
|
}
|
|
697
708
|
});
|
|
698
|
-
const
|
|
699
|
-
const
|
|
700
|
-
|
|
709
|
+
const DtFeature$1 = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/feature/index.vue"]]);
|
|
710
|
+
const _hoisted_1$k = /* @__PURE__ */ createElementVNode("i", { class: "block i ic:baseline-autorenew" }, null, -1);
|
|
711
|
+
const _hoisted_2$b = [
|
|
712
|
+
_hoisted_1$k
|
|
701
713
|
];
|
|
702
|
-
const _sfc_main$
|
|
714
|
+
const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
703
715
|
__name: "TabRedo",
|
|
704
716
|
setup(__props) {
|
|
705
717
|
const tabStore = useRouteReuseStore();
|
|
@@ -711,10 +723,11 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
|
711
723
|
return openBlock(), createElementBlock("span", {
|
|
712
724
|
onClick: handleRedo,
|
|
713
725
|
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"
|
|
714
|
-
}, _hoisted_2$
|
|
726
|
+
}, _hoisted_2$b);
|
|
715
727
|
};
|
|
716
728
|
}
|
|
717
729
|
});
|
|
730
|
+
const DtTabRedo = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/tabs/components/TabRedo.vue"]]);
|
|
718
731
|
function useTabs(_router) {
|
|
719
732
|
const tabStore = useRouteReuseStore();
|
|
720
733
|
const router = _router || useRouter();
|
|
@@ -841,12 +854,12 @@ function useTabDropdown(tabItem, getIsTabs) {
|
|
|
841
854
|
handleMenuEvent
|
|
842
855
|
};
|
|
843
856
|
}
|
|
844
|
-
const _hoisted_1$
|
|
845
|
-
const _hoisted_2$
|
|
846
|
-
_hoisted_1$
|
|
857
|
+
const _hoisted_1$j = /* @__PURE__ */ createElementVNode("i", { class: "block i ic:baseline-keyboard-arrow-down" }, null, -1);
|
|
858
|
+
const _hoisted_2$a = [
|
|
859
|
+
_hoisted_1$j
|
|
847
860
|
];
|
|
848
|
-
const _hoisted_3$
|
|
849
|
-
const _sfc_main$
|
|
861
|
+
const _hoisted_3$8 = { class: "text-13" };
|
|
862
|
+
const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
850
863
|
__name: "TabContent",
|
|
851
864
|
props: {
|
|
852
865
|
tabItem: {
|
|
@@ -890,13 +903,13 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
890
903
|
createElementVNode("i", {
|
|
891
904
|
class: normalizeClass(["i pr-4", item.icon])
|
|
892
905
|
}, null, 2),
|
|
893
|
-
createElementVNode("span", _hoisted_3$
|
|
906
|
+
createElementVNode("span", _hoisted_3$8, toDisplayString(item.text), 1)
|
|
894
907
|
]),
|
|
895
908
|
_: 2
|
|
896
909
|
}, 1032, ["onClick", "disabled"]),
|
|
897
910
|
item.divider ? (openBlock(), createBlock(_component_AMenuDivider, {
|
|
898
911
|
key: `d-${index}`
|
|
899
|
-
})) : createCommentVNode("", true)
|
|
912
|
+
})) : createCommentVNode("v-if", true)
|
|
900
913
|
], 64);
|
|
901
914
|
}), 256))
|
|
902
915
|
]),
|
|
@@ -913,13 +926,14 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
913
926
|
key: 1,
|
|
914
927
|
onClick: handleContext,
|
|
915
928
|
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"
|
|
916
|
-
}, _hoisted_2$
|
|
929
|
+
}, _hoisted_2$a))
|
|
917
930
|
]),
|
|
918
931
|
_: 1
|
|
919
932
|
}, 8, ["trigger"]);
|
|
920
933
|
};
|
|
921
934
|
}
|
|
922
935
|
});
|
|
936
|
+
const DtTabContent = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/tabs/components/TabContent.vue"]]);
|
|
923
937
|
function initAffixTabs() {
|
|
924
938
|
const affixList = ref([]);
|
|
925
939
|
const tabStore = useRouteReuseStore();
|
|
@@ -990,8 +1004,8 @@ function useTabsDrag(affixList) {
|
|
|
990
1004
|
initSortable();
|
|
991
1005
|
});
|
|
992
1006
|
}
|
|
993
|
-
const _hoisted_1$
|
|
994
|
-
const _sfc_main$
|
|
1007
|
+
const _hoisted_1$i = { class: "dt-reuse-tabs leading-8 border-b border-solid border-gray-200" };
|
|
1008
|
+
const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
995
1009
|
__name: "index",
|
|
996
1010
|
setup(__props) {
|
|
997
1011
|
const router = useRouter();
|
|
@@ -1035,7 +1049,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1035
1049
|
return (_ctx, _cache) => {
|
|
1036
1050
|
const _component_ATabPane = TabPane;
|
|
1037
1051
|
const _component_ATabs = Tabs;
|
|
1038
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
1052
|
+
return openBlock(), createElementBlock("div", _hoisted_1$i, [
|
|
1039
1053
|
createVNode(_component_ATabs, {
|
|
1040
1054
|
type: "editable-card",
|
|
1041
1055
|
size: "small",
|
|
@@ -1054,10 +1068,10 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1054
1068
|
closable: !(item && item.meta && item.meta.affix)
|
|
1055
1069
|
}, {
|
|
1056
1070
|
tab: withCtx(() => [
|
|
1057
|
-
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(
|
|
1071
|
+
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(DtTabContent), {
|
|
1058
1072
|
key: 0,
|
|
1059
1073
|
tabItem: item
|
|
1060
|
-
}, null, 8, ["tabItem"])) : createCommentVNode("", true)
|
|
1074
|
+
}, null, 8, ["tabItem"])) : createCommentVNode("v-if", true)
|
|
1061
1075
|
]),
|
|
1062
1076
|
_: 2
|
|
1063
1077
|
}, 1032, ["closable"]);
|
|
@@ -1068,12 +1082,12 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1068
1082
|
unref$1(getShowRedo) || unref$1(getShowQuick) ? {
|
|
1069
1083
|
name: "rightExtra",
|
|
1070
1084
|
fn: withCtx(() => [
|
|
1071
|
-
unref$1(getShowRedo) ? (openBlock(), createBlock(unref$1(
|
|
1072
|
-
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(
|
|
1085
|
+
unref$1(getShowRedo) ? (openBlock(), createBlock(unref$1(DtTabRedo), { key: 0 })) : createCommentVNode("v-if", true),
|
|
1086
|
+
unref$1(getShowQuick) ? (openBlock(), createBlock(unref$1(DtTabContent), {
|
|
1073
1087
|
key: 1,
|
|
1074
1088
|
isExtra: "",
|
|
1075
1089
|
tabItem: _ctx.$route
|
|
1076
|
-
}, null, 8, ["tabItem"])) : createCommentVNode("", true)
|
|
1090
|
+
}, null, 8, ["tabItem"])) : createCommentVNode("v-if", true)
|
|
1077
1091
|
]),
|
|
1078
1092
|
key: "0"
|
|
1079
1093
|
} : void 0
|
|
@@ -1082,7 +1096,8 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1082
1096
|
};
|
|
1083
1097
|
}
|
|
1084
1098
|
});
|
|
1085
|
-
const
|
|
1099
|
+
const MultipleTabs = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/tabs/index.vue"]]);
|
|
1100
|
+
const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
1086
1101
|
__name: "fullscreen",
|
|
1087
1102
|
setup(__props) {
|
|
1088
1103
|
const { toggle, isFullscreen } = useFullscreen();
|
|
@@ -1098,6 +1113,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
1098
1113
|
};
|
|
1099
1114
|
}
|
|
1100
1115
|
});
|
|
1116
|
+
const DtFullScreen = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/fullscreen.vue"]]);
|
|
1101
1117
|
const isServer = typeof window === "undefined";
|
|
1102
1118
|
const BAR_MAP = {
|
|
1103
1119
|
vertical: {
|
|
@@ -1214,7 +1230,7 @@ const Bar = defineComponent({
|
|
|
1214
1230
|
off(document, "mousemove", mouseMoveDocumentHandler);
|
|
1215
1231
|
document.onselectstart = null;
|
|
1216
1232
|
}
|
|
1217
|
-
onUnmounted(() => {
|
|
1233
|
+
onUnmounted$1(() => {
|
|
1218
1234
|
off(document, "mouseup", mouseUpDocumentHandler);
|
|
1219
1235
|
});
|
|
1220
1236
|
return () => h(
|
|
@@ -1236,8 +1252,8 @@ const Bar = defineComponent({
|
|
|
1236
1252
|
);
|
|
1237
1253
|
}
|
|
1238
1254
|
});
|
|
1239
|
-
const _hoisted_1$
|
|
1240
|
-
const _sfc_main$
|
|
1255
|
+
const _hoisted_1$h = { class: "scrollbar relative h-full overflow-hidden" };
|
|
1256
|
+
const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
1241
1257
|
__name: "scroll-bar",
|
|
1242
1258
|
props: {
|
|
1243
1259
|
wrapClass: {
|
|
@@ -1290,7 +1306,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
1290
1306
|
sizeHeight.value = heightPercentage < 100 ? heightPercentage + "%" : "";
|
|
1291
1307
|
sizeWidth.value = widthPercentage < 100 ? widthPercentage + "%" : "";
|
|
1292
1308
|
};
|
|
1293
|
-
onMounted(() => {
|
|
1309
|
+
onMounted$1(() => {
|
|
1294
1310
|
nextTick(update);
|
|
1295
1311
|
if (!props.noresize) {
|
|
1296
1312
|
addResizeListener(unref$1(resize), update);
|
|
@@ -1306,7 +1322,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
1306
1322
|
}
|
|
1307
1323
|
});
|
|
1308
1324
|
return (_ctx, _cache) => {
|
|
1309
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
1325
|
+
return openBlock(), createElementBlock("div", _hoisted_1$h, [
|
|
1310
1326
|
createElementVNode("div", {
|
|
1311
1327
|
ref_key: "wrap",
|
|
1312
1328
|
ref: wrap,
|
|
@@ -1339,12 +1355,13 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
1339
1355
|
};
|
|
1340
1356
|
}
|
|
1341
1357
|
});
|
|
1342
|
-
const
|
|
1358
|
+
const ScrollBar = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/components/container/src/components/scroll-bar.vue"]]);
|
|
1359
|
+
const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
1343
1360
|
__name: "scroll-container",
|
|
1344
1361
|
setup(__props) {
|
|
1345
1362
|
const scrollbarRef = ref(null);
|
|
1346
1363
|
return (_ctx, _cache) => {
|
|
1347
|
-
return openBlock(), createBlock(
|
|
1364
|
+
return openBlock(), createBlock(ScrollBar, mergeProps({
|
|
1348
1365
|
ref_key: "scrollbarRef",
|
|
1349
1366
|
ref: scrollbarRef
|
|
1350
1367
|
}, _ctx.$attrs, { class: "w-full h-full" }), {
|
|
@@ -1356,7 +1373,8 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
|
1356
1373
|
};
|
|
1357
1374
|
}
|
|
1358
1375
|
});
|
|
1359
|
-
const
|
|
1376
|
+
const ScrollContainer = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/components/container/src/scroll-container.vue"]]);
|
|
1377
|
+
const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
1360
1378
|
__name: "slot-container",
|
|
1361
1379
|
props: {
|
|
1362
1380
|
template: {
|
|
@@ -1374,17 +1392,18 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
1374
1392
|
};
|
|
1375
1393
|
}
|
|
1376
1394
|
});
|
|
1395
|
+
const SlotContainer = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/components/container/src/slot-container.vue"]]);
|
|
1377
1396
|
const withInstall = (comp) => {
|
|
1378
1397
|
comp.install = (app) => {
|
|
1379
1398
|
app.component(comp.name, comp);
|
|
1380
1399
|
};
|
|
1381
1400
|
return comp;
|
|
1382
1401
|
};
|
|
1383
|
-
const DtScrollContainer = withInstall(
|
|
1384
|
-
const DtSlotContainer = withInstall(
|
|
1402
|
+
const DtScrollContainer = withInstall(ScrollContainer);
|
|
1403
|
+
const DtSlotContainer = withInstall(SlotContainer);
|
|
1385
1404
|
const logoUrl = "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=";
|
|
1386
|
-
const _hoisted_1$
|
|
1387
|
-
const _sfc_main$
|
|
1405
|
+
const _hoisted_1$g = ["src"];
|
|
1406
|
+
const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
1388
1407
|
__name: "logo",
|
|
1389
1408
|
props: {
|
|
1390
1409
|
theme: { type: String, validator: (v) => ["light", "dark"].includes(v) },
|
|
@@ -1393,7 +1412,10 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
1393
1412
|
setup(__props) {
|
|
1394
1413
|
const props = __props;
|
|
1395
1414
|
const { t } = useI18n("UI");
|
|
1396
|
-
|
|
1415
|
+
let slots = ref();
|
|
1416
|
+
getParentSlots(null, "dt-theme").then((rsp) => {
|
|
1417
|
+
slots.value = rsp;
|
|
1418
|
+
});
|
|
1397
1419
|
const title = t("COMPANY_NAME");
|
|
1398
1420
|
const { getLogoWidth } = useMenu();
|
|
1399
1421
|
const getLogoClass = computed(() => {
|
|
@@ -1406,11 +1428,11 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
1406
1428
|
minWidth: `${unref$1(getLogoWidth)}px`
|
|
1407
1429
|
})
|
|
1408
1430
|
}, [
|
|
1409
|
-
unref$1(slots)
|
|
1431
|
+
unref$1(slots)?.logo ? (openBlock(), createBlock(unref$1(DtSlotContainer), {
|
|
1410
1432
|
key: 0,
|
|
1411
1433
|
template: unref$1(slots).logo
|
|
1412
1434
|
}, null, 8, ["template"])) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
1413
|
-
createElementVNode("img", { src: unref$1(logoUrl) }, null, 8, _hoisted_1$
|
|
1435
|
+
createElementVNode("img", { src: unref$1(logoUrl) }, null, 8, _hoisted_1$g),
|
|
1414
1436
|
withDirectives(createElementVNode("div", { class: "dt-logo__title text-base font-bold transition-all duration-500 pl-3" }, toDisplayString(unref$1(title)), 513), [
|
|
1415
1437
|
[vShow, __props.showTitle]
|
|
1416
1438
|
])
|
|
@@ -1419,7 +1441,8 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
1419
1441
|
};
|
|
1420
1442
|
}
|
|
1421
1443
|
});
|
|
1422
|
-
const
|
|
1444
|
+
const DtLogo = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/logo.vue"]]);
|
|
1445
|
+
const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
1423
1446
|
__name: "trigger",
|
|
1424
1447
|
props: { theme: String },
|
|
1425
1448
|
setup(__props) {
|
|
@@ -1437,8 +1460,9 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
1437
1460
|
};
|
|
1438
1461
|
}
|
|
1439
1462
|
});
|
|
1440
|
-
const
|
|
1441
|
-
const
|
|
1463
|
+
const DtTrigger = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/trigger.vue"]]);
|
|
1464
|
+
const _hoisted_1$f = { class: "dt-breadcrumb" };
|
|
1465
|
+
const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
1442
1466
|
__name: "bread-crumb",
|
|
1443
1467
|
setup(__props) {
|
|
1444
1468
|
const { getIsZH } = useHeader();
|
|
@@ -1453,7 +1477,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
1453
1477
|
});
|
|
1454
1478
|
return (_ctx, _cache) => {
|
|
1455
1479
|
const _component_ABreadcrumb = Breadcrumb;
|
|
1456
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
1480
|
+
return openBlock(), createElementBlock("div", _hoisted_1$f, [
|
|
1457
1481
|
createVNode(_component_ABreadcrumb, { routes: unref$1(routes) }, {
|
|
1458
1482
|
itemRender: withCtx(({ route }) => [
|
|
1459
1483
|
createElementVNode("span", null, toDisplayString((unref$1(getIsZH) ? route.label : route.enLabel) || route.meta?.title), 1)
|
|
@@ -1464,16 +1488,17 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
1464
1488
|
};
|
|
1465
1489
|
}
|
|
1466
1490
|
});
|
|
1467
|
-
const
|
|
1491
|
+
const DtBreadCrumb = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/bread-crumb.vue"]]);
|
|
1492
|
+
const _hoisted_1$e = {
|
|
1468
1493
|
key: 0,
|
|
1469
1494
|
class: "dt-menu-filter h-7 pr-2"
|
|
1470
1495
|
};
|
|
1471
|
-
const _hoisted_2$
|
|
1472
|
-
const _hoisted_3$
|
|
1496
|
+
const _hoisted_2$9 = ["onClick"];
|
|
1497
|
+
const _hoisted_3$7 = {
|
|
1473
1498
|
key: 0,
|
|
1474
1499
|
class: "flex items-center justify-center h-full overflow-hidden"
|
|
1475
1500
|
};
|
|
1476
|
-
const _sfc_main$
|
|
1501
|
+
const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
1477
1502
|
__name: "menu-filter",
|
|
1478
1503
|
setup(__props) {
|
|
1479
1504
|
const { t } = useI18n("UI");
|
|
@@ -1505,7 +1530,7 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
1505
1530
|
const _component_AEmpty = Empty;
|
|
1506
1531
|
const _component_AInputSearch = InputSearch;
|
|
1507
1532
|
const _component_APopover = Popover;
|
|
1508
|
-
return unref$1(isUseDef) ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
1533
|
+
return unref$1(isUseDef) ? (openBlock(), createElementBlock("div", _hoisted_1$e, [
|
|
1509
1534
|
createVNode(_component_APopover, {
|
|
1510
1535
|
placement: "bottom",
|
|
1511
1536
|
overlayClassName: "dt-menu-filter__popover",
|
|
@@ -1517,14 +1542,14 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
1517
1542
|
return openBlock(), createElementBlock("p", {
|
|
1518
1543
|
onClick: ($event) => navigation(menu.url),
|
|
1519
1544
|
class: "px-5 leading-9 border-gray-200 border-dashed border-b m-0 cursor-pointer transition-all duration-300 text-13"
|
|
1520
|
-
}, toDisplayString(unref$1(getIsZH) ? menu.label : menu.enLabel), 9, _hoisted_2$
|
|
1545
|
+
}, toDisplayString(unref$1(getIsZH) ? menu.label : menu.enLabel), 9, _hoisted_2$9);
|
|
1521
1546
|
}), 256)),
|
|
1522
|
-
!menuList.value.length ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
1547
|
+
!menuList.value.length ? (openBlock(), createElementBlock("div", _hoisted_3$7, [
|
|
1523
1548
|
createVNode(_component_AEmpty, {
|
|
1524
1549
|
description: "\u6682\u65E0\u6570\u636E",
|
|
1525
1550
|
imageStyle: { width: "100%" }
|
|
1526
1551
|
})
|
|
1527
|
-
])) : createCommentVNode("", true)
|
|
1552
|
+
])) : createCommentVNode("v-if", true)
|
|
1528
1553
|
]),
|
|
1529
1554
|
default: withCtx(() => [
|
|
1530
1555
|
createVNode(_component_AInputSearch, {
|
|
@@ -1537,20 +1562,21 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
1537
1562
|
]),
|
|
1538
1563
|
_: 1
|
|
1539
1564
|
})
|
|
1540
|
-
])) : createCommentVNode("", true);
|
|
1565
|
+
])) : createCommentVNode("v-if", true);
|
|
1541
1566
|
};
|
|
1542
1567
|
}
|
|
1543
1568
|
});
|
|
1544
|
-
const
|
|
1545
|
-
const
|
|
1546
|
-
const
|
|
1569
|
+
const DtMenuFilter = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/menu-filter.vue"]]);
|
|
1570
|
+
const _hoisted_1$d = { class: "lang m-0" };
|
|
1571
|
+
const _hoisted_2$8 = ["onClick"];
|
|
1572
|
+
const _hoisted_3$6 = {
|
|
1547
1573
|
class: "pr-2",
|
|
1548
1574
|
size: 16
|
|
1549
1575
|
};
|
|
1550
|
-
const _hoisted_4$
|
|
1576
|
+
const _hoisted_4$5 = /* @__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" }, [
|
|
1551
1577
|
/* @__PURE__ */ createElementVNode("i", { class: "block i ic:baseline-language" })
|
|
1552
1578
|
], -1);
|
|
1553
|
-
const _sfc_main$
|
|
1579
|
+
const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
1554
1580
|
__name: "lang-picker",
|
|
1555
1581
|
props: {
|
|
1556
1582
|
reload: { type: Boolean }
|
|
@@ -1578,33 +1604,37 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
1578
1604
|
trigger: "click"
|
|
1579
1605
|
}, {
|
|
1580
1606
|
content: withCtx(() => [
|
|
1581
|
-
createElementVNode("ul", _hoisted_1$
|
|
1607
|
+
createElementVNode("ul", _hoisted_1$d, [
|
|
1582
1608
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref$1(localeList), (it) => {
|
|
1583
1609
|
return openBlock(), createElementBlock("li", {
|
|
1584
1610
|
onClick: ($event) => toggleLang(it.event),
|
|
1585
1611
|
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$1(currentLang) ? "active bg-gray-100" : ""])
|
|
1586
1612
|
}, [
|
|
1587
|
-
withDirectives(createElementVNode("span", _hoisted_3$
|
|
1613
|
+
withDirectives(createElementVNode("span", _hoisted_3$6, null, 512), [
|
|
1588
1614
|
[_directive_icon, it.icon]
|
|
1589
1615
|
]),
|
|
1590
1616
|
createElementVNode("span", null, toDisplayString(it.text), 1)
|
|
1591
|
-
], 10, _hoisted_2$
|
|
1617
|
+
], 10, _hoisted_2$8);
|
|
1592
1618
|
}), 256))
|
|
1593
1619
|
])
|
|
1594
1620
|
]),
|
|
1595
1621
|
default: withCtx(() => [
|
|
1596
|
-
_hoisted_4$
|
|
1622
|
+
_hoisted_4$5
|
|
1597
1623
|
]),
|
|
1598
1624
|
_: 1
|
|
1599
1625
|
}, 8, ["visible"]);
|
|
1600
1626
|
};
|
|
1601
1627
|
}
|
|
1602
1628
|
});
|
|
1603
|
-
const
|
|
1604
|
-
const
|
|
1629
|
+
const DtLangPicker = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/lang-picker.vue"]]);
|
|
1630
|
+
const _hoisted_1$c = { 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" };
|
|
1631
|
+
const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
1605
1632
|
__name: "notify",
|
|
1606
1633
|
setup(__props) {
|
|
1607
|
-
|
|
1634
|
+
let slots = ref();
|
|
1635
|
+
getParentSlots(null, "dt-theme").then((rsp) => {
|
|
1636
|
+
slots.value = rsp;
|
|
1637
|
+
});
|
|
1608
1638
|
return (_ctx, _cache) => {
|
|
1609
1639
|
const _component_APopover = Popover;
|
|
1610
1640
|
const _directive_icon = resolveDirective("icon");
|
|
@@ -1613,20 +1643,20 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
1613
1643
|
overlayClassName: "dt-notify__popover"
|
|
1614
1644
|
}, {
|
|
1615
1645
|
content: withCtx(() => [
|
|
1616
|
-
unref$1(slots)
|
|
1646
|
+
unref$1(slots)?.notify ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
|
|
1617
1647
|
key: 0,
|
|
1618
1648
|
template: unref$1(slots).notify
|
|
1619
|
-
}, null, 8, ["template"])) : createCommentVNode("", true)
|
|
1649
|
+
}, null, 8, ["template"])) : createCommentVNode("v-if", true)
|
|
1620
1650
|
]),
|
|
1621
1651
|
default: withCtx(() => [
|
|
1622
|
-
createElementVNode("span", _hoisted_1$
|
|
1652
|
+
createElementVNode("span", _hoisted_1$c, [
|
|
1623
1653
|
withDirectives(createElementVNode("span", null, null, 512), [
|
|
1624
1654
|
[_directive_icon, "ant-design:bell-outlined"]
|
|
1625
1655
|
]),
|
|
1626
|
-
unref$1(slots)
|
|
1656
|
+
unref$1(slots)?.notifyBadge ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
|
|
1627
1657
|
key: 0,
|
|
1628
1658
|
template: unref$1(slots).notifyBadge
|
|
1629
|
-
}, null, 8, ["template"])) : createCommentVNode("", true)
|
|
1659
|
+
}, null, 8, ["template"])) : createCommentVNode("v-if", true)
|
|
1630
1660
|
])
|
|
1631
1661
|
]),
|
|
1632
1662
|
_: 1
|
|
@@ -1634,12 +1664,13 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
1634
1664
|
};
|
|
1635
1665
|
}
|
|
1636
1666
|
});
|
|
1637
|
-
const
|
|
1638
|
-
const
|
|
1639
|
-
const
|
|
1667
|
+
const DtNotify = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/notify.vue"]]);
|
|
1668
|
+
const _hoisted_1$b = { class: "lang m-0" };
|
|
1669
|
+
const _hoisted_2$7 = ["onClick"];
|
|
1670
|
+
const _hoisted_3$5 = /* @__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" }, [
|
|
1640
1671
|
/* @__PURE__ */ createElementVNode("i", { class: "block i ic:baseline-format-size" })
|
|
1641
1672
|
], -1);
|
|
1642
|
-
const _sfc_main$
|
|
1673
|
+
const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
1643
1674
|
__name: "size",
|
|
1644
1675
|
setup(__props) {
|
|
1645
1676
|
const { t } = useI18n("UI");
|
|
@@ -1677,40 +1708,74 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
1677
1708
|
trigger: "click"
|
|
1678
1709
|
}, {
|
|
1679
1710
|
content: withCtx(() => [
|
|
1680
|
-
createElementVNode("ul", _hoisted_1$
|
|
1711
|
+
createElementVNode("ul", _hoisted_1$b, [
|
|
1681
1712
|
(openBlock(), createElementBlock(Fragment, null, renderList(sizeList, (it) => {
|
|
1682
1713
|
return createElementVNode("li", {
|
|
1683
1714
|
onClick: ($event) => toggleLang(it.event),
|
|
1684
1715
|
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$1(getUiSize) ? "active bg-gray-100" : ""])
|
|
1685
1716
|
}, [
|
|
1686
1717
|
createElementVNode("span", null, toDisplayString(it.text), 1)
|
|
1687
|
-
], 10, _hoisted_2$
|
|
1718
|
+
], 10, _hoisted_2$7);
|
|
1688
1719
|
}), 64))
|
|
1689
1720
|
])
|
|
1690
1721
|
]),
|
|
1691
1722
|
default: withCtx(() => [
|
|
1692
|
-
_hoisted_3$
|
|
1723
|
+
_hoisted_3$5
|
|
1693
1724
|
]),
|
|
1694
1725
|
_: 1
|
|
1695
1726
|
}, 8, ["visible"]);
|
|
1696
1727
|
};
|
|
1697
1728
|
}
|
|
1698
1729
|
});
|
|
1699
|
-
const
|
|
1700
|
-
const _hoisted_2$4 = {
|
|
1730
|
+
const DtSize = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/size.vue"]]);
|
|
1731
|
+
const _imports_0 = "data:image/png;base64,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";
|
|
1732
|
+
const LOCKSCREEN = "_LOCKSCREEN";
|
|
1733
|
+
const useLockscreenStore = defineStore({
|
|
1734
|
+
id: "lockscreen",
|
|
1735
|
+
state: () => ({
|
|
1736
|
+
isLock: DtCache.getLocal(LOCKSCREEN)?.isLock === true
|
|
1737
|
+
}),
|
|
1738
|
+
actions: {
|
|
1739
|
+
setLock(payload, pwd) {
|
|
1740
|
+
this.isLock = payload;
|
|
1741
|
+
let info = DtCache.getLocal(LOCKSCREEN) ?? {};
|
|
1742
|
+
if (pwd)
|
|
1743
|
+
info.pwd = pwd;
|
|
1744
|
+
DtCache.setLocal(LOCKSCREEN, {
|
|
1745
|
+
...info,
|
|
1746
|
+
isLock: this.isLock
|
|
1747
|
+
});
|
|
1748
|
+
}
|
|
1749
|
+
}
|
|
1750
|
+
});
|
|
1751
|
+
const _hoisted_1$a = { class: "m-0" };
|
|
1752
|
+
const _hoisted_2$6 = {
|
|
1701
1753
|
class: "pr-2",
|
|
1702
1754
|
size: 16
|
|
1703
1755
|
};
|
|
1704
|
-
const _hoisted_3$
|
|
1705
|
-
const _hoisted_4$
|
|
1706
|
-
|
|
1707
|
-
|
|
1756
|
+
const _hoisted_3$4 = /* @__PURE__ */ createElementVNode("span", null, "\u9501\u5B9A\u5C4F\u5E55", -1);
|
|
1757
|
+
const _hoisted_4$4 = {
|
|
1758
|
+
class: "pr-2",
|
|
1759
|
+
size: 16
|
|
1760
|
+
};
|
|
1761
|
+
const _hoisted_5$3 = { 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" };
|
|
1762
|
+
const _hoisted_6$3 = /* @__PURE__ */ createElementVNode("img", { src: _imports_0 }, null, -1);
|
|
1763
|
+
const _hoisted_7$2 = { class: "pl-2 text-13" };
|
|
1764
|
+
const _hoisted_8$2 = { class: "login-box" };
|
|
1765
|
+
const _hoisted_9$2 = { class: "pl-2 text-13" };
|
|
1766
|
+
const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
1708
1767
|
__name: "user-info",
|
|
1709
1768
|
setup(__props) {
|
|
1710
1769
|
const { t } = useI18n("UI");
|
|
1711
1770
|
const go = useGo();
|
|
1712
|
-
const { getShowLoginOut, loginOutClick } = useHeader();
|
|
1713
|
-
const
|
|
1771
|
+
const { getShowLoginOut, getLockscreen, loginOutClick } = useHeader();
|
|
1772
|
+
const useLockscreen = useLockscreenStore();
|
|
1773
|
+
let slots = ref();
|
|
1774
|
+
getParentSlots(null, "dt-theme").then((rsp) => {
|
|
1775
|
+
slots.value = rsp;
|
|
1776
|
+
});
|
|
1777
|
+
const visible = ref(false);
|
|
1778
|
+
const password = ref(null);
|
|
1714
1779
|
const getUserInfo = DtCache.getLocal(CacheKey.USER_INFO);
|
|
1715
1780
|
function signOut() {
|
|
1716
1781
|
if (loginOutClick && isFunction(loginOutClick)) {
|
|
@@ -1719,49 +1784,120 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
1719
1784
|
go(Pages.LOGIN);
|
|
1720
1785
|
}
|
|
1721
1786
|
}
|
|
1787
|
+
function lockScreen() {
|
|
1788
|
+
visible.value = true;
|
|
1789
|
+
}
|
|
1790
|
+
function onLock() {
|
|
1791
|
+
useLockscreen.setLock(true, unref$1(password));
|
|
1792
|
+
visible.value = false;
|
|
1793
|
+
}
|
|
1722
1794
|
return (_ctx, _cache) => {
|
|
1723
1795
|
const _component_AAvatar = Avatar;
|
|
1724
1796
|
const _component_APopover = Popover;
|
|
1797
|
+
const _component_AInputPassword = InputPassword;
|
|
1798
|
+
const _component_AButton = Button;
|
|
1799
|
+
const _component_AModal = Modal;
|
|
1725
1800
|
const _directive_icon = resolveDirective("icon");
|
|
1726
|
-
return openBlock(),
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
createElementVNode("
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1801
|
+
return openBlock(), createElementBlock(Fragment, null, [
|
|
1802
|
+
createVNode(_component_APopover, {
|
|
1803
|
+
placement: "bottom",
|
|
1804
|
+
overlayClassName: "dt-user-info__popover",
|
|
1805
|
+
trigger: "click"
|
|
1806
|
+
}, {
|
|
1807
|
+
content: withCtx(() => [
|
|
1808
|
+
createElementVNode("div", _hoisted_1$a, [
|
|
1809
|
+
unref$1(slots).userInfo ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
|
|
1810
|
+
key: 0,
|
|
1811
|
+
template: unref$1(slots).userInfo
|
|
1812
|
+
}, null, 8, ["template"])) : createCommentVNode("v-if", true),
|
|
1813
|
+
unref$1(getLockscreen) ? (openBlock(), createElementBlock("div", {
|
|
1814
|
+
key: 1,
|
|
1815
|
+
onClick: _cache[0] || (_cache[0] = ($event) => lockScreen()),
|
|
1816
|
+
class: "px-4 my-1 leading-9 flex border-gray-200 cursor-pointer hover:bg-gray-100 transition-all duration-300 text-13"
|
|
1817
|
+
}, [
|
|
1818
|
+
withDirectives(createElementVNode("span", _hoisted_2$6, null, 512), [
|
|
1819
|
+
[_directive_icon, "ant-design:lock-filled"]
|
|
1820
|
+
]),
|
|
1821
|
+
_hoisted_3$4
|
|
1822
|
+
])) : createCommentVNode("v-if", true),
|
|
1823
|
+
unref$1(getShowLoginOut) ? (openBlock(), createElementBlock("div", {
|
|
1824
|
+
key: 2,
|
|
1825
|
+
onClick: _cache[1] || (_cache[1] = ($event) => signOut()),
|
|
1826
|
+
class: "px-4 my-1 leading-9 flex border-gray-200 cursor-pointer hover:bg-gray-100 transition-all duration-300 text-13"
|
|
1827
|
+
}, [
|
|
1828
|
+
withDirectives(createElementVNode("span", _hoisted_4$4, null, 512), [
|
|
1829
|
+
[_directive_icon, "ant-design:logout-outlined"]
|
|
1830
|
+
]),
|
|
1831
|
+
createElementVNode("span", null, toDisplayString(unref$1(t)("LOGIN_OUT")), 1)
|
|
1832
|
+
])) : createCommentVNode("v-if", true)
|
|
1833
|
+
])
|
|
1834
|
+
]),
|
|
1835
|
+
default: withCtx(() => [
|
|
1836
|
+
createElementVNode("div", _hoisted_5$3, [
|
|
1837
|
+
createVNode(_component_AAvatar, { size: 28 }, createSlots({
|
|
1838
|
+
default: withCtx(() => [
|
|
1839
|
+
unref$1(slots)?.icon ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
|
|
1840
|
+
key: 0,
|
|
1841
|
+
template: unref$1(slots).icon
|
|
1842
|
+
}, null, 8, ["template"])) : createCommentVNode("v-if", true)
|
|
1843
|
+
]),
|
|
1844
|
+
_: 2
|
|
1845
|
+
}, [
|
|
1846
|
+
!unref$1(slots)?.icon ? {
|
|
1847
|
+
name: "icon",
|
|
1848
|
+
fn: withCtx(() => [
|
|
1849
|
+
_hoisted_6$3
|
|
1850
|
+
]),
|
|
1851
|
+
key: "0"
|
|
1852
|
+
} : void 0
|
|
1853
|
+
]), 1024),
|
|
1854
|
+
createElementVNode("span", _hoisted_7$2, toDisplayString(unref$1(getUserInfo)?.userNo), 1)
|
|
1855
|
+
])
|
|
1856
|
+
]),
|
|
1857
|
+
_: 1
|
|
1858
|
+
}),
|
|
1859
|
+
createVNode(_component_AModal, {
|
|
1860
|
+
visible: visible.value,
|
|
1861
|
+
"onUpdate:visible": _cache[3] || (_cache[3] = ($event) => visible.value = $event),
|
|
1862
|
+
title: "\u9501\u5B9A\u5C4F\u5E55",
|
|
1863
|
+
class: "lockscreen",
|
|
1864
|
+
footer: null
|
|
1865
|
+
}, {
|
|
1866
|
+
default: withCtx(() => [
|
|
1867
|
+
createElementVNode("div", _hoisted_8$2, [
|
|
1868
|
+
unref$1(slots)?.icon ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
|
|
1869
|
+
key: 0,
|
|
1870
|
+
template: unref$1(slots).icon
|
|
1871
|
+
}, null, 8, ["template"])) : createCommentVNode("v-if", true),
|
|
1872
|
+
createElementVNode("span", _hoisted_9$2, toDisplayString(unref$1(getUserInfo)?.userNo), 1),
|
|
1873
|
+
createVNode(_component_AInputPassword, {
|
|
1874
|
+
class: "mt-2",
|
|
1875
|
+
autofocus: "",
|
|
1876
|
+
value: password.value,
|
|
1877
|
+
"onUpdate:value": _cache[2] || (_cache[2] = ($event) => password.value = $event),
|
|
1878
|
+
onKeyup: withKeys(onLock, ["enter"]),
|
|
1879
|
+
placeholder: "\u8BF7\u8F93\u5165\u9501\u5C4F\u5BC6\u7801"
|
|
1880
|
+
}, null, 8, ["value", "onKeyup"]),
|
|
1881
|
+
createVNode(_component_AButton, {
|
|
1882
|
+
class: "mt-4",
|
|
1883
|
+
type: "primary",
|
|
1884
|
+
onClick: onLock,
|
|
1885
|
+
block: ""
|
|
1886
|
+
}, {
|
|
1887
|
+
default: withCtx(() => [
|
|
1888
|
+
createTextVNode("\u9501\u5B9A")
|
|
1889
|
+
]),
|
|
1890
|
+
_: 1
|
|
1891
|
+
})
|
|
1892
|
+
])
|
|
1893
|
+
]),
|
|
1894
|
+
_: 1
|
|
1895
|
+
}, 8, ["visible"])
|
|
1896
|
+
], 64);
|
|
1762
1897
|
};
|
|
1763
1898
|
}
|
|
1764
1899
|
});
|
|
1900
|
+
const DtUserInfo = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/user-info.vue"]]);
|
|
1765
1901
|
var HandlerEnum = /* @__PURE__ */ ((HandlerEnum2) => {
|
|
1766
1902
|
HandlerEnum2[HandlerEnum2["CHANGE_LAYOUT"] = 0] = "CHANGE_LAYOUT";
|
|
1767
1903
|
HandlerEnum2[HandlerEnum2["SHOW_BREADCRUMB"] = 1] = "SHOW_BREADCRUMB";
|
|
@@ -1859,45 +1995,45 @@ function changeTheme(event, value = {}) {
|
|
|
1859
1995
|
}
|
|
1860
1996
|
useThemeStore().setThemeConf(conf);
|
|
1861
1997
|
}
|
|
1862
|
-
const _hoisted_1$
|
|
1863
|
-
const _hoisted_2$
|
|
1864
|
-
const _hoisted_3$
|
|
1865
|
-
const _hoisted_4$
|
|
1866
|
-
_hoisted_3$
|
|
1998
|
+
const _hoisted_1$9 = { class: "flex flex-row justify-center dt-menu-type" };
|
|
1999
|
+
const _hoisted_2$5 = ["onClick"];
|
|
2000
|
+
const _hoisted_3$3 = /* @__PURE__ */ createElementVNode("div", { class: "dt-menu-type__item" }, null, -1);
|
|
2001
|
+
const _hoisted_4$3 = [
|
|
2002
|
+
_hoisted_3$3
|
|
1867
2003
|
];
|
|
1868
|
-
const _sfc_main$
|
|
2004
|
+
const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
1869
2005
|
__name: "menu-type",
|
|
1870
2006
|
setup(__props) {
|
|
1871
2007
|
const { getMenuType, getMenuMode } = useMenu();
|
|
1872
2008
|
const menuTypeList = [
|
|
1873
2009
|
{
|
|
1874
2010
|
title: "\u5DE6\u4FA7\u83DC\u5355\u6A21\u5F0F",
|
|
1875
|
-
headTheme: Theme.LIGHT,
|
|
1876
|
-
menuTheme: Theme.DARK,
|
|
2011
|
+
headTheme: Theme$1.LIGHT,
|
|
2012
|
+
menuTheme: Theme$1.DARK,
|
|
1877
2013
|
mode: MenuMode.INLINE,
|
|
1878
2014
|
type: MenuType.SIDE,
|
|
1879
2015
|
split: false
|
|
1880
2016
|
},
|
|
1881
2017
|
{
|
|
1882
2018
|
title: "\u83DC\u5355\u6DF7\u5408\u6A21\u5F0F",
|
|
1883
|
-
headTheme: Theme.DARK,
|
|
1884
|
-
menuTheme: Theme.LIGHT,
|
|
2019
|
+
headTheme: Theme$1.DARK,
|
|
2020
|
+
menuTheme: Theme$1.LIGHT,
|
|
1885
2021
|
mode: MenuMode.INLINE,
|
|
1886
2022
|
type: MenuType.MIX,
|
|
1887
2023
|
split: true
|
|
1888
2024
|
},
|
|
1889
2025
|
{
|
|
1890
2026
|
title: "\u9876\u90E8\u83DC\u5355\u6A21\u5F0F",
|
|
1891
|
-
headTheme: Theme.DARK,
|
|
1892
|
-
menuTheme: Theme.LIGHT,
|
|
2027
|
+
headTheme: Theme$1.DARK,
|
|
2028
|
+
menuTheme: Theme$1.LIGHT,
|
|
1893
2029
|
mode: MenuMode.HORIZONTAL,
|
|
1894
2030
|
type: MenuType.TOP_MENU,
|
|
1895
2031
|
split: false
|
|
1896
2032
|
},
|
|
1897
2033
|
{
|
|
1898
2034
|
title: "\u5DE6\u4FA7\u83DC\u5355\u6DF7\u5408\u6A21\u5F0F",
|
|
1899
|
-
headTheme: Theme.LIGHT,
|
|
1900
|
-
menuTheme: Theme.DARK,
|
|
2035
|
+
headTheme: Theme$1.LIGHT,
|
|
2036
|
+
menuTheme: Theme$1.DARK,
|
|
1901
2037
|
mode: MenuMode.INLINE,
|
|
1902
2038
|
type: MenuType.MIX_SIDEBAR,
|
|
1903
2039
|
split: false
|
|
@@ -1908,7 +2044,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
1908
2044
|
}
|
|
1909
2045
|
return (_ctx, _cache) => {
|
|
1910
2046
|
const _component_ATooltip = Tooltip;
|
|
1911
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2047
|
+
return openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|
1912
2048
|
(openBlock(), createElementBlock(Fragment, null, renderList(menuTypeList, (item) => {
|
|
1913
2049
|
return createVNode(_component_ATooltip, {
|
|
1914
2050
|
key: item.title,
|
|
@@ -1926,7 +2062,7 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
1926
2062
|
[`dt-menu-type__item--active`]: unref$1(getMenuType) === item.type && unref$1(getMenuMode) === item.mode
|
|
1927
2063
|
}
|
|
1928
2064
|
])
|
|
1929
|
-
}, _hoisted_4$
|
|
2065
|
+
}, _hoisted_4$3, 10, _hoisted_2$5)
|
|
1930
2066
|
]),
|
|
1931
2067
|
_: 2
|
|
1932
2068
|
}, 1032, ["title"]);
|
|
@@ -1935,8 +2071,9 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
1935
2071
|
};
|
|
1936
2072
|
}
|
|
1937
2073
|
});
|
|
1938
|
-
const
|
|
1939
|
-
const
|
|
2074
|
+
const DtMenuType = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/theme-drawer/menu-type.vue"]]);
|
|
2075
|
+
const _hoisted_1$8 = { class: "flex justify-between mb-5" };
|
|
2076
|
+
const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
1940
2077
|
__name: "select",
|
|
1941
2078
|
props: {
|
|
1942
2079
|
event: { type: Number },
|
|
@@ -1959,7 +2096,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
1959
2096
|
}
|
|
1960
2097
|
return (_ctx, _cache) => {
|
|
1961
2098
|
const _component_ASelect = Select;
|
|
1962
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2099
|
+
return openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
1963
2100
|
createElementVNode("span", null, toDisplayString(__props.title), 1),
|
|
1964
2101
|
createVNode(_component_ASelect, mergeProps(unref$1(getBindValue), {
|
|
1965
2102
|
disabled: __props.disabled,
|
|
@@ -1972,8 +2109,9 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
1972
2109
|
};
|
|
1973
2110
|
}
|
|
1974
2111
|
});
|
|
1975
|
-
const
|
|
1976
|
-
const
|
|
2112
|
+
const DtTSelect = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/theme-drawer/select.vue"]]);
|
|
2113
|
+
const _hoisted_1$7 = { class: "flex justify-between mb-5" };
|
|
2114
|
+
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
1977
2115
|
__name: "switch",
|
|
1978
2116
|
props: {
|
|
1979
2117
|
event: {
|
|
@@ -1996,7 +2134,7 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
1996
2134
|
}
|
|
1997
2135
|
return (_ctx, _cache) => {
|
|
1998
2136
|
const _component_ASwitch = Switch;
|
|
1999
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2137
|
+
return openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|
2000
2138
|
createElementVNode("span", null, toDisplayString(__props.title), 1),
|
|
2001
2139
|
createVNode(_component_ASwitch, mergeProps(unref$1(getBindValue), {
|
|
2002
2140
|
disabled: __props.disabled,
|
|
@@ -2008,7 +2146,8 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
2008
2146
|
};
|
|
2009
2147
|
}
|
|
2010
2148
|
});
|
|
2011
|
-
const
|
|
2149
|
+
const DtTSwitch = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/theme-drawer/switch.vue"]]);
|
|
2150
|
+
const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
2012
2151
|
__name: "feature",
|
|
2013
2152
|
setup(__props) {
|
|
2014
2153
|
const { t } = useI18n("UI");
|
|
@@ -2084,7 +2223,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
2084
2223
|
return (_ctx, _cache) => {
|
|
2085
2224
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
2086
2225
|
(openBlock(), createElementBlock(Fragment, null, renderList(switchItems, (item) => {
|
|
2087
|
-
return createVNode(
|
|
2226
|
+
return createVNode(DtTSwitch, {
|
|
2088
2227
|
key: item.title,
|
|
2089
2228
|
title: item.title,
|
|
2090
2229
|
event: item.event,
|
|
@@ -2092,7 +2231,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
2092
2231
|
}, null, 8, ["title", "event", "def"]);
|
|
2093
2232
|
}), 64)),
|
|
2094
2233
|
(openBlock(), createElementBlock(Fragment, null, renderList(selectItems, (item) => {
|
|
2095
|
-
return createVNode(
|
|
2234
|
+
return createVNode(DtTSelect, {
|
|
2096
2235
|
key: item.title,
|
|
2097
2236
|
title: item.title,
|
|
2098
2237
|
event: item.event,
|
|
@@ -2104,9 +2243,10 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
2104
2243
|
};
|
|
2105
2244
|
}
|
|
2106
2245
|
});
|
|
2107
|
-
const
|
|
2108
|
-
const
|
|
2109
|
-
const
|
|
2246
|
+
const DtFeature = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/theme-drawer/feature.vue"]]);
|
|
2247
|
+
const _hoisted_1$6 = { class: "mt-5" };
|
|
2248
|
+
const _hoisted_2$4 = { class: "dt-setting-theme__tips p-3 text-12 bg-gray-100 rounded" };
|
|
2249
|
+
const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
2110
2250
|
__name: "setting-theme",
|
|
2111
2251
|
setup(__props) {
|
|
2112
2252
|
const { t } = useI18n("UI");
|
|
@@ -2167,7 +2307,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
2167
2307
|
}
|
|
2168
2308
|
if (Object.keys(copyObj).length) {
|
|
2169
2309
|
if (copyText(JSON.stringify(copyObj).replaceAll('"', ""))) {
|
|
2170
|
-
Modal.success({
|
|
2310
|
+
Modal$1.success({
|
|
2171
2311
|
centered: true,
|
|
2172
2312
|
okText: "\u786E\u5B9A",
|
|
2173
2313
|
title: "\u64CD\u4F5C\u6210\u529F",
|
|
@@ -2175,7 +2315,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
2175
2315
|
});
|
|
2176
2316
|
}
|
|
2177
2317
|
} else {
|
|
2178
|
-
Modal.info({
|
|
2318
|
+
Modal$1.info({
|
|
2179
2319
|
centered: true,
|
|
2180
2320
|
okText: "\u786E\u5B9A",
|
|
2181
2321
|
title: "\u62F7\u8D1D\u63D0\u793A",
|
|
@@ -2208,22 +2348,24 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
2208
2348
|
width: "320"
|
|
2209
2349
|
}, {
|
|
2210
2350
|
default: withCtx(() => [
|
|
2351
|
+
createCommentVNode(" \u5BFC\u822A\u680F\u6A21\u5F0F "),
|
|
2211
2352
|
createVNode(_component_ADivider, null, {
|
|
2212
2353
|
default: withCtx(() => [
|
|
2213
2354
|
createTextVNode(toDisplayString(unref$1(t)("NAV_MODE")), 1)
|
|
2214
2355
|
]),
|
|
2215
2356
|
_: 1
|
|
2216
2357
|
}),
|
|
2217
|
-
createVNode(unref$1(
|
|
2358
|
+
createVNode(unref$1(DtMenuType)),
|
|
2359
|
+
createCommentVNode(" \u754C\u9762\u663E\u793A "),
|
|
2218
2360
|
createVNode(_component_ADivider, null, {
|
|
2219
2361
|
default: withCtx(() => [
|
|
2220
2362
|
createTextVNode(toDisplayString(unref$1(t)("PAGE_SHOW")), 1)
|
|
2221
2363
|
]),
|
|
2222
2364
|
_: 1
|
|
2223
2365
|
}),
|
|
2224
|
-
createVNode(unref$1(
|
|
2366
|
+
createVNode(unref$1(DtFeature)),
|
|
2225
2367
|
createVNode(_component_ADivider),
|
|
2226
|
-
createElementVNode("div", _hoisted_1$
|
|
2368
|
+
createElementVNode("div", _hoisted_1$6, [
|
|
2227
2369
|
createVNode(_component_AButton, {
|
|
2228
2370
|
onClick: copy,
|
|
2229
2371
|
class: "mb-3",
|
|
@@ -2246,7 +2388,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
2246
2388
|
_: 1
|
|
2247
2389
|
})
|
|
2248
2390
|
]),
|
|
2249
|
-
createElementVNode("div", _hoisted_2$
|
|
2391
|
+
createElementVNode("div", _hoisted_2$4, toDisplayString(unref$1(t)("DRAWER_TIPS")), 1)
|
|
2250
2392
|
]),
|
|
2251
2393
|
_: 1
|
|
2252
2394
|
}, 8, ["visible", "title"])
|
|
@@ -2254,6 +2396,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
2254
2396
|
};
|
|
2255
2397
|
}
|
|
2256
2398
|
});
|
|
2399
|
+
const DtSettingTheme = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/setting-theme.vue"]]);
|
|
2257
2400
|
function useSplitMenu(splitType) {
|
|
2258
2401
|
const menusRef = ref([]);
|
|
2259
2402
|
const { currentRoute } = useRouter();
|
|
@@ -2355,7 +2498,7 @@ function getShallowMenus() {
|
|
|
2355
2498
|
});
|
|
2356
2499
|
return shallowMenuList;
|
|
2357
2500
|
}
|
|
2358
|
-
const BasicMenu = {
|
|
2501
|
+
const BasicMenu$1 = {
|
|
2359
2502
|
items: {
|
|
2360
2503
|
type: Array
|
|
2361
2504
|
},
|
|
@@ -2372,7 +2515,7 @@ const BasicMenu = {
|
|
|
2372
2515
|
default: MenuType.SIDE
|
|
2373
2516
|
},
|
|
2374
2517
|
theme: {
|
|
2375
|
-
default: Theme.DARK
|
|
2518
|
+
default: Theme$1.DARK
|
|
2376
2519
|
},
|
|
2377
2520
|
inlineCollapsed: Boolean,
|
|
2378
2521
|
isHorizontal: Boolean,
|
|
@@ -2388,7 +2531,7 @@ const ItemProp = {
|
|
|
2388
2531
|
},
|
|
2389
2532
|
theme: {
|
|
2390
2533
|
type: String,
|
|
2391
|
-
default: Theme.DARK
|
|
2534
|
+
default: Theme$1.DARK
|
|
2392
2535
|
},
|
|
2393
2536
|
isHorizontal: Boolean,
|
|
2394
2537
|
showTitle: Boolean,
|
|
@@ -2413,7 +2556,7 @@ const contentProps = {
|
|
|
2413
2556
|
collapse: Boolean,
|
|
2414
2557
|
mixSider: Boolean,
|
|
2415
2558
|
theme: {
|
|
2416
|
-
default: Theme.DARK
|
|
2559
|
+
default: Theme$1.DARK
|
|
2417
2560
|
},
|
|
2418
2561
|
collapsedShowTitle: Boolean,
|
|
2419
2562
|
beforeClickFn: {
|
|
@@ -2421,7 +2564,7 @@ const contentProps = {
|
|
|
2421
2564
|
},
|
|
2422
2565
|
isSplitMenu: Boolean
|
|
2423
2566
|
});
|
|
2424
|
-
const _sfc_main$
|
|
2567
|
+
const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
2425
2568
|
__name: "menu-item-content",
|
|
2426
2569
|
props: contentProps,
|
|
2427
2570
|
setup(__props) {
|
|
@@ -2438,7 +2581,8 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
2438
2581
|
};
|
|
2439
2582
|
}
|
|
2440
2583
|
});
|
|
2441
|
-
const
|
|
2584
|
+
const MenuItemContent = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/basic-menu/menu-item-content.vue"]]);
|
|
2585
|
+
const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
2442
2586
|
__name: "basic-menu-item",
|
|
2443
2587
|
props: ItemProp,
|
|
2444
2588
|
setup(__props) {
|
|
@@ -2449,14 +2593,15 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
2449
2593
|
key: _ctx.item.url
|
|
2450
2594
|
}, {
|
|
2451
2595
|
default: withCtx(() => [
|
|
2452
|
-
createVNode(
|
|
2596
|
+
createVNode(MenuItemContent, normalizeProps(guardReactiveProps(props)), null, 16)
|
|
2453
2597
|
]),
|
|
2454
2598
|
_: 1
|
|
2455
2599
|
});
|
|
2456
2600
|
};
|
|
2457
2601
|
}
|
|
2458
2602
|
});
|
|
2459
|
-
const
|
|
2603
|
+
const BasicMenuItem = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-menu-item.vue"]]);
|
|
2604
|
+
const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
2460
2605
|
__name: "basic-sub-menu-item",
|
|
2461
2606
|
props: ItemProp,
|
|
2462
2607
|
setup(__props) {
|
|
@@ -2473,14 +2618,16 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
2473
2618
|
const _component_BasicSubMenuItem = resolveComponent("BasicSubMenuItem", true);
|
|
2474
2619
|
const _component_ASubMenu = SubMenu;
|
|
2475
2620
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
2476
|
-
|
|
2621
|
+
createCommentVNode(" \u6CA1\u6709\u5B50\u8282\u70B9 "),
|
|
2622
|
+
!menuHasChildren(unref$1(item)) && unref$1(getShowMenu) ? (openBlock(), createBlock(BasicMenuItem, normalizeProps(mergeProps({ key: 0 }, props)), null, 16)) : createCommentVNode("v-if", true),
|
|
2623
|
+
createCommentVNode(" \u6709\u5B50\u8282\u70B9 "),
|
|
2477
2624
|
menuHasChildren(unref$1(item)) && unref$1(getShowMenu) ? (openBlock(), createBlock(_component_ASubMenu, {
|
|
2478
2625
|
class: normalizeClass([unref$1(theme)]),
|
|
2479
2626
|
key: unref$1(item).id,
|
|
2480
2627
|
popupClassName: "app-top-menu-popup"
|
|
2481
2628
|
}, {
|
|
2482
2629
|
title: withCtx(() => [
|
|
2483
|
-
createVNode(
|
|
2630
|
+
createVNode(MenuItemContent, mergeProps(props, { item: unref$1(item) }), null, 16, ["item"])
|
|
2484
2631
|
]),
|
|
2485
2632
|
default: withCtx(() => [
|
|
2486
2633
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref$1(item).children, (childrenItem) => {
|
|
@@ -2490,14 +2637,15 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
2490
2637
|
}), 128))
|
|
2491
2638
|
]),
|
|
2492
2639
|
_: 1
|
|
2493
|
-
}, 8, ["class"])) : createCommentVNode("", true)
|
|
2640
|
+
}, 8, ["class"])) : createCommentVNode("v-if", true)
|
|
2494
2641
|
], 64);
|
|
2495
2642
|
};
|
|
2496
2643
|
}
|
|
2497
2644
|
});
|
|
2498
|
-
const
|
|
2645
|
+
const BasicSubMenuItem = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.vue"]]);
|
|
2646
|
+
const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
2499
2647
|
__name: "basic-menu",
|
|
2500
|
-
props: BasicMenu,
|
|
2648
|
+
props: BasicMenu$1,
|
|
2501
2649
|
emits: ["menuClick"],
|
|
2502
2650
|
setup(__props, { emit: emits }) {
|
|
2503
2651
|
const {
|
|
@@ -2584,7 +2732,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
2584
2732
|
}, {
|
|
2585
2733
|
default: withCtx(() => [
|
|
2586
2734
|
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.items, (item) => {
|
|
2587
|
-
return openBlock(), createBlock(
|
|
2735
|
+
return openBlock(), createBlock(BasicSubMenuItem, {
|
|
2588
2736
|
key: item.id,
|
|
2589
2737
|
item,
|
|
2590
2738
|
theme: _ctx.theme,
|
|
@@ -2597,7 +2745,8 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
2597
2745
|
};
|
|
2598
2746
|
}
|
|
2599
2747
|
});
|
|
2600
|
-
const _sfc_main$
|
|
2748
|
+
const BasicMenu = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/basic-menu/basic-menu.vue"]]);
|
|
2749
|
+
const _sfc_main$b = defineComponent({
|
|
2601
2750
|
name: "LayoutMenu",
|
|
2602
2751
|
props: {
|
|
2603
2752
|
theme: String,
|
|
@@ -2625,7 +2774,10 @@ const _sfc_main$9 = defineComponent({
|
|
|
2625
2774
|
const {
|
|
2626
2775
|
menusRef
|
|
2627
2776
|
} = useSplitMenu(toRef(props, "splitType"));
|
|
2628
|
-
const slots =
|
|
2777
|
+
const slots = ref();
|
|
2778
|
+
getParentSlots(null, "dt-theme").then((rsp) => {
|
|
2779
|
+
slots.value = rsp;
|
|
2780
|
+
});
|
|
2629
2781
|
const getComputedTheme = computed(() => props.theme || unref$1(getMenuTheme));
|
|
2630
2782
|
const getComputedMenuMode = computed(() => props.menuMode || unref$1(getMenuMode));
|
|
2631
2783
|
const getIsShowLogo = computed(() => unref$1(getShowLogo) && unref$1(getIsSidebarType));
|
|
@@ -2659,16 +2811,16 @@ const _sfc_main$9 = defineComponent({
|
|
|
2659
2811
|
function renderHeader() {
|
|
2660
2812
|
if (!unref$1(getIsShowLogo))
|
|
2661
2813
|
return null;
|
|
2662
|
-
if (slots.logo) {
|
|
2814
|
+
if (slots.value?.logo) {
|
|
2663
2815
|
return createVNode(DtSlotContainer, {
|
|
2664
|
-
"template": slots.logo,
|
|
2816
|
+
"template": slots.value?.logo,
|
|
2665
2817
|
"data": {
|
|
2666
2818
|
theme: unref$1(getComputedTheme),
|
|
2667
2819
|
collapsed: unref$1(getCollapsed)
|
|
2668
2820
|
}
|
|
2669
2821
|
}, null);
|
|
2670
2822
|
}
|
|
2671
|
-
return createVNode(
|
|
2823
|
+
return createVNode(DtLogo, {
|
|
2672
2824
|
"showTitle": !unref$1(getCollapsed),
|
|
2673
2825
|
"class": unref$1(getLogoClass),
|
|
2674
2826
|
"theme": unref$1(getComputedTheme)
|
|
@@ -2676,8 +2828,8 @@ const _sfc_main$9 = defineComponent({
|
|
|
2676
2828
|
}
|
|
2677
2829
|
function renderFooter() {
|
|
2678
2830
|
if (unref$1(getMenuType) === MenuType.SIDE || unref$1(getMenuType) === MenuType.MIX && props.splitType === 2) {
|
|
2679
|
-
return slots.menuFooter ? createVNode(DtSlotContainer, {
|
|
2680
|
-
"template": slots.menuFooter,
|
|
2831
|
+
return slots.value?.menuFooter ? createVNode(DtSlotContainer, {
|
|
2832
|
+
"template": slots.value?.menuFooter,
|
|
2681
2833
|
"data": {
|
|
2682
2834
|
theme: unref$1(getComputedTheme),
|
|
2683
2835
|
collapsed: unref$1(getCollapsed)
|
|
@@ -2693,7 +2845,7 @@ const _sfc_main$9 = defineComponent({
|
|
|
2693
2845
|
} = unref$1(getMenuProps);
|
|
2694
2846
|
if (!menus || !menus.length)
|
|
2695
2847
|
return null;
|
|
2696
|
-
return createVNode(
|
|
2848
|
+
return createVNode(BasicMenu, mergeProps(menuProps, {
|
|
2697
2849
|
"isHorizontal": props.isHorizontal,
|
|
2698
2850
|
"type": unref$1(getMenuType),
|
|
2699
2851
|
"showLogo": unref$1(getIsShowLogo),
|
|
@@ -2708,15 +2860,16 @@ const _sfc_main$9 = defineComponent({
|
|
|
2708
2860
|
};
|
|
2709
2861
|
}
|
|
2710
2862
|
});
|
|
2711
|
-
const
|
|
2863
|
+
const LayoutMenu = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/layout-menu.vue"]]);
|
|
2864
|
+
const _hoisted_1$5 = {
|
|
2712
2865
|
key: 3,
|
|
2713
2866
|
class: "max-w-full pl-3 pr-20 dt-reuse-tabs__top"
|
|
2714
2867
|
};
|
|
2715
|
-
const _hoisted_2$
|
|
2868
|
+
const _hoisted_2$3 = {
|
|
2716
2869
|
key: 0,
|
|
2717
2870
|
class: "flex-1 h-full min-w-0 items-center"
|
|
2718
2871
|
};
|
|
2719
|
-
const _sfc_main$
|
|
2872
|
+
const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
2720
2873
|
__name: "index",
|
|
2721
2874
|
props: {
|
|
2722
2875
|
fixed: Boolean
|
|
@@ -2765,44 +2918,44 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
2765
2918
|
"w-0 flex-1": unref$1(getShowTab)
|
|
2766
2919
|
}])
|
|
2767
2920
|
}, [
|
|
2768
|
-
unref$1(getShowHeaderLogo) ? (openBlock(), createBlock(unref$1(
|
|
2921
|
+
unref$1(getShowHeaderLogo) ? (openBlock(), createBlock(unref$1(DtLogo), {
|
|
2769
2922
|
key: 0,
|
|
2770
2923
|
theme: unref$1(getHeaderTheme),
|
|
2771
2924
|
class: "dt-header-logo"
|
|
2772
|
-
}, null, 8, ["theme"])) : createCommentVNode("", true),
|
|
2773
|
-
unref$1(getShowHeaderTrigger) && !unref$1(getSplit) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(
|
|
2925
|
+
}, null, 8, ["theme"])) : createCommentVNode("v-if", true),
|
|
2926
|
+
unref$1(getShowHeaderTrigger) && !unref$1(getSplit) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(DtTrigger), {
|
|
2774
2927
|
key: 1,
|
|
2775
2928
|
theme: unref$1(getHeaderTheme)
|
|
2776
|
-
}, null, 8, ["theme"])) : createCommentVNode("", true),
|
|
2777
|
-
unref$1(getShowBread) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(
|
|
2778
|
-
unref$1(getShowTab) ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
2779
|
-
createVNode(
|
|
2780
|
-
])) : createCommentVNode("", true)
|
|
2929
|
+
}, null, 8, ["theme"])) : createCommentVNode("v-if", true),
|
|
2930
|
+
unref$1(getShowBread) && !unref$1(getShowTab) ? (openBlock(), createBlock(unref$1(DtBreadCrumb), { key: 2 })) : createCommentVNode("v-if", true),
|
|
2931
|
+
unref$1(getShowTab) ? (openBlock(), createElementBlock("div", _hoisted_1$5, [
|
|
2932
|
+
createVNode(MultipleTabs)
|
|
2933
|
+
])) : createCommentVNode("v-if", true)
|
|
2781
2934
|
], 2),
|
|
2782
|
-
unref$1(getShowTopMenu) ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
2783
|
-
createVNode(
|
|
2935
|
+
unref$1(getShowTopMenu) ? (openBlock(), createElementBlock("div", _hoisted_2$3, [
|
|
2936
|
+
createVNode(LayoutMenu, {
|
|
2784
2937
|
isHorizontal: true,
|
|
2785
2938
|
theme: unref$1(getHeaderTheme),
|
|
2786
2939
|
splitType: unref$1(getSplitType),
|
|
2787
2940
|
menuMode: unref$1(getMenuMode)
|
|
2788
2941
|
}, null, 8, ["theme", "splitType", "menuMode"])
|
|
2789
|
-
])) : createCommentVNode("", true),
|
|
2942
|
+
])) : createCommentVNode("v-if", true),
|
|
2790
2943
|
createElementVNode("div", {
|
|
2791
2944
|
class: "dt-header-action flex items-center",
|
|
2792
2945
|
style: normalizeStyle({
|
|
2793
2946
|
"padding-right": unref$1(getShowSettingTheme) ? "" : "20px"
|
|
2794
2947
|
})
|
|
2795
2948
|
}, [
|
|
2796
|
-
unref$1(getShowSearch) ? (openBlock(), createBlock(unref$1(
|
|
2797
|
-
unref$1(getShowNotice) ? (openBlock(), createBlock(unref$1(
|
|
2798
|
-
unref$1(getShowUiSize) ? (openBlock(), createBlock(unref$1(
|
|
2799
|
-
unref$1(getShowFullScreen) ? (openBlock(), createBlock(unref$1(
|
|
2800
|
-
unref$1(getShowLocale) ? (openBlock(), createBlock(unref$1(
|
|
2949
|
+
unref$1(getShowSearch) ? (openBlock(), createBlock(unref$1(DtMenuFilter), { key: 0 })) : createCommentVNode("v-if", true),
|
|
2950
|
+
unref$1(getShowNotice) ? (openBlock(), createBlock(unref$1(DtNotify), { key: 1 })) : createCommentVNode("v-if", true),
|
|
2951
|
+
unref$1(getShowUiSize) ? (openBlock(), createBlock(unref$1(DtSize), { key: 2 })) : createCommentVNode("v-if", true),
|
|
2952
|
+
unref$1(getShowFullScreen) ? (openBlock(), createBlock(unref$1(DtFullScreen), { key: 3 })) : createCommentVNode("v-if", true),
|
|
2953
|
+
unref$1(getShowLocale) ? (openBlock(), createBlock(unref$1(DtLangPicker), {
|
|
2801
2954
|
key: 4,
|
|
2802
2955
|
reload: true
|
|
2803
|
-
})) : createCommentVNode("", true),
|
|
2804
|
-
createVNode(unref$1(
|
|
2805
|
-
unref$1(getShowSettingTheme) ? (openBlock(), createBlock(unref$1(
|
|
2956
|
+
})) : createCommentVNode("v-if", true),
|
|
2957
|
+
createVNode(unref$1(DtUserInfo)),
|
|
2958
|
+
unref$1(getShowSettingTheme) ? (openBlock(), createBlock(unref$1(DtSettingTheme), { key: 5 })) : createCommentVNode("v-if", true)
|
|
2806
2959
|
], 4)
|
|
2807
2960
|
]),
|
|
2808
2961
|
_: 1
|
|
@@ -2810,6 +2963,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
2810
2963
|
};
|
|
2811
2964
|
}
|
|
2812
2965
|
});
|
|
2966
|
+
const DtHeader = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/index.vue"]]);
|
|
2813
2967
|
function useMenuSwitch() {
|
|
2814
2968
|
const brokenRef = ref(false);
|
|
2815
2969
|
const { getMiniWidthNumber } = useMenu();
|
|
@@ -2837,7 +2991,7 @@ function useTrigger() {
|
|
|
2837
2991
|
});
|
|
2838
2992
|
return { getTriggerAttr, getShowTrigger };
|
|
2839
2993
|
}
|
|
2840
|
-
const _sfc_main$
|
|
2994
|
+
const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
2841
2995
|
__name: "sider-trigger",
|
|
2842
2996
|
props: {
|
|
2843
2997
|
type: {
|
|
@@ -2861,7 +3015,8 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
2861
3015
|
};
|
|
2862
3016
|
}
|
|
2863
3017
|
});
|
|
2864
|
-
const
|
|
3018
|
+
const LayoutTrigger = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/sider-trigger.vue"]]);
|
|
3019
|
+
const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
2865
3020
|
__name: "drag-bar",
|
|
2866
3021
|
setup(__props) {
|
|
2867
3022
|
const { getCollapsed, getCanDrag, getMenuWidth } = useMenu();
|
|
@@ -2887,16 +3042,17 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
2887
3042
|
};
|
|
2888
3043
|
}
|
|
2889
3044
|
});
|
|
2890
|
-
const
|
|
2891
|
-
const
|
|
2892
|
-
const
|
|
2893
|
-
const
|
|
2894
|
-
const
|
|
2895
|
-
const
|
|
2896
|
-
const
|
|
2897
|
-
const
|
|
2898
|
-
const
|
|
2899
|
-
const
|
|
3045
|
+
const DragBar = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/components/drag-bar.vue"]]);
|
|
3046
|
+
const _hoisted_1$4 = { class: "dt-mix-sider__shallow-menu" };
|
|
3047
|
+
const _hoisted_2$2 = { class: "m-0" };
|
|
3048
|
+
const _hoisted_3$2 = { class: "dt-mix-sider__sub-shallow-menu" };
|
|
3049
|
+
const _hoisted_4$2 = { key: 0 };
|
|
3050
|
+
const _hoisted_5$2 = { class: "opacity-60 m-0 py-3 text-lg pt-6" };
|
|
3051
|
+
const _hoisted_6$2 = ["onClick"];
|
|
3052
|
+
const _hoisted_7$1 = { class: "m-0" };
|
|
3053
|
+
const _hoisted_8$1 = ["onClick"];
|
|
3054
|
+
const _hoisted_9$1 = { class: "m-0" };
|
|
3055
|
+
const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
2900
3056
|
__name: "mix-sider",
|
|
2901
3057
|
setup(__props) {
|
|
2902
3058
|
const MENU_WIDTH = 80;
|
|
@@ -2970,13 +3126,13 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
2970
3126
|
style: unref$1(getWrapStyle),
|
|
2971
3127
|
class: ["dt-mix-sider fixed top-0 left-0 h-full overflow-hidden", unref$1(getMenuTheme)]
|
|
2972
3128
|
}, getMenuEvents), [
|
|
2973
|
-
createVNode(
|
|
3129
|
+
createVNode(DtLogo, {
|
|
2974
3130
|
showTitle: false,
|
|
2975
3131
|
class: normalizeClass("justify-center z-10")
|
|
2976
3132
|
}),
|
|
2977
3133
|
createVNode(unref$1(DtScrollContainer), { class: "z-10" }, {
|
|
2978
3134
|
default: withCtx(() => [
|
|
2979
|
-
createElementVNode("ul", _hoisted_1$
|
|
3135
|
+
createElementVNode("ul", _hoisted_1$4, [
|
|
2980
3136
|
(openBlock(true), createElementBlock(Fragment, null, renderList(unref$1(menuModules), (item) => {
|
|
2981
3137
|
return openBlock(), createElementBlock("li", mergeProps({
|
|
2982
3138
|
key: item.id,
|
|
@@ -2987,7 +3143,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
2987
3143
|
createElementVNode("i", {
|
|
2988
3144
|
class: normalizeClass(["i", item.icon])
|
|
2989
3145
|
}, null, 2),
|
|
2990
|
-
createElementVNode("p", _hoisted_2, toDisplayString(item.label), 1)
|
|
3146
|
+
createElementVNode("p", _hoisted_2$2, toDisplayString(item.label), 1)
|
|
2991
3147
|
], 16);
|
|
2992
3148
|
}), 128))
|
|
2993
3149
|
])
|
|
@@ -3003,13 +3159,13 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
3003
3159
|
}, [
|
|
3004
3160
|
createVNode(unref$1(DtScrollContainer), null, {
|
|
3005
3161
|
default: withCtx(() => [
|
|
3006
|
-
createElementVNode("ul", _hoisted_3, [
|
|
3162
|
+
createElementVNode("ul", _hoisted_3$2, [
|
|
3007
3163
|
(openBlock(true), createElementBlock(Fragment, null, renderList(subMenus.value, (menu) => {
|
|
3008
3164
|
return openBlock(), createElementBlock("li", {
|
|
3009
3165
|
key: menu.id
|
|
3010
3166
|
}, [
|
|
3011
|
-
menu.children?.length ? (openBlock(), createElementBlock("div", _hoisted_4, [
|
|
3012
|
-
createElementVNode("p", _hoisted_5, toDisplayString(menu.label), 1),
|
|
3167
|
+
menu.children?.length ? (openBlock(), createElementBlock("div", _hoisted_4$2, [
|
|
3168
|
+
createElementVNode("p", _hoisted_5$2, toDisplayString(menu.label), 1),
|
|
3013
3169
|
createElementVNode("ul", null, [
|
|
3014
3170
|
(openBlock(true), createElementBlock(Fragment, null, renderList(menu.children, (subMenu) => {
|
|
3015
3171
|
return openBlock(), createElementBlock("li", {
|
|
@@ -3022,8 +3178,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
3022
3178
|
createElementVNode("i", {
|
|
3023
3179
|
class: normalizeClass(["i opacity-50 pr-2", subMenu.icon])
|
|
3024
3180
|
}, null, 2),
|
|
3025
|
-
createElementVNode("p", _hoisted_7, toDisplayString(subMenu.label), 1)
|
|
3026
|
-
], 10, _hoisted_6);
|
|
3181
|
+
createElementVNode("p", _hoisted_7$1, toDisplayString(subMenu.label), 1)
|
|
3182
|
+
], 10, _hoisted_6$2);
|
|
3027
3183
|
}), 128))
|
|
3028
3184
|
])
|
|
3029
3185
|
])) : (openBlock(), createElementBlock("div", {
|
|
@@ -3036,15 +3192,15 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
3036
3192
|
createElementVNode("i", {
|
|
3037
3193
|
class: normalizeClass(["i opacity-50 pr-2", menu.icon])
|
|
3038
3194
|
}, null, 2),
|
|
3039
|
-
createElementVNode("p", _hoisted_9, toDisplayString(menu.label), 1)
|
|
3040
|
-
], 10, _hoisted_8))
|
|
3195
|
+
createElementVNode("p", _hoisted_9$1, toDisplayString(menu.label), 1)
|
|
3196
|
+
], 10, _hoisted_8$1))
|
|
3041
3197
|
]);
|
|
3042
3198
|
}), 128))
|
|
3043
3199
|
])
|
|
3044
3200
|
]),
|
|
3045
3201
|
_: 1
|
|
3046
3202
|
})
|
|
3047
|
-
], 4)) : createCommentVNode("", true)
|
|
3203
|
+
], 4)) : createCommentVNode("v-if", true)
|
|
3048
3204
|
]),
|
|
3049
3205
|
_: 1
|
|
3050
3206
|
})
|
|
@@ -3053,7 +3209,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
3053
3209
|
};
|
|
3054
3210
|
}
|
|
3055
3211
|
});
|
|
3056
|
-
const
|
|
3212
|
+
const MixSider = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/mix-sider.vue"]]);
|
|
3213
|
+
const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
3057
3214
|
__name: "index",
|
|
3058
3215
|
setup(__props) {
|
|
3059
3216
|
const {
|
|
@@ -3113,17 +3270,17 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
3113
3270
|
const getMode = computed(() => {
|
|
3114
3271
|
return unref$1(getSplit) ? MenuMode.INLINE : null;
|
|
3115
3272
|
});
|
|
3116
|
-
const renderTrigger = h(
|
|
3273
|
+
const renderTrigger = h(LayoutTrigger);
|
|
3117
3274
|
return (_ctx, _cache) => {
|
|
3118
3275
|
const _component_ALayoutSider = LayoutSider;
|
|
3119
|
-
return unref$1(getIsMixSidebar) ? (openBlock(),
|
|
3276
|
+
return unref$1(getIsMixSidebar) ? (openBlock(), createElementBlock(Fragment, {
|
|
3120
3277
|
key: 0
|
|
3121
|
-
})) : (openBlock(), createElementBlock(Fragment, {
|
|
3278
|
+
}, [createCommentVNode(" \u5DE6\u4FA7\u83DC\u5355\u6DF7\u5408\u6A21\u5F0F "), createVNode(MixSider)], 64)) : (openBlock(), createElementBlock(Fragment, {
|
|
3122
3279
|
key: 1
|
|
3123
|
-
}, [unref$1(getMenuFixed) ? withDirectives((openBlock(), createElementBlock("div", {
|
|
3280
|
+
}, [createCommentVNode(" \u521B\u5EFA\u4E00\u4E2A\u7A7A\u7684div\u5728\u5DE6\u4FA7\u5360\u4F4D "), unref$1(getMenuFixed) ? withDirectives((openBlock(), createElementBlock("div", {
|
|
3124
3281
|
key: 0,
|
|
3125
3282
|
style: normalizeStyle(unref$1(hiddenDomStyle))
|
|
3126
|
-
}, null, 4)), [[vShow, unref$1(showClassSideBarRef)]]) : createCommentVNode("", true), withDirectives(createVNode(_component_ALayoutSider, mergeProps({
|
|
3283
|
+
}, null, 4)), [[vShow, unref$1(showClassSideBarRef)]]) : createCommentVNode("v-if", true), withDirectives(createVNode(_component_ALayoutSider, mergeProps({
|
|
3127
3284
|
ref_key: "sideRef",
|
|
3128
3285
|
ref: sideRef,
|
|
3129
3286
|
collapsible: "",
|
|
@@ -3136,11 +3293,11 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
3136
3293
|
theme: unref$1(getMenuTheme),
|
|
3137
3294
|
trigger: unref$1(renderTrigger)
|
|
3138
3295
|
}, unref$1(getTriggerAttr)), {
|
|
3139
|
-
default: withCtx(() => [createVNode(
|
|
3296
|
+
default: withCtx(() => [createVNode(LayoutMenu, {
|
|
3140
3297
|
theme: unref$1(getMenuTheme),
|
|
3141
3298
|
menuMode: unref$1(getMode),
|
|
3142
3299
|
splitType: unref$1(getSplitType)
|
|
3143
|
-
}, null, 8, ["theme", "menuMode", "splitType"]), createVNode(
|
|
3300
|
+
}, null, 8, ["theme", "menuMode", "splitType"]), createVNode(DragBar, {
|
|
3144
3301
|
ref_key: "dragBarRef",
|
|
3145
3302
|
ref: dragBarRef
|
|
3146
3303
|
}, null, 512)]),
|
|
@@ -3149,7 +3306,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
3149
3306
|
};
|
|
3150
3307
|
}
|
|
3151
3308
|
});
|
|
3152
|
-
const
|
|
3309
|
+
const LayoutSideBar = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/sider/index.vue"]]);
|
|
3310
|
+
const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
3153
3311
|
__name: "multiple-header",
|
|
3154
3312
|
setup(__props) {
|
|
3155
3313
|
const {
|
|
@@ -3196,23 +3354,25 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
3196
3354
|
});
|
|
3197
3355
|
return (_ctx, _cache) => {
|
|
3198
3356
|
return openBlock(), createElementBlock("div", null, [
|
|
3357
|
+
createCommentVNode(" \u751F\u6210\u4E00\u4E2A\u7A7A\u7684\u5360\u4F4D\u7B26, \u53EA\u6709\u5728header\u4E3Afixed\u7684\u6A21\u5F0F\u624D\u663E\u793A "),
|
|
3199
3358
|
unref$1(getFixed) ? (openBlock(), createElementBlock("div", {
|
|
3200
3359
|
key: 0,
|
|
3201
3360
|
style: normalizeStyle(unref$1(getPlaceholderDomStyle))
|
|
3202
|
-
}, null, 4)) : createCommentVNode("", true),
|
|
3361
|
+
}, null, 4)) : createCommentVNode("v-if", true),
|
|
3203
3362
|
createElementVNode("div", {
|
|
3204
3363
|
style: normalizeStyle(unref$1(getWrapStyle)),
|
|
3205
3364
|
class: normalizeClass(unref$1(getClass))
|
|
3206
3365
|
}, [
|
|
3207
|
-
unref$1(getShowInsetHeaderRef) ? (openBlock(), createBlock(
|
|
3208
|
-
unref$1(getShowMultipleTab) && !unref$1(getMultipleTabPosIsTop) ? (openBlock(), createBlock(
|
|
3366
|
+
unref$1(getShowInsetHeaderRef) ? (openBlock(), createBlock(DtHeader, { key: 0 })) : createCommentVNode("v-if", true),
|
|
3367
|
+
unref$1(getShowMultipleTab) && !unref$1(getMultipleTabPosIsTop) ? (openBlock(), createBlock(MultipleTabs, { key: 1 })) : createCommentVNode("v-if", true)
|
|
3209
3368
|
], 6)
|
|
3210
3369
|
]);
|
|
3211
3370
|
};
|
|
3212
3371
|
}
|
|
3213
3372
|
});
|
|
3214
|
-
const
|
|
3215
|
-
const
|
|
3373
|
+
const LayoutMultipleHeader = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/multiple-header.vue"]]);
|
|
3374
|
+
const _hoisted_1$3 = { class: "pr-2.5" };
|
|
3375
|
+
const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
3216
3376
|
__name: "index",
|
|
3217
3377
|
setup(__props) {
|
|
3218
3378
|
const { getFooter } = useTheme();
|
|
@@ -3227,12 +3387,12 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
3227
3387
|
};
|
|
3228
3388
|
});
|
|
3229
3389
|
return (_ctx, _cache) => {
|
|
3230
|
-
return openBlock(), createBlock(unref$1(LayoutFooter), {
|
|
3390
|
+
return openBlock(), createBlock(unref$1(LayoutFooter$1), {
|
|
3231
3391
|
class: "text-center p-0 w-full block border-t border-gray-200",
|
|
3232
3392
|
style: normalizeStyle(unref$1(footerOptions))
|
|
3233
3393
|
}, {
|
|
3234
3394
|
default: withCtx(() => [
|
|
3235
|
-
createElementVNode("span", _hoisted_1$
|
|
3395
|
+
createElementVNode("span", _hoisted_1$3, toDisplayString(unref$1(title)), 1),
|
|
3236
3396
|
createElementVNode("span", null, toDisplayString(unref$1(subTitle)), 1)
|
|
3237
3397
|
]),
|
|
3238
3398
|
_: 1
|
|
@@ -3240,8 +3400,9 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
3240
3400
|
};
|
|
3241
3401
|
}
|
|
3242
3402
|
});
|
|
3243
|
-
const
|
|
3244
|
-
const
|
|
3403
|
+
const LayoutFooter = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/footer/index.vue"]]);
|
|
3404
|
+
const _hoisted_1$2 = ["loading"];
|
|
3405
|
+
const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
3245
3406
|
__name: "index",
|
|
3246
3407
|
setup(__props) {
|
|
3247
3408
|
const { getTransitionMode } = useApp();
|
|
@@ -3258,7 +3419,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3258
3419
|
});
|
|
3259
3420
|
return (_ctx, _cache) => {
|
|
3260
3421
|
const _component_router_view = resolveComponent("router-view");
|
|
3261
|
-
const _component_ALayoutContent = LayoutContent;
|
|
3422
|
+
const _component_ALayoutContent = LayoutContent$1;
|
|
3262
3423
|
return openBlock(), createElementBlock("div", {
|
|
3263
3424
|
id: "dt-layout-content",
|
|
3264
3425
|
class: normalizeClass([["dt-layout-content", unref$1(contentMode)], "relative flex-auto overflow-x-hidden min-h-0 flex"]),
|
|
@@ -3291,19 +3452,286 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3291
3452
|
]),
|
|
3292
3453
|
_: 1
|
|
3293
3454
|
})
|
|
3294
|
-
], 10, _hoisted_1);
|
|
3455
|
+
], 10, _hoisted_1$2);
|
|
3456
|
+
};
|
|
3457
|
+
}
|
|
3458
|
+
});
|
|
3459
|
+
const LayoutContent = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/content/index.vue"]]);
|
|
3460
|
+
const _hoisted_1$1 = { class: "dt-lock-page absolute" };
|
|
3461
|
+
const _hoisted_2$1 = { class: "absolute z-10 text-white text-center" };
|
|
3462
|
+
const _hoisted_3$1 = { class: "overflow-hidden bg-black" };
|
|
3463
|
+
const _hoisted_4$1 = /* @__PURE__ */ createElementVNode("div", { class: "relative box-border circle" }, null, -1);
|
|
3464
|
+
const _hoisted_5$1 = { class: "bubbles absolute bottom-0 left-1/2" };
|
|
3465
|
+
const _hoisted_6$1 = { class: "charging" };
|
|
3466
|
+
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
3467
|
+
__name: "Recharge",
|
|
3468
|
+
props: {
|
|
3469
|
+
battery: {
|
|
3470
|
+
type: Object
|
|
3471
|
+
},
|
|
3472
|
+
calcDischargingTime: {
|
|
3473
|
+
type: String
|
|
3474
|
+
},
|
|
3475
|
+
calcChargingTime: {
|
|
3476
|
+
type: String
|
|
3477
|
+
},
|
|
3478
|
+
batteryStatus: {
|
|
3479
|
+
type: String,
|
|
3480
|
+
validator: (val) => ["\u5145\u7535\u4E2D", "\u5DF2\u5145\u6EE1", "\u5DF2\u65AD\u5F00\u7535\u6E90"].includes(val)
|
|
3481
|
+
}
|
|
3482
|
+
},
|
|
3483
|
+
setup(__props) {
|
|
3484
|
+
return (_ctx, _cache) => {
|
|
3485
|
+
return openBlock(), createElementBlock("div", _hoisted_1$1, [
|
|
3486
|
+
createElementVNode("div", _hoisted_2$1, toDisplayString(__props.battery?.level) + "%", 1),
|
|
3487
|
+
createElementVNode("div", _hoisted_3$1, [
|
|
3488
|
+
_hoisted_4$1,
|
|
3489
|
+
createElementVNode("ul", _hoisted_5$1, [
|
|
3490
|
+
(openBlock(), createElementBlock(Fragment, null, renderList(15, (i) => {
|
|
3491
|
+
return createElementVNode("li", { key: i });
|
|
3492
|
+
}), 64))
|
|
3493
|
+
])
|
|
3494
|
+
]),
|
|
3495
|
+
createElementVNode("div", _hoisted_6$1, [
|
|
3496
|
+
createElementVNode("div", null, toDisplayString(__props.batteryStatus), 1),
|
|
3497
|
+
withDirectives(createElementVNode("div", null, " \u5269\u4F59\u53EF\u4F7F\u7528\u65F6\u95F4\uFF1A" + toDisplayString(__props.calcDischargingTime), 513), [
|
|
3498
|
+
[vShow, Number.isFinite(__props.battery.dischargingTime) && __props.battery.dischargingTime != 0]
|
|
3499
|
+
]),
|
|
3500
|
+
withDirectives(createElementVNode("span", null, " \u8DDD\u79BB\u7535\u6C60\u5145\u6EE1\u9700\u8981\uFF1A" + toDisplayString(__props.calcChargingTime), 513), [
|
|
3501
|
+
[vShow, Number.isFinite(__props.battery.chargingTime) && __props.battery.chargingTime != 0]
|
|
3502
|
+
])
|
|
3503
|
+
])
|
|
3504
|
+
]);
|
|
3505
|
+
};
|
|
3506
|
+
}
|
|
3507
|
+
});
|
|
3508
|
+
const Recharge = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/lock/Recharge.vue"]]);
|
|
3509
|
+
function useBattery() {
|
|
3510
|
+
const state = reactive({
|
|
3511
|
+
battery: {
|
|
3512
|
+
charging: false,
|
|
3513
|
+
chargingTime: 0,
|
|
3514
|
+
dischargingTime: 0,
|
|
3515
|
+
level: 100
|
|
3516
|
+
}
|
|
3517
|
+
});
|
|
3518
|
+
function updateBattery(target) {
|
|
3519
|
+
for (const key in state.battery) {
|
|
3520
|
+
state.battery[key] = target[key];
|
|
3521
|
+
}
|
|
3522
|
+
state.battery.level = state.battery.level * 100;
|
|
3523
|
+
}
|
|
3524
|
+
const calcDischargingTime = computed(() => {
|
|
3525
|
+
const hour = state.battery.dischargingTime / 3600;
|
|
3526
|
+
const minute = state.battery.dischargingTime / 60 % 60;
|
|
3527
|
+
return `${~~hour}\u5C0F\u65F6${minute}\u5206\u949F`;
|
|
3528
|
+
});
|
|
3529
|
+
const calcChargingTime = computed(() => {
|
|
3530
|
+
const hour = state.battery.chargingTime / 3600;
|
|
3531
|
+
const minute = state.battery.chargingTime / 60 % 60;
|
|
3532
|
+
return `${~~hour}\u5C0F\u65F6${~~minute}\u5206\u949F`;
|
|
3533
|
+
});
|
|
3534
|
+
const batteryStatus = computed(() => {
|
|
3535
|
+
if (state.battery.charging && state.battery.level >= 100) {
|
|
3536
|
+
return "\u5DF2\u5145\u6EE1";
|
|
3537
|
+
} else if (state.battery.charging) {
|
|
3538
|
+
return "\u5145\u7535\u4E2D";
|
|
3539
|
+
} else {
|
|
3540
|
+
return "\u5DF2\u65AD\u5F00\u7535\u6E90";
|
|
3541
|
+
}
|
|
3542
|
+
});
|
|
3543
|
+
onMounted$1(async () => {
|
|
3544
|
+
const BatteryManager = await window.navigator.getBattery();
|
|
3545
|
+
updateBattery(BatteryManager);
|
|
3546
|
+
BatteryManager.onchargingchange = ({ target }) => {
|
|
3547
|
+
updateBattery(target);
|
|
3548
|
+
};
|
|
3549
|
+
BatteryManager.onchargingtimechange = ({ target }) => {
|
|
3550
|
+
updateBattery(target);
|
|
3551
|
+
};
|
|
3552
|
+
BatteryManager.ondischargingtimechange = ({ target }) => {
|
|
3553
|
+
updateBattery(target);
|
|
3554
|
+
};
|
|
3555
|
+
BatteryManager.onlevelchange = ({ target }) => {
|
|
3556
|
+
updateBattery(target);
|
|
3557
|
+
};
|
|
3558
|
+
});
|
|
3559
|
+
return {
|
|
3560
|
+
...toRefs(state),
|
|
3561
|
+
batteryStatus,
|
|
3562
|
+
calcDischargingTime,
|
|
3563
|
+
calcChargingTime
|
|
3564
|
+
};
|
|
3565
|
+
}
|
|
3566
|
+
function useTime() {
|
|
3567
|
+
let timer = null;
|
|
3568
|
+
let t = reactive({
|
|
3569
|
+
month: null,
|
|
3570
|
+
week: null,
|
|
3571
|
+
date: null,
|
|
3572
|
+
hour: null,
|
|
3573
|
+
minute: null
|
|
3574
|
+
});
|
|
3575
|
+
function updateTime() {
|
|
3576
|
+
const fillZero = (time) => time < 10 ? `0${time}` : `${time}`;
|
|
3577
|
+
t.hour = fillZero(dayjs().get("hour"));
|
|
3578
|
+
t.minute = fillZero(dayjs().get("minute"));
|
|
3579
|
+
t.month = fillZero(dayjs().get("month") + 1);
|
|
3580
|
+
t.date = fillZero(dayjs().get("date"));
|
|
3581
|
+
t.week = ["\u4E00", "\u4E8C", "\u4E09", "\u56DB", "\u4E94", "\u516D", "\u65E5"][dayjs().get("day") - 1];
|
|
3582
|
+
}
|
|
3583
|
+
updateTime();
|
|
3584
|
+
onMounted(() => {
|
|
3585
|
+
clearInterval(timer);
|
|
3586
|
+
timer = setInterval(() => updateTime(), 1e3);
|
|
3587
|
+
});
|
|
3588
|
+
onUnmounted(() => {
|
|
3589
|
+
clearInterval(timer);
|
|
3590
|
+
});
|
|
3591
|
+
return {
|
|
3592
|
+
...toRefs(t)
|
|
3593
|
+
};
|
|
3594
|
+
}
|
|
3595
|
+
const _hoisted_1 = { class: "lock-box absolute top-5 left-1/2 -translate-x-1/2 z-20" };
|
|
3596
|
+
const _hoisted_2 = { class: "flex justify-center" };
|
|
3597
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("i", { class: "i ic:baseline-lock" }, null, -1);
|
|
3598
|
+
const _hoisted_4 = [
|
|
3599
|
+
_hoisted_3
|
|
3600
|
+
];
|
|
3601
|
+
const _hoisted_5 = {
|
|
3602
|
+
key: 1,
|
|
3603
|
+
class: "login-box absolute left-0 top-0 right-0 bottom-0 m-auto w-60 h-80"
|
|
3604
|
+
};
|
|
3605
|
+
const _hoisted_6 = { class: "pb-3 block text-gray-300" };
|
|
3606
|
+
const _hoisted_7 = { class: "w-full mt-1 flex justify-around pt-1" };
|
|
3607
|
+
const _hoisted_8 = { class: "local-time absolute" };
|
|
3608
|
+
const _hoisted_9 = { class: "time" };
|
|
3609
|
+
const _hoisted_10 = { class: "date" };
|
|
3610
|
+
const _hoisted_11 = { class: "computer-status absolute flex flex-col" };
|
|
3611
|
+
const _hoisted_12 = /* @__PURE__ */ createElementVNode("i", { class: "i ant-design:wifi-outlined" }, null, -1);
|
|
3612
|
+
const _hoisted_13 = [
|
|
3613
|
+
_hoisted_12
|
|
3614
|
+
];
|
|
3615
|
+
const _hoisted_14 = /* @__PURE__ */ createElementVNode("i", { class: "i ant-design:api-outlined" }, null, -1);
|
|
3616
|
+
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
3617
|
+
__name: "Lockscreen",
|
|
3618
|
+
setup(__props) {
|
|
3619
|
+
const go = useGo();
|
|
3620
|
+
let slots = ref();
|
|
3621
|
+
getParentSlots(null, "dt-theme").then((rsp) => {
|
|
3622
|
+
slots.value = rsp;
|
|
3623
|
+
});
|
|
3624
|
+
const { loginOutClick } = useHeader();
|
|
3625
|
+
const getUserInfo = DtCache.getLocal(CacheKey.USER_INFO);
|
|
3626
|
+
const useLockscreen = useLockscreenStore();
|
|
3627
|
+
const online = computed(() => navigator.onLine);
|
|
3628
|
+
const { month, week, date, hour, minute } = useTime();
|
|
3629
|
+
const state = reactive({
|
|
3630
|
+
showLogin: false,
|
|
3631
|
+
loginLoading: false,
|
|
3632
|
+
loginParams: {
|
|
3633
|
+
password: ""
|
|
3634
|
+
}
|
|
3635
|
+
});
|
|
3636
|
+
const onLockLogin = (value) => state.showLogin = value;
|
|
3637
|
+
const {
|
|
3638
|
+
battery,
|
|
3639
|
+
batteryStatus,
|
|
3640
|
+
calcDischargingTime,
|
|
3641
|
+
calcChargingTime
|
|
3642
|
+
} = useBattery();
|
|
3643
|
+
const goLogin = () => {
|
|
3644
|
+
useLockscreen.setLock(false);
|
|
3645
|
+
if (loginOutClick && isFunction(loginOutClick)) {
|
|
3646
|
+
loginOutClick();
|
|
3647
|
+
} else {
|
|
3648
|
+
go(Pages.LOGIN);
|
|
3649
|
+
}
|
|
3650
|
+
};
|
|
3651
|
+
function resetLockInfo() {
|
|
3652
|
+
useLockscreen.setLock(false);
|
|
3653
|
+
DtCache.removeLocal(LOCKSCREEN);
|
|
3654
|
+
state.loginParams.password = null;
|
|
3655
|
+
}
|
|
3656
|
+
const onLogin = () => {
|
|
3657
|
+
let pwd = DtCache.getLocal(LOCKSCREEN)?.pwd;
|
|
3658
|
+
if (state.loginParams.password === pwd) {
|
|
3659
|
+
resetLockInfo();
|
|
3660
|
+
}
|
|
3661
|
+
};
|
|
3662
|
+
return (_ctx, _cache) => {
|
|
3663
|
+
const _component_AInputPassword = InputPassword;
|
|
3664
|
+
return openBlock(), createElementBlock("div", {
|
|
3665
|
+
class: normalizeClass([{ onLockLogin: state.showLogin }, "lockscreen fixed top-0 left-0 flex bg-black text-white overflow-hidden z-50 w-full h-full"]),
|
|
3666
|
+
onMousedown: _cache[3] || (_cache[3] = withModifiers(() => {
|
|
3667
|
+
}, ["stop"])),
|
|
3668
|
+
onContextmenu: _cache[4] || (_cache[4] = withModifiers(() => {
|
|
3669
|
+
}, ["prevent"]))
|
|
3670
|
+
}, [
|
|
3671
|
+
!state.showLogin ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
3672
|
+
createElementVNode("div", _hoisted_1, [
|
|
3673
|
+
createElementVNode("div", _hoisted_2, [
|
|
3674
|
+
createElementVNode("span", {
|
|
3675
|
+
class: "cursor-pointer",
|
|
3676
|
+
title: "\u89E3\u9501\u5C4F\u5E55",
|
|
3677
|
+
onClick: _cache[0] || (_cache[0] = ($event) => onLockLogin(true))
|
|
3678
|
+
}, _hoisted_4)
|
|
3679
|
+
])
|
|
3680
|
+
]),
|
|
3681
|
+
createVNode(Recharge, {
|
|
3682
|
+
battery: unref$1(battery),
|
|
3683
|
+
"battery-status": unref$1(batteryStatus),
|
|
3684
|
+
"calc-discharging-time": unref$1(calcDischargingTime),
|
|
3685
|
+
"calc-charging-time": unref$1(calcChargingTime)
|
|
3686
|
+
}, null, 8, ["battery", "battery-status", "calc-discharging-time", "calc-charging-time"])
|
|
3687
|
+
], 64)) : (openBlock(), createElementBlock("div", _hoisted_5, [
|
|
3688
|
+
unref$1(slots)?.icon ? (openBlock(), createBlock(unref$1(DtSlotContainer$1), {
|
|
3689
|
+
key: 0,
|
|
3690
|
+
template: unref$1(slots).icon
|
|
3691
|
+
}, null, 8, ["template"])) : createCommentVNode("v-if", true),
|
|
3692
|
+
createElementVNode("span", _hoisted_6, toDisplayString(unref$1(getUserInfo)?.userNo), 1),
|
|
3693
|
+
createVNode(_component_AInputPassword, {
|
|
3694
|
+
class: "mt-2",
|
|
3695
|
+
autofocus: "",
|
|
3696
|
+
value: state.loginParams.password,
|
|
3697
|
+
"onUpdate:value": _cache[1] || (_cache[1] = ($event) => state.loginParams.password = $event),
|
|
3698
|
+
onKeyup: withKeys(onLogin, ["enter"]),
|
|
3699
|
+
placeholder: "\u8BF7\u8F93\u5165\u9501\u5C4F\u5BC6\u7801"
|
|
3700
|
+
}, null, 8, ["value", "onKeyup"]),
|
|
3701
|
+
createElementVNode("div", _hoisted_7, [
|
|
3702
|
+
createElementVNode("a", {
|
|
3703
|
+
onClick: _cache[2] || (_cache[2] = ($event) => state.showLogin = false)
|
|
3704
|
+
}, "\u8FD4\u56DE"),
|
|
3705
|
+
createElementVNode("a", { onClick: goLogin }, "\u91CD\u65B0\u767B\u5F55"),
|
|
3706
|
+
createElementVNode("a", { onClick: onLogin }, "\u8FDB\u5165\u7CFB\u7EDF")
|
|
3707
|
+
])
|
|
3708
|
+
])),
|
|
3709
|
+
createElementVNode("div", _hoisted_8, [
|
|
3710
|
+
createElementVNode("div", _hoisted_9, toDisplayString(unref$1(hour)) + ":" + toDisplayString(unref$1(minute)), 1),
|
|
3711
|
+
createElementVNode("div", _hoisted_10, toDisplayString(unref$1(month)) + "\u6708" + toDisplayString(unref$1(date)) + "\u53F7\uFF0C\u661F\u671F" + toDisplayString(unref$1(week)), 1)
|
|
3712
|
+
]),
|
|
3713
|
+
createElementVNode("div", _hoisted_11, [
|
|
3714
|
+
createElementVNode("span", {
|
|
3715
|
+
class: normalizeClass([{ offline: !unref$1(online) }, "network"])
|
|
3716
|
+
}, _hoisted_13, 2),
|
|
3717
|
+
_hoisted_14
|
|
3718
|
+
])
|
|
3719
|
+
], 34);
|
|
3295
3720
|
};
|
|
3296
3721
|
}
|
|
3297
3722
|
});
|
|
3723
|
+
const LockScreen = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/components/header/components/lock/Lockscreen.vue"]]);
|
|
3298
3724
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
3299
3725
|
__name: "index",
|
|
3300
3726
|
setup(__props) {
|
|
3301
3727
|
const { currentRoute } = useRouter();
|
|
3302
|
-
const { getShowFullHeaderRef, getIsZH, getHeaderHeight, getUiSize } = useHeader();
|
|
3728
|
+
const { getShowFullHeaderRef, getIsZH, getHeaderHeight, getUiSize, getLockscreen } = useHeader();
|
|
3303
3729
|
const { getSplit, getShowMenu, getShowSidebar, getIsMixSidebar } = useMenu();
|
|
3304
3730
|
const { getFooter, getShowFooter } = useTheme();
|
|
3305
3731
|
const { height } = unref$1(getFooter);
|
|
3306
3732
|
dayjs.locale(unref$1(getIsZH) ? "zh-cn" : "en");
|
|
3733
|
+
const useLockscreen = useLockscreenStore();
|
|
3734
|
+
const isLock = computed(() => useLockscreen.isLock);
|
|
3307
3735
|
const layoutClass = computed(() => {
|
|
3308
3736
|
let cls = "ant-layout";
|
|
3309
3737
|
if (unref$1(getIsMixSidebar)) {
|
|
@@ -3351,7 +3779,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3351
3779
|
return openBlock(), createElementBlock("div", {
|
|
3352
3780
|
class: normalizeClass(["dt-theme w-full h-full", `dt-theme-${unref$1(getUiSize)}`])
|
|
3353
3781
|
}, [
|
|
3354
|
-
|
|
3782
|
+
!unref$1(isLock) ? (openBlock(), createBlock(_component_AConfigProvider, {
|
|
3783
|
+
key: 0,
|
|
3355
3784
|
locale: unref$1(getIsZH) ? unref$1(zhCN) : unref$1(en),
|
|
3356
3785
|
"component-size": unref$1(getUiSize)
|
|
3357
3786
|
}, {
|
|
@@ -3361,24 +3790,24 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3361
3790
|
class: "w-full h-full flex"
|
|
3362
3791
|
}, {
|
|
3363
3792
|
default: withCtx(() => [
|
|
3364
|
-
createVNode(
|
|
3365
|
-
unref$1(getShowFullHeaderRef) ? (openBlock(), createBlock(
|
|
3793
|
+
createVNode(DtFeature$1),
|
|
3794
|
+
unref$1(getShowFullHeaderRef) ? (openBlock(), createBlock(DtHeader, {
|
|
3366
3795
|
key: 0,
|
|
3367
3796
|
fixed: ""
|
|
3368
|
-
})) : createCommentVNode("", true),
|
|
3797
|
+
})) : createCommentVNode("v-if", true),
|
|
3369
3798
|
createVNode(_component_ALayout, {
|
|
3370
3799
|
class: normalizeClass(unref$1(layoutClass)),
|
|
3371
3800
|
style: normalizeStyle(unref$1(layoutOption))
|
|
3372
3801
|
}, {
|
|
3373
3802
|
default: withCtx(() => [
|
|
3374
|
-
unref$1(getShowSidebar) ? (openBlock(), createBlock(
|
|
3803
|
+
unref$1(getShowSidebar) ? (openBlock(), createBlock(LayoutSideBar, { key: 0 })) : createCommentVNode("v-if", true),
|
|
3375
3804
|
createVNode(_component_ALayout, { class: "dt-theme-main flex w-full h-ful transition-width duration-200" }, {
|
|
3376
3805
|
default: withCtx(() => [
|
|
3377
|
-
createVNode(
|
|
3378
|
-
createVNode(
|
|
3806
|
+
createVNode(LayoutMultipleHeader),
|
|
3807
|
+
createVNode(LayoutContent, {
|
|
3379
3808
|
style: normalizeStyle(unref$1(getContentStyle))
|
|
3380
3809
|
}, null, 8, ["style"]),
|
|
3381
|
-
unref$1(getFooter) && unref$1(getFooter)["show"] ? (openBlock(), createBlock(
|
|
3810
|
+
unref$1(getFooter) && unref$1(getFooter)["show"] ? (openBlock(), createBlock(LayoutFooter, { key: 0 })) : createCommentVNode("v-if", true)
|
|
3382
3811
|
]),
|
|
3383
3812
|
_: 1
|
|
3384
3813
|
})
|
|
@@ -3390,11 +3819,21 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
3390
3819
|
})) : (openBlock(), createBlock(unref$1(RouterView), { key: 1 }))
|
|
3391
3820
|
]),
|
|
3392
3821
|
_: 1
|
|
3393
|
-
}, 8, ["locale", "component-size"])
|
|
3822
|
+
}, 8, ["locale", "component-size"])) : createCommentVNode("v-if", true),
|
|
3823
|
+
unref$1(getLockscreen) && unref$1(isLock) && unref$1(currentRoute)?.name && unref$1(currentRoute).meta?.requiresAuth !== false ? (openBlock(), createBlock(Transition, {
|
|
3824
|
+
key: 1,
|
|
3825
|
+
name: "fade-slide"
|
|
3826
|
+
}, {
|
|
3827
|
+
default: withCtx(() => [
|
|
3828
|
+
createVNode(unref$1(LockScreen))
|
|
3829
|
+
]),
|
|
3830
|
+
_: 1
|
|
3831
|
+
})) : createCommentVNode("v-if", true)
|
|
3394
3832
|
], 2);
|
|
3395
3833
|
};
|
|
3396
3834
|
}
|
|
3397
3835
|
});
|
|
3836
|
+
const Theme = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "D:/dt/dt-frame-front/dt-frames/frames/packages/ui/src/theme/src/index.vue"]]);
|
|
3398
3837
|
const EN = {
|
|
3399
3838
|
"UI": {
|
|
3400
3839
|
"ADD": "Add ",
|
|
@@ -3603,7 +4042,7 @@ const ZH = {
|
|
|
3603
4042
|
}
|
|
3604
4043
|
};
|
|
3605
4044
|
const uiLang = (lang) => lang === Language.ZH ? ZH : EN;
|
|
3606
|
-
const DtTheme = withInstall$1(
|
|
4045
|
+
const DtTheme = withInstall$1(Theme);
|
|
3607
4046
|
export {
|
|
3608
4047
|
ContentMode,
|
|
3609
4048
|
DtTheme,
|