@gx-design-vue/create-gx-cli 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/main.js +1 -0
- package/template-design-pro/.editorconfig +19 -0
- package/template-design-pro/.env +2 -0
- package/template-design-pro/.env.development +18 -0
- package/template-design-pro/.env.pro +32 -0
- package/template-design-pro/.env.production +32 -0
- package/template-design-pro/.env.test +20 -0
- package/template-design-pro/.eslintignore +16 -0
- package/template-design-pro/.eslintrc.js +64 -0
- package/template-design-pro/.gitpod.yml +6 -0
- package/template-design-pro/.husky/pre-commit +4 -0
- package/template-design-pro/.prettierignore +9 -0
- package/template-design-pro/.stylelintignore +3 -0
- package/template-design-pro/.yarnclean +48 -0
- package/template-design-pro/LICENSE +21 -0
- package/template-design-pro/README.md +111 -0
- package/template-design-pro/build/constant.ts +6 -0
- package/template-design-pro/build/generate/generateModifyVars.ts +18 -0
- package/template-design-pro/build/getConfigFileName.ts +13 -0
- package/template-design-pro/build/script/buildConf.ts +44 -0
- package/template-design-pro/build/script/postBuild.ts +25 -0
- package/template-design-pro/build/script/reSetRootHtml.ts +20 -0
- package/template-design-pro/build/utils.ts +85 -0
- package/template-design-pro/build/vite/cdn.ts +7 -0
- package/template-design-pro/build/vite/optimizer.ts +22 -0
- package/template-design-pro/build/vite/plugin/autoImport.ts +18 -0
- package/template-design-pro/build/vite/plugin/compress.ts +35 -0
- package/template-design-pro/build/vite/plugin/hmr.ts +25 -0
- package/template-design-pro/build/vite/plugin/html.ts +47 -0
- package/template-design-pro/build/vite/plugin/index.ts +89 -0
- package/template-design-pro/build/vite/plugin/mock.ts +20 -0
- package/template-design-pro/build/vite/plugin/pwa.ts +37 -0
- package/template-design-pro/build/vite/plugin/styleImport.ts +129 -0
- package/template-design-pro/build/vite/plugin/visualizer.ts +17 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-antd-theme/index.ts +24 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/createMockServer.ts +303 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/createProdMockServer.ts +93 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/index.ts +68 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/types.ts +30 -0
- package/template-design-pro/build/vite/plugin/vite-plugin-mock/utils.ts +26 -0
- package/template-design-pro/commitlint.config.js +32 -0
- package/template-design-pro/config/config.ts +14 -0
- package/template-design-pro/config/default/animate.ts +30 -0
- package/template-design-pro/config/default/defaultSettings.ts +75 -0
- package/template-design-pro/config/default/network.ts +16 -0
- package/template-design-pro/config/default/proxy.ts +26 -0
- package/template-design-pro/config/default/theme.ts +43 -0
- package/template-design-pro/config/default/themeColor.ts +62 -0
- package/template-design-pro/index.html +45 -0
- package/template-design-pro/jest.config.mjs +36 -0
- package/template-design-pro/mock/_createProductionServer.ts +19 -0
- package/template-design-pro/mock/_util.ts +55 -0
- package/template-design-pro/mock/controller/menu.ts +85 -0
- package/template-design-pro/mock/controller/notices.ts +114 -0
- package/template-design-pro/mock/system/dict.ts +60 -0
- package/template-design-pro/mock/system/user.ts +218 -0
- package/template-design-pro/package.json +151 -0
- package/template-design-pro/pnpm-lock.yaml +9913 -0
- package/template-design-pro/postcss.config.js +5 -0
- package/template-design-pro/prettier.config.js +18 -0
- package/template-design-pro/public/resource/css/index.css +171 -0
- package/template-design-pro/public/resource/img/favicon.ico +0 -0
- package/template-design-pro/public/resource/img/logo.png +0 -0
- package/template-design-pro/public/resource/img/pro_icon.svg +5 -0
- package/template-design-pro/public/resource/img/pwa-192x192.png +0 -0
- package/template-design-pro/public/resource/img/pwa-512x512.png +0 -0
- package/template-design-pro/src/App.vue +47 -0
- package/template-design-pro/src/assets/error_images/403.png +0 -0
- package/template-design-pro/src/assets/error_images/404.png +0 -0
- package/template-design-pro/src/assets/error_images/cloud.png +0 -0
- package/template-design-pro/src/assets/login_images/login_background.svg +69 -0
- package/template-design-pro/src/assets/logo.png +0 -0
- package/template-design-pro/src/assets/menu_font/iconfont.css +94 -0
- package/template-design-pro/src/assets/menu_font/iconfont.eot +0 -0
- package/template-design-pro/src/assets/menu_font/iconfont.js +1 -0
- package/template-design-pro/src/assets/menu_font/iconfont.json +142 -0
- package/template-design-pro/src/assets/menu_font/iconfont.svg +57 -0
- package/template-design-pro/src/assets/menu_font/iconfont.ttf +0 -0
- package/template-design-pro/src/assets/menu_font/iconfont.woff +0 -0
- package/template-design-pro/src/assets/menu_font/iconfont.woff2 +0 -0
- package/template-design-pro/src/assets/menu_font/index.less +94 -0
- package/template-design-pro/src/common/global.ts +1 -0
- package/template-design-pro/src/components/GDesign/ProLayout/BasicLayout.less +80 -0
- package/template-design-pro/src/components/GDesign/ProLayout/BasicLayout.tsx +342 -0
- package/template-design-pro/src/components/GDesign/ProLayout/PageLoading.tsx +20 -0
- package/template-design-pro/src/components/GDesign/ProLayout/RenderTypings.ts +31 -0
- package/template-design-pro/src/components/GDesign/ProLayout/RouteContext.tsx +82 -0
- package/template-design-pro/src/components/GDesign/ProLayout/WrapContent.tsx +69 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalFooter/index.tsx +88 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/DefaultHeader.tsx +189 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/Header.less +8 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/index.tsx +105 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/props.ts +69 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/GlobalHeader/style.less +144 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/LogoContent/index.tsx +81 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/LogoContent/props.ts +29 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/MultiTab/index.tsx +384 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/MultiTab/props.ts +15 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/MultiTab/style.less +79 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/NoticeIcon.tsx +148 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/NoticeList.module.less +115 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/NoticeList.tsx +154 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/index.less +39 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/NoticeIcon/index.tsx +133 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/PageContainer/index.tsx +190 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/PageContainer/props.ts +48 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/PageContainer/style.less +128 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/PageContainer/typings.ts +0 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/AvatarDropdown.tsx +63 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/HeaderSearch.tsx +122 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/headerSearch.less +30 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/index.tsx +95 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/RightContent/style.less +90 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SettingDrawer/BlockCheckbox.tsx +70 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SettingDrawer/LayoutSetting.tsx +107 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SettingDrawer/ThemeColor.tsx +68 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SettingDrawer/index.tsx +346 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/BaseMenu.tsx +224 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/SiderMenu.tsx +224 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/index.tsx +43 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/props.ts +112 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/style.less +262 -0
- package/template-design-pro/src/components/GDesign/ProLayout/components/SiderMenu/typings.ts +44 -0
- package/template-design-pro/src/components/GDesign/ProLayout/default.less +2 -0
- package/template-design-pro/src/components/GDesign/ProLayout/defaultSettings.ts +121 -0
- package/template-design-pro/src/components/GDesign/ProLayout/hooks/context/index.ts +45 -0
- package/template-design-pro/src/components/GDesign/ProLayout/index.ts +43 -0
- package/template-design-pro/src/components/GDesign/ProLayout/props.ts +57 -0
- package/template-design-pro/src/components/GDesign/ProLayout/style.less +272 -0
- package/template-design-pro/src/components/GDesign/ProLayout/typings.ts +1 -0
- package/template-design-pro/src/components/GDesign/ProLayout/utils/getMenuData.ts +31 -0
- package/template-design-pro/src/components/GDesign/ProLayout/utils/index.ts +94 -0
- package/template-design-pro/src/components/GDesign/ProLayout/utils/isImg/index.ts +6 -0
- package/template-design-pro/src/components/GDesign/ProLayout/utils/isUrl/index.ts +5 -0
- package/template-design-pro/src/components/GDesign/Result/index.tsx +142 -0
- package/template-design-pro/src/components/GDesign/Result/style.less +140 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/components/Bar/index.tsx +56 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/components/Bar/props.ts +23 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/components/Thumb/index.tsx +164 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/components/Thumb/props.ts +11 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/context.ts +10 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/index.tsx +200 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/props.ts +65 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/style.less +85 -0
- package/template-design-pro/src/components/GDesign/Scrollbars/util.ts +40 -0
- package/template-design-pro/src/components/GDesign/utils/index.ts +7 -0
- package/template-design-pro/src/components/PageLoading/index.tsx +44 -0
- package/template-design-pro/src/components/PageTransition/index.vue +98 -0
- package/template-design-pro/src/components/index.ts +6 -0
- package/template-design-pro/src/core/ant-design/index.ts +14 -0
- package/template-design-pro/src/core/gx-admin-design/index.ts +7 -0
- package/template-design-pro/src/core/gx-admin-directives/index.ts +8 -0
- package/template-design-pro/src/core/gx-admin-directives/permission.ts +28 -0
- package/template-design-pro/src/core/gx-design/index.ts +7 -0
- package/template-design-pro/src/core/gx-pro-design/index.ts +10 -0
- package/template-design-pro/src/core/index.ts +27 -0
- package/template-design-pro/src/design/ant-design/index.less +4 -0
- package/template-design-pro/src/design/ant-design/layout.less +29 -0
- package/template-design-pro/src/design/ant-design/menu.less +55 -0
- package/template-design-pro/src/design/ant-design/table.less +67 -0
- package/template-design-pro/src/design/ant-design/tooltip.less +13 -0
- package/template-design-pro/src/design/color.less +1 -0
- package/template-design-pro/src/design/config.less +5 -0
- package/template-design-pro/src/design/index.less +41 -0
- package/template-design-pro/src/design/mixin.less +66 -0
- package/template-design-pro/src/design/normalize.less +390 -0
- package/template-design-pro/src/global.less +15 -0
- package/template-design-pro/src/hooks/core/index.ts +3 -0
- package/template-design-pro/src/hooks/core/useRequest/index.ts +70 -0
- package/template-design-pro/src/hooks/core/useRequest/typings.ts +0 -0
- package/template-design-pro/src/hooks/event/index.ts +3 -0
- package/template-design-pro/src/hooks/event/useClipboard.ts +14 -0
- package/template-design-pro/src/hooks/system/index.ts +5 -0
- package/template-design-pro/src/hooks/system/useDict.ts +62 -0
- package/template-design-pro/src/hooks/system/usePermissions.ts +39 -0
- package/template-design-pro/src/hooks/typings.ts +17 -0
- package/template-design-pro/src/layout/BasicLayout.vue +104 -0
- package/template-design-pro/src/layout/BlankLayout.vue +5 -0
- package/template-design-pro/src/layout/ContentView.vue +76 -0
- package/template-design-pro/src/layout/IframeView.vue +1 -0
- package/template-design-pro/src/layout/UserLayout.vue +7 -0
- package/template-design-pro/src/main.ts +34 -0
- package/template-design-pro/src/plugins/index.ts +3 -0
- package/template-design-pro/src/router/guard/index.ts +84 -0
- package/template-design-pro/src/router/guard/permissions.ts +73 -0
- package/template-design-pro/src/router/guard/stateGuard.ts +11 -0
- package/template-design-pro/src/router/helper/routeHelper.ts +244 -0
- package/template-design-pro/src/router/helper/utils.ts +19 -0
- package/template-design-pro/src/router/index.ts +30 -0
- package/template-design-pro/src/router/routes/index.ts +85 -0
- package/template-design-pro/src/router/routes/modules/workplace.ts +19 -0
- package/template-design-pro/src/services/common/index.ts +11 -0
- package/template-design-pro/src/services/controller/router.ts +10 -0
- package/template-design-pro/src/services/controller/user.ts +35 -0
- package/template-design-pro/src/services/system/dictData.ts +10 -0
- package/template-design-pro/src/services/system/notices.ts +9 -0
- package/template-design-pro/src/store/index.ts +32 -0
- package/template-design-pro/src/store/modules/dict.ts +27 -0
- package/template-design-pro/src/store/modules/permission.ts +19 -0
- package/template-design-pro/src/store/modules/routes.ts +110 -0
- package/template-design-pro/src/store/modules/settings.ts +102 -0
- package/template-design-pro/src/store/modules/tabsRouter.ts +73 -0
- package/template-design-pro/src/store/modules/user.ts +153 -0
- package/template-design-pro/src/utils/accessToken.ts +93 -0
- package/template-design-pro/src/utils/crypto.ts +39 -0
- package/template-design-pro/src/utils/env.ts +52 -0
- package/template-design-pro/src/utils/fetchFile.ts +79 -0
- package/template-design-pro/src/utils/index.ts +127 -0
- package/template-design-pro/src/utils/pageTitle.ts +17 -0
- package/template-design-pro/src/utils/request/XHR.ts +131 -0
- package/template-design-pro/src/utils/request/axiosCancel.ts +60 -0
- package/template-design-pro/src/utils/request/checkStatus.ts +26 -0
- package/template-design-pro/src/utils/request/index.ts +145 -0
- package/template-design-pro/src/utils/request/typings.ts +114 -0
- package/template-design-pro/src/utils/storage.ts +194 -0
- package/template-design-pro/src/utils/uploadFile.ts +26 -0
- package/template-design-pro/src/utils/util.ts +278 -0
- package/template-design-pro/src/utils/validate.ts +221 -0
- package/template-design-pro/src/views/Iframe/index.vue +76 -0
- package/template-design-pro/src/views/MenuOne/index.vue +15 -0
- package/template-design-pro/src/views/MenuTwo/index.vue +13 -0
- package/template-design-pro/src/views/exception/403/index.vue +9 -0
- package/template-design-pro/src/views/exception/404/index.vue +9 -0
- package/template-design-pro/src/views/user/login/index.vue +110 -0
- package/template-design-pro/src/views/user/login/style.less +38 -0
- package/template-design-pro/stylelint.config.js +106 -0
- package/template-design-pro/tests/__mocks__/fileMock.ts +1 -0
- package/template-design-pro/tests/__mocks__/styleMock.ts +1 -0
- package/template-design-pro/tests/__mocks__/workerMock.ts +5 -0
- package/template-design-pro/tests/server/README.md +15 -0
- package/template-design-pro/tests/server/controller/FileController.ts +18 -0
- package/template-design-pro/tests/server/controller/UserController.ts +15 -0
- package/template-design-pro/tests/server/ecosystem.config.js +18 -0
- package/template-design-pro/tests/server/index.ts +63 -0
- package/template-design-pro/tests/server/nodemon.json +8 -0
- package/template-design-pro/tests/server/package.json +36 -0
- package/template-design-pro/tests/server/routes.ts +23 -0
- package/template-design-pro/tests/server/service/FileService.ts +54 -0
- package/template-design-pro/tests/server/service/UserService.ts +25 -0
- package/template-design-pro/tests/server/tsconfig.json +15 -0
- package/template-design-pro/tests/server/utils.ts +9 -0
- package/template-design-pro/tests/server/yarn.lock +2955 -0
- package/template-design-pro/tests/test.spec.ts +16 -0
- package/template-design-pro/tsconfig.json +47 -0
- package/template-design-pro/types/auto-imports.d.ts +61 -0
- package/template-design-pro/types/config.d.ts +100 -0
- package/template-design-pro/types/global.d.ts +103 -0
- package/template-design-pro/types/gx-components.d.ts +24 -0
- package/template-design-pro/types/index.d.ts +13 -0
- package/template-design-pro/types/mock.d.ts +23 -0
- package/template-design-pro/types/module.d.ts +16 -0
- package/template-design-pro/types/response.d.ts +15 -0
- package/template-design-pro/types/route.d.ts +89 -0
- package/template-design-pro/vite.config.ts +136 -0
- package/template-design-pro/yarn.lock +9697 -0
@@ -0,0 +1,262 @@
|
|
1
|
+
@import '../../default.less';
|
2
|
+
|
3
|
+
@pro-layout-sider-menu-prefix-cls: ~'@{gx-prefix-pro}-sider';
|
4
|
+
|
5
|
+
@nav-header-height: @pro-layout-header-height;
|
6
|
+
|
7
|
+
.@{pro-layout-sider-menu-prefix-cls} {
|
8
|
+
position: relative;
|
9
|
+
z-index: 10;
|
10
|
+
box-shadow: 2px 0 8px 0 rgb(29 35 41 / 5%);
|
11
|
+
|
12
|
+
&.wide {
|
13
|
+
position: sticky;
|
14
|
+
z-index: 100;
|
15
|
+
overflow: auto;
|
16
|
+
overflow-x: hidden;
|
17
|
+
border-radius: 8px;
|
18
|
+
box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
|
19
|
+
}
|
20
|
+
|
21
|
+
&-menu {
|
22
|
+
position: relative;
|
23
|
+
z-index: 10;
|
24
|
+
min-height: 100%;
|
25
|
+
box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
|
26
|
+
}
|
27
|
+
|
28
|
+
.@{ant-prefix}-layout-sider-children {
|
29
|
+
display: flex;
|
30
|
+
flex-direction: column;
|
31
|
+
height: 100%;
|
32
|
+
|
33
|
+
::-webkit-scrollbar {
|
34
|
+
width: 6px;
|
35
|
+
height: 6px;
|
36
|
+
}
|
37
|
+
|
38
|
+
::-webkit-scrollbar-track {
|
39
|
+
background: rgba(255, 255, 255, 0.15);
|
40
|
+
border-radius: 3px;
|
41
|
+
box-shadow: inset 0 0 5px rgba(37, 37, 37, 0.05);
|
42
|
+
}
|
43
|
+
|
44
|
+
/* 滚动条滑块 */
|
45
|
+
|
46
|
+
::-webkit-scrollbar-thumb {
|
47
|
+
background: rgba(255, 255, 255, 0.2);
|
48
|
+
border-radius: 3px;
|
49
|
+
box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.05);
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
&.@{ant-prefix}-layout-sider-collapsed {
|
54
|
+
.@{ant-prefix}-menu-inline-collapsed {
|
55
|
+
width: 48px;
|
56
|
+
}
|
57
|
+
|
58
|
+
.@{pro-layout-sider-menu-prefix-cls} {
|
59
|
+
&-logo {
|
60
|
+
padding: 16px 8px;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
&.@{ant-prefix}-layout-sider.@{pro-layout-sider-menu-prefix-cls}-fixed {
|
66
|
+
position: fixed;
|
67
|
+
top: 0;
|
68
|
+
left: 0;
|
69
|
+
z-index: 100;
|
70
|
+
height: 100%;
|
71
|
+
overflow: auto;
|
72
|
+
overflow-x: hidden;
|
73
|
+
box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
|
74
|
+
|
75
|
+
> .@{ant-prefix}-menu-root {
|
76
|
+
:not(.@{pro-layout-sider-menu-prefix-cls}-link-menu) {
|
77
|
+
height: ~'calc(100vh - @{nav-header-height})';
|
78
|
+
overflow-y: auto;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
&.light {
|
84
|
+
background-color: @component-background;
|
85
|
+
box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
|
86
|
+
|
87
|
+
.@{ant-prefix}-layout-sider-children {
|
88
|
+
::-webkit-scrollbar-track {
|
89
|
+
background: rgba(0, 0, 0, 0.06);
|
90
|
+
border-radius: 3px;
|
91
|
+
box-shadow: inset 0 0 5px rgba(0, 21, 41, 0.05);
|
92
|
+
}
|
93
|
+
|
94
|
+
/* 滚动条滑块 */
|
95
|
+
|
96
|
+
::-webkit-scrollbar-thumb {
|
97
|
+
background: rgba(0, 0, 0, 0.12);
|
98
|
+
border-radius: 3px;
|
99
|
+
box-shadow: inset 0 0 5px rgba(0, 21, 41, 0.05);
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
.@{pro-layout-sider-menu-prefix-cls}-logo {
|
104
|
+
h1 {
|
105
|
+
color: var(--ant-primary-color);
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
.@{ant-prefix}-menu-light {
|
110
|
+
border-right-color: transparent;
|
111
|
+
}
|
112
|
+
|
113
|
+
.@{pro-layout-sider-menu-prefix-cls}-collapsed-button {
|
114
|
+
//border-top: @border-width-base @border-style-base rgba(0, 0, 0, 0.06);
|
115
|
+
}
|
116
|
+
}
|
117
|
+
|
118
|
+
&-icon {
|
119
|
+
width: 14px;
|
120
|
+
vertical-align: baseline;
|
121
|
+
}
|
122
|
+
|
123
|
+
&-links {
|
124
|
+
width: 100%;
|
125
|
+
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
126
|
+
|
127
|
+
ul.@{ant-prefix}-menu-root {
|
128
|
+
height: auto;
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
&-collapsed-button {
|
133
|
+
//border-top: @border-width-base @border-style-base rgba(0, 0, 0, 0.25);
|
134
|
+
.anticon {
|
135
|
+
font-size: 16px !important;
|
136
|
+
}
|
137
|
+
}
|
138
|
+
|
139
|
+
&-logo {
|
140
|
+
position: relative;
|
141
|
+
display: flex;
|
142
|
+
align-items: center;
|
143
|
+
width: 100%;
|
144
|
+
padding: 16px;
|
145
|
+
line-height: 32px;
|
146
|
+
cursor: pointer;
|
147
|
+
|
148
|
+
&.@{pro-layout-sider-menu-prefix-cls}-logo-horizontal {
|
149
|
+
h1 {
|
150
|
+
margin: 0 0 0 12px;
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
&.@{pro-layout-sider-menu-prefix-cls}-logo-vertical {
|
155
|
+
a {
|
156
|
+
flex-direction: column;
|
157
|
+
}
|
158
|
+
|
159
|
+
h1 {
|
160
|
+
margin: 12px 0 0 0;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
a {
|
165
|
+
display: flex;
|
166
|
+
flex-wrap: wrap;
|
167
|
+
align-items: center;
|
168
|
+
justify-content: center;
|
169
|
+
width: 100%;
|
170
|
+
min-height: 32px;
|
171
|
+
}
|
172
|
+
|
173
|
+
h1,
|
174
|
+
img {
|
175
|
+
display: inline-block;
|
176
|
+
height: 32px;
|
177
|
+
vertical-align: middle;
|
178
|
+
}
|
179
|
+
|
180
|
+
img {
|
181
|
+
transition: height 0.2s;
|
182
|
+
}
|
183
|
+
|
184
|
+
h1 {
|
185
|
+
display: inline-block;
|
186
|
+
height: 32px;
|
187
|
+
font-size: 18px;
|
188
|
+
font-weight: 600;
|
189
|
+
line-height: 32px;
|
190
|
+
color: #fff;
|
191
|
+
vertical-align: middle;
|
192
|
+
animation: pro-layout-title-hide 0.3s;
|
193
|
+
}
|
194
|
+
}
|
195
|
+
|
196
|
+
&-extra {
|
197
|
+
padding: 0 16px;
|
198
|
+
margin-bottom: 16px;
|
199
|
+
|
200
|
+
&-no-logo {
|
201
|
+
margin-top: 16px;
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
&.@{ant-prefix}-layout-sider-collapsed .gx-pro-sider-logo {
|
206
|
+
padding: 16px 8px;
|
207
|
+
}
|
208
|
+
|
209
|
+
.@{ant-prefix}-menu-inline-collapsed .@{ant-prefix}-menu-submenu-title {
|
210
|
+
width: 48px;
|
211
|
+
padding: 0 16px !important;
|
212
|
+
}
|
213
|
+
|
214
|
+
.@{ant-prefix}-layout-sider-children {
|
215
|
+
position: relative;
|
216
|
+
display: flex;
|
217
|
+
flex-direction: column;
|
218
|
+
height: 100%;
|
219
|
+
|
220
|
+
.@{pro-layout-sider-menu-prefix-cls}-loading {
|
221
|
+
position: absolute;
|
222
|
+
top: 0;
|
223
|
+
right: 0;
|
224
|
+
bottom: 0;
|
225
|
+
left: 0;
|
226
|
+
z-index: 10;
|
227
|
+
background: rgba(255, 255, 255, 0.5);
|
228
|
+
|
229
|
+
.@{ant-prefix}-spin-spinning {
|
230
|
+
position: absolute;
|
231
|
+
top: 50%;
|
232
|
+
left: 50%;
|
233
|
+
transform: translate(-50%, -50%);
|
234
|
+
}
|
235
|
+
}
|
236
|
+
|
237
|
+
.@{ant-prefix}-menu-inline-collapsed {
|
238
|
+
width: 48px;
|
239
|
+
}
|
240
|
+
}
|
241
|
+
|
242
|
+
.@{ant-prefix}-menu-item .customicon,
|
243
|
+
.@{ant-prefix}-menu-submenu-title .customicon {
|
244
|
+
transition: none;
|
245
|
+
}
|
246
|
+
}
|
247
|
+
|
248
|
+
@keyframes pro-layout-title-hide {
|
249
|
+
0% {
|
250
|
+
display: none;
|
251
|
+
opacity: 0;
|
252
|
+
}
|
253
|
+
80% {
|
254
|
+
display: none;
|
255
|
+
opacity: 0;
|
256
|
+
}
|
257
|
+
|
258
|
+
100% {
|
259
|
+
display: unset;
|
260
|
+
opacity: 1;
|
261
|
+
}
|
262
|
+
}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
import type { VNodeChild, CSSProperties, HTMLAttributes } from 'vue'
|
2
|
+
export type { MenuMode, MenuTheme } from 'ant-design-vue'
|
3
|
+
|
4
|
+
export interface MenuInfo {
|
5
|
+
key: string | number;
|
6
|
+
keyPath: string[] | number[];
|
7
|
+
item: VNodeChild | any;
|
8
|
+
domEvent: MouseEvent;
|
9
|
+
}
|
10
|
+
|
11
|
+
export interface SelectInfo extends MenuInfo {
|
12
|
+
selectedKeys: string[];
|
13
|
+
}
|
14
|
+
|
15
|
+
export type OpenEventHandler = (
|
16
|
+
keys:
|
17
|
+
| string[]
|
18
|
+
| {
|
19
|
+
key: string;
|
20
|
+
item: VNodeChild;
|
21
|
+
trigger: string;
|
22
|
+
open: boolean;
|
23
|
+
}
|
24
|
+
) => void;
|
25
|
+
|
26
|
+
export type CollapseType = 'clickTrigger' | 'responsive';
|
27
|
+
|
28
|
+
export type SiderTheme = 'light' | 'dark';
|
29
|
+
|
30
|
+
export interface SiderProps extends HTMLAttributes {
|
31
|
+
prefixCls?: string;
|
32
|
+
collapsible?: boolean;
|
33
|
+
collapsed?: boolean;
|
34
|
+
defaultCollapsed?: boolean;
|
35
|
+
reverseArrow?: boolean;
|
36
|
+
onCollapse?: (collapsed: boolean, type: CollapseType) => void;
|
37
|
+
zeroWidthTriggerStyle?: CSSProperties;
|
38
|
+
trigger?: VNodeChild | JSX.Element;
|
39
|
+
width?: number | string;
|
40
|
+
collapsedWidth?: number | string;
|
41
|
+
breakpoint?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
42
|
+
theme?: SiderTheme;
|
43
|
+
onBreakpoint?: (broken: boolean) => void;
|
44
|
+
}
|
@@ -0,0 +1,121 @@
|
|
1
|
+
import type { PropType, ExtractPropTypes } from 'vue'
|
2
|
+
import config from '/config/config'
|
3
|
+
import type { themeConfig } from '/types/config'
|
4
|
+
|
5
|
+
const { title } = config.defaultSettings
|
6
|
+
|
7
|
+
export interface RenderSetting {
|
8
|
+
headerRender?: false;
|
9
|
+
footerRender?: false;
|
10
|
+
menuRender?: false;
|
11
|
+
menuHeaderRender?: false
|
12
|
+
}
|
13
|
+
|
14
|
+
export type ProSettings = themeConfig & RenderSetting;
|
15
|
+
|
16
|
+
export const defaultSettings: themeConfig = {
|
17
|
+
//布局种类 side/mix/simple/wide
|
18
|
+
layout: 'mix',
|
19
|
+
// 主题 light/dark
|
20
|
+
theme: 'light',
|
21
|
+
// 主题色
|
22
|
+
primaryColor: '#1677ff',
|
23
|
+
// logo标题
|
24
|
+
title: title || '互动直播',
|
25
|
+
// 头部菜单高度
|
26
|
+
headerHeight: 48,
|
27
|
+
// 定宽高度
|
28
|
+
wideWidth: 1300,
|
29
|
+
// 头部菜单是否固定
|
30
|
+
fixedHeader: false,
|
31
|
+
// 侧边栏菜单是否固定
|
32
|
+
fixSiderbar: false,
|
33
|
+
// 标签页栏是否固定
|
34
|
+
fixedMultiTab: false,
|
35
|
+
//是否显示顶部进度条
|
36
|
+
showProgressBar: true,
|
37
|
+
//菜单是否自动分割
|
38
|
+
splitMenus: true,
|
39
|
+
//是否显示多标签页
|
40
|
+
showTabsBar: true,
|
41
|
+
//是否显示全屏组件
|
42
|
+
showFullScreen: false,
|
43
|
+
//是否自动隐藏头部
|
44
|
+
autoHideHeader: false,
|
45
|
+
//菜单字体链接Url
|
46
|
+
iconfontUrl: '',
|
47
|
+
//页面动画配置
|
48
|
+
animate: {
|
49
|
+
name: 'fade',
|
50
|
+
direction: 'default'
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
export const defaultSettingProps = {
|
55
|
+
theme: {
|
56
|
+
type: String as PropType<themeConfig['theme']>,
|
57
|
+
default: defaultSettings.theme
|
58
|
+
},
|
59
|
+
primaryColor: {
|
60
|
+
type: String as PropType<themeConfig['primaryColor']>,
|
61
|
+
default: defaultSettings.primaryColor
|
62
|
+
},
|
63
|
+
layout: {
|
64
|
+
type: String as PropType<themeConfig['layout']>,
|
65
|
+
default: defaultSettings.layout
|
66
|
+
},
|
67
|
+
wideWidth: {
|
68
|
+
type: Number as PropType<themeConfig['wideWidth']>,
|
69
|
+
default: defaultSettings.wideWidth
|
70
|
+
},
|
71
|
+
splitMenus: {
|
72
|
+
type: Boolean as PropType<themeConfig['splitMenus']>,
|
73
|
+
default: defaultSettings.splitMenus
|
74
|
+
},
|
75
|
+
fixedMultiTab: {
|
76
|
+
type: Boolean as PropType<themeConfig['fixedMultiTab']>,
|
77
|
+
default: defaultSettings.fixedMultiTab
|
78
|
+
},
|
79
|
+
showProgressBar: {
|
80
|
+
type: Boolean as PropType<themeConfig['showProgressBar']>,
|
81
|
+
default: defaultSettings.showProgressBar
|
82
|
+
},
|
83
|
+
fixedHeader: {
|
84
|
+
type: Boolean as PropType<themeConfig['fixedHeader']>,
|
85
|
+
default: defaultSettings.fixedHeader
|
86
|
+
},
|
87
|
+
fixSiderbar: {
|
88
|
+
type: Boolean as PropType<themeConfig['fixSiderbar']>,
|
89
|
+
default: defaultSettings.fixSiderbar
|
90
|
+
},
|
91
|
+
showTabsBar: {
|
92
|
+
type: Boolean as PropType<themeConfig['showTabsBar']>,
|
93
|
+
default: defaultSettings.showTabsBar
|
94
|
+
},
|
95
|
+
showFullScreen: {
|
96
|
+
type: Boolean as PropType<themeConfig['showFullScreen']>,
|
97
|
+
default: defaultSettings.showFullScreen
|
98
|
+
},
|
99
|
+
autoHideHeader: {
|
100
|
+
type: Boolean as PropType<themeConfig['autoHideHeader']>,
|
101
|
+
default: defaultSettings.autoHideHeader
|
102
|
+
},
|
103
|
+
headerHeight: {
|
104
|
+
type: Number as PropType<themeConfig['headerHeight']>,
|
105
|
+
default: defaultSettings.headerHeight
|
106
|
+
},
|
107
|
+
title: {
|
108
|
+
type: String as PropType<themeConfig['title']>,
|
109
|
+
default: () => defaultSettings.title
|
110
|
+
},
|
111
|
+
iconfontUrl: {
|
112
|
+
type: String as PropType<themeConfig['iconfontUrl']>,
|
113
|
+
default: () => defaultSettings.iconfontUrl
|
114
|
+
},
|
115
|
+
animate: {
|
116
|
+
type: Object as PropType<themeConfig['animate']>,
|
117
|
+
default: defaultSettings.animate
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
export type ProSettingsProps = ExtractPropTypes<typeof defaultSettingProps>;
|
@@ -0,0 +1,45 @@
|
|
1
|
+
import {
|
2
|
+
defineComponent,
|
3
|
+
InjectionKey,
|
4
|
+
provide,
|
5
|
+
inject,
|
6
|
+
readonly,
|
7
|
+
SetupContext,
|
8
|
+
VNode,
|
9
|
+
PropType,
|
10
|
+
DefineComponent
|
11
|
+
} from 'vue'
|
12
|
+
|
13
|
+
// @ts-ignore
|
14
|
+
export type ContextType<T> = any;
|
15
|
+
|
16
|
+
// @ts-ignore
|
17
|
+
export type CreateContext<T> = DefineComponent<{}, () => VNode | VNode[] | undefined, any>;
|
18
|
+
|
19
|
+
export const createContext = <T>(
|
20
|
+
contextInjectKey: InjectionKey<ContextType<T>> = Symbol(),
|
21
|
+
injectCompName = 'Context.Provider'
|
22
|
+
): CreateContext<T> => {
|
23
|
+
const ContextProvider = defineComponent({
|
24
|
+
name: injectCompName,
|
25
|
+
props: {
|
26
|
+
value: {
|
27
|
+
type: Object as PropType<ContextType<T>>,
|
28
|
+
required: true
|
29
|
+
}
|
30
|
+
},
|
31
|
+
setup(props: { value: ContextType<T> }, { slots }: SetupContext) {
|
32
|
+
provide(contextInjectKey, readonly(props.value))
|
33
|
+
return () => slots.default?.()
|
34
|
+
}
|
35
|
+
})
|
36
|
+
|
37
|
+
return ContextProvider as any
|
38
|
+
}
|
39
|
+
|
40
|
+
export const useContext = <T>(
|
41
|
+
contextInjectKey: string | InjectionKey<ContextType<T>> = Symbol(),
|
42
|
+
defaultValue?: ContextType<T>
|
43
|
+
): T => {
|
44
|
+
return inject(contextInjectKey, defaultValue || ({} as T))
|
45
|
+
}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
import { default as PageLoading } from './PageLoading'
|
2
|
+
import { default as BaseMenu } from './components/SiderMenu/BaseMenu'
|
3
|
+
import { default as SiderMenuWrapper } from './components/SiderMenu'
|
4
|
+
import type { PageContainerProps } from './components/PageContainer';
|
5
|
+
import PageContainer, { ProBreadcrumb } from './components/PageContainer';
|
6
|
+
|
7
|
+
export * from './RouteContext'
|
8
|
+
export * from './typings'
|
9
|
+
export * from './utils/getMenuData'
|
10
|
+
export { createContext, useContext } from './hooks/context'
|
11
|
+
export type { ContextType, CreateContext } from './hooks/context'
|
12
|
+
|
13
|
+
|
14
|
+
export { baseMenuProps } from './components/SiderMenu/props'
|
15
|
+
export type { BaseMenuProps } from './components/SiderMenu/BaseMenu'
|
16
|
+
export type { SiderMenuWrapperProps } from './components/SiderMenu'
|
17
|
+
export type { MenuMode, OpenEventHandler, SelectInfo } from './components/SiderMenu/typings'
|
18
|
+
|
19
|
+
export { DefaultHeader } from './components/GlobalHeader/DefaultHeader'
|
20
|
+
export { default as GlobalFooter } from './components/GlobalFooter'
|
21
|
+
export { default as SettingDrawer } from './components/SettingDrawer'
|
22
|
+
export { WrapContent } from './WrapContent'
|
23
|
+
|
24
|
+
export type { DefaultHeaderProps } from './components/GlobalHeader/DefaultHeader'
|
25
|
+
export type { GlobalFooterProps } from './components/GlobalFooter'
|
26
|
+
|
27
|
+
export type { ProSettings } from './defaultSettings'
|
28
|
+
|
29
|
+
export { default } from './BasicLayout'
|
30
|
+
|
31
|
+
export type { BasicLayoutProps } from './BasicLayout'
|
32
|
+
|
33
|
+
export {
|
34
|
+
BaseMenu,
|
35
|
+
PageLoading,
|
36
|
+
SiderMenuWrapper,
|
37
|
+
PageContainer,
|
38
|
+
ProBreadcrumb,
|
39
|
+
}
|
40
|
+
|
41
|
+
export type {
|
42
|
+
PageContainerProps
|
43
|
+
}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
import type { CSSProperties } from 'vue'
|
2
|
+
import { PropTypes } from '@/utils'
|
3
|
+
import type { BreadcrumbProps } from './RouteContext'
|
4
|
+
import type { FooterRender, CopyrightRender } from './RenderTypings'
|
5
|
+
import type { Links } from './components/GlobalFooter'
|
6
|
+
import { defaultSettingProps } from './defaultSettings'
|
7
|
+
import { globalHeaderProps, headerViewProps } from './components/GlobalHeader/props'
|
8
|
+
import { siderMenuProps } from './components/SiderMenu/props'
|
9
|
+
import multiTabProps from './components/MultiTab/props'
|
10
|
+
import { defaultLinks } from './components/GlobalFooter'
|
11
|
+
|
12
|
+
export const basicLayoutProps = {
|
13
|
+
...defaultSettingProps,
|
14
|
+
...globalHeaderProps,
|
15
|
+
...siderMenuProps,
|
16
|
+
...headerViewProps,
|
17
|
+
...multiTabProps,
|
18
|
+
|
19
|
+
pure: Boolean,
|
20
|
+
/**
|
21
|
+
* 是否禁用移动端模式,有的管理系统不需要移动端模式,此属性设置为true即可
|
22
|
+
*/
|
23
|
+
disableMobile: {
|
24
|
+
type: Boolean,
|
25
|
+
required: false,
|
26
|
+
},
|
27
|
+
contentStyle: {
|
28
|
+
type: [String, Object] as PropType<CSSProperties>,
|
29
|
+
default: () => {
|
30
|
+
return null
|
31
|
+
},
|
32
|
+
},
|
33
|
+
breadcrumb: {
|
34
|
+
type: [Object, Function] as PropType<BreadcrumbProps>,
|
35
|
+
default: () => null,
|
36
|
+
},
|
37
|
+
disableContentMargin: PropTypes.looseBool,
|
38
|
+
isChildrenLayout: PropTypes.looseBool,
|
39
|
+
loading: PropTypes.looseBool,
|
40
|
+
footerLinks: {
|
41
|
+
type: [Array, Boolean] as PropType<Links>,
|
42
|
+
default: defaultLinks
|
43
|
+
},
|
44
|
+
copyrightRender: {
|
45
|
+
type: [Object, Function, Boolean, String] as PropType<CopyrightRender>,
|
46
|
+
default: () => undefined,
|
47
|
+
},
|
48
|
+
footerRender: {
|
49
|
+
type: [Object, Function, Boolean] as PropType<FooterRender>,
|
50
|
+
default: () => undefined,
|
51
|
+
},
|
52
|
+
menuData: {
|
53
|
+
type: Array as PropType<AppRouteModule[]>,
|
54
|
+
default: () => []
|
55
|
+
},
|
56
|
+
collapsed: PropTypes.looseBool
|
57
|
+
}
|