@ganwei-web/ganwei-pc-cli 6.2.2 → 6.2.3
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/ganwei-app-6.2.1/moduleConfiguration/copyFile.js +8 -14
- package/ganwei-app-6.2.1/moduleConfiguration/init.js +2 -8
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/auto-imports.d.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/banner.js +9 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/build-version.js +42 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/bulidList.js +26 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/enteryJson.js +108 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/filterStatic.js +64 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/init.js +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/look-dir.js +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/rollup-options.js +35 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/test.js +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/components.d.ts +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/env.d.ts +7 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/index.html +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/package-lock.json +3965 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/package.json +69 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/pnpm-lock.yaml +5034 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/index-plus-vars.css +93 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/index-plus.css +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/index.css +15926 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/pptxjs.css +161 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.css +1135 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.js +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.json +1969 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.ttf +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.woff +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.woff2 +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/language/en-US/noPage.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/language/zh-CN/noPage.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/language/zh-HK/noPage.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/themes/dark.css +77 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/themes/default-theme.js +34 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/themes/light.css +79 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/App.vue +198 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/index.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/linkSetting.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/sceneSetting.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/specialTask.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/style.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/weekTask.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/VideoSystem.scss +397 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/el-dialog.scss +58 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/el-drawer.scss +41 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/index.scss +1052 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/login.scss +320 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/mobileStyle.scss +332 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/noDataTips.scss +57 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/reset.scss +1192 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/style-black.scss +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/style-white.scss +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/style.scss +633 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/videoPlaybackCom.scss +468 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/videoPlayer.scss +441 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/plugins/encrypt.js +122 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/appFrame.vue +163 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/bottom.vue +15 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/css/bottom.scss +381 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/css/top.scss +49 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/js/Voice.js +345 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/js/bottom.js +102 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/top.vue +114 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/i18n/i18n.js +42 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/i18n/i18nObserver.js +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/i18n/vueI18n.js +17 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/toast/index.js +64 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/toast/index.vue +152 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/hostMap.js +9 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/main.js +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/Auth.js +83 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/BA.js +81 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/EquipList.js +127 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/Event.js +34 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/GwEcharts.js +9 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/PPT.js +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/RealTime.js +43 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/SystemConfig.js +177 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/Video.js +57 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/VideoTour.js +129 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/WelcomeWord.js +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/WorkOrder.js +265 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/videoSystem.js +81 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api.js +35 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/apiFunction.js +200 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/encrypt.js +14 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/http.js +186 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/router.js +31 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/store.js +189 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/types.js +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/formValidate.js +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/isApp.js +18 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/language.js +45 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/myUtils.js +643 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/timeFormat.js +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/timesYMDHMS.js +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/views/ganwei-app-empty-page/src/noPage.vue +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/stats.html +356 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/vite.base.config.js +244 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/vite.config.ts +44 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.stylelintrc.cjs +18 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/auto-imports.d.ts +56 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/components.d.ts +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/env.d.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/index.html +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/package.json +87 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/public/static/language/en-US/home.json +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/public/static/language/zh-CN/home.json +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/public/static/language/zh-HK/home.json +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/App.vue +203 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/components/Layout/TitleList.vue +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/enums/index.ts +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/main.ts +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/models/index.ts +91 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/request/api/RealTime.ts +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/request/api.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/router.ts +30 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/store.js +189 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/types.js +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeMenuItem.vue +95 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeMenus.vue +118 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeMenusEditDrawer.vue +119 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeSnapshots.vue +109 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/chatbot.vue +96 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/eslint.config.js +10 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/css/index.scss +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/img/chatbot.gif +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/img/six.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/index.vue +42 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useLanguageStyle.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useManageMenus.ts +38 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useMenus.ts +49 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/usePolling.ts +38 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useRealTime.ts +128 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/stats.html +4975 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/tsconfig.json +58 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/types/gw-app-public.d.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/vite.base.config.ts +233 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/vite.config.ts +49 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/index.html +1 -2
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/config.json +2 -2
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/util.js +4 -10
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/types.js +1 -1
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.stylelintrc.cjs +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/auto-imports.d.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/env.d.ts +67 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/index.html +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/package.json +79 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/public/static/language/en-US/login.json +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/public/static/language/zh-CN/login.json +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/public/static/language/zh-HK/login.json +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/App.vue +225 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/assets/images/bg.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/assets/images/refresh.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/components/app-drag/index.vue +183 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/hostMap.ts +11 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/main.ts +19 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/models/index.ts +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/request/api/Auth.ts +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/request/api.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/router.ts +30 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/Login.vue +99 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/css/login.scss +78 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/js/useLogin.ts +73 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/js/useRememberPassword.ts +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/stats.html +4975 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/tsconfig.json +56 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/types/gw-app-public.d.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/vite.base.config.ts +233 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/vite.config.ts +51 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.stylelintrc.cjs +17 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/auto-imports.d.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/env.d.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/index.html +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/package.json +85 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/public/static/language/en-US/setPage.json +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/public/static/language/zh-CN/setPage.json +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/public/static/language/zh-HK/setPage.json +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/App.vue +202 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/components/buttonModeSelect/index.vue +190 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/hostMap.ts +11 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/main.ts +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/models/index.ts +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/request/api/Auth.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/request/api.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/router.ts +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/store.js +189 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/types.js +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useChangeLanguage.ts +19 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useChangeTheme.ts +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useClearCache.ts +26 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useJavaFunc.ts +146 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useLogout.ts +52 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/setPage.vue +120 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/stats.html +4975 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/tsconfig.json +58 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/types/gw-app-public.d.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/vite.base.config.ts +233 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/vite.config.ts +49 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/auto-imports.d.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/components.d.ts +14 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/env.d.ts +7 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/index.html +18 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/package.json +77 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/public/static/language/en-US/template.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/public/static/language/zh-CN/template.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/public/static/language/zh-HK/template.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/App.vue +202 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/components/buttonModeSelect/index.vue +190 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/hostMap.ts +11 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/main.ts +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/models/index.ts +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/request/api/Auth.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/request/api.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/router.ts +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/store.js +189 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/types.js +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/views/ganwei-app-template/src/template.vue +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/tsconfig.json +58 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/types/gw-app-public.d.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/vite.base.config.js +246 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/vite.config.ts +44 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/json/config.json +47 -43
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/isDebug/isDebug.vue +2 -9
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/types.js +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/index.js +0 -3
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/jumpIframe/preloadMethod.js +3 -3
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/login.scss +50 -30
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/types.js +1 -1
- package/package.json +1 -1
package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/json/config.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"showOrganization": false,
|
|
11
11
|
"verificationType": true,
|
|
12
12
|
"titleConfig": {
|
|
13
|
-
"platName": "
|
|
13
|
+
"platName": "gw"
|
|
14
14
|
},
|
|
15
15
|
"speaktts": [],
|
|
16
16
|
"defaultLanguageType": "",
|
|
@@ -24,46 +24,50 @@
|
|
|
24
24
|
},
|
|
25
25
|
"theme": {
|
|
26
26
|
"default": "dark",
|
|
27
|
-
"supportThemes": [
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
27
|
+
"supportThemes": [
|
|
28
|
+
{
|
|
29
|
+
"value": "dark",
|
|
30
|
+
"color": "#3d4a63",
|
|
31
|
+
"name": "黑色",
|
|
32
|
+
"name-en": "Black",
|
|
33
|
+
"skin": "/static/images/index-skin-dark.svg",
|
|
34
|
+
"logo": "/static/images/index-logo-src-dark.svg",
|
|
35
|
+
"fullScreen": "/static/images/index-fullscreen-dark.svg",
|
|
36
|
+
"user": "/static/images/index-user-dark.svg",
|
|
37
|
+
"outFullScreeen": "/static/images/index-tuchuquanping-dark.svg",
|
|
38
|
+
"contentFullScreen": "/static/images/index-contentfull-dark.svg",
|
|
39
|
+
"appPreview": "/static/images/index-apppreview-dark.svg",
|
|
40
|
+
"enable": true
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"value": "light",
|
|
44
|
+
"color": "#ffffff",
|
|
45
|
+
"name": "白色",
|
|
46
|
+
"name-en": "White",
|
|
47
|
+
"skin": "/static/images/index-skin-light.svg",
|
|
48
|
+
"logo": "/static/images/index-logo-src-light.svg",
|
|
49
|
+
"fullScreen": "/static/images/index-fullscreen-light.svg",
|
|
50
|
+
"user": "/static/images/index-user-light.svg",
|
|
51
|
+
"outFullScreeen": "/static/images/index-tuchuquanping-light.svg",
|
|
52
|
+
"contentFullScreen": "/static/images/index-contentfull-light.svg",
|
|
53
|
+
"appPreview": "/static/images/index-apppreview-light.svg",
|
|
54
|
+
"enable": true
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"value": "green",
|
|
58
|
+
"color": "#02716b",
|
|
59
|
+
"name": "绿色",
|
|
60
|
+
"name-en": "Green",
|
|
61
|
+
"skin": "/static/images/index-skin-green.svg",
|
|
62
|
+
"logo": "/static/images/index-logo-src-green.svg",
|
|
63
|
+
"fullScreen": "/static/images/index-fullscreen-green.svg",
|
|
64
|
+
"user": "/static/images/index-user-green.svg",
|
|
65
|
+
"outFullScreeen": "/static/images/index-tuchuquanping-green.svg",
|
|
66
|
+
"contentFullScreen": "/static/images/index-contentfull-green.svg",
|
|
67
|
+
"appPreview": "/static/images/index-apppreview-green.svg",
|
|
68
|
+
"enable": false
|
|
69
|
+
}
|
|
70
|
+
]
|
|
67
71
|
},
|
|
68
72
|
"enabledSsoUrl": false,
|
|
69
73
|
"ssoConfig": {
|
|
@@ -86,7 +90,7 @@
|
|
|
86
90
|
},
|
|
87
91
|
"ganweicloud": {
|
|
88
92
|
"plateName": "ganweicloud",
|
|
89
|
-
"description": "
|
|
93
|
+
"description": "gw配置",
|
|
90
94
|
"ssoUrl": {
|
|
91
95
|
"api": "/#/jumpIframeLogin/ganwei-iotcenter-login/ssoLogin",
|
|
92
96
|
"method": "get"
|
|
@@ -151,4 +155,4 @@
|
|
|
151
155
|
"logout": true,
|
|
152
156
|
"park": true
|
|
153
157
|
}
|
|
154
|
-
},
|
|
158
|
+
},
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
* @Description:
|
|
3
|
-
* @Version: v1
|
|
4
|
-
* @Author: zkx
|
|
5
|
-
* @LastEditTime: 2023-10-09 13:37:02
|
|
6
|
-
* Copyright (c) 2023 by 敢为软件, All Rights Reserved.
|
|
7
|
-
-->
|
|
8
1
|
<template>
|
|
9
2
|
<div class="top-tip" v-if="showDebugInfo">
|
|
10
3
|
<img class="top-img" src="./warning.png">
|
|
@@ -13,12 +6,12 @@
|
|
|
13
6
|
</template>
|
|
14
7
|
<script>
|
|
15
8
|
export default {
|
|
16
|
-
data
|
|
9
|
+
data() {
|
|
17
10
|
return {
|
|
18
11
|
showDebugInfo: false
|
|
19
12
|
}
|
|
20
13
|
},
|
|
21
|
-
mounted
|
|
14
|
+
mounted() {
|
|
22
15
|
this.$api.getServiceStatus().then(res => {
|
|
23
16
|
if (res.data.code == 200 && 'data' in res.data) {
|
|
24
17
|
let data = res.data.data;
|
|
@@ -256,9 +256,6 @@ export default {
|
|
|
256
256
|
let keyVal = route + (parameter ? '&' + parameter : '');
|
|
257
257
|
this.outerLinkMap[keyVal] = data.route;
|
|
258
258
|
data.route = keyVal; //作为URL传输,通过this.$route.fullPath获取
|
|
259
|
-
// 结果是outerLinkMap键值为 /Index/jumpIframe/custom/敢为云?outerLink=true&isHideMenu=true
|
|
260
|
-
// 结果是outerLinkMap值为 https://www.ganweicloud.com/?isHideMenu=true(菜单管理配置URL)
|
|
261
|
-
// data.route值为 /Index/jumpIframe/custom/敢为云?outerLink=true&isHideMenu=true
|
|
262
259
|
}
|
|
263
260
|
}
|
|
264
261
|
if (data.route) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
created
|
|
2
|
+
created() {
|
|
3
3
|
window.preloadApi = this.preloadApi.bind(this)
|
|
4
4
|
},
|
|
5
5
|
methods: {
|
|
@@ -12,7 +12,7 @@ export default {
|
|
|
12
12
|
* @param {String} methods 请求方法
|
|
13
13
|
* @param {Object} data 请求参数
|
|
14
14
|
*/
|
|
15
|
-
preloadApi
|
|
15
|
+
preloadApi() {
|
|
16
16
|
let routerPath = window.decodeURIComponent(this.$route.path)
|
|
17
17
|
let routerFullPath = window.decodeURIComponent(this.$route.fullPath)
|
|
18
18
|
let originName = this.routesToPackageId[routerFullPath] || this.routesToPackageId[routerPath], preloadConfig
|
|
@@ -28,7 +28,7 @@ export default {
|
|
|
28
28
|
} else {
|
|
29
29
|
preloadConfig = []
|
|
30
30
|
}
|
|
31
|
-
let configName = preloadConfig[0]?.configName || "
|
|
31
|
+
let configName = preloadConfig[0]?.configName || ""
|
|
32
32
|
let path = preloadConfig[0]?.path || '/api/idsvr/connect/connect'
|
|
33
33
|
let methods = preloadConfig[0]?.methods || 'get'
|
|
34
34
|
let data = preloadConfig[0]?.data || {}
|
package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/login.scss
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
//
|
|
1
|
+
// gw
|
|
2
2
|
.login {
|
|
3
3
|
width: 100%;
|
|
4
4
|
height: 100%;
|
|
5
|
-
|
|
5
|
+
|
|
6
|
+
img {
|
|
6
7
|
user-select: none;
|
|
7
8
|
}
|
|
9
|
+
|
|
8
10
|
::v-deep .languageSelect {
|
|
9
11
|
width: 136px;
|
|
10
12
|
height: 44px;
|
|
@@ -13,6 +15,7 @@
|
|
|
13
15
|
top: 16px;
|
|
14
16
|
z-index: 1;
|
|
15
17
|
border: 0;
|
|
18
|
+
|
|
16
19
|
.el-select__wrapper {
|
|
17
20
|
width: 100%;
|
|
18
21
|
border-radius: 24px;
|
|
@@ -20,8 +23,9 @@
|
|
|
20
23
|
border: 2px solid white;
|
|
21
24
|
box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
|
|
22
25
|
background: linear-gradient(0deg, #fff, #f3f5f8);
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
|
|
27
|
+
.el-select__prefix {
|
|
28
|
+
i {
|
|
25
29
|
color: #2464F1;
|
|
26
30
|
}
|
|
27
31
|
}
|
|
@@ -64,7 +68,8 @@
|
|
|
64
68
|
bottom: 0px;
|
|
65
69
|
left: 0px;
|
|
66
70
|
pointer-events: none;
|
|
67
|
-
|
|
71
|
+
|
|
72
|
+
img {
|
|
68
73
|
width: 100%;
|
|
69
74
|
height: 100%;
|
|
70
75
|
}
|
|
@@ -84,6 +89,7 @@
|
|
|
84
89
|
// background: linear-gradient(0deg, #fff, #f3f5f8);
|
|
85
90
|
overflow: hidden;
|
|
86
91
|
transition: height 1s ease;
|
|
92
|
+
|
|
87
93
|
.login_form {
|
|
88
94
|
padding: 88px 56px 56px 56px;
|
|
89
95
|
width: 100%;
|
|
@@ -91,6 +97,7 @@
|
|
|
91
97
|
border-radius: 6px;
|
|
92
98
|
background: rgba(255, 255, 255, 0.2);
|
|
93
99
|
box-sizing: border-box;
|
|
100
|
+
|
|
94
101
|
.blurBackground {
|
|
95
102
|
position: absolute;
|
|
96
103
|
right: 0;
|
|
@@ -117,6 +124,7 @@
|
|
|
117
124
|
.el-form {
|
|
118
125
|
margin-bottom: 18px;
|
|
119
126
|
position: relative;
|
|
127
|
+
|
|
120
128
|
.el-form-item {
|
|
121
129
|
height: 80px;
|
|
122
130
|
margin-bottom: 0px;
|
|
@@ -124,38 +132,43 @@
|
|
|
124
132
|
animation: enter-x-animation .4s ease-in-out .3s;
|
|
125
133
|
animation-fill-mode: forwards;
|
|
126
134
|
align-items: self-start;
|
|
135
|
+
|
|
127
136
|
&:nth-of-type(1) {
|
|
128
137
|
transform: translate(-80px);
|
|
129
138
|
}
|
|
139
|
+
|
|
130
140
|
&:nth-of-type(2) {
|
|
131
141
|
transform: translate(-120px);
|
|
132
142
|
}
|
|
143
|
+
|
|
133
144
|
&:nth-of-type(3) {
|
|
134
145
|
transform: translate(-160px);
|
|
135
|
-
|
|
136
|
-
|
|
146
|
+
|
|
147
|
+
::v-deep .el-input .el-input__wrapper {
|
|
137
148
|
justify-content: left;
|
|
138
|
-
|
|
149
|
+
|
|
150
|
+
.el-input__inner {
|
|
139
151
|
width: 110px;
|
|
140
152
|
flex-grow: unset;
|
|
141
|
-
|
|
153
|
+
}
|
|
142
154
|
}
|
|
143
155
|
}
|
|
144
156
|
|
|
145
157
|
}
|
|
146
158
|
|
|
147
159
|
.el-form-item.is-error {
|
|
148
|
-
::v-deep .el-input__wrapper{
|
|
160
|
+
::v-deep .el-input__wrapper {
|
|
149
161
|
box-shadow: 0 0 0 1px var(--el-color-danger) inset !important;
|
|
150
162
|
border: 0 !important;
|
|
151
163
|
}
|
|
152
164
|
}
|
|
165
|
+
|
|
153
166
|
::v-deep .el-form-item__content {
|
|
154
|
-
.el-form-item__error{
|
|
167
|
+
.el-form-item__error {
|
|
155
168
|
position: relative !important;
|
|
156
|
-
left: 50px!important;
|
|
169
|
+
left: 50px !important;
|
|
157
170
|
padding-top: 6px !important;
|
|
158
|
-
top: 0!important;
|
|
171
|
+
top: 0 !important;
|
|
159
172
|
}
|
|
160
173
|
}
|
|
161
174
|
}
|
|
@@ -164,10 +177,10 @@
|
|
|
164
177
|
.el-input__wrapper {
|
|
165
178
|
width: 310px;
|
|
166
179
|
height: 52px;
|
|
167
|
-
background: rgba(255,255,255,0.55);
|
|
180
|
+
background: rgba(255, 255, 255, 0.55);
|
|
168
181
|
border-radius: 31px;
|
|
169
182
|
backdrop-filter: blur(1px);
|
|
170
|
-
border: 1px solid rgba(151,151,151,0.21);
|
|
183
|
+
border: 1px solid rgba(151, 151, 151, 0.21);
|
|
171
184
|
|
|
172
185
|
.el-input__inner {
|
|
173
186
|
text-indent: 10px;
|
|
@@ -175,13 +188,14 @@
|
|
|
175
188
|
color: #000 !important;
|
|
176
189
|
}
|
|
177
190
|
|
|
178
|
-
.el-input__suffix{
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
191
|
+
.el-input__suffix {
|
|
192
|
+
.el-input__suffix-inner i {
|
|
193
|
+
font-size: 20px;
|
|
194
|
+
|
|
195
|
+
svg {
|
|
196
|
+
color: #2464F1;
|
|
197
|
+
}
|
|
183
198
|
}
|
|
184
|
-
}
|
|
185
199
|
}
|
|
186
200
|
}
|
|
187
201
|
|
|
@@ -192,7 +206,8 @@
|
|
|
192
206
|
align-items: center;
|
|
193
207
|
color: #2464F1;
|
|
194
208
|
margin-left: -2px;
|
|
195
|
-
|
|
209
|
+
|
|
210
|
+
span {
|
|
196
211
|
display: flex;
|
|
197
212
|
justify-content: center;
|
|
198
213
|
align-items: center;
|
|
@@ -204,17 +219,19 @@
|
|
|
204
219
|
box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
|
|
205
220
|
background: linear-gradient(0deg, #fff, #f3f5f8);
|
|
206
221
|
}
|
|
207
|
-
|
|
222
|
+
|
|
223
|
+
i {
|
|
208
224
|
font-size: 20px;
|
|
209
225
|
margin: auto;
|
|
210
226
|
}
|
|
211
227
|
}
|
|
212
228
|
}
|
|
213
229
|
|
|
214
|
-
.verificationCode{
|
|
230
|
+
.verificationCode {
|
|
215
231
|
position: relative;
|
|
216
232
|
width: 100%;
|
|
217
|
-
|
|
233
|
+
|
|
234
|
+
.slideCode {
|
|
218
235
|
font-size: 16px;
|
|
219
236
|
font-weight: 600;
|
|
220
237
|
color: #011832;
|
|
@@ -224,7 +241,8 @@
|
|
|
224
241
|
border-radius: 31px;
|
|
225
242
|
backdrop-filter: blur(1px);
|
|
226
243
|
}
|
|
227
|
-
|
|
244
|
+
|
|
245
|
+
.codeLoading {
|
|
228
246
|
position: absolute;
|
|
229
247
|
right: 0;
|
|
230
248
|
border-radius: 0px 31px 31px 0px;
|
|
@@ -236,7 +254,7 @@
|
|
|
236
254
|
.submit {
|
|
237
255
|
width: 100%;
|
|
238
256
|
height: 52px;
|
|
239
|
-
background-color: #2464F1!important;
|
|
257
|
+
background-color: #2464F1 !important;
|
|
240
258
|
border-radius: 31px;
|
|
241
259
|
border: 2px solid #B8CEFF;
|
|
242
260
|
backdrop-filter: blur(1px);
|
|
@@ -262,7 +280,8 @@
|
|
|
262
280
|
background-color: rgba(49, 108, 251, 1);
|
|
263
281
|
}
|
|
264
282
|
}
|
|
265
|
-
|
|
283
|
+
|
|
284
|
+
.loginExtend {
|
|
266
285
|
text-align: right;
|
|
267
286
|
position: absolute;
|
|
268
287
|
right: 18px;
|
|
@@ -271,7 +290,8 @@
|
|
|
271
290
|
opacity: 0;
|
|
272
291
|
animation: enter-x-animation .3s ease-in-out .3s;
|
|
273
292
|
animation-fill-mode: forwards;
|
|
274
|
-
|
|
293
|
+
|
|
294
|
+
.loginExtendButton {
|
|
275
295
|
cursor: pointer;
|
|
276
296
|
background-color: transparent;
|
|
277
297
|
border-color: transparent;
|
|
@@ -332,4 +352,4 @@ select:-webkit-autofill {
|
|
|
332
352
|
background-color: transparent;
|
|
333
353
|
background-image: none;
|
|
334
354
|
transition: background-color 50000s ease-in-out 0s; //背景色透明 生效时长 过渡效果 启用时延迟的时间
|
|
335
|
-
}
|
|
355
|
+
}
|