@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,218 @@
|
|
1
|
+
import type { MockMethod } from '/types/mock'
|
2
|
+
import dayjs from 'dayjs'
|
3
|
+
import config from '/config/config'
|
4
|
+
import { resultError, resultSuccess, getRequestToken, requestParams } from '../_util'
|
5
|
+
|
6
|
+
const { tokenName } = config.defaultSettings
|
7
|
+
|
8
|
+
interface RolesInfo {
|
9
|
+
roleId: number;
|
10
|
+
roleKey: string;
|
11
|
+
roleName: string;
|
12
|
+
status: string;
|
13
|
+
}
|
14
|
+
|
15
|
+
const accessTokens = {
|
16
|
+
gx12358: 'gx-accessToken',
|
17
|
+
admin: 'admin-accessToken',
|
18
|
+
editor: 'editor-accessToken',
|
19
|
+
test: 'test-accessToken'
|
20
|
+
}
|
21
|
+
|
22
|
+
const account = {
|
23
|
+
admin: 'gx.design',
|
24
|
+
gx12358: 'aa123456',
|
25
|
+
editor: 'gx.design',
|
26
|
+
test: 'gx.design',
|
27
|
+
}
|
28
|
+
|
29
|
+
export default [
|
30
|
+
{
|
31
|
+
url: '/mock-server/auth/login',
|
32
|
+
method: 'post',
|
33
|
+
response: ({ body }) => {
|
34
|
+
const { userName, password } = body
|
35
|
+
const accessToken = accessTokens[userName]
|
36
|
+
if (account[userName] !== password || !accessToken) {
|
37
|
+
return {
|
38
|
+
code: 500,
|
39
|
+
msg: '帐户或密码不正确。'
|
40
|
+
}
|
41
|
+
}
|
42
|
+
return {
|
43
|
+
code: 200,
|
44
|
+
msg: 'success',
|
45
|
+
data: {
|
46
|
+
[tokenName]: accessToken,
|
47
|
+
expires_in: 720
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
},
|
52
|
+
{
|
53
|
+
url: '/mock-server/socialLogin',
|
54
|
+
method: 'post',
|
55
|
+
response: ({ body }) => {
|
56
|
+
const { code } = body
|
57
|
+
if (!code) {
|
58
|
+
return {
|
59
|
+
code: 500,
|
60
|
+
msg: '未成功获取Token。'
|
61
|
+
}
|
62
|
+
}
|
63
|
+
return {
|
64
|
+
code: 200,
|
65
|
+
msg: 'success',
|
66
|
+
data: { accessToken: accessTokens['admin'] }
|
67
|
+
}
|
68
|
+
}
|
69
|
+
},
|
70
|
+
{
|
71
|
+
url: '/mock-server/register',
|
72
|
+
method: 'post',
|
73
|
+
response: () => {
|
74
|
+
return {
|
75
|
+
code: 200,
|
76
|
+
msg: '模拟注册成功'
|
77
|
+
}
|
78
|
+
}
|
79
|
+
},
|
80
|
+
{
|
81
|
+
url: '/mock-server/userInfo',
|
82
|
+
method: 'post',
|
83
|
+
response: (request) => {
|
84
|
+
let GxAccessToken = getRequestToken(request)
|
85
|
+
GxAccessToken = 'admin-accessToken'
|
86
|
+
let userId: number | null = null
|
87
|
+
let roles: string[] = []
|
88
|
+
let rolesInfo: RolesInfo[] = []
|
89
|
+
let roleIds: number[] = []
|
90
|
+
let permissions: string[] = []
|
91
|
+
let nickName = ''
|
92
|
+
let userName = ''
|
93
|
+
for (const i in accessTokens) {
|
94
|
+
if (accessTokens[i] === GxAccessToken) userName = i
|
95
|
+
}
|
96
|
+
switch (GxAccessToken) {
|
97
|
+
case 'gx-accessToken':
|
98
|
+
userId = 0
|
99
|
+
rolesInfo = [
|
100
|
+
{
|
101
|
+
roleId: 1,
|
102
|
+
roleKey: 'gx-admin',
|
103
|
+
roleName: 'gx12358-超级管理员',
|
104
|
+
status: '0'
|
105
|
+
}
|
106
|
+
]
|
107
|
+
roles = rolesInfo.map(item => item.roleKey)
|
108
|
+
roleIds = rolesInfo.map(item => item.roleId)
|
109
|
+
permissions = ['*:*:*']
|
110
|
+
nickName = '高翔'
|
111
|
+
break
|
112
|
+
case 'admin-accessToken':
|
113
|
+
userId = 1
|
114
|
+
rolesInfo = [
|
115
|
+
{
|
116
|
+
roleId: 1,
|
117
|
+
roleKey: 'admin',
|
118
|
+
roleName: '超级管理员',
|
119
|
+
status: '0'
|
120
|
+
}
|
121
|
+
]
|
122
|
+
roles = rolesInfo.map(item => item.roleKey)
|
123
|
+
roleIds = rolesInfo.map(item => item.roleId)
|
124
|
+
permissions = [
|
125
|
+
'proTable:button:add',
|
126
|
+
'proTable:button:1',
|
127
|
+
'proTable:button:2',
|
128
|
+
'proTable:button:3'
|
129
|
+
]
|
130
|
+
nickName = '系统管理员'
|
131
|
+
break
|
132
|
+
case 'editor-accessToken':
|
133
|
+
userId = 2
|
134
|
+
rolesInfo = [
|
135
|
+
{
|
136
|
+
roleId: 2,
|
137
|
+
roleKey: 'editor',
|
138
|
+
roleName: '编辑人员',
|
139
|
+
status: '0'
|
140
|
+
}
|
141
|
+
]
|
142
|
+
roles = rolesInfo.map(item => item.roleKey)
|
143
|
+
roleIds = rolesInfo.map(item => item.roleId)
|
144
|
+
permissions = []
|
145
|
+
userName = 'editor'
|
146
|
+
nickName = 'gx12358-editor'
|
147
|
+
break
|
148
|
+
case 'test-accessToken':
|
149
|
+
userId = 3
|
150
|
+
rolesInfo = [
|
151
|
+
{
|
152
|
+
roleId: 1,
|
153
|
+
roleKey: 'admin',
|
154
|
+
roleName: '超级管理员',
|
155
|
+
status: '0'
|
156
|
+
},
|
157
|
+
{
|
158
|
+
roleId: 2,
|
159
|
+
roleKey: 'editor',
|
160
|
+
roleName: '编辑人员',
|
161
|
+
status: '0'
|
162
|
+
}
|
163
|
+
]
|
164
|
+
roles = rolesInfo.map(item => item.roleKey)
|
165
|
+
roleIds = rolesInfo.map(item => item.roleId)
|
166
|
+
permissions = [
|
167
|
+
'proTable:button:1',
|
168
|
+
'proTable:button:2',
|
169
|
+
'proTable:button:3'
|
170
|
+
]
|
171
|
+
userName = 'test'
|
172
|
+
nickName = 'gx12358-test'
|
173
|
+
break
|
174
|
+
default:
|
175
|
+
return {
|
176
|
+
code: 500,
|
177
|
+
msg: 'token 失效,请重新登录!'
|
178
|
+
}
|
179
|
+
break
|
180
|
+
}
|
181
|
+
return {
|
182
|
+
code: 200,
|
183
|
+
msg: 'success',
|
184
|
+
roles,
|
185
|
+
permissions,
|
186
|
+
user: {
|
187
|
+
admin: userId === 0 || userId === 1,
|
188
|
+
userId,
|
189
|
+
roles: rolesInfo,
|
190
|
+
roleIds,
|
191
|
+
userName,
|
192
|
+
nickName,
|
193
|
+
'avatar|1': [
|
194
|
+
'https://ahtv-obs.obs.cn-north-4.myhuaweicloud.com/15918_100.gif',
|
195
|
+
'https://ahtv-obs.obs.cn-north-4.myhuaweicloud.com/15922_100.gif',
|
196
|
+
'https://ahtv-obs.obs.cn-north-4.myhuaweicloud.com/20211111162748.jpg'
|
197
|
+
],
|
198
|
+
loginDate: dayjs().format('YYYY-MM-DD HH:mm:ss')
|
199
|
+
}
|
200
|
+
}
|
201
|
+
}
|
202
|
+
},
|
203
|
+
{
|
204
|
+
url: '/mock-server/logout',
|
205
|
+
timeout: 200,
|
206
|
+
method: 'get',
|
207
|
+
response: (request: requestParams) => {
|
208
|
+
const { userName } = request.query
|
209
|
+
const token = getRequestToken(request)
|
210
|
+
if (!token) return resultError('Invalid token')
|
211
|
+
const checkUser = accessTokens[userName]
|
212
|
+
if (!checkUser) {
|
213
|
+
return resultError('Invalid token!')
|
214
|
+
}
|
215
|
+
return resultSuccess(undefined, { msg: 'Token has been destroyed' })
|
216
|
+
}
|
217
|
+
}
|
218
|
+
] as MockMethod[]
|
@@ -0,0 +1,151 @@
|
|
1
|
+
{
|
2
|
+
"name": "gx-pro-admin",
|
3
|
+
"version": "2.0.0",
|
4
|
+
"scripts": {
|
5
|
+
"bootstrap": "pnpm i",
|
6
|
+
"serve": "pnpm run dev",
|
7
|
+
"dev": "pnpm run start:dev",
|
8
|
+
"start:dev": "cross-env VITE_APP_ENV=dev vite",
|
9
|
+
"start:pro": "cross-env VITE_APP_ENV=dev vite",
|
10
|
+
"start:test": "cross-env VITE_APP_ENV=test vite",
|
11
|
+
"build": "cross-env vite build && esno ./build/script/postBuild.ts",
|
12
|
+
"build:pro": "cross-env vite build --mode pro && esno ./build/script/postBuild.ts",
|
13
|
+
"build:test": "cross-env vite build --mode test && esno ./build/script/postBuild.ts",
|
14
|
+
"build:no-cache": "pnpm clean:cache && pnpm run build",
|
15
|
+
"report": "cross-env REPORT=true npm run build",
|
16
|
+
"type:check": "vue-tsc --noEmit --skipLibCheck",
|
17
|
+
"preview": "pnpm run build && vite preview",
|
18
|
+
"preview:dist": "vite preview",
|
19
|
+
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
20
|
+
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
|
21
|
+
"clean:lib": "rimraf node_modules",
|
22
|
+
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{vue,ts,tsx}\" --fix",
|
23
|
+
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"",
|
24
|
+
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
|
25
|
+
"test:unit": "jest",
|
26
|
+
"test:unit-coverage": "jest --coverage",
|
27
|
+
"test:gzip": "http-server dist --cors --gzip -c-1",
|
28
|
+
"test:br": "http-server dist --cors --brotli -c-1",
|
29
|
+
"reinstall": "rimraf yarn.lock && rimraf package.lock.json && rimraf node_modules && pnpm run bootstrap",
|
30
|
+
"prepare": "husky install"
|
31
|
+
},
|
32
|
+
"dependencies": {
|
33
|
+
"@gx-design-vue/pro-form": "^0.0.17",
|
34
|
+
"@gx-design-vue/pro-hooks": "^0.0.8",
|
35
|
+
"@gx-design-vue/pro-utils": "^0.0.33",
|
36
|
+
"@gx-design-vue/pro-watermark": "^0.0.3",
|
37
|
+
"@vueuse/core": "^9.10.0",
|
38
|
+
"@vueuse/shared": "^9.10.0",
|
39
|
+
"animate.css": "^4.1.1",
|
40
|
+
"ant-design-vue": "3.2.13",
|
41
|
+
"axios": "0.27.2",
|
42
|
+
"body-parser": "^1.19.0",
|
43
|
+
"chalk": "^4.1.2",
|
44
|
+
"crypto-js": "^4.1.1",
|
45
|
+
"dayjs": "^1.11.0",
|
46
|
+
"husky": "^7.0.4",
|
47
|
+
"lodash-es": "^4.17.21",
|
48
|
+
"lodash-unified": "^1.0.3",
|
49
|
+
"md5": "^2.3.0",
|
50
|
+
"mockjs": "^1.1.0",
|
51
|
+
"nprogress": "^0.2.0",
|
52
|
+
"path-to-regexp": "^6.2.1",
|
53
|
+
"pinia": "^2.0.9",
|
54
|
+
"resize-observer-polyfill": "^1.5.1",
|
55
|
+
"terser": "^5.14.2",
|
56
|
+
"unocss": "^0.48.2",
|
57
|
+
"vue": "^3.2.45",
|
58
|
+
"vue-router": "^4.0.14",
|
59
|
+
"vue-types": "^4.1.1",
|
60
|
+
"vueuc": "^0.4.37"
|
61
|
+
},
|
62
|
+
"devDependencies": {
|
63
|
+
"@commitlint/cli": "^12.1.4",
|
64
|
+
"@commitlint/config-conventional": "^12.1.4",
|
65
|
+
"@purge-icons/generated": "^0.7.0",
|
66
|
+
"@rollup/plugin-commonjs": "^21.0.3",
|
67
|
+
"@types/fs-extra": "^9.0.13",
|
68
|
+
"@types/jest": "^26.0.24",
|
69
|
+
"@types/lodash-es": "^4.17.4",
|
70
|
+
"@types/mockjs": "^1.0.6",
|
71
|
+
"@types/node": "^17.0.42",
|
72
|
+
"@types/nprogress": "^0.2.0",
|
73
|
+
"@types/qs": "^6.9.7",
|
74
|
+
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
75
|
+
"@typescript-eslint/parser": "^5.20.0",
|
76
|
+
"@vitejs/plugin-legacy": "^3.0.1",
|
77
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
78
|
+
"@vitejs/plugin-vue-jsx": "^3.0.0",
|
79
|
+
"@vue/compiler-sfc": "3.2.37",
|
80
|
+
"@vue/test-utils": "^2.0.0-rc.10",
|
81
|
+
"autoprefixer": "^10.4.5",
|
82
|
+
"commitizen": "^4.2.4",
|
83
|
+
"conventional-changelog-cli": "^2.1.1",
|
84
|
+
"cross-env": "^7.0.3",
|
85
|
+
"dotenv": "16.0.1",
|
86
|
+
"eslint": "^8.13.0",
|
87
|
+
"eslint-config-prettier": "^8.5.0",
|
88
|
+
"eslint-plugin-prettier": "^4.0.0",
|
89
|
+
"eslint-plugin-vue": "^8.6.0",
|
90
|
+
"esno": "^0.7.3",
|
91
|
+
"fs-extra": "^10.1.0",
|
92
|
+
"jest": "^27.0.6",
|
93
|
+
"less": "^4.1.2",
|
94
|
+
"lint-staged": "12.3.7",
|
95
|
+
"npm-run-all": "^4.1.5",
|
96
|
+
"postcss": "^8.4.12",
|
97
|
+
"postcss-html": "^1.4.1",
|
98
|
+
"postcss-less": "^6.0.0",
|
99
|
+
"prettier": "^2.6.2",
|
100
|
+
"rimraf": "^3.0.2",
|
101
|
+
"rollup": "^2.70.2",
|
102
|
+
"rollup-plugin-external-globals": "^0.6.1",
|
103
|
+
"rollup-plugin-visualizer": "^5.6.0",
|
104
|
+
"stylelint": "^14.7.1",
|
105
|
+
"stylelint-config-prettier": "^9.0.3",
|
106
|
+
"stylelint-config-recommended": "^7.0.0",
|
107
|
+
"stylelint-config-recommended-vue": "^1.4.0",
|
108
|
+
"stylelint-config-standard": "^25.0.0",
|
109
|
+
"stylelint-order": "^5.0.0",
|
110
|
+
"ts-node": "^10.1.0",
|
111
|
+
"typescript": "^4.6.4",
|
112
|
+
"unplugin-auto-import": "^0.12.1",
|
113
|
+
"unplugin-vue-components": "0.22.12",
|
114
|
+
"vite": "^4.0.0",
|
115
|
+
"vite-plugin-compression": "0.5.1",
|
116
|
+
"vite-plugin-html": "3.2.0",
|
117
|
+
"vite-plugin-pwa": "0.14.0",
|
118
|
+
"vite-plugin-style-import": "^2.0.0",
|
119
|
+
"vite-plugin-vue-setup-extend": "0.4.0",
|
120
|
+
"vue-eslint-parser": "9.1.0",
|
121
|
+
"vue-tsc": "1.0.9"
|
122
|
+
},
|
123
|
+
"license": "MIT",
|
124
|
+
"engines": {
|
125
|
+
"node": "^12 || >=14"
|
126
|
+
},
|
127
|
+
"lint-staged": {
|
128
|
+
"*.{js,jsx,ts,tsx}": [
|
129
|
+
"eslint --fix",
|
130
|
+
"prettier --write"
|
131
|
+
],
|
132
|
+
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
|
133
|
+
"prettier --write--parser json"
|
134
|
+
],
|
135
|
+
"package.json": [
|
136
|
+
"prettier --write"
|
137
|
+
],
|
138
|
+
"*.vue": [
|
139
|
+
"eslint --fix",
|
140
|
+
"prettier --write",
|
141
|
+
"stylelint --fix"
|
142
|
+
],
|
143
|
+
"*.{scss,less,styl,html}": [
|
144
|
+
"stylelint --fix",
|
145
|
+
"prettier --write"
|
146
|
+
],
|
147
|
+
"*.md": [
|
148
|
+
"prettier --write"
|
149
|
+
]
|
150
|
+
}
|
151
|
+
}
|