@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,390 @@
|
|
1
|
+
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
2
|
+
|
3
|
+
/* Document
|
4
|
+
========================================================================== */
|
5
|
+
|
6
|
+
/**
|
7
|
+
* 1. Correct the line height in all browsers.
|
8
|
+
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
9
|
+
*/
|
10
|
+
|
11
|
+
html {
|
12
|
+
line-height: 1.15;
|
13
|
+
/* 1 */
|
14
|
+
-webkit-text-size-adjust: 100%;
|
15
|
+
/* 2 */
|
16
|
+
}
|
17
|
+
|
18
|
+
/* Sections
|
19
|
+
========================================================================== */
|
20
|
+
|
21
|
+
/**
|
22
|
+
* Remove the margin in all browsers.
|
23
|
+
*/
|
24
|
+
|
25
|
+
body {
|
26
|
+
margin: 0;
|
27
|
+
text-rendering: optimizeLegibility;
|
28
|
+
-webkit-font-smoothing: antialiased;
|
29
|
+
-moz-osx-font-smoothing: grayscale;
|
30
|
+
|
31
|
+
h1,
|
32
|
+
h2,
|
33
|
+
h3,
|
34
|
+
h5,
|
35
|
+
h6,
|
36
|
+
p {
|
37
|
+
box-sizing: border-box;
|
38
|
+
padding: 0;
|
39
|
+
margin: 0;
|
40
|
+
vertical-align: baseline;
|
41
|
+
border: 0;
|
42
|
+
outline: 0;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
/**
|
47
|
+
* Render the `main` element consistently in IE.
|
48
|
+
*/
|
49
|
+
|
50
|
+
main {
|
51
|
+
display: block;
|
52
|
+
}
|
53
|
+
|
54
|
+
canvas {
|
55
|
+
display: block;
|
56
|
+
}
|
57
|
+
|
58
|
+
/* Grouping content
|
59
|
+
========================================================================== */
|
60
|
+
|
61
|
+
/**
|
62
|
+
* 1. Add the correct box sizing in Firefox.
|
63
|
+
* 2. Show the overflow in Edge and IE.
|
64
|
+
*/
|
65
|
+
|
66
|
+
hr {
|
67
|
+
box-sizing: content-box;
|
68
|
+
/* 1 */
|
69
|
+
height: 0;
|
70
|
+
/* 1 */
|
71
|
+
overflow: visible;
|
72
|
+
/* 2 */
|
73
|
+
}
|
74
|
+
|
75
|
+
/**
|
76
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
77
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
78
|
+
*/
|
79
|
+
|
80
|
+
pre {
|
81
|
+
font-family: monospace;
|
82
|
+
/* 1 */
|
83
|
+
font-size: 1em;
|
84
|
+
/* 2 */
|
85
|
+
}
|
86
|
+
|
87
|
+
/* Text-level semantics
|
88
|
+
========================================================================== */
|
89
|
+
|
90
|
+
/**
|
91
|
+
* Remove the gray background on active links in IE 10.
|
92
|
+
*/
|
93
|
+
|
94
|
+
a {
|
95
|
+
background-color: transparent;
|
96
|
+
}
|
97
|
+
|
98
|
+
/**
|
99
|
+
* 1. Remove the bottom border in Chrome 57-
|
100
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
101
|
+
*/
|
102
|
+
|
103
|
+
abbr[title] {
|
104
|
+
text-decoration: underline;
|
105
|
+
/* 2 */
|
106
|
+
text-decoration: underline dotted;
|
107
|
+
/* 2 */
|
108
|
+
border-bottom: none;
|
109
|
+
/* 1 */
|
110
|
+
}
|
111
|
+
|
112
|
+
/**
|
113
|
+
* Add the correct font weight in Chrome, Edge, and Safari.
|
114
|
+
*/
|
115
|
+
|
116
|
+
b,
|
117
|
+
strong {
|
118
|
+
font-weight: bolder;
|
119
|
+
}
|
120
|
+
|
121
|
+
/**
|
122
|
+
* 1. Correct the inheritance and scaling of font size in all browsers.
|
123
|
+
* 2. Correct the odd `em` font sizing in all browsers.
|
124
|
+
*/
|
125
|
+
|
126
|
+
code,
|
127
|
+
kbd,
|
128
|
+
samp {
|
129
|
+
font-family: monospace;
|
130
|
+
/* 1 */
|
131
|
+
font-size: 1em;
|
132
|
+
/* 2 */
|
133
|
+
}
|
134
|
+
|
135
|
+
/**
|
136
|
+
* Add the correct font size in all browsers.
|
137
|
+
*/
|
138
|
+
|
139
|
+
small {
|
140
|
+
font-size: 80%;
|
141
|
+
}
|
142
|
+
|
143
|
+
/**
|
144
|
+
* Prevent `sub` and `sup` elements from affecting the line height in
|
145
|
+
* all browsers.
|
146
|
+
*/
|
147
|
+
|
148
|
+
sub,
|
149
|
+
sup {
|
150
|
+
position: relative;
|
151
|
+
font-size: 75%;
|
152
|
+
line-height: 0;
|
153
|
+
vertical-align: baseline;
|
154
|
+
}
|
155
|
+
|
156
|
+
sub {
|
157
|
+
bottom: -0.25em;
|
158
|
+
}
|
159
|
+
|
160
|
+
sup {
|
161
|
+
top: -0.5em;
|
162
|
+
}
|
163
|
+
|
164
|
+
/* Embedded content
|
165
|
+
========================================================================== */
|
166
|
+
|
167
|
+
/**
|
168
|
+
* Remove the border on images inside links in IE 10.
|
169
|
+
*/
|
170
|
+
|
171
|
+
img {
|
172
|
+
border-style: none;
|
173
|
+
}
|
174
|
+
|
175
|
+
/* Forms
|
176
|
+
========================================================================== */
|
177
|
+
|
178
|
+
/**
|
179
|
+
* 1. Change the font styles in all browsers.
|
180
|
+
* 2. Remove the margin in Firefox and Safari.
|
181
|
+
*/
|
182
|
+
|
183
|
+
button,
|
184
|
+
input,
|
185
|
+
optgroup,
|
186
|
+
select,
|
187
|
+
textarea {
|
188
|
+
margin: 0;
|
189
|
+
/* 2 */
|
190
|
+
font-family: inherit;
|
191
|
+
/* 1 */
|
192
|
+
font-size: 100%;
|
193
|
+
/* 1 */
|
194
|
+
line-height: 1.15;
|
195
|
+
/* 1 */
|
196
|
+
}
|
197
|
+
|
198
|
+
/**
|
199
|
+
* Show the overflow in IE.
|
200
|
+
* 1. Show the overflow in Edge.
|
201
|
+
*/
|
202
|
+
|
203
|
+
button,
|
204
|
+
input {
|
205
|
+
/* 1 */
|
206
|
+
overflow: visible;
|
207
|
+
}
|
208
|
+
|
209
|
+
/**
|
210
|
+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
211
|
+
* 1. Remove the inheritance of text transform in Firefox.
|
212
|
+
*/
|
213
|
+
|
214
|
+
button,
|
215
|
+
select {
|
216
|
+
/* 1 */
|
217
|
+
text-transform: none;
|
218
|
+
}
|
219
|
+
|
220
|
+
/**
|
221
|
+
* Correct the inability to style clickable types in iOS and Safari.
|
222
|
+
*/
|
223
|
+
|
224
|
+
button,
|
225
|
+
[type='button'],
|
226
|
+
[type='reset'],
|
227
|
+
[type='submit'] {
|
228
|
+
-webkit-appearance: button;
|
229
|
+
}
|
230
|
+
|
231
|
+
/**
|
232
|
+
* Remove the inner border and padding in Firefox.
|
233
|
+
*/
|
234
|
+
|
235
|
+
button::-moz-focus-inner,
|
236
|
+
[type='button']::-moz-focus-inner,
|
237
|
+
[type='reset']::-moz-focus-inner,
|
238
|
+
[type='submit']::-moz-focus-inner {
|
239
|
+
padding: 0;
|
240
|
+
border-style: none;
|
241
|
+
}
|
242
|
+
|
243
|
+
/**
|
244
|
+
* Restore the focus styles unset by the previous rule.
|
245
|
+
*/
|
246
|
+
|
247
|
+
button:-moz-focusring,
|
248
|
+
[type='button']:-moz-focusring,
|
249
|
+
[type='reset']:-moz-focusring,
|
250
|
+
[type='submit']:-moz-focusring {
|
251
|
+
outline: 1px dotted ButtonText;
|
252
|
+
}
|
253
|
+
|
254
|
+
/**
|
255
|
+
* Correct the padding in Firefox.
|
256
|
+
*/
|
257
|
+
|
258
|
+
fieldset {
|
259
|
+
padding: 0.35em 0.75em 0.625em;
|
260
|
+
}
|
261
|
+
|
262
|
+
/**
|
263
|
+
* 1. Correct the text wrapping in Edge and IE.
|
264
|
+
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
265
|
+
* 3. Remove the padding so developers are not caught out when they zero out
|
266
|
+
* `fieldset` elements in all browsers.
|
267
|
+
*/
|
268
|
+
|
269
|
+
legend {
|
270
|
+
box-sizing: border-box;
|
271
|
+
/* 1 */
|
272
|
+
display: table;
|
273
|
+
/* 1 */
|
274
|
+
max-width: 100%;
|
275
|
+
/* 1 */
|
276
|
+
padding: 0;
|
277
|
+
/* 3 */
|
278
|
+
color: inherit;
|
279
|
+
/* 2 */
|
280
|
+
white-space: normal;
|
281
|
+
/* 1 */
|
282
|
+
}
|
283
|
+
|
284
|
+
/**
|
285
|
+
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
286
|
+
*/
|
287
|
+
|
288
|
+
progress {
|
289
|
+
vertical-align: baseline;
|
290
|
+
}
|
291
|
+
|
292
|
+
/**
|
293
|
+
* Remove the default vertical scrollbar in IE 10+.
|
294
|
+
*/
|
295
|
+
|
296
|
+
textarea {
|
297
|
+
overflow: auto;
|
298
|
+
}
|
299
|
+
|
300
|
+
/**
|
301
|
+
* 1. Add the correct box sizing in IE 10.
|
302
|
+
* 2. Remove the padding in IE 10.
|
303
|
+
*/
|
304
|
+
|
305
|
+
[type='checkbox'],
|
306
|
+
[type='radio'] {
|
307
|
+
box-sizing: border-box;
|
308
|
+
/* 1 */
|
309
|
+
padding: 0;
|
310
|
+
/* 2 */
|
311
|
+
}
|
312
|
+
|
313
|
+
/**
|
314
|
+
* Correct the cursor style of increment and decrement buttons in Chrome.
|
315
|
+
*/
|
316
|
+
|
317
|
+
[type='number']::-webkit-inner-spin-button,
|
318
|
+
[type='number']::-webkit-outer-spin-button {
|
319
|
+
height: auto;
|
320
|
+
}
|
321
|
+
|
322
|
+
/**
|
323
|
+
* 1. Correct the odd appearance in Chrome and Safari.
|
324
|
+
* 2. Correct the outline style in Safari.
|
325
|
+
*/
|
326
|
+
|
327
|
+
[type='search'] {
|
328
|
+
-webkit-appearance: textfield;
|
329
|
+
/* 1 */
|
330
|
+
outline-offset: -2px;
|
331
|
+
/* 2 */
|
332
|
+
}
|
333
|
+
|
334
|
+
/**
|
335
|
+
* Remove the inner padding in Chrome and Safari on macOS.
|
336
|
+
*/
|
337
|
+
|
338
|
+
[type='search']::-webkit-search-decoration {
|
339
|
+
-webkit-appearance: none;
|
340
|
+
}
|
341
|
+
|
342
|
+
/**
|
343
|
+
* 1. Correct the inability to style clickable types in iOS and Safari.
|
344
|
+
* 2. Change font properties to `inherit` in Safari.
|
345
|
+
*/
|
346
|
+
|
347
|
+
::-webkit-file-upload-button {
|
348
|
+
-webkit-appearance: button;
|
349
|
+
/* 1 */
|
350
|
+
font: inherit;
|
351
|
+
/* 2 */
|
352
|
+
}
|
353
|
+
|
354
|
+
/* Interactive
|
355
|
+
========================================================================== */
|
356
|
+
|
357
|
+
/*
|
358
|
+
* Add the correct display in Edge, IE 10+, and Firefox.
|
359
|
+
*/
|
360
|
+
|
361
|
+
details {
|
362
|
+
display: block;
|
363
|
+
}
|
364
|
+
|
365
|
+
/*
|
366
|
+
* Add the correct display in all browsers.
|
367
|
+
*/
|
368
|
+
|
369
|
+
summary {
|
370
|
+
display: list-item;
|
371
|
+
}
|
372
|
+
|
373
|
+
/* Misc
|
374
|
+
========================================================================== */
|
375
|
+
|
376
|
+
/**
|
377
|
+
* Add the correct display in IE 10+.
|
378
|
+
*/
|
379
|
+
|
380
|
+
template {
|
381
|
+
display: none;
|
382
|
+
}
|
383
|
+
|
384
|
+
/**
|
385
|
+
* Add the correct display in IE 10.
|
386
|
+
*/
|
387
|
+
|
388
|
+
[hidden] {
|
389
|
+
display: none;
|
390
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
@import './design/index.less';
|
2
|
+
@import './assets/menu_font/index.less';
|
3
|
+
|
4
|
+
#gx-pro-admin {
|
5
|
+
height: 100%;
|
6
|
+
}
|
7
|
+
|
8
|
+
.customicon {
|
9
|
+
font-style: normal;
|
10
|
+
color: inherit;
|
11
|
+
text-align: center;
|
12
|
+
text-transform: none;
|
13
|
+
text-rendering: optimizeLegibility;
|
14
|
+
-webkit-font-smoothing: antialiased;
|
15
|
+
}
|
@@ -0,0 +1,70 @@
|
|
1
|
+
import type { Ref, WatchSource } from 'vue'
|
2
|
+
import { ref, watch, computed, isRef } from 'vue'
|
3
|
+
import { useDebounceFn } from '@vueuse/core'
|
4
|
+
import { useState } from '@gx-design-vue/pro-hooks'
|
5
|
+
import { cloneDeep } from 'lodash-unified'
|
6
|
+
|
7
|
+
function useRequest<R, P = any>(
|
8
|
+
service: (opt: any) => Promise<ResponseResult<R>>,
|
9
|
+
options?: {
|
10
|
+
params?: any;
|
11
|
+
manual?: boolean;
|
12
|
+
ready?: Ref<boolean>;
|
13
|
+
onBefore?: () => void;
|
14
|
+
debounceInterval?: number;
|
15
|
+
refreshDeps?: WatchSource[];
|
16
|
+
refreshDepsAction?: () => Promise<any>;
|
17
|
+
}
|
18
|
+
) {
|
19
|
+
const ready = computed(() => {
|
20
|
+
return !isRef(options?.ready?.value) || options?.ready?.value === undefined ? true : options?.ready?.value
|
21
|
+
})
|
22
|
+
|
23
|
+
const [ loading, setLoading ] = useState(false)
|
24
|
+
const data = ref<R>()
|
25
|
+
const params = ref<P>()
|
26
|
+
|
27
|
+
const query = async (opt: Recordable = {}) => {
|
28
|
+
setLoading(true)
|
29
|
+
params.value = { ...opt, ...(options?.params || {}) } as P
|
30
|
+
const response: ResponseResult<R> = await service(params.value)
|
31
|
+
if (response) {
|
32
|
+
data.value = cloneDeep(response.data)
|
33
|
+
}
|
34
|
+
setLoading(false)
|
35
|
+
}
|
36
|
+
|
37
|
+
const run = useDebounceFn(query, options.debounceInterval)
|
38
|
+
|
39
|
+
const refresh = () => run()
|
40
|
+
|
41
|
+
if (!options.manual) {
|
42
|
+
params.value = { ...(options?.params || {}) } as P
|
43
|
+
run()
|
44
|
+
}
|
45
|
+
|
46
|
+
if (options.refreshDeps?.length) {
|
47
|
+
watch(options.refreshDeps, () => {
|
48
|
+
if (options.refreshDepsAction) options?.refreshDepsAction()
|
49
|
+
else run()
|
50
|
+
}, {
|
51
|
+
deep: true
|
52
|
+
})
|
53
|
+
}
|
54
|
+
|
55
|
+
watch(() => ready.value, (val) => {
|
56
|
+
if (val) run()
|
57
|
+
}, {
|
58
|
+
flush: 'sync'
|
59
|
+
})
|
60
|
+
|
61
|
+
return {
|
62
|
+
run,
|
63
|
+
refresh,
|
64
|
+
data,
|
65
|
+
params,
|
66
|
+
loading
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
export default useRequest
|
File without changes
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { useClipboard as useClipboardVue } from '@vueuse/core'
|
2
|
+
import { message } from 'ant-design-vue'
|
3
|
+
|
4
|
+
export default function useClipboard(msg?: string) {
|
5
|
+
const { text, copy, copied } = useClipboardVue()
|
6
|
+
|
7
|
+
watchEffect(() => {
|
8
|
+
if (copied.value && msg && text.value) {
|
9
|
+
message.success(msg)
|
10
|
+
}
|
11
|
+
})
|
12
|
+
|
13
|
+
return { copy, copied, text }
|
14
|
+
}
|
@@ -0,0 +1,62 @@
|
|
1
|
+
import { computed, reactive } from 'vue'
|
2
|
+
import { useStore } from '@gx-vuex'
|
3
|
+
import { getDicts } from '@/services/system/dictData'
|
4
|
+
import { onMountedOrActivated } from '@gx-design-vue/pro-hooks'
|
5
|
+
import { isArray } from '@gx-design-vue/pro-utils'
|
6
|
+
|
7
|
+
export function useDict(val: string | string[]) {
|
8
|
+
const dictData: any = reactive({})
|
9
|
+
const store = useStore()
|
10
|
+
|
11
|
+
const dict = store.dict.data
|
12
|
+
|
13
|
+
const getDictData = computed(() => dictData)
|
14
|
+
|
15
|
+
async function getDict() {
|
16
|
+
let response
|
17
|
+
if (typeof val === 'string') {
|
18
|
+
dictData[val] = {}
|
19
|
+
if (dict[val] && dict[val].length) {
|
20
|
+
dictData[val].data = dict[val]
|
21
|
+
} else {
|
22
|
+
dictData[val].loading = true
|
23
|
+
response = await getDicts(val)
|
24
|
+
if (response) {
|
25
|
+
const data = (response.data || [])
|
26
|
+
store.dict.setDictData(val, data)
|
27
|
+
dictData[val].data = data
|
28
|
+
}
|
29
|
+
dictData[val].loading = false
|
30
|
+
}
|
31
|
+
return
|
32
|
+
}
|
33
|
+
|
34
|
+
if (isArray(val)) {
|
35
|
+
for (let i = 0; i < val.length; i += 1) {
|
36
|
+
const dictType = val[i]
|
37
|
+
dictData[dictType] = {}
|
38
|
+
if (dict[dictType] && dict[dictType].length) {
|
39
|
+
dictData[dictType].data = dict[dictType]
|
40
|
+
} else {
|
41
|
+
dictData[dictType].loading = true
|
42
|
+
response = await getDicts(dictType)
|
43
|
+
if (response) {
|
44
|
+
const data = (response.data || [])
|
45
|
+
store.dict.setDictData(dictType, data)
|
46
|
+
dictData[dictType].data = data
|
47
|
+
}
|
48
|
+
dictData[dictType].loading = false
|
49
|
+
}
|
50
|
+
}
|
51
|
+
return
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
onMountedOrActivated(() => {
|
56
|
+
getDict()
|
57
|
+
})
|
58
|
+
|
59
|
+
return {
|
60
|
+
getDictData
|
61
|
+
}
|
62
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import type { Ref } from 'vue'
|
2
|
+
import { ref } from 'vue'
|
3
|
+
import { useStore } from '@gx-vuex'
|
4
|
+
import { isString, isArray, isObject } from '@gx-design-vue/pro-utils'
|
5
|
+
|
6
|
+
export function usePermissions(): {
|
7
|
+
permission: Ref<boolean | object>;
|
8
|
+
hasPermission: (value: object | string | string[]) => void
|
9
|
+
} {
|
10
|
+
const store = useStore()
|
11
|
+
const all_permission = ref('*:*:*')
|
12
|
+
const permissions = store.permission.ability
|
13
|
+
const permission = ref<object | boolean>({})
|
14
|
+
|
15
|
+
function hasPermission(value: object | string | string[]) {
|
16
|
+
if (value && isObject(value) && Object.keys(value).length > 0) {
|
17
|
+
Object.keys(value).map(item => {
|
18
|
+
let isExist = true
|
19
|
+
const permissionFlag = value[item]
|
20
|
+
const hasPermissions = permissions.some(el => {
|
21
|
+
return all_permission.value === el || permissionFlag.includes(el)
|
22
|
+
})
|
23
|
+
if (!hasPermissions) {
|
24
|
+
isExist = false
|
25
|
+
}
|
26
|
+
permission.value[item] = isExist
|
27
|
+
return item
|
28
|
+
})
|
29
|
+
} else if (isString(value) || isArray(value)) {
|
30
|
+
permission.value = permissions.some(el => {
|
31
|
+
return all_permission.value === el || (value as string[]).includes(el)
|
32
|
+
})
|
33
|
+
}
|
34
|
+
}
|
35
|
+
return {
|
36
|
+
permission,
|
37
|
+
hasPermission
|
38
|
+
}
|
39
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
export type Fn = () => void
|
2
|
+
|
3
|
+
|
4
|
+
export type FunctionArgs<Args extends any[] = any[], Return = void> = (...args: Args) => Return
|
5
|
+
|
6
|
+
|
7
|
+
export interface FunctionWrapperOptions<Args extends any[] = any[], This = any> {
|
8
|
+
fn: FunctionArgs<Args, This>
|
9
|
+
args: Args
|
10
|
+
thisArg: This
|
11
|
+
}
|
12
|
+
|
13
|
+
export interface RenderableComponent {
|
14
|
+
as?: Object | string
|
15
|
+
}
|
16
|
+
|
17
|
+
|