@fmdevui/fm-dev 1.0.14 → 1.0.16
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/_virtual/_plugin-vue_export-helper.mjs +9 -0
- package/es/core/layout/component/aside.vue.d.ts +5 -0
- package/es/core/layout/component/columnsAside.vue.d.ts +5 -0
- package/es/core/layout/component/header.vue.d.ts +3 -0
- package/es/core/layout/component/main.vue.d.ts +7 -0
- package/es/core/layout/component/style/css.d.ts +1 -0
- package/es/core/layout/component/style/index.d.ts +1 -0
- package/es/core/layout/footer/index.vue.d.ts +3 -0
- package/es/core/layout/footer/style/css.d.ts +1 -0
- package/es/core/layout/footer/style/index.d.ts +1 -0
- package/es/core/layout/index.d.ts +3 -0
- package/es/core/layout/layout.vue.d.ts +3 -0
- package/es/core/layout/lockScreen/style/css.d.ts +1 -0
- package/es/core/layout/lockScreen/style/index.d.ts +1 -0
- package/es/core/layout/logo/index.vue.d.ts +3 -0
- package/es/core/layout/logo/style/css.d.ts +1 -0
- package/es/core/layout/logo/style/index.d.ts +1 -0
- package/es/core/layout/main/classic.vue.d.ts +18 -0
- package/es/core/layout/main/columns.vue.d.ts +19 -0
- package/es/core/layout/main/defaults.vue.d.ts +19 -0
- package/es/core/layout/main/transverse.vue.d.ts +18 -0
- package/es/core/layout/navBars/index.vue.d.ts +3 -0
- package/es/core/layout/navBars/tagsView/contextmenu.vue.d.ts +28 -0
- package/es/core/layout/navBars/tagsView/style/css.d.ts +1 -0
- package/es/core/layout/navBars/tagsView/style/index.d.ts +1 -0
- package/es/core/layout/navBars/tagsView/tagsView.vue.d.ts +45 -0
- package/es/core/layout/navBars/topBar/breadcrumb.vue.d.ts +3 -0
- package/es/core/layout/navBars/topBar/changePassword.vue.d.ts +7 -0
- package/es/core/layout/navBars/topBar/index.vue.d.ts +3 -0
- package/es/core/layout/navBars/topBar/onlineuser.vue.d.ts +30 -0
- package/es/core/layout/navBars/topBar/search.vue.d.ts +7 -0
- package/es/core/layout/navBars/topBar/sendMessage.vue.d.ts +11 -0
- package/es/core/layout/navBars/topBar/style/css.d.ts +1 -0
- package/es/core/layout/navBars/topBar/style/index.d.ts +1 -0
- package/es/core/layout/navBars/topBar/upgradeInfo.vue.d.ts +5 -0
- package/es/core/layout/navBars/topBar/user.vue.d.ts +81 -0
- package/es/core/layout/navBars/topBar/userNews.vue.d.ts +9 -0
- package/es/core/layout/navMenu/horizontal.vue.d.ts +42 -0
- package/es/core/layout/navMenu/style/css.d.ts +1 -0
- package/es/core/layout/navMenu/style/index.d.ts +1 -0
- package/es/core/layout/navMenu/subItem.vue.d.ts +42 -0
- package/es/core/layout/navMenu/vertical.vue.d.ts +42 -0
- package/es/core/layout/routerView/iframes.vue.d.ts +35 -0
- package/es/core/layout/routerView/parent.vue.d.ts +3 -0
- package/es/core/layout/routerView/style/css.d.ts +1 -0
- package/es/core/layout/routerView/style/index.d.ts +1 -0
- package/es/core/layout/upgrade/style/css.d.ts +1 -0
- package/es/core/layout/upgrade/style/index.d.ts +1 -0
- package/es/core/types/router/index.d.ts +2 -2
- package/es/core/ui/components/editor/index.vue.d.ts +52 -0
- package/es/make-installer.mjs +7 -1
- package/es/node_modules/.pnpm/@wangeditor_editor@5.1.23/node_modules/@wangeditor/editor/dist/css/style.css.mjs +3 -0
- package/es/packages/core/layout/component/aside.vue.mjs +5 -0
- package/es/packages/core/layout/component/aside.vue2.mjs +171 -0
- package/es/packages/core/layout/component/columnsAside.vue.mjs +7 -0
- package/es/packages/core/layout/component/columnsAside.vue2.mjs +270 -0
- package/es/packages/core/layout/component/columnsAside.vue3.mjs +3 -0
- package/es/packages/core/layout/component/header.vue.mjs +5 -0
- package/es/packages/core/layout/component/header.vue2.mjs +34 -0
- package/es/packages/core/layout/component/main.vue.mjs +5 -0
- package/es/packages/core/layout/component/main.vue2.mjs +84 -0
- package/es/packages/core/layout/component/style/css.mjs +1 -0
- package/es/packages/core/layout/component/style/index.mjs +1 -0
- package/es/packages/core/layout/footer/index.vue.mjs +5 -0
- package/es/packages/core/layout/footer/index.vue2.mjs +29 -0
- package/es/packages/core/layout/footer/style/css.mjs +1 -0
- package/es/packages/core/layout/footer/style/index.mjs +1 -0
- package/es/packages/core/layout/index.mjs +6 -0
- package/es/packages/core/layout/layout.vue.mjs +5 -0
- package/es/packages/core/layout/layout.vue2.mjs +60 -0
- package/es/packages/core/layout/lockScreen/index.vue.mjs +7 -0
- package/es/packages/core/layout/lockScreen/index.vue2.mjs +420 -0
- package/es/packages/core/layout/lockScreen/index.vue3.mjs +3 -0
- package/es/packages/core/layout/lockScreen/style/css.mjs +1 -0
- package/es/packages/core/layout/lockScreen/style/index.mjs +1 -0
- package/es/packages/core/layout/logo/index.vue.mjs +5 -0
- package/es/packages/core/layout/logo/index.vue2.mjs +57 -0
- package/es/packages/core/layout/logo/style/css.mjs +1 -0
- package/es/packages/core/layout/logo/style/index.mjs +1 -0
- package/es/packages/core/layout/main/classic.vue.mjs +5 -0
- package/es/packages/core/layout/main/classic.vue2.mjs +94 -0
- package/es/packages/core/layout/main/columns.vue.mjs +5 -0
- package/es/packages/core/layout/main/columns.vue2.mjs +107 -0
- package/es/packages/core/layout/main/defaults.vue.mjs +5 -0
- package/es/packages/core/layout/main/defaults.vue2.mjs +106 -0
- package/es/packages/core/layout/main/transverse.vue.mjs +5 -0
- package/es/packages/core/layout/main/transverse.vue2.mjs +74 -0
- package/es/packages/core/layout/navBars/index.vue.mjs +7 -0
- package/es/packages/core/layout/navBars/index.vue2.mjs +31 -0
- package/es/packages/core/layout/navBars/index.vue3.mjs +3 -0
- package/es/packages/core/layout/navBars/tagsView/contextmenu.vue.mjs +5 -0
- package/es/packages/core/layout/navBars/tagsView/contextmenu.vue2.mjs +155 -0
- package/es/packages/core/layout/navBars/tagsView/style/css.mjs +1 -0
- package/es/packages/core/layout/navBars/tagsView/style/index.mjs +1 -0
- package/es/packages/core/layout/navBars/tagsView/tagsView.vue.mjs +5 -0
- package/es/packages/core/layout/navBars/tagsView/tagsView.vue2.mjs +556 -0
- package/es/packages/core/layout/navBars/topBar/breadcrumb.vue.mjs +7 -0
- package/es/packages/core/layout/navBars/topBar/breadcrumb.vue2.mjs +172 -0
- package/es/packages/core/layout/navBars/topBar/breadcrumb.vue3.mjs +3 -0
- package/es/packages/core/layout/navBars/topBar/changePassword.vue.mjs +5 -0
- package/es/packages/core/layout/navBars/topBar/changePassword.vue2.mjs +264 -0
- package/es/packages/core/layout/navBars/topBar/closeFull.vue.mjs +5 -0
- package/es/packages/core/layout/navBars/topBar/closeFull.vue2.mjs +34 -0
- package/es/packages/core/layout/navBars/topBar/index.vue.mjs +5 -0
- package/es/packages/core/layout/navBars/topBar/index.vue2.mjs +103 -0
- package/es/packages/core/layout/navBars/topBar/onlineuser.vue.mjs +7 -0
- package/es/packages/core/layout/navBars/topBar/onlineuser.vue2.mjs +414 -0
- package/es/packages/core/layout/navBars/topBar/onlineuser.vue3.mjs +3 -0
- package/es/packages/core/layout/navBars/topBar/search.vue.mjs +5 -0
- package/es/packages/core/layout/navBars/topBar/search.vue2.mjs +118 -0
- package/es/packages/core/layout/navBars/topBar/sendMessage.vue.mjs +5 -0
- package/es/packages/core/layout/navBars/topBar/sendMessage.vue2.mjs +212 -0
- package/es/packages/core/layout/navBars/topBar/settings.vue.mjs +7 -0
- package/es/packages/core/layout/navBars/topBar/settings.vue2.mjs +1901 -0
- package/es/packages/core/layout/navBars/topBar/settings.vue3.mjs +3 -0
- package/es/packages/core/layout/navBars/topBar/style/css.mjs +1 -0
- package/es/packages/core/layout/navBars/topBar/style/index.mjs +1 -0
- package/es/packages/core/layout/navBars/topBar/upgradeInfo.vue.mjs +5 -0
- package/es/packages/core/layout/navBars/topBar/upgradeInfo.vue2.mjs +72 -0
- package/es/packages/core/layout/navBars/topBar/user.vue.mjs +5 -0
- package/es/packages/core/layout/navBars/topBar/user.vue2.mjs +684 -0
- package/es/packages/core/layout/navBars/topBar/userNews.vue.mjs +7 -0
- package/es/packages/core/layout/navBars/topBar/userNews.vue2.mjs +233 -0
- package/es/packages/core/layout/navBars/topBar/userNews.vue3.mjs +3 -0
- package/es/packages/core/layout/navMenu/horizontal.vue.mjs +5 -0
- package/es/packages/core/layout/navMenu/horizontal.vue2.mjs +181 -0
- package/es/packages/core/layout/navMenu/style/css.mjs +1 -0
- package/es/packages/core/layout/navMenu/style/index.mjs +1 -0
- package/es/packages/core/layout/navMenu/subItem.vue.mjs +5 -0
- package/es/packages/core/layout/navMenu/subItem.vue2.mjs +110 -0
- package/es/packages/core/layout/navMenu/vertical.vue.mjs +5 -0
- package/es/packages/core/layout/navMenu/vertical.vue2.mjs +161 -0
- package/es/packages/core/layout/routerView/iframes.vue.mjs +5 -0
- package/es/packages/core/layout/routerView/iframes.vue2.mjs +124 -0
- package/es/packages/core/layout/routerView/link.vue.mjs +5 -0
- package/es/packages/core/layout/routerView/link.vue2.mjs +84 -0
- package/es/packages/core/layout/routerView/parent.vue.mjs +5 -0
- package/es/packages/core/layout/routerView/parent.vue2.mjs +139 -0
- package/es/packages/core/layout/routerView/style/css.mjs +1 -0
- package/es/packages/core/layout/routerView/style/index.mjs +1 -0
- package/es/packages/core/layout/upgrade/index.vue.mjs +5 -0
- package/es/packages/core/layout/upgrade/index.vue2.mjs +152 -0
- package/es/packages/core/layout/upgrade/style/css.mjs +1 -0
- package/es/packages/core/layout/upgrade/style/index.mjs +1 -0
- package/es/packages/core/ui/components/editor/index.vue.mjs +6 -0
- package/es/packages/core/ui/components/editor/index.vue2.mjs +145 -0
- package/es/packages/core/ui/components/editor/index.vue3.mjs +3 -0
- package/es/packages/core/ui/components/noticeBar/index.vue2.mjs +3 -0
- package/es/packages/core/ui/components/svgIcon/index.mjs +6 -2
- package/es/packages/core/ui/components/svgIcon/svgicon.vue2.mjs +3 -0
- package/es/version.css +9 -0
- package/index.css +1 -1
- package/index.js +20 -4
- package/index.min.js +2 -2
- package/index.min.mjs +2 -2
- package/index.mjs +20 -4
- package/lib/_virtual/_plugin-vue_export-helper.js +13 -0
- package/lib/core/layout/component/aside.vue.d.ts +5 -0
- package/lib/core/layout/component/columnsAside.vue.d.ts +5 -0
- package/lib/core/layout/component/header.vue.d.ts +3 -0
- package/lib/core/layout/component/main.vue.d.ts +7 -0
- package/lib/core/layout/component/style/css.d.ts +1 -0
- package/lib/core/layout/component/style/index.d.ts +1 -0
- package/lib/core/layout/footer/index.vue.d.ts +3 -0
- package/lib/core/layout/footer/style/css.d.ts +1 -0
- package/lib/core/layout/footer/style/index.d.ts +1 -0
- package/lib/core/layout/index.d.ts +3 -0
- package/lib/core/layout/layout.vue.d.ts +3 -0
- package/lib/core/layout/lockScreen/style/css.d.ts +1 -0
- package/lib/core/layout/lockScreen/style/index.d.ts +1 -0
- package/lib/core/layout/logo/index.vue.d.ts +3 -0
- package/lib/core/layout/logo/style/css.d.ts +1 -0
- package/lib/core/layout/logo/style/index.d.ts +1 -0
- package/lib/core/layout/main/classic.vue.d.ts +18 -0
- package/lib/core/layout/main/columns.vue.d.ts +19 -0
- package/lib/core/layout/main/defaults.vue.d.ts +19 -0
- package/lib/core/layout/main/transverse.vue.d.ts +18 -0
- package/lib/core/layout/navBars/index.vue.d.ts +3 -0
- package/lib/core/layout/navBars/tagsView/contextmenu.vue.d.ts +28 -0
- package/lib/core/layout/navBars/tagsView/style/css.d.ts +1 -0
- package/lib/core/layout/navBars/tagsView/style/index.d.ts +1 -0
- package/lib/core/layout/navBars/tagsView/tagsView.vue.d.ts +45 -0
- package/lib/core/layout/navBars/topBar/breadcrumb.vue.d.ts +3 -0
- package/lib/core/layout/navBars/topBar/changePassword.vue.d.ts +7 -0
- package/lib/core/layout/navBars/topBar/index.vue.d.ts +3 -0
- package/lib/core/layout/navBars/topBar/onlineuser.vue.d.ts +30 -0
- package/lib/core/layout/navBars/topBar/search.vue.d.ts +7 -0
- package/lib/core/layout/navBars/topBar/sendMessage.vue.d.ts +11 -0
- package/lib/core/layout/navBars/topBar/style/css.d.ts +1 -0
- package/lib/core/layout/navBars/topBar/style/index.d.ts +1 -0
- package/lib/core/layout/navBars/topBar/upgradeInfo.vue.d.ts +5 -0
- package/lib/core/layout/navBars/topBar/user.vue.d.ts +81 -0
- package/lib/core/layout/navBars/topBar/userNews.vue.d.ts +9 -0
- package/lib/core/layout/navMenu/horizontal.vue.d.ts +42 -0
- package/lib/core/layout/navMenu/style/css.d.ts +1 -0
- package/lib/core/layout/navMenu/style/index.d.ts +1 -0
- package/lib/core/layout/navMenu/subItem.vue.d.ts +42 -0
- package/lib/core/layout/navMenu/vertical.vue.d.ts +42 -0
- package/lib/core/layout/routerView/iframes.vue.d.ts +35 -0
- package/lib/core/layout/routerView/parent.vue.d.ts +3 -0
- package/lib/core/layout/routerView/style/css.d.ts +1 -0
- package/lib/core/layout/routerView/style/index.d.ts +1 -0
- package/lib/core/layout/upgrade/style/css.d.ts +1 -0
- package/lib/core/layout/upgrade/style/index.d.ts +1 -0
- package/lib/core/types/router/index.d.ts +2 -2
- package/lib/core/ui/components/editor/index.vue.d.ts +52 -0
- package/lib/index.css +9 -0
- package/lib/make-installer.js +7 -1
- package/lib/node_modules/.pnpm/@wangeditor_editor@5.1.23/node_modules/@wangeditor/editor/dist/css/style.css.js +7 -0
- package/lib/packages/core/layout/component/aside.vue.js +9 -0
- package/lib/packages/core/layout/component/aside.vue2.js +175 -0
- package/lib/packages/core/layout/component/columnsAside.vue.js +11 -0
- package/lib/packages/core/layout/component/columnsAside.vue2.js +274 -0
- package/lib/packages/core/layout/component/columnsAside.vue3.js +7 -0
- package/lib/packages/core/layout/component/header.vue.js +9 -0
- package/lib/packages/core/layout/component/header.vue2.js +38 -0
- package/lib/packages/core/layout/component/main.vue.js +9 -0
- package/lib/packages/core/layout/component/main.vue2.js +88 -0
- package/lib/packages/core/layout/component/style/css.js +4 -0
- package/lib/packages/core/layout/component/style/index.js +4 -0
- package/lib/packages/core/layout/footer/index.vue.js +9 -0
- package/lib/packages/core/layout/footer/index.vue2.js +33 -0
- package/lib/packages/core/layout/footer/style/css.js +4 -0
- package/lib/packages/core/layout/footer/style/index.js +4 -0
- package/lib/packages/core/layout/index.js +8 -0
- package/lib/packages/core/layout/layout.vue.js +9 -0
- package/lib/packages/core/layout/layout.vue2.js +64 -0
- package/lib/packages/core/layout/lockScreen/index.vue.js +11 -0
- package/lib/packages/core/layout/lockScreen/index.vue2.js +424 -0
- package/lib/packages/core/layout/lockScreen/index.vue3.js +7 -0
- package/lib/packages/core/layout/lockScreen/style/css.js +4 -0
- package/lib/packages/core/layout/lockScreen/style/index.js +4 -0
- package/lib/packages/core/layout/logo/index.vue.js +9 -0
- package/lib/packages/core/layout/logo/index.vue2.js +61 -0
- package/lib/packages/core/layout/logo/style/css.js +4 -0
- package/lib/packages/core/layout/logo/style/index.js +4 -0
- package/lib/packages/core/layout/main/classic.vue.js +9 -0
- package/lib/packages/core/layout/main/classic.vue2.js +98 -0
- package/lib/packages/core/layout/main/columns.vue.js +9 -0
- package/lib/packages/core/layout/main/columns.vue2.js +111 -0
- package/lib/packages/core/layout/main/defaults.vue.js +9 -0
- package/lib/packages/core/layout/main/defaults.vue2.js +110 -0
- package/lib/packages/core/layout/main/transverse.vue.js +9 -0
- package/lib/packages/core/layout/main/transverse.vue2.js +78 -0
- package/lib/packages/core/layout/navBars/index.vue.js +11 -0
- package/lib/packages/core/layout/navBars/index.vue2.js +35 -0
- package/lib/packages/core/layout/navBars/index.vue3.js +7 -0
- package/lib/packages/core/layout/navBars/tagsView/contextmenu.vue.js +9 -0
- package/lib/packages/core/layout/navBars/tagsView/contextmenu.vue2.js +159 -0
- package/lib/packages/core/layout/navBars/tagsView/style/css.js +4 -0
- package/lib/packages/core/layout/navBars/tagsView/style/index.js +4 -0
- package/lib/packages/core/layout/navBars/tagsView/tagsView.vue.js +9 -0
- package/lib/packages/core/layout/navBars/tagsView/tagsView.vue2.js +560 -0
- package/lib/packages/core/layout/navBars/topBar/breadcrumb.vue.js +11 -0
- package/lib/packages/core/layout/navBars/topBar/breadcrumb.vue2.js +176 -0
- package/lib/packages/core/layout/navBars/topBar/breadcrumb.vue3.js +7 -0
- package/lib/packages/core/layout/navBars/topBar/changePassword.vue.js +9 -0
- package/lib/packages/core/layout/navBars/topBar/changePassword.vue2.js +268 -0
- package/lib/packages/core/layout/navBars/topBar/closeFull.vue.js +9 -0
- package/lib/packages/core/layout/navBars/topBar/closeFull.vue2.js +38 -0
- package/lib/packages/core/layout/navBars/topBar/index.vue.js +9 -0
- package/lib/packages/core/layout/navBars/topBar/index.vue2.js +107 -0
- package/lib/packages/core/layout/navBars/topBar/onlineuser.vue.js +11 -0
- package/lib/packages/core/layout/navBars/topBar/onlineuser.vue2.js +418 -0
- package/lib/packages/core/layout/navBars/topBar/onlineuser.vue3.js +7 -0
- package/lib/packages/core/layout/navBars/topBar/search.vue.js +9 -0
- package/lib/packages/core/layout/navBars/topBar/search.vue2.js +122 -0
- package/lib/packages/core/layout/navBars/topBar/sendMessage.vue.js +9 -0
- package/lib/packages/core/layout/navBars/topBar/sendMessage.vue2.js +216 -0
- package/lib/packages/core/layout/navBars/topBar/settings.vue.js +11 -0
- package/lib/packages/core/layout/navBars/topBar/settings.vue2.js +1905 -0
- package/lib/packages/core/layout/navBars/topBar/settings.vue3.js +7 -0
- package/lib/packages/core/layout/navBars/topBar/style/css.js +4 -0
- package/lib/packages/core/layout/navBars/topBar/style/index.js +4 -0
- package/lib/packages/core/layout/navBars/topBar/upgradeInfo.vue.js +9 -0
- package/lib/packages/core/layout/navBars/topBar/upgradeInfo.vue2.js +76 -0
- package/lib/packages/core/layout/navBars/topBar/user.vue.js +9 -0
- package/lib/packages/core/layout/navBars/topBar/user.vue2.js +688 -0
- package/lib/packages/core/layout/navBars/topBar/userNews.vue.js +11 -0
- package/lib/packages/core/layout/navBars/topBar/userNews.vue2.js +237 -0
- package/lib/packages/core/layout/navBars/topBar/userNews.vue3.js +7 -0
- package/lib/packages/core/layout/navMenu/horizontal.vue.js +9 -0
- package/lib/packages/core/layout/navMenu/horizontal.vue2.js +185 -0
- package/lib/packages/core/layout/navMenu/style/css.js +4 -0
- package/lib/packages/core/layout/navMenu/style/index.js +4 -0
- package/lib/packages/core/layout/navMenu/subItem.vue.js +9 -0
- package/lib/packages/core/layout/navMenu/subItem.vue2.js +114 -0
- package/lib/packages/core/layout/navMenu/vertical.vue.js +9 -0
- package/lib/packages/core/layout/navMenu/vertical.vue2.js +165 -0
- package/lib/packages/core/layout/routerView/iframes.vue.js +9 -0
- package/lib/packages/core/layout/routerView/iframes.vue2.js +128 -0
- package/lib/packages/core/layout/routerView/link.vue.js +9 -0
- package/lib/packages/core/layout/routerView/link.vue2.js +88 -0
- package/lib/packages/core/layout/routerView/parent.vue.js +9 -0
- package/lib/packages/core/layout/routerView/parent.vue2.js +143 -0
- package/lib/packages/core/layout/routerView/style/css.js +4 -0
- package/lib/packages/core/layout/routerView/style/index.js +4 -0
- package/lib/packages/core/layout/upgrade/index.vue.js +9 -0
- package/lib/packages/core/layout/upgrade/index.vue2.js +156 -0
- package/lib/packages/core/layout/upgrade/style/css.js +4 -0
- package/lib/packages/core/layout/upgrade/style/index.js +4 -0
- package/lib/packages/core/ui/components/editor/index.vue.js +10 -0
- package/lib/packages/core/ui/components/editor/index.vue2.js +149 -0
- package/lib/packages/core/ui/components/editor/index.vue3.js +7 -0
- package/lib/packages/core/ui/components/index.js +4 -4
- package/lib/packages/core/ui/components/noticeBar/index.vue.js +2 -2
- package/lib/packages/core/ui/components/noticeBar/index.vue2.js +3 -0
- package/lib/packages/core/ui/components/svgIcon/index.js +7 -3
- package/lib/packages/core/ui/components/svgIcon/svgicon.vue.js +2 -2
- package/lib/packages/core/ui/components/svgIcon/svgicon.vue2.js +3 -0
- package/lib/packages/core/ui/components/transfer/index.vue.js +2 -2
- package/package.json +1 -1
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/src/index.scss +8 -1
- package/theme-chalk/src/t-columsaside.scss +98 -0
- package/theme-chalk/src/t-layoutfooter.scss +11 -0
- package/theme-chalk/src/t-layoutlogo.scss +44 -0
- package/theme-chalk/src/t-layoutnavmenu.scss +17 -0
- package/theme-chalk/src/t-layoutroterview.scss +45 -0
- package/theme-chalk/src/t-layouttagsview.scss +167 -0
- package/theme-chalk/src/t-layouttpbar.scss +340 -0
- package/theme-chalk/src/t-layoutupgraded.scss +64 -0
- package/theme-chalk/src/t-lockscreen.scss +152 -0
- package/theme-chalk/t-t-columsaside.css +1 -0
- package/theme-chalk/t-t-layoutfooter.css +1 -0
- package/theme-chalk/t-t-layoutlogo.css +1 -0
- package/theme-chalk/t-t-layoutnavmenu.css +1 -0
- package/theme-chalk/t-t-layoutroterview.css +1 -0
- package/theme-chalk/t-t-layouttagsview.css +1 -0
- package/theme-chalk/t-t-layouttpbar.css +1 -0
- package/theme-chalk/t-t-layoutupgraded.css +1 -0
- package/theme-chalk/t-t-lockscreen.css +1 -0
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var vue = require('vue');
|
|
6
|
+
var vueI18n = require('vue-i18n');
|
|
7
|
+
var pinia = require('pinia');
|
|
8
|
+
require('../../stores/index.js');
|
|
9
|
+
var themeConfig = require('../../stores/themeConfig.js');
|
|
10
|
+
|
|
11
|
+
const _hoisted_1 = { class: "upgrade-dialog" };
|
|
12
|
+
const _hoisted_2 = { class: "upgrade-title" };
|
|
13
|
+
const _hoisted_3 = { class: "upgrade-title-warp" };
|
|
14
|
+
const _hoisted_4 = { class: "upgrade-title-warp-txt" };
|
|
15
|
+
const _hoisted_5 = { class: "upgrade-title-warp-version" };
|
|
16
|
+
const _hoisted_6 = { class: "upgrade-content" };
|
|
17
|
+
const _hoisted_7 = { class: "mt5" };
|
|
18
|
+
const _hoisted_8 = { class: "upgrade-btn" };
|
|
19
|
+
var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
20
|
+
__name: "index",
|
|
21
|
+
setup(__props) {
|
|
22
|
+
const { t } = vueI18n.useI18n();
|
|
23
|
+
const storesThemeConfig = themeConfig.useThemeConfig();
|
|
24
|
+
const { themeConfig: themeConfig$1 } = pinia.storeToRefs(storesThemeConfig);
|
|
25
|
+
const state = vue.reactive({
|
|
26
|
+
isUpgrade: false,
|
|
27
|
+
// @ts-ignore
|
|
28
|
+
version: __NEXT_VERSION__,
|
|
29
|
+
isLoading: false,
|
|
30
|
+
btnTxt: ""
|
|
31
|
+
});
|
|
32
|
+
const getThemeConfig = vue.computed(() => {
|
|
33
|
+
return themeConfig$1.value;
|
|
34
|
+
});
|
|
35
|
+
vue.onMounted(() => {
|
|
36
|
+
delayShow();
|
|
37
|
+
setTimeout(() => {
|
|
38
|
+
state.btnTxt = t("message.upgrade.btnTwo");
|
|
39
|
+
}, 200);
|
|
40
|
+
});
|
|
41
|
+
const onCancel = () => {
|
|
42
|
+
state.isUpgrade = false;
|
|
43
|
+
};
|
|
44
|
+
const onUpgrade = () => {
|
|
45
|
+
state.isLoading = true;
|
|
46
|
+
state.btnTxt = t("message.upgrade.btnTwoLoading");
|
|
47
|
+
setTimeout(() => {
|
|
48
|
+
window.location.reload();
|
|
49
|
+
}, 2e3);
|
|
50
|
+
};
|
|
51
|
+
const delayShow = () => {
|
|
52
|
+
setTimeout(() => {
|
|
53
|
+
state.isUpgrade = true;
|
|
54
|
+
}, 2e3);
|
|
55
|
+
};
|
|
56
|
+
return (_ctx, _cache) => {
|
|
57
|
+
const _component_el_link = vue.resolveComponent("el-link");
|
|
58
|
+
const _component_el_button = vue.resolveComponent("el-button");
|
|
59
|
+
const _component_el_dialog = vue.resolveComponent("el-dialog");
|
|
60
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1, [
|
|
61
|
+
vue.createVNode(_component_el_dialog, {
|
|
62
|
+
modelValue: state.isUpgrade,
|
|
63
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.isUpgrade = $event),
|
|
64
|
+
width: "300px",
|
|
65
|
+
"destroy-on-close": "",
|
|
66
|
+
"show-close": false,
|
|
67
|
+
"close-on-click-modal": false,
|
|
68
|
+
"close-on-press-escape": false
|
|
69
|
+
}, {
|
|
70
|
+
default: vue.withCtx(() => [
|
|
71
|
+
vue.createElementVNode("div", _hoisted_2, [
|
|
72
|
+
vue.createElementVNode("div", _hoisted_3, [
|
|
73
|
+
vue.createElementVNode(
|
|
74
|
+
"span",
|
|
75
|
+
_hoisted_4,
|
|
76
|
+
vue.toDisplayString(_ctx.$t("message.upgrade.title")),
|
|
77
|
+
1
|
|
78
|
+
/* TEXT */
|
|
79
|
+
),
|
|
80
|
+
vue.createElementVNode(
|
|
81
|
+
"span",
|
|
82
|
+
_hoisted_5,
|
|
83
|
+
"v" + vue.toDisplayString(state.version),
|
|
84
|
+
1
|
|
85
|
+
/* TEXT */
|
|
86
|
+
)
|
|
87
|
+
])
|
|
88
|
+
]),
|
|
89
|
+
vue.createElementVNode("div", _hoisted_6, [
|
|
90
|
+
vue.createTextVNode(
|
|
91
|
+
vue.toDisplayString(getThemeConfig.value.globalTitle) + " " + vue.toDisplayString(_ctx.$t("message.upgrade.msg")) + " ",
|
|
92
|
+
1
|
|
93
|
+
/* TEXT */
|
|
94
|
+
),
|
|
95
|
+
vue.createElementVNode("div", _hoisted_7, [
|
|
96
|
+
vue.createVNode(_component_el_link, {
|
|
97
|
+
type: "primary",
|
|
98
|
+
class: "font12",
|
|
99
|
+
href: "https://xxx/CHANGELOG.md",
|
|
100
|
+
target: "_black"
|
|
101
|
+
}, {
|
|
102
|
+
default: vue.withCtx(() => _cache[1] || (_cache[1] = [
|
|
103
|
+
vue.createTextVNode(" CHANGELOG.md ")
|
|
104
|
+
])),
|
|
105
|
+
_: 1,
|
|
106
|
+
__: [1]
|
|
107
|
+
})
|
|
108
|
+
]),
|
|
109
|
+
vue.createCommentVNode(' <div class="upgrade-content-desc mt5">{{ $t("message.upgrade.desc") }}</div> ')
|
|
110
|
+
]),
|
|
111
|
+
vue.createElementVNode("div", _hoisted_8, [
|
|
112
|
+
vue.createVNode(_component_el_button, {
|
|
113
|
+
round: "",
|
|
114
|
+
size: "default",
|
|
115
|
+
type: "info",
|
|
116
|
+
text: "",
|
|
117
|
+
onClick: onCancel
|
|
118
|
+
}, {
|
|
119
|
+
default: vue.withCtx(() => [
|
|
120
|
+
vue.createTextVNode(
|
|
121
|
+
vue.toDisplayString(_ctx.$t("message.upgrade.btnOne")),
|
|
122
|
+
1
|
|
123
|
+
/* TEXT */
|
|
124
|
+
)
|
|
125
|
+
]),
|
|
126
|
+
_: 1
|
|
127
|
+
/* STABLE */
|
|
128
|
+
}),
|
|
129
|
+
vue.createVNode(_component_el_button, {
|
|
130
|
+
type: "primary",
|
|
131
|
+
round: "",
|
|
132
|
+
size: "default",
|
|
133
|
+
onClick: onUpgrade,
|
|
134
|
+
loading: state.isLoading
|
|
135
|
+
}, {
|
|
136
|
+
default: vue.withCtx(() => [
|
|
137
|
+
vue.createTextVNode(
|
|
138
|
+
vue.toDisplayString(state.btnTxt),
|
|
139
|
+
1
|
|
140
|
+
/* TEXT */
|
|
141
|
+
)
|
|
142
|
+
]),
|
|
143
|
+
_: 1
|
|
144
|
+
/* STABLE */
|
|
145
|
+
}, 8, ["loading"])
|
|
146
|
+
])
|
|
147
|
+
]),
|
|
148
|
+
_: 1
|
|
149
|
+
/* STABLE */
|
|
150
|
+
}, 8, ["modelValue"])
|
|
151
|
+
]);
|
|
152
|
+
};
|
|
153
|
+
}
|
|
154
|
+
});
|
|
155
|
+
|
|
156
|
+
exports.default = _sfc_main;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var index_vue_vue_type_script_setup_true_name_wngEditor_lang = require('./index.vue2.js');
|
|
6
|
+
require('./index.vue3.js');
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
exports.default = index_vue_vue_type_script_setup_true_name_wngEditor_lang.default;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var vue = require('vue');
|
|
6
|
+
var elementPlus = require('element-plus');
|
|
7
|
+
var editorForVue = require('@wangeditor/editor-for-vue');
|
|
8
|
+
require('../../../../../node_modules/.pnpm/@wangeditor_editor@5.1.23/node_modules/@wangeditor/editor/dist/css/style.css.js');
|
|
9
|
+
require('../../../api/index.js');
|
|
10
|
+
var index = require('../../../api/base/index.js');
|
|
11
|
+
|
|
12
|
+
const _hoisted_1 = { class: "editor-container" };
|
|
13
|
+
var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
14
|
+
__name: "index",
|
|
15
|
+
props: {
|
|
16
|
+
// 是否禁用
|
|
17
|
+
disable: {
|
|
18
|
+
type: Boolean,
|
|
19
|
+
default: () => false
|
|
20
|
+
},
|
|
21
|
+
// 内容框默认 placeholder
|
|
22
|
+
placeholder: {
|
|
23
|
+
type: String,
|
|
24
|
+
default: () => "\u8BF7\u8F93\u5165\u5185\u5BB9..."
|
|
25
|
+
},
|
|
26
|
+
// https://www.wangeditor.com/v5/getting-started.html#mode-%E6%A8%A1%E5%BC%8F
|
|
27
|
+
// 模式,可选 <default|simple>,默认 default
|
|
28
|
+
mode: {
|
|
29
|
+
type: String,
|
|
30
|
+
default: () => "default"
|
|
31
|
+
},
|
|
32
|
+
// 高度
|
|
33
|
+
height: {
|
|
34
|
+
type: String,
|
|
35
|
+
default: () => "310px"
|
|
36
|
+
},
|
|
37
|
+
// 双向绑定,用于获取 editor.getHtml()
|
|
38
|
+
getHtml: String,
|
|
39
|
+
// 双向绑定,用于获取 editor.getText()
|
|
40
|
+
getText: String
|
|
41
|
+
},
|
|
42
|
+
emits: ["update:getHtml", "update:getText"],
|
|
43
|
+
setup(__props, { emit: __emit }) {
|
|
44
|
+
const props = __props;
|
|
45
|
+
const emit = __emit;
|
|
46
|
+
const editorRef = vue.shallowRef();
|
|
47
|
+
const state = vue.reactive({
|
|
48
|
+
editorConfig: {
|
|
49
|
+
placeholder: props.placeholder,
|
|
50
|
+
// 菜单配置
|
|
51
|
+
MENU_CONF: {
|
|
52
|
+
uploadImage: {
|
|
53
|
+
fieldName: "file",
|
|
54
|
+
customUpload(file) {
|
|
55
|
+
index.useBaseApi("sysFile").uploadFile({ file, data: null }, "uploadFile").then(({ data }) => {
|
|
56
|
+
if (data.type == "success" && data.result) {
|
|
57
|
+
editorRef.value.insertNode({ type: "image", src: data.result.url, alt: data.result.fileName, href: data.result.url, children: [{ text: "" }] });
|
|
58
|
+
} else {
|
|
59
|
+
elementPlus.ElMessage.error("\u4E0A\u4F20\u5931\u8D25\uFF01");
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
insertImage: {
|
|
65
|
+
checkImage(src) {
|
|
66
|
+
if (src.indexOf("http") !== 0) {
|
|
67
|
+
return "\u56FE\u7247\u7F51\u5740\u5FC5\u987B\u4EE5 http/https \u5F00\u5934";
|
|
68
|
+
}
|
|
69
|
+
return true;
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
//上传附件
|
|
73
|
+
uploadAttachment: {
|
|
74
|
+
fieldName: "file",
|
|
75
|
+
customUpload(file, insertFn) {
|
|
76
|
+
},
|
|
77
|
+
onInsertedAttachment(elem) {
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
//视频上传
|
|
81
|
+
uploadVideo: {
|
|
82
|
+
fieldName: "file",
|
|
83
|
+
customUpload(file, insertFn) {
|
|
84
|
+
index.useBaseApi("sysFile").uploadFile({ file, data: null }, "uploadFile").then(({ data }) => {
|
|
85
|
+
if (data.type == "success" && data.result) {
|
|
86
|
+
editorRef.value.insertNode({ type: "video", src: data.result.url, alt: data.result.fileName, href: data.result.url, children: [{ text: "" }] });
|
|
87
|
+
} else {
|
|
88
|
+
elementPlus.ElMessage.error("\u4E0A\u4F20\u5931\u8D25\uFF01");
|
|
89
|
+
}
|
|
90
|
+
});
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
editorVal: props.getHtml
|
|
96
|
+
});
|
|
97
|
+
const handleCreated = (editor) => {
|
|
98
|
+
editorRef.value = editor;
|
|
99
|
+
};
|
|
100
|
+
const handleChange = (editor) => {
|
|
101
|
+
emit("update:getHtml", editor.getHtml());
|
|
102
|
+
emit("update:getText", editor.getText());
|
|
103
|
+
};
|
|
104
|
+
vue.onBeforeUnmount(() => {
|
|
105
|
+
const editor = editorRef.value;
|
|
106
|
+
if (editor == null) return;
|
|
107
|
+
editor.destroy();
|
|
108
|
+
});
|
|
109
|
+
vue.watch(
|
|
110
|
+
() => props.disable,
|
|
111
|
+
(bool) => {
|
|
112
|
+
const editor = editorRef.value;
|
|
113
|
+
if (editor == null) return;
|
|
114
|
+
bool ? editor.disable() : editor.enable();
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
deep: true
|
|
118
|
+
}
|
|
119
|
+
);
|
|
120
|
+
vue.watch(
|
|
121
|
+
() => props.getHtml,
|
|
122
|
+
(val) => {
|
|
123
|
+
state.editorVal = val;
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
deep: true
|
|
127
|
+
}
|
|
128
|
+
);
|
|
129
|
+
return (_ctx, _cache) => {
|
|
130
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1, [
|
|
131
|
+
vue.createVNode(vue.unref(editorForVue.Toolbar), {
|
|
132
|
+
editor: editorRef.value,
|
|
133
|
+
mode: __props.mode
|
|
134
|
+
}, null, 8, ["editor", "mode"]),
|
|
135
|
+
vue.createVNode(vue.unref(editorForVue.Editor), {
|
|
136
|
+
mode: __props.mode,
|
|
137
|
+
defaultConfig: state.editorConfig,
|
|
138
|
+
style: vue.normalizeStyle({ height: __props.height }),
|
|
139
|
+
modelValue: state.editorVal,
|
|
140
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.editorVal = $event),
|
|
141
|
+
onOnCreated: handleCreated,
|
|
142
|
+
onOnChange: handleChange
|
|
143
|
+
}, null, 8, ["mode", "defaultConfig", "style", "modelValue"])
|
|
144
|
+
]);
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
|
|
149
|
+
exports.default = _sfc_main;
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
require('./transfer/index.vue.js');
|
|
4
4
|
require('./noticeBar/index.vue.js');
|
|
5
5
|
var index = require('./svgIcon/index.js');
|
|
6
|
-
var
|
|
7
|
-
var
|
|
6
|
+
var index_vue_vue_type_script_setup_true_lang = require('./transfer/index.vue2.js');
|
|
7
|
+
var index_vue_vue_type_script_setup_true_lang$1 = require('./noticeBar/index.vue2.js');
|
|
8
8
|
|
|
9
|
-
const FmTransfer =
|
|
10
|
-
const FmNoticeBar =
|
|
9
|
+
const FmTransfer = index_vue_vue_type_script_setup_true_lang.default;
|
|
10
|
+
const FmNoticeBar = index_vue_vue_type_script_setup_true_lang$1.default;
|
|
11
11
|
|
|
12
12
|
exports.elSvg = index.elSvg;
|
|
13
13
|
exports.FmNoticeBar = FmNoticeBar;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var index_vue_vue_type_script_setup_true_lang = require('./index.vue2.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = index_vue_vue_type_script_setup_true_lang.default;
|
|
@@ -7,6 +7,9 @@ var vue = require('vue');
|
|
|
7
7
|
const _hoisted_1 = { class: "notice-bar-warp-text-box" };
|
|
8
8
|
const _hoisted_2 = ["innerHTML"];
|
|
9
9
|
var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
10
|
+
...{
|
|
11
|
+
name: "FmNoticeBar"
|
|
12
|
+
},
|
|
10
13
|
__name: "index",
|
|
11
14
|
props: {
|
|
12
15
|
mode: { type: String, default: "" },
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
var svg = require('@element-plus/icons-vue');
|
|
4
4
|
require('./svgicon.vue.js');
|
|
5
|
-
var
|
|
5
|
+
var svgicon_vue_vue_type_script_setup_true_lang = require('./svgicon.vue2.js');
|
|
6
6
|
|
|
7
7
|
function _interopNamespaceDefault(e) {
|
|
8
8
|
var n = Object.create(null);
|
|
@@ -26,9 +26,13 @@ var svg__namespace = /*#__PURE__*/_interopNamespaceDefault(svg);
|
|
|
26
26
|
function elSvg(app) {
|
|
27
27
|
const icons = svg__namespace;
|
|
28
28
|
for (const i in icons) {
|
|
29
|
-
app.
|
|
29
|
+
if (!app._context.components[`ele-${icons[i].name}`]) {
|
|
30
|
+
app.component(`ele-${icons[i].name}`, icons[i]);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
if (!app._context.components[`SvgIcon`]) {
|
|
34
|
+
app.component("SvgIcon", svgicon_vue_vue_type_script_setup_true_lang.default);
|
|
30
35
|
}
|
|
31
|
-
app.component("SvgIcon", svgicon_vue_vue_type_script_setup_true_name_svgIcon_lang.default);
|
|
32
36
|
}
|
|
33
37
|
|
|
34
38
|
exports.elSvg = elSvg;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var svgicon_vue_vue_type_script_setup_true_lang = require('./svgicon.vue2.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = svgicon_vue_vue_type_script_setup_true_lang.default;
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var index_vue_vue_type_script_setup_true_lang = require('./index.vue2.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
exports.default =
|
|
9
|
+
exports.default = index_vue_vue_type_script_setup_true_lang.default;
|
package/package.json
CHANGED
package/theme-chalk/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.fm-transfer-panel{box-sizing:border-box;display:inline-block;max-height:100%;overflow:hidden;position:relative;text-align:left;vertical-align:middle}.fm-transfer-panel,.fm-transfer-panel__header{box-shadow:0 0 0 1px var(--el-border-color,var(--el-border-color)) inset;width:100%}.fm-transfer-panel__header{align-items:center;display:flex;flex-wrap:nowrap;justify-content:space-between;padding:3px 6px}.fm-transfer-panel__body{height:400px}.fm-transfer-panel__body .transfer-panel__filter{padding:6px}.fm-transfer-panel__body .transfer-panel__list{height:calc(100% - 36px);overflow:auto;padding-top:10px}.fm-transfer-panel__body .transfer-panel__list .transfer-panel__item{display:block!important;padding-left:6px}.fm-transfer-buttons{align-items:center;display:flex;flex-direction:column;justify-content:center;text-align:center}.fm-transfer-buttons__item{padding-top:10px;width:100%}.fm-notice-bar{border-radius:4px;padding:0 15px;width:100%}.fm-notice-bar .notice-bar-warp{align-items:center;display:flex;height:inherit;width:100%}.fm-notice-bar .notice-bar-warp .notice-bar-warp-text-box{align-items:center;display:flex;flex:1;height:inherit;margin-right:35px;overflow:hidden;position:relative}.fm-notice-bar .notice-bar-warp .notice-bar-warp-left-icon{font-size:inherit!important;width:24px}.fm-notice-bar .notice-bar-warp .notice-bar-warp-right-icon{font-size:inherit!important;text-align:right;width:24px}.fm-notice-bar .notice-bar-warp .notice-bar-warp-right-icon:hover{cursor:pointer}
|
|
1
|
+
.fm-transfer-panel{box-sizing:border-box;display:inline-block;max-height:100%;overflow:hidden;position:relative;text-align:left;vertical-align:middle}.fm-transfer-panel,.fm-transfer-panel__header{box-shadow:0 0 0 1px var(--el-border-color,var(--el-border-color)) inset;width:100%}.fm-transfer-panel__header{align-items:center;display:flex;flex-wrap:nowrap;justify-content:space-between;padding:3px 6px}.fm-transfer-panel__body{height:400px}.fm-transfer-panel__body .transfer-panel__filter{padding:6px}.fm-transfer-panel__body .transfer-panel__list{height:calc(100% - 36px);overflow:auto;padding-top:10px}.fm-transfer-panel__body .transfer-panel__list .transfer-panel__item{display:block!important;padding-left:6px}.fm-transfer-buttons{align-items:center;display:flex;flex-direction:column;justify-content:center;text-align:center}.fm-transfer-buttons__item{padding-top:10px;width:100%}.fm-notice-bar{border-radius:4px;padding:0 15px;width:100%}.fm-notice-bar .notice-bar-warp{align-items:center;display:flex;height:inherit;width:100%}.fm-notice-bar .notice-bar-warp .notice-bar-warp-text-box{align-items:center;display:flex;flex:1;height:inherit;margin-right:35px;overflow:hidden;position:relative}.fm-notice-bar .notice-bar-warp .notice-bar-warp-left-icon{font-size:inherit!important;width:24px}.fm-notice-bar .notice-bar-warp .notice-bar-warp-right-icon{font-size:inherit!important;text-align:right;width:24px}.fm-notice-bar .notice-bar-warp .notice-bar-warp-right-icon:hover{cursor:pointer}.layout-columns-aside{background:var(--next-bg-columnsMenuBar);height:100%;width:var(--el-columnsMenuWidth)}.layout-columns-aside ul{position:relative}.layout-columns-aside ul .layout-columns-active,.layout-columns-aside ul .layout-columns-active a{color:var(--next-bg-columnsMenuBarColor)!important;transition:.3s ease-in-out}.layout-columns-aside ul .layout-columns-hover,.layout-columns-aside ul .layout-columns-hover a{color:var(--el-color-primary)}.layout-columns-aside ul li{color:var(--next-bg-columnsMenuBarColor);cursor:pointer;display:flex;height:var(--el-columnsMenuHeight);position:relative;text-align:center;width:100%;z-index:1}.layout-columns-aside ul li:hover{background-color:var(--el-color-primary-light-3)}.layout-columns-aside ul li .columns-vertical{margin:auto}.layout-columns-aside ul li .columns-vertical .columns-vertical-title{padding-top:1px}.layout-columns-aside ul li .columns-horizontal{align-items:center;display:flex;height:var(--el-columnsMenuHeight);padding:0 5px;width:100%}.layout-columns-aside ul li .columns-horizontal i{margin-right:3px}.layout-columns-aside ul li .columns-horizontal a{display:flex}.layout-columns-aside ul li .columns-horizontal a .columns-horizontal-title{padding-top:1px}.layout-columns-aside ul li a{color:var(--next-bg-columnsMenuBarColor);text-decoration:none}.layout-columns-aside ul .columns-card,.layout-columns-aside ul .columns-round{background:var(--el-color-primary);border-radius:5px;color:var(--el-color-white);height:var(--el-columnsMenuRoundHeight);left:50%;position:absolute;top:2px;transform:translateX(-50%);transition:.5s ease-in-out;width:var(--el-columnsMenuRoundWidth);z-index:0}.layout-columns-aside ul .columns-card{border-radius:0;height:var(--el-columnsMenuHeight);top:0;width:100%}.layout-logo{height:var(--el-columnsLogoHeight);margin-bottom:8px;margin-top:5px}.layout-logo-medium-img{height:80%;width:auto}.layout-logo:hover img{animation:logoAnimation .3s ease-in-out}.layout-footer{display:flex;width:100%}.layout-footer-warp{animation:error-num .3s ease;color:var(--el-text-color-secondary);margin:auto;text-align:center}.layout-lock-screen,.layout-lock-screen-fixed,.layout-lock-screen-img,.layout-lock-screen-mask{height:100%;left:0;position:fixed;top:0;width:100%}.layout-lock-screen-filter{filter:blur(1px)}.layout-lock-screen-mask{background:var(--el-color-white);z-index:9999990}.layout-lock-screen-img{background-image:url(../assets/lockscreen.img);background-size:100% 100%;z-index:9999991}.layout-lock-screen{z-index:9999992}.layout-lock-screen-date{color:var(--el-color-white);height:100%;left:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;z-index:9999993}.layout-lock-screen-date-box{bottom:50px;left:30px;position:absolute}.layout-lock-screen-date-box-time{color:var(--el-color-white);font-size:100px}.layout-lock-screen-date-box-info{color:var(--el-color-white);font-size:40px}.layout-lock-screen-date-box-minutes{font-size:16px}.layout-lock-screen-date-top{background:hsla(0,0%,100%,.1);border:1px solid var(--el-border-color-light,#ebeef5);border-radius:100%;bottom:50px;color:var(--el-color-white);height:40px;line-height:40px;opacity:.8;overflow:hidden;position:absolute;right:30px;text-align:center;transition:all .3s ease;width:40px}.layout-lock-screen-date-top i{transition:all .3s ease}.layout-lock-screen-date-top-text{color:var(--el-color-white);font-size:12px;left:50%;line-height:1.2;opacity:0;position:absolute;top:150%;transform:translate(-50%,-50%);transition:all .3s ease;width:35px}.layout-lock-screen-date-top:hover{background:hsla(0,0%,100%,.2);border:1px solid hsla(0,0%,100%,.5);box-shadow:0 0 12px 0 hsla(0,0%,100%,.5);color:var(--el-color-white);opacity:1;transition:all .3s ease}.layout-lock-screen-date-top:hover i{transform:translateY(-40px);transition:all .3s ease}.layout-lock-screen-date-top:hover .layout-lock-screen-date-top-text{opacity:1;top:50%;transition:all .3s ease}.layout-lock-screen-login{color:var(--el-color-white);display:flex;flex-direction:column;height:100%;justify-content:center;left:0;position:relative;top:0;width:100%;z-index:9999994}.layout-lock-screen-login-box{margin:auto;text-align:center}.layout-lock-screen-login-box-img{height:180px;margin:auto;width:180px}.layout-lock-screen-login-box-img img{border-radius:100%;height:100%;width:100%}.layout-lock-screen-login-box-name{font-size:26px;margin:15px 0 30px}.layout-lock-screen-login-box-message{align-items:center;display:flex;flex-direction:column;font-size:16px}.layout-lock-screen-login-box-value{min-height:73px}.layout-lock-screen-login-icon{bottom:30px;position:absolute;right:30px}.layout-lock-screen-login-icon i{cursor:pointer;font-size:20px;margin-left:15px;opacity:.8}.layout-lock-screen-login-icon i:hover{opacity:1}.layout-logo{align-items:center;animation:logoAnimation .3s ease-in-out;box-shadow:0 1px 4px rgba(0,21,41,.02);color:var(--el-color-primary);cursor:pointer;display:flex;font-size:16px;height:50px;justify-content:center;width:220px}.layout-logo span{display:inline-block;font-size:18px;font-weight:800;white-space:nowrap}.layout-logo:hover span{color:var(--color-primary-light-2)}.layout-logo-medium-img{margin-right:5px;padding:3px;width:15%}.layout-logo-size{animation:logoAnimation .3s ease-in-out;cursor:pointer;display:flex;height:50px;width:100%}.layout-logo-size-img{margin:auto;width:35px}.layout-logo-size:hover img{animation:logoAnimation .3s ease-in-out}.layout-navbars-breadcrumb{align-items:center;display:flex;flex:1;height:inherit}.layout-navbars-breadcrumb .layout-navbars-breadcrumb-icon{color:var(--next-bg-topBarColor);cursor:pointer;font-size:18px;height:100%;opacity:.8;width:40px}.layout-navbars-breadcrumb .layout-navbars-breadcrumb-icon:hover{opacity:1}.layout-navbars-breadcrumb .layout-navbars-breadcrumb-span{color:var(--next-bg-topBarColor);display:flex;opacity:.7}.layout-navbars-breadcrumb .layout-navbars-breadcrumb-iconfont{font-size:16px;margin-right:5px}.layout-navbars-close-full{position:fixed;right:-30px;top:-30px;z-index:9999999999}.layout-navbars-close-full .layout-navbars-close-full-icon{background:rgba(0,0,0,.1);border-radius:100%;cursor:pointer;height:60px;position:relative;transition:all .3s ease;width:60px}.layout-navbars-close-full .layout-navbars-close-full-icon :deep(i){color:#333;left:10px;position:absolute;top:35px;transition:all .3s ease}.layout-navbars-close-full:hover{transition:all .3s ease}.layout-navbars-close-full:hover :deep(i){color:var(--el-color-primary);transition:all .3s ease}.layout-navbars-breadcrumb-index{align-items:center;background:var(--next-bg-topBar);border-bottom:1px solid var(--next-border-color-light);display:flex;height:50px}.layout-search-dialog{position:relative}.layout-search-dialog :deep(.el-dialog){background-color:transparent;box-shadow:none}.layout-search-dialog :deep(.el-dialog) .el-dialog__body,.layout-search-dialog :deep(.el-dialog) .el-dialog__header{display:none}.layout-search-dialog :deep(.el-dialog) .el-dialog__footer{left:50%;position:absolute;top:-53vh;transform:translateX(-50%);width:100%}.layout-search-dialog :deep(.el-autocomplete){left:50%;position:absolute;top:150px;transform:translateX(-50%);width:560px}.layout-breadcrumb-seting-bar{height:calc(100vh - 50px);padding:0 15px}.layout-breadcrumb-seting-bar :deep(.el-scrollbar__view){overflow-x:hidden!important}.layout-breadcrumb-seting-bar .layout-breadcrumb-seting-bar-flex{align-items:center;display:flex;margin-bottom:5px}.layout-breadcrumb-seting-bar .layout-breadcrumb-seting-bar-flex-label{color:var(--el-text-color-primary);flex:1}.layout-breadcrumb-seting-bar .layout-drawer-content-flex{align-content:flex-start;display:flex;flex-wrap:wrap;margin:0 -5px;overflow:hidden}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item{border:1px solid transparent;cursor:pointer;height:70px;padding:5px;position:relative;width:50%}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container{height:100%}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container .el-aside-dark{background-color:var(--next-color-seting-header)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container .el-aside{background-color:var(--next-color-seting-aside)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container .el-header{background-color:var(--next-color-seting-header)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-container .el-main{background-color:var(--next-color-seting-main)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .el-circular{border:1px solid transparent;border-radius:2px;overflow:hidden;transition:all .3s ease-in-out}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .drawer-layout-active{border:1px solid;border-color:var(--el-color-primary)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp,.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active{border:1px solid;border-color:var(--el-color-primary-light-5);border-radius:100%;left:50%;padding:4px;position:absolute;top:50%;transform:translate(-50%,-50%);transition:all .3s ease-in-out}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp .layout-tips-box,.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active .layout-tips-box{border:1px solid;border-color:var(--el-color-primary-light-5);border-radius:100%;height:30px;transition:inherit;width:30px;z-index:9}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp .layout-tips-box .layout-tips-txt,.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active .layout-tips-box .layout-tips-txt{background-color:var(--next-color-seting-main);color:var(--el-color-primary-light-5);font-size:12px;height:17px;left:-1px;letter-spacing:2px;line-height:1;line-height:17px;position:relative;text-align:center;top:5px;transform:rotate(30deg);transition:inherit;white-space:nowrap;width:32px}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active,.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active .layout-tips-box{border:1px solid;border-color:var(--el-color-primary)}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item .layout-tips-warp-active .layout-tips-box .layout-tips-txt{background-color:var(--next-color-seting-main)!important;color:var(--el-color-primary)!important}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item:hover .el-circular{border:1px solid;border-color:var(--el-color-primary);transition:all .3s ease-in-out}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item:hover .layout-tips-warp{border-color:var(--el-color-primary);transition:all .3s ease-in-out}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item:hover .layout-tips-warp .layout-tips-box{border-color:var(--el-color-primary);transition:inherit}.layout-breadcrumb-seting-bar .layout-drawer-content-flex .layout-drawer-content-item:hover .layout-tips-warp .layout-tips-box .layout-tips-txt{background-color:var(--next-color-seting-main)!important;color:var(--el-color-primary)!important;transition:inherit}.layout-breadcrumb-seting-bar .copy-config{margin:10px 0}.layout-breadcrumb-seting-bar .copy-config .copy-config-btn{margin-top:15px;width:100%}.layout-breadcrumb-seting-bar .copy-config .copy-config-btn-reset{margin:10px 0 0;width:100%}.traditionalColors{height:50px;position:relative}.traditionalColors-chines{text-align:center}.traditionalColors-circleCheck{left:calc(50% - 10px);position:absolute;top:calc(50% - 10px)}.layout-navbars-breadcrumb-user{align-items:center;display:flex;justify-content:flex-end}.layout-navbars-breadcrumb-user-link{align-items:center;display:flex;height:100%;white-space:nowrap}.layout-navbars-breadcrumb-user-link-photo{border-radius:100%;height:25px;width:25px}.layout-navbars-breadcrumb-user-icon{align-items:center;color:var(--next-bg-topBarColor);cursor:pointer;display:flex;height:50px;line-height:50px;padding:0 10px}.layout-navbars-breadcrumb-user-icon:hover{background:var(--next-color-user-hover)}.layout-navbars-breadcrumb-user-icon:hover i{animation:logoAnimation .3s ease-in-out;display:inline-block}.layout-navbars-breadcrumb-user :deep(.el-dropdown){color:var(--next-bg-topBarColor)}.layout-navbars-breadcrumb-user :deep(.el-badge){align-items:center;display:flex;height:40px;line-height:40px}.layout-navbars-breadcrumb-user :deep(.el-badge__content.is-fixed){top:12px}.user-news-container .content-box{font-size:12px}.user-news-container .content-box .notice-box{height:400px;margin-bottom:35px;padding-right:10px}.user-news-container .content-box .notice-box:hover{overflow-y:scroll}.user-news-container .content-box .notice-item:hover{background-color:hsla(0,0%,72%,.1)}.user-news-container .content-box .notice-item .notice-content{color:var(--el-text-color-secondary);margin-bottom:3px;margin-top:3px}.user-news-container .content-box .notice-item .notice-time{color:var(--el-text-color-secondary);text-align:right}.user-news-container .notice-foot{align-items:center;background-color:#fff;bottom:0;color:var(--el-color-primary);cursor:pointer;display:flex;font-size:14px;height:35px;justify-content:center;position:absolute;width:100%}.el-menu-horizontal-warp{flex:1;margin-right:30px;overflow:hidden}.el-menu-horizontal-warp :deep(.el-scrollbar__bar.is-vertical){display:none}.el-menu-horizontal-warp :deep(a){width:100%}.el-menu-horizontal-warp .el-menu.el-menu--horizontal{box-sizing:border-box;display:flex;height:100%;width:100%}.upgrade-dialog :deep(.el-dialog) .el-dialog__body{padding:0!important}.upgrade-dialog :deep(.el-dialog) .el-dialog__header{display:none!important}.upgrade-dialog :deep(.el-dialog) .upgrade-title{align-items:center;display:flex;height:130px;justify-content:center;position:relative;text-align:center}.upgrade-dialog :deep(.el-dialog) .upgrade-title:after{background-color:var(--el-color-primary-light-1);border-bottom-left-radius:100%;border-bottom-right-radius:100%;content:"";height:130px;position:absolute;width:130%}.upgrade-dialog :deep(.el-dialog) .upgrade-title .upgrade-title-warp{position:relative;z-index:1}.upgrade-dialog :deep(.el-dialog) .upgrade-title .upgrade-title-warp .upgrade-title-warp-txt{color:var(--next-color-white);font-size:22px;letter-spacing:3px}.upgrade-dialog :deep(.el-dialog) .upgrade-title .upgrade-title-warp .upgrade-title-warp-version{background-color:var(--el-color-primary-light-4);border-radius:2px;color:var(--next-color-white);display:flex;font-size:12px;padding:2px 4px;position:absolute;right:-50px;top:-2px}.upgrade-dialog :deep(.el-dialog) .upgrade-content{line-height:22px;padding:20px}.upgrade-dialog :deep(.el-dialog) .upgrade-content .upgrade-content-desc{color:var(--el-color-info-light-5);font-size:12px}.upgrade-dialog :deep(.el-dialog) .upgrade-btn{border-top:1px solid var(--el-border-color-lighter,#ebeef5);display:flex;justify-content:space-around;padding:15px 20px}.upgrade-dialog :deep(.el-dialog) .upgrade-btn .el-button{width:100%}
|
|
@@ -1,2 +1,9 @@
|
|
|
1
1
|
@use "./t-transfer.scss";
|
|
2
|
-
@use "./t-noticebar.scss"
|
|
2
|
+
@use "./t-noticebar.scss";
|
|
3
|
+
@use "./t-columsaside.scss";
|
|
4
|
+
@use "./t-layoutfooter.scss";
|
|
5
|
+
@use "./t-lockscreen.scss";
|
|
6
|
+
@use "./t-layoutlogo.scss";
|
|
7
|
+
@use "./t-layouttpbar.scss";
|
|
8
|
+
@use "./t-layoutnavmenu.scss";
|
|
9
|
+
@use "./t-layoutupgraded.scss"
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
.layout-columns-aside {
|
|
2
|
+
width: var(--el-columnsMenuWidth);
|
|
3
|
+
height: 100%;
|
|
4
|
+
background: var(--next-bg-columnsMenuBar);
|
|
5
|
+
ul {
|
|
6
|
+
position: relative;
|
|
7
|
+
.layout-columns-active,
|
|
8
|
+
.layout-columns-active a {
|
|
9
|
+
color: var(--next-bg-columnsMenuBarColor) !important;
|
|
10
|
+
transition: 0.3s ease-in-out;
|
|
11
|
+
}
|
|
12
|
+
.layout-columns-hover {
|
|
13
|
+
color: var(--el-color-primary);
|
|
14
|
+
a {
|
|
15
|
+
color: var(--el-color-primary);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
li {
|
|
19
|
+
color: var(--next-bg-columnsMenuBarColor);
|
|
20
|
+
width: 100%;
|
|
21
|
+
height: var(--el-columnsMenuHeight);
|
|
22
|
+
text-align: center;
|
|
23
|
+
display: flex;
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
position: relative;
|
|
26
|
+
z-index: 1;
|
|
27
|
+
&:hover {
|
|
28
|
+
//@extend .layout-columns-hover;
|
|
29
|
+
background-color: var(--el-color-primary-light-3);
|
|
30
|
+
}
|
|
31
|
+
.columns-vertical {
|
|
32
|
+
margin: auto;
|
|
33
|
+
.columns-vertical-title {
|
|
34
|
+
padding-top: 1px;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
.columns-horizontal {
|
|
38
|
+
display: flex;
|
|
39
|
+
height: var(--el-columnsMenuHeight);
|
|
40
|
+
width: 100%;
|
|
41
|
+
align-items: center;
|
|
42
|
+
padding: 0 5px;
|
|
43
|
+
i {
|
|
44
|
+
margin-right: 3px;
|
|
45
|
+
}
|
|
46
|
+
a {
|
|
47
|
+
display: flex;
|
|
48
|
+
.columns-horizontal-title {
|
|
49
|
+
padding-top: 1px;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
a {
|
|
54
|
+
text-decoration: none;
|
|
55
|
+
color: var(--next-bg-columnsMenuBarColor);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
.columns-round {
|
|
59
|
+
background: var(--el-color-primary);
|
|
60
|
+
color: var(--el-color-white);
|
|
61
|
+
position: absolute;
|
|
62
|
+
left: 50%;
|
|
63
|
+
top: 2px;
|
|
64
|
+
height: var(--el-columnsMenuRoundHeight);
|
|
65
|
+
width: var(--el-columnsMenuRoundWidth);
|
|
66
|
+
transform: translateX(-50%);
|
|
67
|
+
z-index: 0;
|
|
68
|
+
transition: 0.5s ease-in-out;
|
|
69
|
+
border-radius: 5px;
|
|
70
|
+
}
|
|
71
|
+
.columns-card {
|
|
72
|
+
@extend .columns-round;
|
|
73
|
+
top: 0;
|
|
74
|
+
height: var(--el-columnsMenuHeight);
|
|
75
|
+
width: 100%;
|
|
76
|
+
border-radius: 0;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.layout-logo {
|
|
82
|
+
height: var(--el-columnsLogoHeight);
|
|
83
|
+
display: flex;
|
|
84
|
+
align-items: center;
|
|
85
|
+
justify-content: center;
|
|
86
|
+
margin-bottom: 8px;
|
|
87
|
+
margin-top: 5px;
|
|
88
|
+
animation: logoAnimation 0.3s ease-in-out;
|
|
89
|
+
&-medium-img {
|
|
90
|
+
width: auto;
|
|
91
|
+
height: 80%;
|
|
92
|
+
}
|
|
93
|
+
&:hover {
|
|
94
|
+
img {
|
|
95
|
+
animation: logoAnimation 0.3s ease-in-out;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
.layout-logo {
|
|
2
|
+
width: 220px;
|
|
3
|
+
height: 50px;
|
|
4
|
+
display: flex;
|
|
5
|
+
align-items: center;
|
|
6
|
+
justify-content: center;
|
|
7
|
+
box-shadow: rgb(0 21 41 / 2%) 0px 1px 4px;
|
|
8
|
+
color: var(--el-color-primary);
|
|
9
|
+
font-size: 16px;
|
|
10
|
+
cursor: pointer;
|
|
11
|
+
animation: logoAnimation 0.3s ease-in-out;
|
|
12
|
+
span {
|
|
13
|
+
white-space: nowrap;
|
|
14
|
+
display: inline-block;
|
|
15
|
+
font-weight: 800;
|
|
16
|
+
font-size: 18px;
|
|
17
|
+
}
|
|
18
|
+
&:hover {
|
|
19
|
+
span {
|
|
20
|
+
color: var(--color-primary-light-2);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
&-medium-img {
|
|
24
|
+
width: 15%;
|
|
25
|
+
margin-right: 5px;
|
|
26
|
+
padding: 3px;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
.layout-logo-size {
|
|
30
|
+
width: 100%;
|
|
31
|
+
height: 50px;
|
|
32
|
+
display: flex;
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
animation: logoAnimation 0.3s ease-in-out;
|
|
35
|
+
&-img {
|
|
36
|
+
width: 35px;
|
|
37
|
+
margin: auto;
|
|
38
|
+
}
|
|
39
|
+
&:hover {
|
|
40
|
+
img {
|
|
41
|
+
animation: logoAnimation 0.3s ease-in-out;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.el-menu-horizontal-warp {
|
|
2
|
+
flex: 1;
|
|
3
|
+
overflow: hidden;
|
|
4
|
+
margin-right: 30px;
|
|
5
|
+
:deep(.el-scrollbar__bar.is-vertical) {
|
|
6
|
+
display: none;
|
|
7
|
+
}
|
|
8
|
+
:deep(a) {
|
|
9
|
+
width: 100%;
|
|
10
|
+
}
|
|
11
|
+
.el-menu.el-menu--horizontal {
|
|
12
|
+
display: flex;
|
|
13
|
+
height: 100%;
|
|
14
|
+
width: 100%;
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
}
|
|
17
|
+
}
|