@gx-design-vue/create-gx-cli 0.0.3 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +4 -2
- package/src/cli.js +23 -24
- package/src/main.js +86 -29
- package/{template-mobile-ts → template-design-pro}/.editorconfig +0 -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-mobile-ts → template-design-pro}/.eslintignore +0 -0
- package/{template-mobile-ts → template-design-pro}/.eslintrc.js +0 -0
- package/template-design-pro/.gitpod.yml +6 -0
- package/template-design-pro/.husky/pre-commit +4 -0
- package/{template-mobile-ts → template-design-pro}/.prettierignore +0 -0
- package/{template-mobile-ts → template-design-pro}/.stylelintignore +0 -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-mobile-ts → template-design-pro}/prettier.config.js +0 -0
- package/template-design-pro/public/resource/css/index.css +171 -0
- package/{template-mobile-ts/public → 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-mobile-ts/src/utils/cryptoJS.ts → template-design-pro/src/utils/crypto.ts} +0 -0
- package/{template-mobile-ts → template-design-pro}/src/utils/env.ts +0 -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-mobile-ts → template-design-pro}/src/utils/request/axiosCancel.ts +0 -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-mobile-ts → template-design-pro}/types/auto-imports.d.ts +0 -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
- package/template-mobile-vant-cli/.editorconfig +19 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/.env.development +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/.env.pro +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/.env.production +0 -0
- package/template-mobile-vant-cli/.eslintignore +16 -0
- package/template-mobile-vant-cli/.eslintrc.js +64 -0
- package/template-mobile-vant-cli/.prettierignore +9 -0
- package/template-mobile-vant-cli/.stylelintignore +3 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/README.md +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/build/cdn.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/build/optimizer.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/build/plugin/autoImport.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/build/plugin/html.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/build/plugin/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/build/plugin/mock.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/build/script/postBuild.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/index.html +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/mock/_createProductionServer.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/mock/api/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/mock/utils.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/package.json +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/postcss.config.js +0 -0
- package/template-mobile-vant-cli/prettier.config.js +18 -0
- package/template-mobile-vant-cli/public/favicon.ico +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/public/js/flexible.js +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/App.vue +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/components/PageContainer/ProSkeleton.tsx +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/components/PageContainer/index.tsx +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/components/PageContainer/style.module.less +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/core/gx-design/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/core/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/core/vant-design/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/design/index.less +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/design/reset.less +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/design/root.less +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/design/vant.less +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/global.less +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/hooks/web/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/hooks/web/usePageLoading.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/layout/BasicLayout.vue +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/layout/basicLayout.less +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/main.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/pages/home.vue +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/router/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/router/routes.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/router/typings.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/services/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/settings/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/store/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/store/modules/global.ts +0 -0
- package/template-mobile-vant-cli/src/utils/cryptoJS.ts +39 -0
- package/template-mobile-vant-cli/src/utils/env.ts +52 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/utils/pageTitle.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/utils/request/XHR.ts +0 -0
- package/template-mobile-vant-cli/src/utils/request/axiosCancel.ts +60 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/utils/request/checkStatus.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/utils/request/index.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/utils/request/typings.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/utils/storage.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/utils/util.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/src/utils/validate.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/stylelint.config.js +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/tsconfig.json +0 -0
- package/template-mobile-vant-cli/types/auto-imports.d.ts +61 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/types/components.d.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/types/global.d.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/types/gx-components.d.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/types/module.d.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/types/response.d.ts +0 -0
- package/{template-mobile-ts → template-mobile-vant-cli}/vite.config.ts +0 -0
- package/template-mobile-vant-html/README.md +4 -0
- package/template-mobile-vant-html/css/global.css +293 -0
- package/template-mobile-vant-html/css/global.css.map +1 -0
- package/template-mobile-vant-html/css/global.less +293 -0
- package/template-mobile-vant-html/css/index.css +20 -0
- package/template-mobile-vant-html/css/index.css.map +1 -0
- package/template-mobile-vant-html/css/index.less +21 -0
- package/template-mobile-vant-html/image/disconnected.svg +60 -0
- package/template-mobile-vant-html/image/empty.svg +52 -0
- package/template-mobile-vant-html/image/error.svg +53 -0
- package/template-mobile-vant-html/image/loading.svg +1 -0
- package/template-mobile-vant-html/index.html +91 -0
- package/template-mobile-vant-html/js/index.js +29 -0
- package/template-mobile-vant-html/js/plugin/day.min.js +1 -0
- package/template-mobile-vant-html/js/plugin/fastclick.js +730 -0
- package/template-mobile-vant-html/js/plugin/jquery.min.js +2 -0
- package/template-mobile-vant-html/js/plugin/rem.js +28 -0
- package/template-mobile-vant-html/js/utils/appUtil.js +70 -0
- package/template-mobile-vant-html/js/utils/config.js +3 -0
- package/template-mobile-vant-html/js/utils/request.js +61 -0
- package/template-mobile-vant-html/js/utils/utils.js +65 -0
- package/template-mobile-vant-html/js/utils/validate.js +292 -0
@@ -0,0 +1,19 @@
|
|
1
|
+
root = true
|
2
|
+
|
3
|
+
[*]
|
4
|
+
charset=utf-8
|
5
|
+
end_of_line=lf
|
6
|
+
insert_final_newline=true
|
7
|
+
indent_style=space
|
8
|
+
indent_size=2
|
9
|
+
max_line_length = 100
|
10
|
+
|
11
|
+
[*.{yml,yaml,json}]
|
12
|
+
indent_style = space
|
13
|
+
indent_size = 2
|
14
|
+
|
15
|
+
[*.md]
|
16
|
+
trim_trailing_whitespace = false
|
17
|
+
|
18
|
+
[Makefile]
|
19
|
+
indent_style = tab
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,64 @@
|
|
1
|
+
module.exports = {
|
2
|
+
root: true,
|
3
|
+
env: {
|
4
|
+
browser: true,
|
5
|
+
node: true,
|
6
|
+
es6: true,
|
7
|
+
},
|
8
|
+
parser: 'vue-eslint-parser',
|
9
|
+
parserOptions: {
|
10
|
+
parser: '@typescript-eslint/parser',
|
11
|
+
ecmaVersion: 2020,
|
12
|
+
sourceType: 'module',
|
13
|
+
jsxPragma: 'React',
|
14
|
+
ecmaFeatures: {
|
15
|
+
jsx: true,
|
16
|
+
},
|
17
|
+
},
|
18
|
+
extends: [
|
19
|
+
'plugin:vue/vue3-recommended',
|
20
|
+
'plugin:@typescript-eslint/recommended'
|
21
|
+
],
|
22
|
+
rules: {
|
23
|
+
'vue/script-setup-uses-vars': 'error',
|
24
|
+
'@typescript-eslint/ban-ts-ignore': 'off',
|
25
|
+
'@typescript-eslint/explicit-function-return-type': 'off',
|
26
|
+
'@typescript-eslint/no-explicit-any': 'off',
|
27
|
+
'@typescript-eslint/no-var-requires': 'off',
|
28
|
+
'@typescript-eslint/no-empty-function': 'off',
|
29
|
+
'vue/custom-event-name-casing': 'off',
|
30
|
+
'no-use-before-define': 'off',
|
31
|
+
'@typescript-eslint/no-use-before-define': 'off',
|
32
|
+
'@typescript-eslint/ban-ts-comment': 'off',
|
33
|
+
'@typescript-eslint/ban-types': 'off',
|
34
|
+
'@typescript-eslint/no-non-null-assertion': 'off',
|
35
|
+
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
36
|
+
'@typescript-eslint/no-unused-vars': [
|
37
|
+
'error',
|
38
|
+
{
|
39
|
+
argsIgnorePattern: '^_',
|
40
|
+
varsIgnorePattern: '^_',
|
41
|
+
},
|
42
|
+
],
|
43
|
+
'no-unused-vars': [
|
44
|
+
'error',
|
45
|
+
{
|
46
|
+
argsIgnorePattern: '^_',
|
47
|
+
varsIgnorePattern: '^_',
|
48
|
+
},
|
49
|
+
],
|
50
|
+
'space-before-function-paren': 'off',
|
51
|
+
|
52
|
+
'vue/attributes-order': 'off',
|
53
|
+
'vue/one-component-per-file': 'off',
|
54
|
+
'vue/html-closing-bracket-newline': 'off',
|
55
|
+
'vue/max-attributes-per-line': 'off',
|
56
|
+
'vue/multiline-html-element-content-newline': 'off',
|
57
|
+
'vue/singleline-html-element-content-newline': 'off',
|
58
|
+
'vue/attribute-hyphenation': 'off',
|
59
|
+
'vue/require-default-prop': 'off',
|
60
|
+
'vue/require-explicit-emits': 'off',
|
61
|
+
'vue/html-self-closing': 0,
|
62
|
+
'vue/multi-word-component-names': 'off',
|
63
|
+
},
|
64
|
+
};
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -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
|
+
};
|
Binary file
|
File without changes
|
File without changes
|
package/{template-mobile-ts → template-mobile-vant-cli}/src/components/PageContainer/ProSkeleton.tsx
RENAMED
File without changes
|
package/{template-mobile-ts → template-mobile-vant-cli}/src/components/PageContainer/index.tsx
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import 'crypto-js/enc-utf8'
|
2
|
+
import 'crypto-js/tripledes'
|
3
|
+
import 'crypto-js/sha1'
|
4
|
+
import * as CryptoJS from 'crypto-js/core'
|
5
|
+
import { isJSONStr } from '@/utils/validate'
|
6
|
+
import { isObject, isArray } from '@gx-design-vue/pro-utils'
|
7
|
+
|
8
|
+
const key = '1234123412ABCDEF' //十六位十六进制数作为密钥
|
9
|
+
|
10
|
+
//加密方法
|
11
|
+
export function Encrypt(word) {
|
12
|
+
let str: string | object = word
|
13
|
+
if (isObject(word) || isArray(word)) {
|
14
|
+
str = JSON.stringify(word)
|
15
|
+
}
|
16
|
+
const keyHex = CryptoJS.enc.Utf8.parse(key)
|
17
|
+
const ivHex = CryptoJS.enc.Utf8.parse(key)
|
18
|
+
const encrypted = CryptoJS.DES.encrypt(str, keyHex, {
|
19
|
+
iv: ivHex,
|
20
|
+
mode: CryptoJS.mode.CBC,
|
21
|
+
padding: CryptoJS.pad.Pkcs7
|
22
|
+
})
|
23
|
+
return CryptoJS.enc.Base64.stringify(encrypted.ciphertext)
|
24
|
+
}
|
25
|
+
|
26
|
+
//解密方法
|
27
|
+
export function Decrypt(word) {
|
28
|
+
const keyHex = CryptoJS.enc.Utf8.parse(key)
|
29
|
+
const ivHex = CryptoJS.enc.Utf8.parse(key)
|
30
|
+
const decrypted = CryptoJS.DES.decrypt({
|
31
|
+
ciphertext: CryptoJS.enc.Base64.parse(word)
|
32
|
+
}, keyHex, {
|
33
|
+
iv: ivHex,
|
34
|
+
mode: CryptoJS.mode.CBC,
|
35
|
+
padding: CryptoJS.pad.Pkcs7
|
36
|
+
})
|
37
|
+
const decryptedStr = decrypted.toString(CryptoJS.enc.Utf8)
|
38
|
+
return isJSONStr(decryptedStr.toString()) ? JSON.parse(decryptedStr.toString()) : decryptedStr.toString()
|
39
|
+
}
|
@@ -0,0 +1,52 @@
|
|
1
|
+
/**
|
2
|
+
* @Author gx12358
|
3
|
+
* @DateTime 2022/4/1
|
4
|
+
* @lastTime 2022/4/1
|
5
|
+
* @description 环境:开发
|
6
|
+
*/
|
7
|
+
export function isDev(): boolean {
|
8
|
+
const DEV = typeViteEnv('VITE_USE_MODE') === 'development'
|
9
|
+
return DEV
|
10
|
+
}
|
11
|
+
|
12
|
+
/**
|
13
|
+
* @Author gx12358
|
14
|
+
* @DateTime 2022/4/1
|
15
|
+
* @lastTime 2022/4/1
|
16
|
+
* @description 环境:测试
|
17
|
+
*/
|
18
|
+
export function isTest(): boolean {
|
19
|
+
const PRO = typeViteEnv('VITE_USE_MODE') === 'test'
|
20
|
+
return PRO
|
21
|
+
}
|
22
|
+
|
23
|
+
/**
|
24
|
+
* @Author gx12358
|
25
|
+
* @DateTime 2022/4/1
|
26
|
+
* @lastTime 2022/4/1
|
27
|
+
* @description 环境:正式
|
28
|
+
*/
|
29
|
+
export function isPro(): boolean {
|
30
|
+
return typeViteEnv('VITE_USE_MODE') === 'production'
|
31
|
+
}
|
32
|
+
|
33
|
+
/**
|
34
|
+
* @Author gx12358
|
35
|
+
* @DateTime 2022/4/1
|
36
|
+
* @lastTime 2022/4/1
|
37
|
+
* @description 环境:测试、正式
|
38
|
+
*/
|
39
|
+
export function isBuild(): boolean {
|
40
|
+
return typeViteEnv('VITE_USE_MODE') !== 'development'
|
41
|
+
}
|
42
|
+
|
43
|
+
export function typeViteEnv(key: ViteEnvKey) {
|
44
|
+
let value = import.meta.env[key]
|
45
|
+
if (value) {
|
46
|
+
value = (value as string).replace(/\\n/g, '\n')
|
47
|
+
|
48
|
+
value = value === 'true' ? true : value === 'false' ? false : value
|
49
|
+
}
|
50
|
+
|
51
|
+
return value
|
52
|
+
}
|
File without changes
|
File without changes
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import type { AxiosRequestConfig, Canceler } from 'axios'
|
2
|
+
import axios from 'axios'
|
3
|
+
import { isFunction } from '@gx-design-vue/pro-utils'
|
4
|
+
|
5
|
+
// Used to store the identification and cancellation function of each request
|
6
|
+
let pendingMap = new Map<string, Canceler>()
|
7
|
+
|
8
|
+
export const getPendingUrl = (config: AxiosRequestConfig) => [ config.method, config.url ].join('&')
|
9
|
+
|
10
|
+
export class AxiosCanceler {
|
11
|
+
/**
|
12
|
+
* Add request
|
13
|
+
* @param {Object} config
|
14
|
+
*/
|
15
|
+
addPending(config: AxiosRequestConfig) {
|
16
|
+
this.removePending(config)
|
17
|
+
const url = getPendingUrl(config)
|
18
|
+
config.cancelToken =
|
19
|
+
config.cancelToken ||
|
20
|
+
new axios.CancelToken((cancel) => {
|
21
|
+
if (!pendingMap.has(url)) {
|
22
|
+
// If there is no current request in pending, add it
|
23
|
+
pendingMap.set(url, cancel)
|
24
|
+
}
|
25
|
+
})
|
26
|
+
}
|
27
|
+
|
28
|
+
/**
|
29
|
+
* @description: Clear all pending
|
30
|
+
*/
|
31
|
+
removeAllPending() {
|
32
|
+
pendingMap.forEach((cancel) => {
|
33
|
+
cancel && isFunction(cancel) && cancel()
|
34
|
+
})
|
35
|
+
pendingMap.clear()
|
36
|
+
}
|
37
|
+
|
38
|
+
/**
|
39
|
+
* Removal request
|
40
|
+
* @param {Object} config
|
41
|
+
*/
|
42
|
+
removePending(config: AxiosRequestConfig) {
|
43
|
+
const url = getPendingUrl(config)
|
44
|
+
|
45
|
+
if (pendingMap.has(url)) {
|
46
|
+
// If there is a current request identifier in pending,
|
47
|
+
// the current request needs to be cancelled and removed
|
48
|
+
const cancel = pendingMap.get(url)
|
49
|
+
cancel && cancel(url)
|
50
|
+
pendingMap.delete(url)
|
51
|
+
}
|
52
|
+
}
|
53
|
+
|
54
|
+
/**
|
55
|
+
* @description: reset
|
56
|
+
*/
|
57
|
+
reset(): void {
|
58
|
+
pendingMap = new Map<string, Canceler>()
|
59
|
+
}
|
60
|
+
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,61 @@
|
|
1
|
+
// Generated by 'unplugin-auto-import'
|
2
|
+
export {}
|
3
|
+
declare global {
|
4
|
+
const EffectScope: typeof import('vue')['EffectScope']
|
5
|
+
const computed: typeof import('vue')['computed']
|
6
|
+
const createApp: typeof import('vue')['createApp']
|
7
|
+
const customRef: typeof import('vue')['customRef']
|
8
|
+
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
9
|
+
const defineComponent: typeof import('vue')['defineComponent']
|
10
|
+
const effectScope: typeof import('vue')['effectScope']
|
11
|
+
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
12
|
+
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
13
|
+
const h: typeof import('vue')['h']
|
14
|
+
const inject: typeof import('vue')['inject']
|
15
|
+
const isProxy: typeof import('vue')['isProxy']
|
16
|
+
const isReactive: typeof import('vue')['isReactive']
|
17
|
+
const isReadonly: typeof import('vue')['isReadonly']
|
18
|
+
const isRef: typeof import('vue')['isRef']
|
19
|
+
const markRaw: typeof import('vue')['markRaw']
|
20
|
+
const nextTick: typeof import('vue')['nextTick']
|
21
|
+
const onActivated: typeof import('vue')['onActivated']
|
22
|
+
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
23
|
+
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
|
24
|
+
const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
|
25
|
+
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
|
26
|
+
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
|
27
|
+
const onDeactivated: typeof import('vue')['onDeactivated']
|
28
|
+
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
|
29
|
+
const onMounted: typeof import('vue')['onMounted']
|
30
|
+
const onRenderTracked: typeof import('vue')['onRenderTracked']
|
31
|
+
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
|
32
|
+
const onScopeDispose: typeof import('vue')['onScopeDispose']
|
33
|
+
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
|
34
|
+
const onUnmounted: typeof import('vue')['onUnmounted']
|
35
|
+
const onUpdated: typeof import('vue')['onUpdated']
|
36
|
+
const provide: typeof import('vue')['provide']
|
37
|
+
const reactive: typeof import('vue')['reactive']
|
38
|
+
const readonly: typeof import('vue')['readonly']
|
39
|
+
const ref: typeof import('vue')['ref']
|
40
|
+
const resolveComponent: typeof import('vue')['resolveComponent']
|
41
|
+
const resolveDirective: typeof import('vue')['resolveDirective']
|
42
|
+
const shallowReactive: typeof import('vue')['shallowReactive']
|
43
|
+
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
44
|
+
const shallowRef: typeof import('vue')['shallowRef']
|
45
|
+
const toRaw: typeof import('vue')['toRaw']
|
46
|
+
const toRef: typeof import('vue')['toRef']
|
47
|
+
const toRefs: typeof import('vue')['toRefs']
|
48
|
+
const triggerRef: typeof import('vue')['triggerRef']
|
49
|
+
const unref: typeof import('vue')['unref']
|
50
|
+
const useAttrs: typeof import('vue')['useAttrs']
|
51
|
+
const useCssModule: typeof import('vue')['useCssModule']
|
52
|
+
const useCssVars: typeof import('vue')['useCssVars']
|
53
|
+
const useLink: typeof import('vue-router')['useLink']
|
54
|
+
const useRoute: typeof import('vue-router')['useRoute']
|
55
|
+
const useRouter: typeof import('vue-router')['useRouter']
|
56
|
+
const useSlots: typeof import('vue')['useSlots']
|
57
|
+
const watch: typeof import('vue')['watch']
|
58
|
+
const watchEffect: typeof import('vue')['watchEffect']
|
59
|
+
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
60
|
+
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
61
|
+
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|