@gx-design-vue/create-gx-cli 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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,18 @@
|
|
1
|
+
module.exports = {
|
2
|
+
printWidth: 100,
|
3
|
+
useTabs: false,
|
4
|
+
semi: false,
|
5
|
+
singleQuote: true,
|
6
|
+
quoteProps: 'as-needed',
|
7
|
+
bracketSpacing: true,
|
8
|
+
trailingComma: 'none',
|
9
|
+
jsxBracketSameLine: false,
|
10
|
+
jsxSingleQuote: false,
|
11
|
+
arrowParens: 'always',
|
12
|
+
insertPragma: false,
|
13
|
+
requirePragma: false,
|
14
|
+
proseWrap: 'never',
|
15
|
+
htmlWhitespaceSensitivity: 'strict',
|
16
|
+
endOfLine: 'auto',
|
17
|
+
rangeStart: 0,
|
18
|
+
};
|
@@ -0,0 +1,171 @@
|
|
1
|
+
html,
|
2
|
+
body,
|
3
|
+
#app {
|
4
|
+
height: 100%;
|
5
|
+
margin: 0;
|
6
|
+
padding: 0;
|
7
|
+
}
|
8
|
+
#app {
|
9
|
+
background-repeat: no-repeat;
|
10
|
+
background-size: 100% auto;
|
11
|
+
}
|
12
|
+
.noscript-container {
|
13
|
+
display: flex;
|
14
|
+
align-content: center;
|
15
|
+
justify-content: center;
|
16
|
+
margin-top: 90px;
|
17
|
+
font-size: 20px;
|
18
|
+
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode',
|
19
|
+
Geneva, Verdana, sans-serif;
|
20
|
+
}
|
21
|
+
.noscript-enableJS {
|
22
|
+
padding-right: 3px;
|
23
|
+
padding-left: 3px;
|
24
|
+
}
|
25
|
+
.gx-app-loading {
|
26
|
+
display: flex;
|
27
|
+
align-items: center;
|
28
|
+
justify-content: center;
|
29
|
+
flex-direction: column;
|
30
|
+
height: 100%;
|
31
|
+
min-height: 420px;
|
32
|
+
}
|
33
|
+
.page-loading-warp {
|
34
|
+
display: flex;
|
35
|
+
align-items: center;
|
36
|
+
justify-content: center;
|
37
|
+
padding: 98px;
|
38
|
+
}
|
39
|
+
.ant-spin {
|
40
|
+
position: absolute;
|
41
|
+
display: none;
|
42
|
+
-webkit-box-sizing: border-box;
|
43
|
+
box-sizing: border-box;
|
44
|
+
margin: 0;
|
45
|
+
padding: 0;
|
46
|
+
color: rgba(0, 0, 0, 0.65);
|
47
|
+
color: #1890ff;
|
48
|
+
font-size: 14px;
|
49
|
+
font-variant: tabular-nums;
|
50
|
+
line-height: 1.5;
|
51
|
+
text-align: center;
|
52
|
+
list-style: none;
|
53
|
+
opacity: 0;
|
54
|
+
-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
55
|
+
transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
56
|
+
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
57
|
+
transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
|
58
|
+
-webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
59
|
+
-webkit-font-feature-settings: 'tnum';
|
60
|
+
font-feature-settings: 'tnum';
|
61
|
+
}
|
62
|
+
|
63
|
+
.ant-spin-spinning {
|
64
|
+
position: static;
|
65
|
+
display: inline-block;
|
66
|
+
opacity: 1;
|
67
|
+
}
|
68
|
+
|
69
|
+
.ant-spin-dot {
|
70
|
+
position: relative;
|
71
|
+
display: inline-block;
|
72
|
+
width: 20px;
|
73
|
+
height: 20px;
|
74
|
+
font-size: 20px;
|
75
|
+
}
|
76
|
+
|
77
|
+
.ant-spin-dot-item {
|
78
|
+
position: absolute;
|
79
|
+
display: block;
|
80
|
+
width: 9px;
|
81
|
+
height: 9px;
|
82
|
+
background-color: #1890ff;
|
83
|
+
border-radius: 100%;
|
84
|
+
-webkit-transform: scale(0.75);
|
85
|
+
-ms-transform: scale(0.75);
|
86
|
+
transform: scale(0.75);
|
87
|
+
-webkit-transform-origin: 50% 50%;
|
88
|
+
-ms-transform-origin: 50% 50%;
|
89
|
+
transform-origin: 50% 50%;
|
90
|
+
opacity: 0.3;
|
91
|
+
-webkit-animation: antspinmove 1s infinite linear alternate;
|
92
|
+
animation: antSpinMove 1s infinite linear alternate;
|
93
|
+
}
|
94
|
+
|
95
|
+
.ant-spin-dot-item:nth-child(1) {
|
96
|
+
top: 0;
|
97
|
+
left: 0;
|
98
|
+
}
|
99
|
+
|
100
|
+
.ant-spin-dot-item:nth-child(2) {
|
101
|
+
top: 0;
|
102
|
+
right: 0;
|
103
|
+
-webkit-animation-delay: 0.4s;
|
104
|
+
animation-delay: 0.4s;
|
105
|
+
}
|
106
|
+
|
107
|
+
.ant-spin-dot-item:nth-child(3) {
|
108
|
+
right: 0;
|
109
|
+
bottom: 0;
|
110
|
+
-webkit-animation-delay: 0.8s;
|
111
|
+
animation-delay: 0.8s;
|
112
|
+
}
|
113
|
+
|
114
|
+
.ant-spin-dot-item:nth-child(4) {
|
115
|
+
bottom: 0;
|
116
|
+
left: 0;
|
117
|
+
-webkit-animation-delay: 1.2s;
|
118
|
+
animation-delay: 1.2s;
|
119
|
+
}
|
120
|
+
|
121
|
+
.ant-spin-dot-spin {
|
122
|
+
-webkit-transform: rotate(45deg);
|
123
|
+
-ms-transform: rotate(45deg);
|
124
|
+
transform: rotate(45deg);
|
125
|
+
-webkit-animation: antrotate 1.2s infinite linear;
|
126
|
+
animation: antRotate 1.2s infinite linear;
|
127
|
+
}
|
128
|
+
|
129
|
+
.ant-spin-lg .ant-spin-dot {
|
130
|
+
width: 32px;
|
131
|
+
height: 32px;
|
132
|
+
font-size: 32px;
|
133
|
+
}
|
134
|
+
|
135
|
+
.ant-spin-lg .ant-spin-dot i {
|
136
|
+
width: 14px;
|
137
|
+
height: 14px;
|
138
|
+
}
|
139
|
+
|
140
|
+
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
141
|
+
.ant-spin-blur {
|
142
|
+
background: #fff;
|
143
|
+
opacity: 0.5;
|
144
|
+
}
|
145
|
+
}
|
146
|
+
|
147
|
+
@-webkit-keyframes antSpinMove {
|
148
|
+
to {
|
149
|
+
opacity: 1;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
@keyframes antSpinMove {
|
154
|
+
to {
|
155
|
+
opacity: 1;
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
@-webkit-keyframes antRotate {
|
160
|
+
to {
|
161
|
+
-webkit-transform: rotate(405deg);
|
162
|
+
transform: rotate(405deg);
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
@keyframes antRotate {
|
167
|
+
to {
|
168
|
+
-webkit-transform: rotate(405deg);
|
169
|
+
transform: rotate(405deg);
|
170
|
+
}
|
171
|
+
}
|
Binary file
|
Binary file
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<svg width="42" height="42" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g>
|
3
|
+
<path fill="#070707" d="m6.717392,13.773912l5.6,0c2.8,0 4.7,1.9 4.7,4.7c0,2.8 -2,4.7 -4.9,4.7l-2.5,0l0,4.3l-2.9,0l0,-13.7zm2.9,2.2l0,4.9l1.9,0c1.6,0 2.6,-0.9 2.6,-2.4c0,-1.6 -0.9,-2.4 -2.6,-2.4l-1.9,0l0,-0.1zm8.9,11.5l2.7,0l0,-5.7c0,-1.4 0.8,-2.3 2.2,-2.3c0.4,0 0.8,0.1 1,0.2l0,-2.4c-0.2,-0.1 -0.5,-0.1 -0.8,-0.1c-1.2,0 -2.1,0.7 -2.4,2l-0.1,0l0,-1.9l-2.7,0l0,10.2l0.1,0zm11.7,0.1c-3.1,0 -5,-2 -5,-5.3c0,-3.3 2,-5.3 5,-5.3s5,2 5,5.3c0,3.4 -1.9,5.3 -5,5.3zm0,-2.1c1.4,0 2.2,-1.1 2.2,-3.2c0,-2 -0.8,-3.2 -2.2,-3.2c-1.4,0 -2.2,1.2 -2.2,3.2c0,2.1 0.8,3.2 2.2,3.2z" class="st0" id="Ant-Design-Pro"/>
|
4
|
+
</g>
|
5
|
+
</svg>
|
Binary file
|
Binary file
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<template>
|
2
|
+
<div id="gx-pro-admin">
|
3
|
+
<g-bars>
|
4
|
+
<config-provider :locale="locale">
|
5
|
+
<router-view />
|
6
|
+
</config-provider>
|
7
|
+
</g-bars>
|
8
|
+
<g-page-loading :loading="loading && routhPath === '/'" />
|
9
|
+
</div>
|
10
|
+
</template>
|
11
|
+
|
12
|
+
<script setup lang="ts">
|
13
|
+
import { useStore } from '@gx-vuex'
|
14
|
+
import { ConfigProvider } from 'ant-design-vue'
|
15
|
+
import config from '/config/config'
|
16
|
+
import zhCN from 'ant-design-vue/es/locale/zh_CN'
|
17
|
+
import { typeViteEnv } from '@/utils/env'
|
18
|
+
|
19
|
+
const { primaryColor } = config.theme
|
20
|
+
|
21
|
+
const store = useStore()
|
22
|
+
const route = useRoute()
|
23
|
+
|
24
|
+
const locale = ref(zhCN)
|
25
|
+
const routhPath = ref(route.fullPath)
|
26
|
+
|
27
|
+
const loading = computed(() => store.routes.routerLoading)
|
28
|
+
|
29
|
+
if (typeViteEnv('VITE_USE_THEME')) {
|
30
|
+
ConfigProvider.config({
|
31
|
+
theme: {
|
32
|
+
primaryColor
|
33
|
+
}
|
34
|
+
})
|
35
|
+
}
|
36
|
+
|
37
|
+
watch(
|
38
|
+
() => route.fullPath,
|
39
|
+
(value) => {
|
40
|
+
routhPath.value = value
|
41
|
+
},
|
42
|
+
{
|
43
|
+
deep: true,
|
44
|
+
immediate: true
|
45
|
+
}
|
46
|
+
)
|
47
|
+
</script>
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,69 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<svg width="1361px" height="609px" viewBox="0 0 1361 609" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
+
<!-- Generator: Sketch 46.2 (44496) - http://www.bohemiancoding.com/sketch -->
|
4
|
+
<title>Group 21</title>
|
5
|
+
<desc>Created with Sketch.</desc>
|
6
|
+
<defs></defs>
|
7
|
+
<g id="Ant-Design-Pro-3.0" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
8
|
+
<g id="账户密码登录-校验" transform="translate(-79.000000, -82.000000)">
|
9
|
+
<g id="Group-21" transform="translate(77.000000, 73.000000)">
|
10
|
+
<g id="Group-18" opacity="0.8" transform="translate(74.901416, 569.699158) rotate(-7.000000) translate(-74.901416, -569.699158) translate(4.901416, 525.199158)">
|
11
|
+
<ellipse id="Oval-11" fill="#CFDAE6" opacity="0.25" cx="63.5748792" cy="32.468367" rx="21.7830479" ry="21.766008"></ellipse>
|
12
|
+
<ellipse id="Oval-3" fill="#CFDAE6" opacity="0.599999964" cx="5.98746479" cy="13.8668601" rx="5.2173913" ry="5.21330997"></ellipse>
|
13
|
+
<path d="M38.1354514,88.3520215 C43.8984227,88.3520215 48.570234,83.6838647 48.570234,77.9254015 C48.570234,72.1669383 43.8984227,67.4987816 38.1354514,67.4987816 C32.3724801,67.4987816 27.7006688,72.1669383 27.7006688,77.9254015 C27.7006688,83.6838647 32.3724801,88.3520215 38.1354514,88.3520215 Z" id="Oval-3-Copy" fill="#CFDAE6" opacity="0.45"></path>
|
14
|
+
<path d="M64.2775582,33.1704963 L119.185836,16.5654915" id="Path-12" stroke="#CFDAE6" stroke-width="1.73913043" stroke-linecap="round" stroke-linejoin="round"></path>
|
15
|
+
<path d="M42.1431708,26.5002681 L7.71190162,14.5640702" id="Path-16" stroke="#E0B4B7" stroke-width="0.702678964" opacity="0.7" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1.405357899873153,2.108036953469981"></path>
|
16
|
+
<path d="M63.9262187,33.521561 L43.6721326,69.3250951" id="Path-15" stroke="#BACAD9" stroke-width="0.702678964" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="1.405357899873153,2.108036953469981"></path>
|
17
|
+
<g id="Group-17" transform="translate(126.850922, 13.543654) rotate(30.000000) translate(-126.850922, -13.543654) translate(117.285705, 4.381889)" fill="#CFDAE6">
|
18
|
+
<ellipse id="Oval-4" opacity="0.45" cx="9.13482653" cy="9.12768076" rx="9.13482653" ry="9.12768076"></ellipse>
|
19
|
+
<path d="M18.2696531,18.2553615 C18.2696531,13.2142826 14.1798519,9.12768076 9.13482653,9.12768076 C4.08980114,9.12768076 0,13.2142826 0,18.2553615 L18.2696531,18.2553615 Z" id="Oval-4" transform="translate(9.134827, 13.691521) scale(-1, -1) translate(-9.134827, -13.691521) "></path>
|
20
|
+
</g>
|
21
|
+
</g>
|
22
|
+
<g id="Group-14" transform="translate(216.294700, 123.725600) rotate(-5.000000) translate(-216.294700, -123.725600) translate(106.294700, 35.225600)">
|
23
|
+
<ellipse id="Oval-2" fill="#CFDAE6" opacity="0.25" cx="29.1176471" cy="29.1402439" rx="29.1176471" ry="29.1402439"></ellipse>
|
24
|
+
<ellipse id="Oval-2" fill="#CFDAE6" opacity="0.3" cx="29.1176471" cy="29.1402439" rx="21.5686275" ry="21.5853659"></ellipse>
|
25
|
+
<ellipse id="Oval-2-Copy" stroke="#CFDAE6" opacity="0.4" cx="179.019608" cy="138.146341" rx="23.7254902" ry="23.7439024"></ellipse>
|
26
|
+
<ellipse id="Oval-2" fill="#BACAD9" opacity="0.5" cx="29.1176471" cy="29.1402439" rx="10.7843137" ry="10.7926829"></ellipse>
|
27
|
+
<path d="M29.1176471,39.9329268 L29.1176471,18.347561 C23.1616351,18.347561 18.3333333,23.1796097 18.3333333,29.1402439 C18.3333333,35.1008781 23.1616351,39.9329268 29.1176471,39.9329268 Z" id="Oval-2" fill="#BACAD9"></path>
|
28
|
+
<g id="Group-9" opacity="0.45" transform="translate(172.000000, 131.000000)" fill="#E6A1A6">
|
29
|
+
<ellipse id="Oval-2-Copy-2" cx="7.01960784" cy="7.14634146" rx="6.47058824" ry="6.47560976"></ellipse>
|
30
|
+
<path d="M0.549019608,13.6219512 C4.12262681,13.6219512 7.01960784,10.722722 7.01960784,7.14634146 C7.01960784,3.56996095 4.12262681,0.670731707 0.549019608,0.670731707 L0.549019608,13.6219512 Z" id="Oval-2-Copy-2" transform="translate(3.784314, 7.146341) scale(-1, 1) translate(-3.784314, -7.146341) "></path>
|
31
|
+
</g>
|
32
|
+
<ellipse id="Oval-10" fill="#CFDAE6" cx="218.382353" cy="138.685976" rx="1.61764706" ry="1.61890244"></ellipse>
|
33
|
+
<ellipse id="Oval-10-Copy-2" fill="#E0B4B7" opacity="0.35" cx="179.558824" cy="175.381098" rx="1.61764706" ry="1.61890244"></ellipse>
|
34
|
+
<ellipse id="Oval-10-Copy" fill="#E0B4B7" opacity="0.35" cx="180.098039" cy="102.530488" rx="2.15686275" ry="2.15853659"></ellipse>
|
35
|
+
<path d="M28.9985381,29.9671598 L171.151018,132.876024" id="Path-11" stroke="#CFDAE6" opacity="0.8"></path>
|
36
|
+
</g>
|
37
|
+
<g id="Group-10" opacity="0.799999952" transform="translate(1054.100635, 36.659317) rotate(-11.000000) translate(-1054.100635, -36.659317) translate(1026.600635, 4.659317)">
|
38
|
+
<ellipse id="Oval-7" stroke="#CFDAE6" stroke-width="0.941176471" cx="43.8135593" cy="32" rx="11.1864407" ry="11.2941176"></ellipse>
|
39
|
+
<g id="Group-12" transform="translate(34.596774, 23.111111)" fill="#BACAD9">
|
40
|
+
<ellipse id="Oval-7" opacity="0.45" cx="9.18534718" cy="8.88888889" rx="8.47457627" ry="8.55614973"></ellipse>
|
41
|
+
<path d="M9.18534718,17.4450386 C13.8657264,17.4450386 17.6599235,13.6143199 17.6599235,8.88888889 C17.6599235,4.16345787 13.8657264,0.332739156 9.18534718,0.332739156 L9.18534718,17.4450386 Z" id="Oval-7"></path>
|
42
|
+
</g>
|
43
|
+
<path d="M34.6597385,24.809694 L5.71666084,4.76878945" id="Path-2" stroke="#CFDAE6" stroke-width="0.941176471"></path>
|
44
|
+
<ellipse id="Oval" stroke="#CFDAE6" stroke-width="0.941176471" cx="3.26271186" cy="3.29411765" rx="3.26271186" ry="3.29411765"></ellipse>
|
45
|
+
<ellipse id="Oval-Copy" fill="#F7E1AD" cx="2.79661017" cy="61.1764706" rx="2.79661017" ry="2.82352941"></ellipse>
|
46
|
+
<path d="M34.6312443,39.2922712 L5.06366663,59.785082" id="Path-10" stroke="#CFDAE6" stroke-width="0.941176471"></path>
|
47
|
+
</g>
|
48
|
+
<g id="Group-19" opacity="0.33" transform="translate(1282.537219, 446.502867) rotate(-10.000000) translate(-1282.537219, -446.502867) translate(1142.537219, 327.502867)">
|
49
|
+
<g id="Group-17" transform="translate(141.333539, 104.502742) rotate(275.000000) translate(-141.333539, -104.502742) translate(129.333539, 92.502742)" fill="#BACAD9">
|
50
|
+
<circle id="Oval-4" opacity="0.45" cx="11.6666667" cy="11.6666667" r="11.6666667"></circle>
|
51
|
+
<path d="M23.3333333,23.3333333 C23.3333333,16.8900113 18.1099887,11.6666667 11.6666667,11.6666667 C5.22334459,11.6666667 0,16.8900113 0,23.3333333 L23.3333333,23.3333333 Z" id="Oval-4" transform="translate(11.666667, 17.500000) scale(-1, -1) translate(-11.666667, -17.500000) "></path>
|
52
|
+
</g>
|
53
|
+
<circle id="Oval-5-Copy-6" fill="#CFDAE6" cx="201.833333" cy="87.5" r="5.83333333"></circle>
|
54
|
+
<path d="M143.5,88.8126685 L155.070501,17.6038544" id="Path-17" stroke="#BACAD9" stroke-width="1.16666667"></path>
|
55
|
+
<path d="M17.5,37.3333333 L127.466252,97.6449735" id="Path-18" stroke="#BACAD9" stroke-width="1.16666667"></path>
|
56
|
+
<polyline id="Path-19" stroke="#CFDAE6" stroke-width="1.16666667" points="143.902597 120.302281 174.935455 231.571342 38.5 147.510847 126.366941 110.833333"></polyline>
|
57
|
+
<path d="M159.833333,99.7453842 L195.416667,89.25" id="Path-20" stroke="#E0B4B7" stroke-width="1.16666667" opacity="0.6"></path>
|
58
|
+
<path d="M205.333333,82.1372105 L238.719406,36.1666667" id="Path-24" stroke="#BACAD9" stroke-width="1.16666667"></path>
|
59
|
+
<path d="M266.723424,132.231988 L207.083333,90.4166667" id="Path-25" stroke="#CFDAE6" stroke-width="1.16666667"></path>
|
60
|
+
<circle id="Oval-5" fill="#C1D1E0" cx="156.916667" cy="8.75" r="8.75"></circle>
|
61
|
+
<circle id="Oval-5-Copy-3" fill="#C1D1E0" cx="39.0833333" cy="148.75" r="5.25"></circle>
|
62
|
+
<circle id="Oval-5-Copy-2" fill-opacity="0.6" fill="#D1DEED" cx="8.75" cy="33.25" r="8.75"></circle>
|
63
|
+
<circle id="Oval-5-Copy-4" fill-opacity="0.6" fill="#D1DEED" cx="243.833333" cy="30.3333333" r="5.83333333"></circle>
|
64
|
+
<circle id="Oval-5-Copy-5" fill="#E0B4B7" cx="175.583333" cy="232.75" r="5.25"></circle>
|
65
|
+
</g>
|
66
|
+
</g>
|
67
|
+
</g>
|
68
|
+
</g>
|
69
|
+
</svg>
|
Binary file
|
@@ -0,0 +1,94 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: "iconfont"; /* Project id 2718382 */
|
3
|
+
src: url('iconfont.eot?t=1673164991925'); /* IE9 */
|
4
|
+
src: url('iconfont.eot?t=1673164991925#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
5
|
+
url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2'),
|
6
|
+
url('iconfont.woff?t=1673164991925') format('woff'),
|
7
|
+
url('iconfont.ttf?t=1673164991925') format('truetype'),
|
8
|
+
url('iconfont.svg?t=1673164991925#iconfont') format('svg');
|
9
|
+
}
|
10
|
+
|
11
|
+
.iconfont {
|
12
|
+
font-family: "iconfont" !important;
|
13
|
+
font-size: 16px;
|
14
|
+
font-style: normal;
|
15
|
+
-webkit-font-smoothing: antialiased;
|
16
|
+
-moz-osx-font-smoothing: grayscale;
|
17
|
+
}
|
18
|
+
|
19
|
+
.gx-gongjuxiang:before {
|
20
|
+
content: "\e649";
|
21
|
+
}
|
22
|
+
|
23
|
+
.gx-fuwuqingqiu:before {
|
24
|
+
content: "\e68d";
|
25
|
+
}
|
26
|
+
|
27
|
+
.gx-gengduo-tongyong:before {
|
28
|
+
content: "\e60e";
|
29
|
+
}
|
30
|
+
|
31
|
+
.gx-wannengbiaodan:before {
|
32
|
+
content: "\e6c3";
|
33
|
+
}
|
34
|
+
|
35
|
+
.gx-gerenzhongxin2:before {
|
36
|
+
content: "\e608";
|
37
|
+
}
|
38
|
+
|
39
|
+
.gx-gerenshezhi:before {
|
40
|
+
content: "\e618";
|
41
|
+
}
|
42
|
+
|
43
|
+
.gx-a-zu5:before {
|
44
|
+
content: "\e62a";
|
45
|
+
}
|
46
|
+
|
47
|
+
.gx-waibushuju:before {
|
48
|
+
content: "\e60b";
|
49
|
+
}
|
50
|
+
|
51
|
+
.gx-tuxingbianji:before {
|
52
|
+
content: "\e626";
|
53
|
+
}
|
54
|
+
|
55
|
+
.gx-yichangguanli:before {
|
56
|
+
content: "\e682";
|
57
|
+
}
|
58
|
+
|
59
|
+
.gx-jieguoye:before {
|
60
|
+
content: "\e612";
|
61
|
+
}
|
62
|
+
|
63
|
+
.gx-xiangqing:before {
|
64
|
+
content: "\e739";
|
65
|
+
}
|
66
|
+
|
67
|
+
.gx-biaoge:before {
|
68
|
+
content: "\e63e";
|
69
|
+
}
|
70
|
+
|
71
|
+
.gx-iconset0335:before {
|
72
|
+
content: "\e6ea";
|
73
|
+
}
|
74
|
+
|
75
|
+
.gx-shuju:before {
|
76
|
+
content: "\e61d";
|
77
|
+
}
|
78
|
+
|
79
|
+
.gx-layout:before {
|
80
|
+
content: "\e627";
|
81
|
+
}
|
82
|
+
|
83
|
+
.gx-zujian:before {
|
84
|
+
content: "\e657";
|
85
|
+
}
|
86
|
+
|
87
|
+
.gx-gerenziliao:before {
|
88
|
+
content: "\e603";
|
89
|
+
}
|
90
|
+
|
91
|
+
.gx-xitongpeizhi:before {
|
92
|
+
content: "\e6a9";
|
93
|
+
}
|
94
|
+
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
window._iconfont_svg_string_2718382='<svg><symbol id="gx-gongjuxiang" viewBox="0 0 1024 1024"><path d="M904 260H736v-56c0-30.9-25.1-56-56-56H344c-30.9 0-56 25.1-56 56v56H120c-30.9 0-56 25.1-56 56v504c0 30.9 25.1 56 56 56h784c30.9 0 56-25.1 56-56V316c0-30.9-25.1-56-56-56z m-560-56h336v56H344v-56z m560 616H120V596h308v28c0 30.9 25.1 56 56 56h56c30.9 0 56-25.1 56-56v-28h308v224zM484 624V512h56v112h-56z m112-84v-28c0-30.9-25.1-56-56-56h-56c-30.9 0-56 25.1-56 56v28H120V316h784v224H596z" ></path></symbol><symbol id="gx-fuwuqingqiu" viewBox="0 0 1024 1024"><path d="M876 529.4c-15.9 0-28 12.1-28 28v249.2c0 38.3-34.5 69.1-76.5 69.1h-575c-42 0-76.5-30.8-76.5-69.1V272.8c0-38.3 34.5-69.1 76.5-69.1h270.7c15.9 0 28-12.1 28-28s-12.1-28-28-28H196.5c-72.8 0-132.5 56-132.5 125.1v533.9c0 69.1 59.7 125.1 132.5 125.1h574.9c72.8 0 132.5-56 132.5-125.1V557.4c0.1-15.8-12-28-27.9-28z m0 0" ></path><path d="M932 91.7H642.7c-15.9 0-28 12.1-28 28s12.1 28 28 28h222.1L389.7 622.8c-9.3 10.3-9.3 27.1 0 38.3 5.6 5.6 13.1 9.3 20.5 9.3 6.5 0 13.1-2.8 18.7-7.5l475.1-476V409c0 15.9 12.1 28 28 28s28-12.1 28-28V119.7c0-15.9-12.1-28-28-28z m0 0" ></path></symbol><symbol id="gx-gengduo-tongyong" viewBox="0 0 1024 1024"><path d="M896.70657848 274.79257362H127.29342152C110.94885503 274.79257362 97.69935804 261.51870598 97.69935804 245.14164533S110.94885503 215.49071702 127.29342152 215.49071702h769.41315696c16.3445665 0 29.5940635 13.27386763 29.59406348 29.65092831s-13.249497 29.65092829-29.59406348 29.65092829zM896.70657848 541.65092829H127.29342152C110.94885503 541.65092829 97.69935804 528.37706065 97.69935804 512s13.249497-29.65092829 29.59406348-29.65092829h769.41315696c16.3445665 0 29.5940635 13.27386763 29.59406348 29.65092829s-13.249497 29.65092829-29.59406348 29.65092829zM896.70657848 808.50928298H127.29342152C110.94885503 808.50928298 97.69935804 795.23541537 97.69935804 778.85835467S110.94885503 749.20742638 127.29342152 749.20742638h769.41315696c16.3445665 0 29.5940635 13.27386763 29.59406348 29.65092829s-13.249497 29.65092829-29.59406348 29.65092831z" ></path></symbol><symbol id="gx-wannengbiaodan" viewBox="0 0 1024 1024"><path d="M773.485714 970.474057h-522.971428c-46.782171 0-84.845714-35.796114-84.845715-79.813486V272.2816c0-44.002743 38.063543-79.813486 84.845715-79.813486h26.8288v52.662857h-26.8288c-17.744457 0-32.182857 12.1856-32.182857 27.150629v618.364343c0 14.965029 14.4384 27.150629 32.182857 27.150628h522.971428c17.744457 0 32.168229-12.1856 32.168229-27.150628V272.2816c0-14.965029-14.423771-27.150629-32.168229-27.150629h-32.914285v-52.662857h32.914285c46.767543 0 84.831086 35.796114 84.831086 79.813486v618.364343c0 44.032-38.063543 79.828114-84.831086 79.828114z" ></path><path d="M303.235657 406.396343H720.749714v52.662857H303.235657zM334.101943 194.720914H689.883429v52.662857H334.101943zM303.235657 556.807314H720.749714v52.662857H303.235657zM303.235657 707.232914H720.749714v52.662857H303.235657z" ></path><path d="M655.023543 196.578743h-52.662857a90.477714 90.477714 0 0 0-90.375315-90.389943 90.492343 90.492343 0 0 0-90.389942 90.389943h-52.662858c0-78.877257 64.175543-143.0528 143.0528-143.0528s143.038171 64.175543 143.038172 143.0528z" ></path></symbol><symbol id="gx-gerenzhongxin2" viewBox="0 0 1110 1024"><path d="M981.333333 842.666667c1.322667 175.509333-170.666667 170.666667-170.666667 170.666667s-1.173333-68.842667 0-64c46.677333-0.810667 98.325333 11.050667 106.666667-106.666667 6.421333-152.96-147.050667-279.210667-209.045333-323.818667C664.298667 548.16 611.498667 565.333333 554.666667 565.333333s-109.632-17.173333-153.621333-46.485333C339.050667 563.456 185.578667 689.706667 192 842.666667c8.341333 117.717333 60.010667 105.856 106.666667 106.666667 1.152-4.842667 0 64 0 64s-171.989333 4.842667-170.666667-170.666667c0.96-127.146667 126.421333-305.045333 234.922667-354.602667C310.272 437.589333 277.333333 366.698667 277.333333 288 277.333333 134.826667 401.493333 10.666667 554.666667 10.666667c153.173333 0 277.333333 124.16 277.333333 277.333333 0 78.698667-32.938667 149.589333-85.589333 200.064C854.912 537.621333 980.373333 715.52 981.333333 842.666667zM554.666667 74.666667c-117.824 0-213.333333 95.509333-213.333333 213.333333s95.509333 213.333333 213.333333 213.333333c117.824 0 213.333333-95.509333 213.333333-213.333333S672.490667 74.666667 554.666667 74.666667z" ></path></symbol><symbol id="gx-gerenshezhi" viewBox="0 0 1024 1024"><path d="M952.888346 941.102712h-374.982011a32.026674 32.026674 0 0 0 0 64.199255h374.982011a31.95372 31.95372 0 0 0 31.95372-32.099627 31.95372 31.95372 0 0 0-31.95372-32.099628m0-147.220564h-374.982011a32.026674 32.026674 0 0 0 0 64.199255h374.982011a31.95372 31.95372 0 0 0 31.95372-32.099627 31.95372 31.95372 0 0 0-31.95372-32.099628M545.879661 694.811026c0 17.727749 14.371879 32.099627 32.026674 32.099627h374.982011a32.026674 32.026674 0 0 0 0-64.199255h-374.982011a32.026674 32.026674 0 0 0-32.026674 32.099628m-61.281107-167.6476a231.409132 231.409132 0 0 1-230.898456-231.482085c0-127.668973 103.594252-231.482086 230.825502-231.482086a231.409132 231.409132 0 0 1 230.898457 231.482086c0 127.668973-103.594252 231.482086-230.898457 231.482085m294.87885-231.482085A295.608387 295.608387 0 0 0 484.452647 0a295.608387 295.608387 0 0 0-142.551527 554.229248A462.818264 462.818264 0 0 0 36.516937 989.252153a32.026674 32.026674 0 1 0 63.980394 0c0-219.444725 178.007025-397.962426 396.86812-397.962426a31.37009 31.37009 0 0 0 7.660139-1.021351 295.462479 295.462479 0 0 0 274.305907-294.587035" ></path></symbol><symbol id="gx-a-zu5" viewBox="0 0 1024 1024"><path d="M192 160a32 32 0 0 0-32 32v192a32 32 0 0 0 32 32h192a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32H192m0-64h192a96 96 0 0 1 96 96v192a96 96 0 0 1-96 96H192a96 96 0 0 1-96-96V192a96 96 0 0 1 96-96zM192 624a32 32 0 0 0-32 32v192a32 32 0 0 0 32 32h192a32 32 0 0 0 32-32V656a32 32 0 0 0-32-32H192m0-64h192a96 96 0 0 1 96 96v192a96 96 0 0 1-96 96H192a96 96 0 0 1-96-96V656a96 96 0 0 1 96-96zM656 160a32 32 0 0 0-32 32v192a32 32 0 0 0 32 32h192a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32H656m0-64h192a96 96 0 0 1 96 96v192a96 96 0 0 1-96 96H656a96 96 0 0 1-96-96V192a96 96 0 0 1 96-96zM560 944.832a32 32 0 0 1-32-32v-180.16a32 32 0 0 1 64 0v180.16a32 32 0 0 1-32 32zM672 944.832a32 32 0 0 1-32-32v-180.16a32 32 0 0 1 64 0v180.16a32 32 0 0 1-32 32zM784 944.816a32 32 0 0 1-32-32V584a32 32 0 0 1 64 0v328.832a32 32 0 0 1-32 31.984zM896 944.816a32 32 0 0 1-32-32V584a32 32 0 0 1 64 0v328.832a32 32 0 0 1-32 31.984z" ></path></symbol><symbol id="gx-waibushuju" viewBox="0 0 1024 1024"><path d="M899.807467 124.022665c-37.365003-37.337373-87.119173-57.898665-140.086526-57.898665-52.956096 0-102.676497 20.543895-140.008754 57.853639L448.986851 294.487058c13.507642-3.479241 27.52489-5.27412 41.509393-5.27412 23.735587 0 47.493687 5.135974 68.99028 14.893198l120.362298-120.16787c21.342074-21.319561 49.720402-33.059953 79.894632-33.059953 30.173207 0 58.56279 11.740392 79.982636 33.115211 21.35333 21.325701 33.110095 49.67026 33.110095 79.821977 0 30.156834-11.756765 58.502415-33.110095 79.828117L634.594129 548.58729c-21.264303 21.209044-49.476855 32.888038-79.440283 32.888038-30.195719 0-58.629305-11.80179-80.159668-33.293267-3.113921-3.125177-11.490705-11.501962-15.956414-15.236006l-3.51301-1.90028c-6.172583-3.341095-13.175067-5.103228-20.256346-5.103228-11.368932 0-22.062482 4.40431-30.073946 12.399401-13.087063 13.087063-16.178471 33.625842-7.52437 49.936319l0.543375 0.997724a43.505863 43.505863 0 0 0 6.969739 9.130961c1.007957 1.007957 2.00568 1.916653 3.678786 3.391237a181.650153 181.650153 0 0 0 6.061042 6.349615c37.365003 37.321 87.107917 57.864896 140.075269 57.864895 52.944839 0 102.655008-20.532639 139.974985-57.809637l207.192899-206.938096c35.836183-37.004799 55.526641-85.667102 55.526641-137.421836 0.002047-52.879348-20.553105-102.533234-57.885361-139.820465z" ></path><path d="M461.863113 720.963219L341.556073 841.124949c-21.342074 21.319561-49.731658 33.066093-79.916121 33.066093s-58.574047-11.745509-79.916121-33.066093l-0.587378-0.620123c-21.020756-21.264303-32.577976-49.387827-32.577976-79.284741 0-30.140461 11.756765-58.496276 33.110096-79.849606l205.13196-204.877157c21.242813-21.225417 49.454342-32.91669 79.440284-32.916691 30.184463 0 58.629305 11.812023 80.159667 33.30964 3.136433 3.14155 11.590989 11.596106 16.034185 15.297404l3.391237 1.833765a42.733267 42.733267 0 0 0 20.256346 5.108345c11.368932 0 22.051225-4.421706 30.085202-12.45466 13.319353-13.269211 16.355503-33.337269 7.557117-49.931203l-0.532119-0.931208c-2.038426-3.540639-4.332678-6.537903-7.024998-9.202593a59.98007 59.98007 0 0 0-3.623527-3.329838c-1.971911-2.116197-3.944845-4.233418-6.072299-6.360872-37.365003-37.337373-87.13043-57.903781-140.108015-57.903781-52.944839 0-102.655008 20.527522-139.986241 57.804521L121.587196 621.410875c-37.321 37.298488-57.876152 86.963631-57.876152 139.842979s20.555152 102.543468 57.876152 139.842978c37.343513 37.321 87.075171 57.864896 140.0415 57.864896 52.956096 0 102.676497-20.532639 140.052756-57.864896L572.418045 730.582297c-13.574157 3.501754-27.625174 5.307889-41.631167 5.307889-23.701818-0.001023-47.426149-5.154393-68.923765-14.926967z" ></path></symbol><symbol id="gx-tuxingbianji" viewBox="0 0 1024 1024"><path d="M512 1011.2l-435.2-249.6V262.4L512 12.8l435.2 249.6V768L512 1011.2z m-371.2-288L512 940.8l371.2-211.2V300.8L512 83.2 140.8 300.8v422.4z m371.2 32c-121.6 0-224-102.4-224-224S390.4 307.2 512 307.2s224 102.4 224 224-102.4 224-224 224z m0-384c-89.6 0-160 70.4-160 160s70.4 160 160 160 160-70.4 160-160S601.6 371.2 512 371.2z" fill="#676767" ></path><path d="M512 755.2c-121.6 0-224-102.4-224-224S390.4 307.2 512 307.2s224 102.4 224 224-102.4 224-224 224z m0-384c-89.6 0-160 70.4-160 160s70.4 160 160 160 160-70.4 160-160S601.6 371.2 512 371.2z" fill="#676767" ></path></symbol><symbol id="gx-yichangguanli" viewBox="0 0 1024 1024"><path d="M513 233.1l340.3 631.1H172.6L513 233.1m0-134.9l-447.6 830h895.1L513 98.2z" ></path><path d="M542.9 403.6h-63.1v287.9h63.1V403.6zM519 728.4h-15.3c-13.2 0-23.9 10.7-23.9 23.9v15.3c0 13.2 10.7 23.9 23.9 23.9H519c13.2 0 23.9-10.7 23.9-23.9v-15.3c0-13.2-10.7-23.9-23.9-23.9z" ></path></symbol><symbol id="gx-jieguoye" viewBox="0 0 1024 1024"><path d="M522.24 4.096C245.76 4.096 24.576 227.328 24.576 501.76s223.232 497.664 497.664 497.664 497.664-223.232 497.664-497.664C1017.856 227.328 796.672 4.096 522.24 4.096z m0 925.696C286.72 929.792 94.208 737.28 94.208 501.76 94.208 266.24 284.672 73.728 522.24 73.728 757.76 73.728 950.272 266.24 950.272 501.76c0 237.568-192.512 428.032-428.032 428.032z m225.28-618.496L471.04 618.496l-153.6-135.168c-16.384-14.336-40.96-14.336-55.296 2.048-14.336 16.384-14.336 40.96 2.048 55.296l184.32 161.792c16.384 14.336 40.96 14.336 55.296-2.048l303.104-335.872c14.336-16.384 14.336-40.96-2.048-55.296-18.432-16.384-43.008-14.336-57.344 2.048z m0 0" ></path></symbol><symbol id="gx-xiangqing" viewBox="0 0 1024 1024"><path d="M780.8 87.04h-629.76c-33.792 0-61.44 27.648-61.44 61.44v727.04c0 33.792 27.648 61.44 61.44 61.44h629.76c30.5664 0 56.1664-22.6304 60.7232-52.0192H880.64c33.792 0 61.44-27.648 61.44-61.44V200.4992c0-33.792-27.648-61.44-61.44-61.44h-39.1168C836.9664 109.6704 811.3664 87.04 780.8 87.04z m-629.76 808.96c-11.1104 0-20.48-9.3696-20.48-20.48V148.48c0-11.1104 9.3696-20.48 20.48-20.48h629.76c7.7312 0 14.592 4.5056 18.0736 11.0592 1.536 2.816 2.4064 6.0416 2.4064 9.4208v727.04c0 3.3792-0.8704 6.6048-2.4064 9.4208-3.4816 6.5536-10.3424 11.0592-18.0736 11.0592h-629.76z m691.2-52.0192V180.0192h38.4c11.1104 0 20.48 9.4208 20.48 20.48v623.0016c0 11.0592-9.3696 20.48-20.48 20.48h-38.4z" fill="#666666" ></path><path d="M240.64 194.56h-35.84c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h35.84c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48zM727.04 194.56H337.92c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h389.12c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48zM240.64 343.04h-35.84c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h35.84c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48zM727.04 343.04H337.92c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h389.12c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48zM240.64 491.52h-35.84c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h35.84c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48zM727.04 491.52H337.92c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h389.12c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48zM240.64 640h-35.84c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h35.84c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48zM727.04 640H337.92c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h389.12c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48zM240.64 788.48h-35.84c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h35.84c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48zM727.04 788.48H337.92c-11.264 0-20.48 9.216-20.48 20.48s9.216 20.48 20.48 20.48h389.12c11.264 0 20.48-9.216 20.48-20.48s-9.216-20.48-20.48-20.48z" fill="#666666" ></path></symbol><symbol id="gx-biaoge" viewBox="0 0 1024 1024"><path d="M959.825022 384.002258V191.939717C959.825022 121.2479 902.517291 63.940169 831.825474 63.940169H191.939717C121.2479 63.940169 63.940169 121.2479 63.940169 191.939717v639.885757C63.940169 902.517291 121.2479 959.825022 191.939717 959.825022h639.885757c70.691817 0 127.999548-57.307731 127.999548-127.999548V384.002258zM146.66502 146.66502a63.737872 63.737872 0 0 1 45.336109-18.784682h639.997742A63.961844 63.961844 0 0 1 895.884854 192.001129V320.062089H127.880338V192.001129A63.737872 63.737872 0 0 1 146.66502 146.66502z m269.1267 461.308451v-223.971213h192.181751v223.971213h-192.181751z m192.181751 63.940169v223.971214h-192.181751v-223.971214h192.181751z m-256.12192-63.940169H127.880338v-223.971213h223.971213v223.971213z m-205.186531 269.235073a63.466939 63.466939 0 0 1-18.784682-45.209673V671.91364h223.971213v223.971214H192.001129a63.625887 63.625887 0 0 1-45.336109-18.67631z m749.219834-45.209673A63.763159 63.763159 0 0 1 831.998871 895.884854H671.91364v-223.971214h223.971214v160.085231z m0-224.0254h-223.971214v-223.971213h223.971214v223.971213z" fill="" ></path></symbol><symbol id="gx-iconset0335" viewBox="0 0 1024 1024"><path d="M234.666667 298.666667c-12.8 0-21.333333 8.533333-21.333333 21.333333 0 12.8 8.533333 21.333333 21.333333 21.333333 12.8 0 21.333333-8.533333 21.333333-21.333333C256 307.2 247.466667 298.666667 234.666667 298.666667zM149.333333 298.666667c-12.8 0-21.333333 8.533333-21.333333 21.333333 0 12.8 8.533333 21.333333 21.333333 21.333333 12.8 0 21.333333-8.533333 21.333333-21.333333C170.666667 307.2 162.133333 298.666667 149.333333 298.666667zM704 298.666667 405.333333 298.666667c-12.8 0-21.333333 8.533333-21.333333 21.333333 0 12.8 8.533333 21.333333 21.333333 21.333333l298.666667 0c12.8 0 21.333333-8.533333 21.333333-21.333333C725.333333 307.2 716.8 298.666667 704 298.666667zM896 42.666667 298.666667 42.666667c-46.933333 0-85.333333 38.4-85.333333 85.333333l0 21.333333c0 12.8 8.533333 21.333333 21.333333 21.333333 12.8 0 21.333333-8.533333 21.333333-21.333333L256 128c0-23.466667 19.2-42.666667 42.666667-42.666667l597.333333 0c23.466667 0 42.666667 19.2 42.666667 42.666667l0 597.333333c0 23.466667-19.2 42.666667-42.666667 42.666667l-21.333333 0c-12.8 0-21.333333 8.533333-21.333333 21.333333s8.533333 21.333333 21.333333 21.333333l21.333333 0c46.933333 0 85.333333-38.4 85.333333-85.333333L981.333333 128C981.333333 81.066667 942.933333 42.666667 896 42.666667zM320 298.666667c-12.8 0-21.333333 8.533333-21.333333 21.333333 0 12.8 8.533333 21.333333 21.333333 21.333333 12.8 0 21.333333-8.533333 21.333333-21.333333C341.333333 307.2 332.8 298.666667 320 298.666667zM725.333333 213.333333 128 213.333333c-46.933333 0-85.333333 38.4-85.333333 85.333333l0 597.333333c0 46.933333 38.4 85.333333 85.333333 85.333333l597.333333 0c46.933333 0 85.333333-38.4 85.333333-85.333333L810.666667 298.666667C810.666667 251.733333 772.266667 213.333333 725.333333 213.333333zM768 896c0 23.466667-19.2 42.666667-42.666667 42.666667L128 938.666667c-23.466667 0-42.666667-19.2-42.666667-42.666667L85.333333 426.666667l682.666667 0L768 896zM768 384 85.333333 384l0-85.333333c0-23.466667 19.2-42.666667 42.666667-42.666667l597.333333 0c23.466667 0 42.666667 19.2 42.666667 42.666667L768 384z" ></path></symbol><symbol id="gx-shuju" viewBox="0 0 1024 1024"><path d="M464.9 986.4c-57.8 0-113.8-11.3-166.6-33.6-51-21.6-96.7-52.4-136-91.7C123 821.7 92.1 776 70.6 725 48.3 672.2 37 616.2 37 558.4s11.3-113.8 33.6-166.6c21.6-51 52.4-96.7 91.7-136 39.3-39.3 85.1-70.2 136-91.7 52.8-22.3 108.8-33.6 166.6-33.6h29v400.2H893v28c0 57.7-11.4 113.8-33.7 166.5-21.6 50.9-52.4 96.7-91.7 136-39.3 39.3-85.1 70.1-136 91.6-52.9 22.3-108.9 33.6-166.7 33.6z m-27-799.1c-89.2 6.4-172.1 44.1-236 108-70.3 70.3-109 163.7-109 263 0 99.4 38.7 192.8 109 263s163.7 109 263 109c99.3 0 192.7-38.7 263-108.9 63.6-63.6 101.4-146.1 108-234.9h-398V187.3z" fill="#333333" ></path><path d="M987.1 473.7l-28-0.1h-408v-436l28.1 0.1c55.1 0.1 108.5 11 158.8 32.3 48.6 20.6 92.2 50 129.7 87.4 37.5 37.4 66.9 81 87.4 129.5 21.3 50.2 32.1 103.6 32.1 158.5v28.3z m-380-56.1H930c-6.5-83.3-42.1-160.9-102-220.7-59.8-59.8-137.4-95.5-220.9-102.2v322.9z" fill="#333333" ></path></symbol><symbol id="gx-layout" viewBox="0 0 1024 1024"><path d="M831.20303681 894.51577062H193.09686619c-35.09529159 0-63.65247632-28.55165146-63.65247632-63.64694306v-638.12941034c0-35.09529159 28.55718473-63.65247632 63.65247632-63.65247632h638.10727727c35.09529159 0 63.6458364 28.55718473 63.64583641 63.65247632v638.1349436c0.00553327 35.09086498-28.54501155 63.6414098-63.64694306 63.6414098zM193.09686619 186.90403513a5.83648876 5.83648876 0 0 0-5.82984883 5.82984883v638.1349436a5.83648876 5.83648876 0 0 0 5.82984883 5.82542221h638.10727727a5.82984884 5.82984884 0 0 0 5.82431558-5.82542221v-638.12941034a5.83648876 5.83648876 0 0 0-5.82542223-5.82984883H193.09686619z" fill="#2C2C2C" ></path><path d="M165.26564593 337.39447809H865.94087943v57.82262748h-700.67744681z" fill="#2C2C2C" ></path><path d="M377.95220966 345.41218022h57.82262749v500.41527807h-57.82262749z" fill="#2C2C2C" ></path></symbol><symbol id="gx-zujian" viewBox="0 0 1031 1024"><path d="M422.495 226.407l-97.74-37.845-25.11 101.070-135.585-36.382v126.653h-96.435v520.222h833.332c0 0 0-91.035 0-180.923v-13.162h66.667v-129.352h-66.667v-11.318c0-100.935 0-185.468 0-185.468h-29.768v-61.965l-385.717-194.063M346.58 230.075l363.892 149.85h-74.407l-306.292-82.192 16.807-67.657zM196.19 294.2l319.343 85.702h-319.343v-85.702zM838.745 835.438h-706.838v-387.877h706.86c0 0 0 58.073 0 129.127h-224.685v129.352h224.685c-0.023 65.183-0.023 129.398-0.023 129.398zM839.060 673.73h-192.87v-64.687h192.87v64.687zM839.060 379.903h-96.435v-20.183l-281.408-118.35 40.118-60.57 337.725 160.043v39.060z" ></path></symbol><symbol id="gx-gerenziliao" viewBox="0 0 1024 1024"><path d="M918.84347 765.702891h-255.234298c-14.293121 0-25.52343-11.230309-25.523429-25.523429s11.230309-25.52343 25.523429-25.52343h255.234298c13.782652 0 25.52343-8.677966 25.523429-19.397807V70.444666c0-10.71984-11.740778-19.397807-25.523429-19.397807H408.374875c-13.782652 0-25.52343 8.677966-25.523429 19.397807v169.986042c0 14.293121-11.230309 25.52343-25.52343 25.52343s-25.52343-11.230309-25.52343-25.52343V70.444666C331.804586 31.649053 366.005982 0 408.374875 0h510.468595c42.368893 0 76.570289 31.649053 76.570289 70.444666v625.324028c0 38.285145-34.201396 69.934197-76.570289 69.934197z" ></path><path d="M852.993021 255.234297H485.966102c-14.293121 0-25.52343-11.230309-25.52343-25.52343s11.230309-25.52343 25.52343-25.523429h367.026919c14.293121 0 25.52343 11.230309 25.52343 25.523429s-11.230309 25.52343-25.52343 25.52343z" ></path><path d="M852.993021 408.374875H587.038883c-14.293121 0-25.52343-11.230309-25.523429-25.523429s11.230309-25.52343 25.523429-25.52343h265.954138c14.293121 0 25.52343 11.230309 25.52343 25.52343s-11.230309 25.52343-25.52343 25.523429z" ></path><path d="M852.993021 561.515454h-183.258225c-14.293121 0-25.52343-11.230309-25.52343-25.52343s11.230309-25.52343 25.52343-25.52343h183.258225c14.293121 0 25.52343 11.230309 25.52343 25.52343s-11.230309 25.52343-25.52343 25.52343z" ></path><path d="M331.804586 740.179462c-112.813559 0-204.187438-91.373878-204.187437-204.187438s91.373878-204.187438 204.187437-204.187438 204.187438 91.373878 204.187438 204.187438-91.373878 204.187438-204.187438 204.187438z m0-357.328016c-84.227318 0-153.140578 68.91326-153.140578 153.140578s68.91326 153.140578 153.140578 153.140578 153.140578-68.91326 153.140579-153.140578-68.91326-153.140578-153.140579-153.140578z" ></path><path d="M638.085743 1024l-27.565304-3.062812c-23.481555-1.020937-477.798604-1.020937-558.963111 0l-26.033898 0.510469v-26.033898c0-168.965105 137.316052-306.281157 306.281156-306.281157s306.281157 137.316052 306.281157 306.281157v28.586241z m-306.281157-283.820538c-132.211366 0-240.941176 100.562313-254.21336 229.710867 100.051844-0.510469 409.906281-1.020937 507.916252 0a254.928016 254.928016 0 0 0-253.702892-229.710867z" ></path></symbol><symbol id="gx-xitongpeizhi" viewBox="0 0 1024 1024"><path d="M512.1 982.8H404.4c-38.7 0-67.8-29.2-67.8-67.8v-77c-6-3.1-12-6.2-17.7-9.4L250.8 871c-32.5 16.2-69.5 6.1-90-24.7l-1.5-2.4L52.4 656.8c-11.7-18.3-14.7-39.4-8.2-58.2 5.8-16.8 18.5-30.2 35.5-37.5l63.5-39.7v-19.1l-63.5-39.7c-17-7.3-29.7-20.7-35.5-37.6-6.4-18.8-3.4-39.9 8.2-58.2l106.5-186.4c7.9-14.9 22-25.9 38.8-30.4 19.2-5.1 39.7-1.4 57.5 10.6l62.5 39.1c5.9-3.8 12.2-7.5 18.9-11v-80c0-38.7 29.2-67.8 67.8-67.8h214.9c38.7 0 67.8 29.2 67.8 67.8v76.9c6 3.1 11.9 6.2 17.7 9.4l68.1-42.4c32.5-16.2 69.5-6.1 90 24.7l1.5 2.4 106.9 187.1c11.7 18.3 14.7 39.4 8.2 58.2-5.8 16.8-18.5 30.2-35.5 37.5l-63.5 39.7v10c0 22.6-18.3 41-41 41s-41-18.3-41-41v-55.4l95.6-59.8-94.2-165-95.5 59.7-22-14.7c-14-9.3-34.7-19.7-54.7-29.7L605.3 236V122.7H418.5v125.4l-31 7.8c-11.4 2.9-26.7 13.3-39 21.7l-29.3 19.6-97.7-61.2-92 161 95.6 59.8v109.9l-95.6 59.8 94.2 165 95.5-59.7 22 14.7c14 9.3 34.7 19.7 54.7 29.7l22.6 11.3v113.4H512c22.6 0 41 18.3 41 41s-18.3 40.9-40.9 40.9z" ></path><path d="M511.9 429.9c45.2 0 81.9 36.7 81.9 81.9s-36.7 81.9-81.9 81.9S430 557 430 511.8s36.7-81.9 81.9-81.9m0-82c-90.5 0-163.8 73.4-163.8 163.8s73.4 163.8 163.8 163.8c90.5 0 163.8-73.4 163.8-163.8s-73.3-163.8-163.8-163.8zM696.4 901.3h245.8c22.5 0 41 18.4 41 41 0 22.5-18.4 41-41 41H696.4c-22.5 0-41-18.4-41-41 0-22.5 18.5-41 41-41zM696.4 758h245.8c22.5 0 41 18.4 41 41 0 22.5-18.4 41-41 41H696.4c-22.5 0-41-18.4-41-41s18.5-41 41-41zM696.4 614.6h245.8c22.5 0 41 18.4 41 41 0 22.5-18.4 41-41 41H696.4c-22.5 0-41-18.4-41-41 0-22.5 18.5-41 41-41z" ></path></symbol></svg>',function(a){var c=(c=document.getElementsByTagName("script"))[c.length-1],h=c.getAttribute("data-injectcss"),c=c.getAttribute("data-disable-injectsvg");if(!c){var t,l,s,e,i,v=function(c,h){h.parentNode.insertBefore(c,h)};if(h&&!a.__iconfont__svg__cssinject__){a.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(c){console&&console.log(c)}}t=function(){var c,h=document.createElement("div");h.innerHTML=a._iconfont_svg_string_2718382,(h=h.getElementsByTagName("svg")[0])&&(h.setAttribute("aria-hidden","true"),h.style.position="absolute",h.style.width=0,h.style.height=0,h.style.overflow="hidden",h=h,(c=document.body).firstChild?v(h,c.firstChild):c.appendChild(h))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(t,0):(l=function(){document.removeEventListener("DOMContentLoaded",l,!1),t()},document.addEventListener("DOMContentLoaded",l,!1)):document.attachEvent&&(s=t,e=a.document,i=!1,n(),e.onreadystatechange=function(){"complete"==e.readyState&&(e.onreadystatechange=null,o())})}function o(){i||(i=!0,s())}function n(){try{e.documentElement.doScroll("left")}catch(c){return void setTimeout(n,50)}o()}}(window);
|
@@ -0,0 +1,142 @@
|
|
1
|
+
{
|
2
|
+
"id": "2718382",
|
3
|
+
"name": "gx-pro-admin",
|
4
|
+
"font_family": "iconfont",
|
5
|
+
"css_prefix_text": "gx-",
|
6
|
+
"description": "",
|
7
|
+
"glyphs": [
|
8
|
+
{
|
9
|
+
"icon_id": "2678601",
|
10
|
+
"name": "工具箱",
|
11
|
+
"font_class": "gongjuxiang",
|
12
|
+
"unicode": "e649",
|
13
|
+
"unicode_decimal": 58953
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"icon_id": "6899227",
|
17
|
+
"name": "服务请求",
|
18
|
+
"font_class": "fuwuqingqiu",
|
19
|
+
"unicode": "e68d",
|
20
|
+
"unicode_decimal": 59021
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"icon_id": "8534575",
|
24
|
+
"name": "更多-通用",
|
25
|
+
"font_class": "gengduo-tongyong",
|
26
|
+
"unicode": "e60e",
|
27
|
+
"unicode_decimal": 58894
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"icon_id": "12676645",
|
31
|
+
"name": "万能表单1",
|
32
|
+
"font_class": "wannengbiaodan",
|
33
|
+
"unicode": "e6c3",
|
34
|
+
"unicode_decimal": 59075
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"icon_id": "653959",
|
38
|
+
"name": "个人中心2",
|
39
|
+
"font_class": "gerenzhongxin2",
|
40
|
+
"unicode": "e608",
|
41
|
+
"unicode_decimal": 58888
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"icon_id": "10548153",
|
45
|
+
"name": "个人设置",
|
46
|
+
"font_class": "gerenshezhi",
|
47
|
+
"unicode": "e618",
|
48
|
+
"unicode_decimal": 58904
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"icon_id": "26694800",
|
52
|
+
"name": "菜单管理",
|
53
|
+
"font_class": "a-zu5",
|
54
|
+
"unicode": "e62a",
|
55
|
+
"unicode_decimal": 58922
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"icon_id": "1891439",
|
59
|
+
"name": "外部数据",
|
60
|
+
"font_class": "waibushuju",
|
61
|
+
"unicode": "e60b",
|
62
|
+
"unicode_decimal": 58891
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"icon_id": "7418193",
|
66
|
+
"name": "图形编辑",
|
67
|
+
"font_class": "tuxingbianji",
|
68
|
+
"unicode": "e626",
|
69
|
+
"unicode_decimal": 58918
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"icon_id": "8242801",
|
73
|
+
"name": "异常管理",
|
74
|
+
"font_class": "yichangguanli",
|
75
|
+
"unicode": "e682",
|
76
|
+
"unicode_decimal": 59010
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"icon_id": "10695235",
|
80
|
+
"name": "结果页",
|
81
|
+
"font_class": "jieguoye",
|
82
|
+
"unicode": "e612",
|
83
|
+
"unicode_decimal": 58898
|
84
|
+
},
|
85
|
+
{
|
86
|
+
"icon_id": "22786345",
|
87
|
+
"name": "详情",
|
88
|
+
"font_class": "xiangqing",
|
89
|
+
"unicode": "e739",
|
90
|
+
"unicode_decimal": 59193
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"icon_id": "1305461",
|
94
|
+
"name": "表格",
|
95
|
+
"font_class": "biaoge",
|
96
|
+
"unicode": "e63e",
|
97
|
+
"unicode_decimal": 58942
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"icon_id": "554388",
|
101
|
+
"name": "页面",
|
102
|
+
"font_class": "iconset0335",
|
103
|
+
"unicode": "e6ea",
|
104
|
+
"unicode_decimal": 59114
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"icon_id": "3879476",
|
108
|
+
"name": "数据",
|
109
|
+
"font_class": "shuju",
|
110
|
+
"unicode": "e61d",
|
111
|
+
"unicode_decimal": 58909
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"icon_id": "9512581",
|
115
|
+
"name": "布局",
|
116
|
+
"font_class": "layout",
|
117
|
+
"unicode": "e627",
|
118
|
+
"unicode_decimal": 58919
|
119
|
+
},
|
120
|
+
{
|
121
|
+
"icon_id": "755620",
|
122
|
+
"name": "组件",
|
123
|
+
"font_class": "zujian",
|
124
|
+
"unicode": "e657",
|
125
|
+
"unicode_decimal": 58967
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"icon_id": "7474673",
|
129
|
+
"name": "个人资料",
|
130
|
+
"font_class": "gerenziliao",
|
131
|
+
"unicode": "e603",
|
132
|
+
"unicode_decimal": 58883
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"icon_id": "20853360",
|
136
|
+
"name": "系统配置",
|
137
|
+
"font_class": "xitongpeizhi",
|
138
|
+
"unicode": "e6a9",
|
139
|
+
"unicode_decimal": 59049
|
140
|
+
}
|
141
|
+
]
|
142
|
+
}
|