@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,30 @@
|
|
1
|
+
import type { App } from 'vue';
|
2
|
+
import { createRouter, createWebHashHistory, createWebHistory, RouteRecordRaw } from 'vue-router'
|
3
|
+
import config from '/config/config'
|
4
|
+
import { constantRoutes } from './routes'
|
5
|
+
|
6
|
+
const { routerMode } = config.defaultSettings
|
7
|
+
|
8
|
+
function handleRouterMode() {
|
9
|
+
switch (routerMode) {
|
10
|
+
case 'hash':
|
11
|
+
return createWebHashHistory()
|
12
|
+
break
|
13
|
+
case 'browser':
|
14
|
+
return createWebHistory()
|
15
|
+
break
|
16
|
+
default:
|
17
|
+
return createWebHashHistory()
|
18
|
+
break
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
export const router = createRouter({
|
23
|
+
history: handleRouterMode(),
|
24
|
+
routes: constantRoutes as unknown as RouteRecordRaw[]
|
25
|
+
})
|
26
|
+
|
27
|
+
// 配置路由器
|
28
|
+
export function setupRouter(app: App<Element>) {
|
29
|
+
app.use(router);
|
30
|
+
}
|
@@ -0,0 +1,85 @@
|
|
1
|
+
import UserLayout from '@/layout/UserLayout.vue'
|
2
|
+
import BlankLayout from '@/layout/BlankLayout.vue'
|
3
|
+
import BasicLayout from '@/layout/BasicLayout.vue'
|
4
|
+
|
5
|
+
// import.meta.globEager() 直接引入所有的模块 Vite 独有的功能
|
6
|
+
const modules = import.meta.globEager('./modules/**/*.ts')
|
7
|
+
const routeModuleList: AppRouteModule[] = []
|
8
|
+
|
9
|
+
// 加入到路由集合中
|
10
|
+
Object.keys(modules).forEach((key) => {
|
11
|
+
const mod = (modules[key] as any).default || {}
|
12
|
+
const modList = Array.isArray(mod) ? [ ...mod ] : [ mod ]
|
13
|
+
routeModuleList.push(...modList)
|
14
|
+
})
|
15
|
+
|
16
|
+
// 基本路由
|
17
|
+
export const constantRoutes: AppRouteModule[] = [
|
18
|
+
{
|
19
|
+
path: '/user',
|
20
|
+
component: UserLayout,
|
21
|
+
redirect: '/user/login',
|
22
|
+
children: [
|
23
|
+
{
|
24
|
+
path: '/user/login',
|
25
|
+
name: 'Login',
|
26
|
+
meta: {
|
27
|
+
hideInMenu: true,
|
28
|
+
title: '登录'
|
29
|
+
},
|
30
|
+
component: () => import('@/views/user/login/index.vue')
|
31
|
+
}
|
32
|
+
]
|
33
|
+
},
|
34
|
+
{
|
35
|
+
path: '/exception',
|
36
|
+
name: 'Exception',
|
37
|
+
component: BlankLayout,
|
38
|
+
redirect: '/exception/403',
|
39
|
+
meta: {
|
40
|
+
hideInMenu: true,
|
41
|
+
title: '错误页',
|
42
|
+
icon: 'error-warning-line'
|
43
|
+
},
|
44
|
+
children: [
|
45
|
+
{
|
46
|
+
path: '/exception/403',
|
47
|
+
name: 'Error403',
|
48
|
+
component: () => import('@/views/exception/403/index.vue'),
|
49
|
+
meta: {
|
50
|
+
hideInMenu: true,
|
51
|
+
title: '403',
|
52
|
+
icon: 'error-warning-line'
|
53
|
+
}
|
54
|
+
},
|
55
|
+
{
|
56
|
+
path: '/exception/404',
|
57
|
+
name: 'Error404',
|
58
|
+
component: () => import('@/views/exception/404/index.vue'),
|
59
|
+
meta: {
|
60
|
+
hideInMenu: true,
|
61
|
+
title: '404',
|
62
|
+
icon: 'error-warning-line'
|
63
|
+
}
|
64
|
+
}
|
65
|
+
]
|
66
|
+
}
|
67
|
+
]
|
68
|
+
|
69
|
+
// authentication为all(后端生成的路由)本地路由
|
70
|
+
export const asyncRoutes: AppRouteModule[] = routeModuleList
|
71
|
+
|
72
|
+
// 自定义路由
|
73
|
+
export const localRoutes: AppRouteModule[] = [
|
74
|
+
{
|
75
|
+
path: '/',
|
76
|
+
name: '首页',
|
77
|
+
component: BasicLayout,
|
78
|
+
redirect: '/menu',
|
79
|
+
children: routeModuleList
|
80
|
+
},
|
81
|
+
{
|
82
|
+
path: '/:path(.*)*',
|
83
|
+
redirect: '/exception/404'
|
84
|
+
}
|
85
|
+
]
|
@@ -0,0 +1,19 @@
|
|
1
|
+
const workplace: AppRouteModule = {
|
2
|
+
path: '/menu-two',
|
3
|
+
name: 'menuTwo',
|
4
|
+
meta: {
|
5
|
+
title: '目录二'
|
6
|
+
},
|
7
|
+
children: [
|
8
|
+
{
|
9
|
+
path: '/menu-two1',
|
10
|
+
name: 'menuTwo1',
|
11
|
+
component: () => import('@/views/MenuTwo/index.vue'),
|
12
|
+
meta: {
|
13
|
+
title: '菜单二'
|
14
|
+
},
|
15
|
+
}
|
16
|
+
]
|
17
|
+
}
|
18
|
+
|
19
|
+
export default workplace
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import type { DownLoadRequestConfig } from '@/utils/fetchFile'
|
2
|
+
import fetchFile from '@/utils/fetchFile'
|
3
|
+
|
4
|
+
export function download(params: DownLoadRequestConfig) {
|
5
|
+
const { showTip = true, method = 'get' } = params
|
6
|
+
return fetchFile({
|
7
|
+
...params,
|
8
|
+
showTip,
|
9
|
+
method
|
10
|
+
})
|
11
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import request from '@/utils/request'
|
2
|
+
|
3
|
+
export function login(data) {
|
4
|
+
return request({
|
5
|
+
url: '/auth/login',
|
6
|
+
method: 'post',
|
7
|
+
data,
|
8
|
+
isMock: true
|
9
|
+
})
|
10
|
+
}
|
11
|
+
|
12
|
+
export function getUserInfo() {
|
13
|
+
return request({
|
14
|
+
url: '/userInfo',
|
15
|
+
method: 'post',
|
16
|
+
isMock: true
|
17
|
+
})
|
18
|
+
}
|
19
|
+
|
20
|
+
export function logout(params) {
|
21
|
+
return request({
|
22
|
+
url: '/logout',
|
23
|
+
method: 'get',
|
24
|
+
isMock: true,
|
25
|
+
params
|
26
|
+
})
|
27
|
+
}
|
28
|
+
|
29
|
+
export function register() {
|
30
|
+
return request({
|
31
|
+
url: '/register',
|
32
|
+
method: 'post',
|
33
|
+
isMock: true
|
34
|
+
})
|
35
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import type { App } from 'vue'
|
2
|
+
import { createPinia } from 'pinia'
|
3
|
+
import { useStoreUser } from './modules/user'
|
4
|
+
import { useStoreDict } from './modules/dict'
|
5
|
+
import { useStoreRoutes } from './modules/routes'
|
6
|
+
import { useStoreSettings } from './modules/settings'
|
7
|
+
import { useStorePermission } from './modules/permission'
|
8
|
+
import { useStoreTabsRouter } from './modules/tabsRouter'
|
9
|
+
|
10
|
+
export {
|
11
|
+
useStoreUser,
|
12
|
+
useStoreDict,
|
13
|
+
useStoreRoutes,
|
14
|
+
useStoreSettings,
|
15
|
+
useStorePermission,
|
16
|
+
useStoreTabsRouter
|
17
|
+
}
|
18
|
+
|
19
|
+
export function useStore() {
|
20
|
+
return {
|
21
|
+
user: useStoreUser(),
|
22
|
+
dict: useStoreDict(),
|
23
|
+
routes: useStoreRoutes(),
|
24
|
+
settings: useStoreSettings(),
|
25
|
+
permission: useStorePermission(),
|
26
|
+
tabsRouter: useStoreTabsRouter()
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
export function setupStore(app: App<Element>) {
|
31
|
+
app.use(createPinia())
|
32
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import { reactive, toRefs } from 'vue'
|
2
|
+
import { defineStore } from 'pinia'
|
3
|
+
|
4
|
+
/**
|
5
|
+
* @Author gx12358
|
6
|
+
* @DateTime 2022/1/11
|
7
|
+
* @lastTime 2022/1/11
|
8
|
+
* @description store-dict 数字字典
|
9
|
+
*/
|
10
|
+
export interface DictState {
|
11
|
+
data: RecordType;
|
12
|
+
}
|
13
|
+
|
14
|
+
export const useStoreDict = defineStore('dict', () => {
|
15
|
+
const state = reactive({
|
16
|
+
data: {}
|
17
|
+
} as DictState)
|
18
|
+
|
19
|
+
const setDictData = (type, value) => {
|
20
|
+
state.data[type] = value
|
21
|
+
}
|
22
|
+
|
23
|
+
return {
|
24
|
+
...toRefs(state),
|
25
|
+
setDictData
|
26
|
+
}
|
27
|
+
})
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { reactive, toRefs } from 'vue'
|
2
|
+
import { defineStore } from 'pinia'
|
3
|
+
|
4
|
+
export const useStorePermission = defineStore('permission', () => {
|
5
|
+
const state = reactive({
|
6
|
+
admin: false,
|
7
|
+
role: [],
|
8
|
+
ability: []
|
9
|
+
})
|
10
|
+
|
11
|
+
const changeValue = (type: string, value: any) => {
|
12
|
+
state[type] = value
|
13
|
+
}
|
14
|
+
|
15
|
+
return {
|
16
|
+
...toRefs(state),
|
17
|
+
changeValue
|
18
|
+
}
|
19
|
+
})
|
@@ -0,0 +1,110 @@
|
|
1
|
+
import { reactive, toRefs } from 'vue'
|
2
|
+
import { defineStore } from 'pinia'
|
3
|
+
import { asyncRoutes, localRoutes } from '@/router/routes'
|
4
|
+
import { getRouterList } from '@/services/controller/router'
|
5
|
+
import { generator, getRootMenu } from '@/router/helper/routeHelper'
|
6
|
+
import { getFirstLastChild } from '@/router/helper/utils'
|
7
|
+
import { getLevelData } from '@gx-design-vue/pro-utils'
|
8
|
+
|
9
|
+
/**
|
10
|
+
* @Author gx12358
|
11
|
+
* @DateTime 2022/1/11
|
12
|
+
* @lastTime 2022/1/11
|
13
|
+
* @description store-routes 路由
|
14
|
+
*/
|
15
|
+
export interface RoutesState {
|
16
|
+
routes: AppRouteModule[];
|
17
|
+
routerLoadList: string[];
|
18
|
+
meunLoading: boolean;
|
19
|
+
routerLoading: boolean;
|
20
|
+
}
|
21
|
+
|
22
|
+
export const useStoreRoutes = defineStore('routes', () => {
|
23
|
+
const state = reactive({
|
24
|
+
routes: [],
|
25
|
+
routerLoadList: [],
|
26
|
+
meunLoading: false,
|
27
|
+
routerLoading: false
|
28
|
+
} as RoutesState)
|
29
|
+
|
30
|
+
/**
|
31
|
+
* @Author gx12358
|
32
|
+
* @DateTime 2022/1/11
|
33
|
+
* @lastTime 2022/1/11
|
34
|
+
* @description intelligence(前端静态路由)模式设置路由
|
35
|
+
*/
|
36
|
+
const setRoutes = () => {
|
37
|
+
state.routes = localRoutes
|
38
|
+
return [ ...localRoutes ]
|
39
|
+
}
|
40
|
+
|
41
|
+
/**
|
42
|
+
* @Author gx12358
|
43
|
+
* @DateTime 2022/1/11
|
44
|
+
* @lastTime 2022/1/11
|
45
|
+
* @description all(后端动态路由)
|
46
|
+
*/
|
47
|
+
const setAllRoutes = async () => {
|
48
|
+
let routes: AppRouteModule[] = []
|
49
|
+
state.meunLoading = true
|
50
|
+
const response: ResponseResult<MenuDataItem[]> = await getRouterList()
|
51
|
+
if (response && (response?.data)?.length) {
|
52
|
+
const notFoundRouter: AppRouteModule = {
|
53
|
+
path: '/:path(.*)*',
|
54
|
+
redirect: '/exception/404',
|
55
|
+
hidden: true
|
56
|
+
}
|
57
|
+
const rootMenu = getRootMenu(response?.data || [])
|
58
|
+
const asyncRouteList = generator(rootMenu)
|
59
|
+
asyncRouteList[0].children = [ ...(asyncRouteList[0]?.children || []), ...asyncRoutes ]
|
60
|
+
const haveHomePage = getLevelData(asyncRouteList[0].children)
|
61
|
+
.find(item => item.meta ? item.meta.homePage === 1 : false)
|
62
|
+
asyncRouteList[0].redirect = haveHomePage ? haveHomePage.path : getFirstLastChild(asyncRouteList[0].children)
|
63
|
+
asyncRouteList.push(notFoundRouter)
|
64
|
+
routes = [ ...asyncRouteList ]
|
65
|
+
}
|
66
|
+
state.routes = routes
|
67
|
+
state.meunLoading = false
|
68
|
+
return routes
|
69
|
+
}
|
70
|
+
|
71
|
+
/**
|
72
|
+
* @Author gx12358
|
73
|
+
* @DateTime 2022/1/11
|
74
|
+
* @lastTime 2022/1/11
|
75
|
+
* @description 重置路由
|
76
|
+
*/
|
77
|
+
const resetRoute = () => {
|
78
|
+
state.routes = []
|
79
|
+
state.routerLoadList = []
|
80
|
+
}
|
81
|
+
|
82
|
+
/**
|
83
|
+
* @Author gx12358
|
84
|
+
* @DateTime 2022/1/11
|
85
|
+
* @lastTime 2022/1/11
|
86
|
+
* @description 添加路由记录
|
87
|
+
*/
|
88
|
+
const addRouterLoadList = (path) => {
|
89
|
+
state.routerLoadList.push(path)
|
90
|
+
}
|
91
|
+
|
92
|
+
/**
|
93
|
+
* @Author gx12358
|
94
|
+
* @DateTime 2022/1/11
|
95
|
+
* @lastTime 2022/1/11
|
96
|
+
* @description 修改state状态
|
97
|
+
*/
|
98
|
+
const changeValue = (type, value) => {
|
99
|
+
state[type] = value
|
100
|
+
}
|
101
|
+
|
102
|
+
return {
|
103
|
+
...toRefs(state),
|
104
|
+
setRoutes,
|
105
|
+
setAllRoutes,
|
106
|
+
resetRoute,
|
107
|
+
addRouterLoadList,
|
108
|
+
changeValue
|
109
|
+
}
|
110
|
+
})
|
@@ -0,0 +1,102 @@
|
|
1
|
+
import { reactive, toRefs } from 'vue'
|
2
|
+
import { defineStore } from 'pinia'
|
3
|
+
import config from '/config/config'
|
4
|
+
import { MenuTheme, themeConfig } from '/types/config'
|
5
|
+
|
6
|
+
/**
|
7
|
+
* @Author gx12358
|
8
|
+
* @DateTime 2022/1/11
|
9
|
+
* @lastTime 2022/1/11
|
10
|
+
* @description store-settings 系统配置
|
11
|
+
*/
|
12
|
+
export interface SettingsState {
|
13
|
+
logo: string | boolean;
|
14
|
+
title: themeConfig['title'];
|
15
|
+
animate: themeConfig['animate'];
|
16
|
+
layout: themeConfig['layout'];
|
17
|
+
headerHeight: themeConfig['headerHeight'];
|
18
|
+
primaryColor: themeConfig['primaryColor'];
|
19
|
+
wideWidth: themeConfig['wideWidth'];
|
20
|
+
fixSiderbar: themeConfig['fixSiderbar'];
|
21
|
+
fixedHeader: themeConfig['fixedHeader'];
|
22
|
+
fixedMultiTab: themeConfig['fixedMultiTab'];
|
23
|
+
splitMenus: themeConfig['splitMenus'];
|
24
|
+
showTabsBar: themeConfig['showTabsBar'];
|
25
|
+
autoHideHeader: themeConfig['autoHideHeader'];
|
26
|
+
showProgressBar: themeConfig['showProgressBar'];
|
27
|
+
keepAlive: boolean;
|
28
|
+
collapse: boolean;
|
29
|
+
theme: MenuTheme | undefined;
|
30
|
+
}
|
31
|
+
|
32
|
+
const { logo, title } = config.defaultSettings
|
33
|
+
|
34
|
+
const {
|
35
|
+
layout,
|
36
|
+
theme,
|
37
|
+
animate,
|
38
|
+
primaryColor,
|
39
|
+
splitMenus,
|
40
|
+
wideWidth,
|
41
|
+
headerHeight,
|
42
|
+
fixedMultiTab,
|
43
|
+
fixedHeader,
|
44
|
+
fixSiderbar,
|
45
|
+
autoHideHeader,
|
46
|
+
showTabsBar,
|
47
|
+
showProgressBar
|
48
|
+
} = config.theme
|
49
|
+
|
50
|
+
export const useStoreSettings = defineStore('settings', () => {
|
51
|
+
const state = reactive({
|
52
|
+
logo,
|
53
|
+
title,
|
54
|
+
collapse: false,
|
55
|
+
theme,
|
56
|
+
layout,
|
57
|
+
wideWidth,
|
58
|
+
headerHeight,
|
59
|
+
primaryColor,
|
60
|
+
animate: animate || {
|
61
|
+
name: 'fade',
|
62
|
+
direction: 'default'
|
63
|
+
},
|
64
|
+
splitMenus: layout === 'mix' ? splitMenus : false,
|
65
|
+
autoHideHeader,
|
66
|
+
showTabsBar: layout === 'simple' || layout === 'wide' ? false : showTabsBar,
|
67
|
+
fixedMultiTab: layout === 'simple' || layout === 'wide' ? false : fixedMultiTab,
|
68
|
+
fixedHeader: layout === 'mix' || layout === 'wide' ? true : layout === 'simple' ? false : fixedHeader,
|
69
|
+
fixSiderbar: layout === 'mix' ? true : layout === 'wide' ? false : fixSiderbar,
|
70
|
+
keepAlive: false,
|
71
|
+
showProgressBar
|
72
|
+
} as SettingsState)
|
73
|
+
|
74
|
+
const toggleCollapse = () => {
|
75
|
+
state.collapse = !state.collapse
|
76
|
+
}
|
77
|
+
|
78
|
+
const changeAnimateMode = (value: string) => {
|
79
|
+
state.animate.name = value
|
80
|
+
}
|
81
|
+
|
82
|
+
const changeAnimateDirections = (value: string) => {
|
83
|
+
state.animate.direction = value
|
84
|
+
}
|
85
|
+
|
86
|
+
const handleShowAnimate = (value: boolean) => {
|
87
|
+
state.animate.disabled = value
|
88
|
+
}
|
89
|
+
|
90
|
+
const changeValue = (type, value) => {
|
91
|
+
state[type] = value
|
92
|
+
}
|
93
|
+
|
94
|
+
return {
|
95
|
+
...toRefs(state),
|
96
|
+
changeValue,
|
97
|
+
toggleCollapse,
|
98
|
+
changeAnimateMode,
|
99
|
+
handleShowAnimate,
|
100
|
+
changeAnimateDirections
|
101
|
+
}
|
102
|
+
})
|
@@ -0,0 +1,73 @@
|
|
1
|
+
import { reactive, toRefs } from 'vue'
|
2
|
+
import { defineStore } from 'pinia'
|
3
|
+
|
4
|
+
export interface TabsRouterState {
|
5
|
+
visitedRoutes: RecordType[];
|
6
|
+
}
|
7
|
+
|
8
|
+
export const useStoreTabsRouter = defineStore('tabsRouter', () => {
|
9
|
+
|
10
|
+
const state = reactive({
|
11
|
+
visitedRoutes: []
|
12
|
+
} as TabsRouterState)
|
13
|
+
|
14
|
+
const addVisitedRoute = (route) => {
|
15
|
+
const target = state.visitedRoutes.find((item) => item.path === route.path)
|
16
|
+
if (target) {
|
17
|
+
if (route.fullPath !== target.fullPath) Object.assign(target, route)
|
18
|
+
return
|
19
|
+
}
|
20
|
+
if (route.tagFixed) {
|
21
|
+
state.visitedRoutes.unshift(Object.assign({}, route))
|
22
|
+
} else {
|
23
|
+
state.visitedRoutes.push(Object.assign({}, route))
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
const delVisitedRoute = (route) => {
|
28
|
+
state.visitedRoutes.forEach((item, index) => {
|
29
|
+
if (item.path === route.path) state.visitedRoutes.splice(index, 1)
|
30
|
+
})
|
31
|
+
}
|
32
|
+
|
33
|
+
const delOthersVisitedRoutes = (route) => {
|
34
|
+
state.visitedRoutes = state.visitedRoutes.filter(
|
35
|
+
(item) => item.meta.tagFixed || item.path === route.path
|
36
|
+
)
|
37
|
+
}
|
38
|
+
|
39
|
+
const delLeftVisitedRoutes = (route) => {
|
40
|
+
let index = state.visitedRoutes.length
|
41
|
+
state.visitedRoutes = state.visitedRoutes.filter((item) => {
|
42
|
+
if (item.name === route.name) index = state.visitedRoutes.indexOf(item)
|
43
|
+
return item.meta.tagFixed || index <= state.visitedRoutes.indexOf(item)
|
44
|
+
})
|
45
|
+
}
|
46
|
+
|
47
|
+
const delRightVisitedRoutes = (route) => {
|
48
|
+
let index = state.visitedRoutes.length
|
49
|
+
state.visitedRoutes = state.visitedRoutes.filter((item) => {
|
50
|
+
if (item.name === route.name) index = state.visitedRoutes.indexOf(item)
|
51
|
+
return item.meta.tagFixed || index >= state.visitedRoutes.indexOf(item)
|
52
|
+
})
|
53
|
+
}
|
54
|
+
|
55
|
+
const delAllVisitedRoutes = () => {
|
56
|
+
state.visitedRoutes = state.visitedRoutes.filter((item) => item.meta.tagFixed)
|
57
|
+
}
|
58
|
+
|
59
|
+
const blankingTabs = () => {
|
60
|
+
state.visitedRoutes = []
|
61
|
+
}
|
62
|
+
|
63
|
+
return {
|
64
|
+
...toRefs(state),
|
65
|
+
blankingTabs,
|
66
|
+
addVisitedRoute,
|
67
|
+
delVisitedRoute,
|
68
|
+
delOthersVisitedRoutes,
|
69
|
+
delLeftVisitedRoutes,
|
70
|
+
delRightVisitedRoutes,
|
71
|
+
delAllVisitedRoutes,
|
72
|
+
}
|
73
|
+
})
|