@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
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
.login {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
text-align: center;
|
|
5
|
+
|
|
6
|
+
// background: url(../../assets/images/bg.png) no-repeat center -10%/100% auto;
|
|
7
|
+
>img {
|
|
8
|
+
width: 100%;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
>header {
|
|
12
|
+
position: fixed; // width: 333px;
|
|
13
|
+
top: 44px;
|
|
14
|
+
left: 50%;
|
|
15
|
+
transform: translateX(-50%);
|
|
16
|
+
height: 50px;
|
|
17
|
+
|
|
18
|
+
img {
|
|
19
|
+
margin-right: 24px;
|
|
20
|
+
float: left;
|
|
21
|
+
height: 56px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
span {
|
|
25
|
+
float: left;
|
|
26
|
+
display: block;
|
|
27
|
+
height: 50px;
|
|
28
|
+
line-height: 50px;
|
|
29
|
+
font-size: 3rem;
|
|
30
|
+
color: $background-box;
|
|
31
|
+
font-weight: bold;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.img_box {
|
|
36
|
+
>img {
|
|
37
|
+
width: 50px !important;
|
|
38
|
+
height: 50px !important;
|
|
39
|
+
border: 1px solid $black;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
>section {
|
|
44
|
+
position: fixed;
|
|
45
|
+
top: 50%;
|
|
46
|
+
left: 50%;
|
|
47
|
+
transform: translate(-50%, -50%);
|
|
48
|
+
$loginW: 872px;
|
|
49
|
+
$loginH: 508px;
|
|
50
|
+
width: $loginW;
|
|
51
|
+
height: $loginH;
|
|
52
|
+
border-radius: 6px;
|
|
53
|
+
overflow: hidden;
|
|
54
|
+
|
|
55
|
+
.logo_box {
|
|
56
|
+
position: absolute;
|
|
57
|
+
left: 0;
|
|
58
|
+
width: 45%;
|
|
59
|
+
height: 100%;
|
|
60
|
+
|
|
61
|
+
.logo_bj {
|
|
62
|
+
position: absolute;
|
|
63
|
+
width: 100%;
|
|
64
|
+
height: 100%;
|
|
65
|
+
background: $linearBg;
|
|
66
|
+
|
|
67
|
+
.login_top {
|
|
68
|
+
position: absolute;
|
|
69
|
+
height: 100%;
|
|
70
|
+
height: 50%;
|
|
71
|
+
top: 145px;
|
|
72
|
+
|
|
73
|
+
img {
|
|
74
|
+
width: 52%;
|
|
75
|
+
position: relative;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.login_bottom {
|
|
80
|
+
position: absolute;
|
|
81
|
+
height: 40%;
|
|
82
|
+
top: 50%;
|
|
83
|
+
|
|
84
|
+
img {
|
|
85
|
+
width: 55%;
|
|
86
|
+
position: relative;
|
|
87
|
+
top: 50%;
|
|
88
|
+
margin-top: -20%;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
p {
|
|
93
|
+
color: $background-box;
|
|
94
|
+
|
|
95
|
+
&:first-child {
|
|
96
|
+
margin-top: 24px;
|
|
97
|
+
margin-bottom: 12px;
|
|
98
|
+
font-size: 2rem;
|
|
99
|
+
text-shadow: 0px 0.5px 4px $black;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&:last-child {
|
|
103
|
+
font-size: 1.25rem;
|
|
104
|
+
text-shadow: 0px 0.5px 3px $black;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.login_form {
|
|
111
|
+
position: absolute;
|
|
112
|
+
right: 0;
|
|
113
|
+
padding: 48px 56px;
|
|
114
|
+
width: 55%;
|
|
115
|
+
height: 100%;
|
|
116
|
+
|
|
117
|
+
h2 {
|
|
118
|
+
margin-bottom: 5%;
|
|
119
|
+
color: $textColor_1;
|
|
120
|
+
font-size: 2rem;
|
|
121
|
+
text-align: left;
|
|
122
|
+
font-weight: normal;
|
|
123
|
+
|
|
124
|
+
h3 {
|
|
125
|
+
font-size: 24px;
|
|
126
|
+
color: var(--snapshot-desc-title);
|
|
127
|
+
margin-bottom: 20px
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
h5 {
|
|
131
|
+
font-size: 14px;
|
|
132
|
+
color: var(--workorder-info-label);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
>p {
|
|
137
|
+
margin-top: 5%;
|
|
138
|
+
text-align: left;
|
|
139
|
+
|
|
140
|
+
>span {
|
|
141
|
+
display: block;
|
|
142
|
+
width: 100%;
|
|
143
|
+
color: #2d2e30;
|
|
144
|
+
|
|
145
|
+
&:first-child {
|
|
146
|
+
height: 30px;
|
|
147
|
+
line-height: 30px;
|
|
148
|
+
color: $black;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
i {
|
|
152
|
+
margin: 0 5px;
|
|
153
|
+
float: left;
|
|
154
|
+
display: block;
|
|
155
|
+
color: $black;
|
|
156
|
+
font-size: 1rem;
|
|
157
|
+
font-weight: bold;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.icongw-icon-zhuce-yingchang,
|
|
161
|
+
.icongw-icon-zhuce-kanjian {
|
|
162
|
+
display: inline-block;
|
|
163
|
+
height: 100%;
|
|
164
|
+
font-size: 20px;
|
|
165
|
+
padding-top: 10px;
|
|
166
|
+
color: $textColor_3 !important;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
input {
|
|
171
|
+
font-size: 0.9rem;
|
|
172
|
+
color: $background-box;
|
|
173
|
+
width: 100%;
|
|
174
|
+
height: 40px;
|
|
175
|
+
text-indent: 1rem;
|
|
176
|
+
line-height: 40px;
|
|
177
|
+
outline: none;
|
|
178
|
+
border-radius: 3px;
|
|
179
|
+
border: 1px solid $n-borderColor;
|
|
180
|
+
background: transparent;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
::v-deep .el-input {
|
|
184
|
+
input {
|
|
185
|
+
border-width: 0.5px;
|
|
186
|
+
// background: $n-backColor;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
input:-webkit-autofill,
|
|
191
|
+
textarea:-webkit-autofill,
|
|
192
|
+
select:-webkit-autofill {
|
|
193
|
+
-webkit-text-fill-color: $background-box !important;
|
|
194
|
+
-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
|
|
195
|
+
background-color: transparent;
|
|
196
|
+
background-image: none;
|
|
197
|
+
transition: background-color 50000s ease-in-out 0s; //背景色透明 生效时长 过渡效果 启用时延迟的时间
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
img {
|
|
201
|
+
height: 40px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
#code_img {
|
|
205
|
+
display: block;
|
|
206
|
+
width: 100%;
|
|
207
|
+
height: 40px;
|
|
208
|
+
cursor: pointer;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
span {
|
|
212
|
+
font-size: 0.875rem;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.verificationCode {
|
|
218
|
+
position: relative;
|
|
219
|
+
width: 100%;
|
|
220
|
+
height: 40px;
|
|
221
|
+
overflow: hidden;
|
|
222
|
+
|
|
223
|
+
::v-deep .el-input {
|
|
224
|
+
position: absolute;
|
|
225
|
+
left: 0;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
#code_img {
|
|
229
|
+
position: absolute;
|
|
230
|
+
top: 1px;
|
|
231
|
+
right: 1.5px;
|
|
232
|
+
width: 170px;
|
|
233
|
+
height: 37.5px;
|
|
234
|
+
z-index: 9999999999999999;
|
|
235
|
+
border-top-right-radius: 3px;
|
|
236
|
+
border-bottom-right-radius: 3px;
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.number {
|
|
241
|
+
margin-top: 12%;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.loading {
|
|
245
|
+
display: inline-block;
|
|
246
|
+
cursor: pointer;
|
|
247
|
+
width: 100%;
|
|
248
|
+
padding: 12px;
|
|
249
|
+
margin-top: 6px;
|
|
250
|
+
position: relative;
|
|
251
|
+
position: relative;
|
|
252
|
+
font-size: 16px;
|
|
253
|
+
outline: none;
|
|
254
|
+
background: var(--login-btn-Bg);
|
|
255
|
+
border-radius: 6px;
|
|
256
|
+
margin-top: 66px;
|
|
257
|
+
color: $textColor_2 !important;
|
|
258
|
+
border: 0;
|
|
259
|
+
// &:hover {
|
|
260
|
+
// background: $linearBtnHoverBg;
|
|
261
|
+
// }
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.label,
|
|
265
|
+
i {
|
|
266
|
+
color: var(--radio-label) !important;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
>footer {
|
|
272
|
+
width: 100%;
|
|
273
|
+
position: fixed;
|
|
274
|
+
bottom: 24px;
|
|
275
|
+
left: 50%;
|
|
276
|
+
transform: translateX(-50%);
|
|
277
|
+
height: 32px;
|
|
278
|
+
white-space: nowrap;
|
|
279
|
+
|
|
280
|
+
img {
|
|
281
|
+
margin-right: 16px;
|
|
282
|
+
height: 32px;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
span {
|
|
286
|
+
height: 32px;
|
|
287
|
+
line-height: 32px;
|
|
288
|
+
font-size: 1rem;
|
|
289
|
+
color: $n-fontColor;
|
|
290
|
+
white-space: nowrap;
|
|
291
|
+
vertical-align: bottom;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.footer-btn {
|
|
295
|
+
width: 107px;
|
|
296
|
+
height: 28px;
|
|
297
|
+
position: fixed;
|
|
298
|
+
right: 30px;
|
|
299
|
+
bottom: 0;
|
|
300
|
+
|
|
301
|
+
.el-button {
|
|
302
|
+
color: $textColor_3;
|
|
303
|
+
border: 0.5px solid $textColor_5;
|
|
304
|
+
background-color: rgba(64, 158, 255, 0.2);
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.icongw-icon-shezhi {
|
|
310
|
+
font-size: 16px;
|
|
311
|
+
position: absolute;
|
|
312
|
+
right: 5%;
|
|
313
|
+
top: 30px;
|
|
314
|
+
color: var(--workorder-info-label);
|
|
315
|
+
z-index: 4;
|
|
316
|
+
font-weight: 500;
|
|
317
|
+
font-size: 24px;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
}
|
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
//响应式宽度
|
|
2
|
+
$screen-xs-max: 767px;
|
|
3
|
+
$screen-sm-min: 768px;
|
|
4
|
+
$screen-md-min: 992px;
|
|
5
|
+
$screen-lg-min: 1200px;
|
|
6
|
+
|
|
7
|
+
@media (max-width: $screen-xs-max) {
|
|
8
|
+
.noDownload {
|
|
9
|
+
display: none !important;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.displayNone {
|
|
13
|
+
display: none;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// 登录页
|
|
17
|
+
.login {
|
|
18
|
+
.main {
|
|
19
|
+
width: 94% !important;
|
|
20
|
+
min-height: 400px !important;
|
|
21
|
+
background-color: transparent !important;
|
|
22
|
+
|
|
23
|
+
.logo_box {
|
|
24
|
+
display: none;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.login_form {
|
|
28
|
+
width: 100%;
|
|
29
|
+
padding: 50px 16px !important;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
#code_img {
|
|
33
|
+
max-width: 100px;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// 首页
|
|
39
|
+
#index {
|
|
40
|
+
position: relative;
|
|
41
|
+
|
|
42
|
+
.minW-active {
|
|
43
|
+
width: 0 !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// 系统运行信息
|
|
47
|
+
.systemInformation_main {
|
|
48
|
+
::v-deep .el-dialog {
|
|
49
|
+
width: 100% !important;
|
|
50
|
+
height: 100% !important;
|
|
51
|
+
margin: 0 !important;
|
|
52
|
+
|
|
53
|
+
.el-dialog__header {
|
|
54
|
+
line-height: 64px !important;
|
|
55
|
+
padding: 0 !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.el-dialog__body {
|
|
59
|
+
height: calc(100% - 64px) !important;
|
|
60
|
+
position: relative;
|
|
61
|
+
padding: 10px !important;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.systemInformation {
|
|
66
|
+
top: 0 !important;
|
|
67
|
+
overflow-y: auto;
|
|
68
|
+
|
|
69
|
+
>header {}
|
|
70
|
+
|
|
71
|
+
.information_box {
|
|
72
|
+
&::after {
|
|
73
|
+
content: "";
|
|
74
|
+
width: 0 !important;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
>div:nth-child(3) {
|
|
78
|
+
padding-bottom: 100px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
>div {
|
|
82
|
+
position: relative;
|
|
83
|
+
width: 100% !important;
|
|
84
|
+
height: auto !important;
|
|
85
|
+
|
|
86
|
+
.inform_title {
|
|
87
|
+
position: relative !important;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.inform_msg {
|
|
91
|
+
height: auto !important;
|
|
92
|
+
margin-top: 0 !important;
|
|
93
|
+
|
|
94
|
+
p {
|
|
95
|
+
margin: 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.inform_link {}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// 修改密码、退出
|
|
106
|
+
.editPassword {
|
|
107
|
+
overflow: hidden;
|
|
108
|
+
|
|
109
|
+
::v-deep .el-dialog {
|
|
110
|
+
width: 94% !important;
|
|
111
|
+
|
|
112
|
+
.el-dialog__header {
|
|
113
|
+
.el-dialog__headerbtn {
|
|
114
|
+
top: 0 !important;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.el-dialog__body {
|
|
119
|
+
position: relative;
|
|
120
|
+
border-top: 0.5px solid $n-borderColor;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.el-dialog__footer {
|
|
124
|
+
padding: 10px !important;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
//退出登录
|
|
130
|
+
#quit {
|
|
131
|
+
::v-deep .el-dialog {
|
|
132
|
+
width: 94% !important;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.mask {
|
|
137
|
+
width: 100%;
|
|
138
|
+
height: 100%;
|
|
139
|
+
background-color: transparent !important;
|
|
140
|
+
position: absolute;
|
|
141
|
+
left: 0;
|
|
142
|
+
top: 0;
|
|
143
|
+
z-index: 12;
|
|
144
|
+
|
|
145
|
+
.maxW {
|
|
146
|
+
position: absolute;
|
|
147
|
+
left: 0;
|
|
148
|
+
top: 0;
|
|
149
|
+
z-index: 9;
|
|
150
|
+
height: 100%;
|
|
151
|
+
|
|
152
|
+
.aside-header {
|
|
153
|
+
background-color: $foregroundColor_1 !important; // 高亮
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.el-container {
|
|
159
|
+
width: 100%;
|
|
160
|
+
|
|
161
|
+
.indexHeader {
|
|
162
|
+
height: 64px !important;
|
|
163
|
+
|
|
164
|
+
&>a {
|
|
165
|
+
position: absolute;
|
|
166
|
+
left: 16px;
|
|
167
|
+
display: inline-block !important;
|
|
168
|
+
font-size: 24px;
|
|
169
|
+
color: $textColor_1;
|
|
170
|
+
|
|
171
|
+
i {
|
|
172
|
+
font-size: 24px;
|
|
173
|
+
margin-right: 10px;
|
|
174
|
+
vertical-align: bottom;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.header-right {
|
|
179
|
+
border-radius: 20px;
|
|
180
|
+
height: 40px !important;
|
|
181
|
+
line-height: 40px;
|
|
182
|
+
margin-top: 10px;
|
|
183
|
+
background-color: $middleColor_1;
|
|
184
|
+
|
|
185
|
+
.el-avatar {
|
|
186
|
+
margin: 0 4px !important;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.iconquanping {
|
|
191
|
+
display: none;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.breadcrumb {
|
|
196
|
+
display: none;
|
|
197
|
+
height: 48px !important;
|
|
198
|
+
padding-left: 16px !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.el-main {
|
|
202
|
+
height: calc(100% - 112px) !important;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// 带有返回icon头部title样式
|
|
208
|
+
.mobileTilte {
|
|
209
|
+
width: 100%;
|
|
210
|
+
height: 64px;
|
|
211
|
+
width: 100%;
|
|
212
|
+
color: #f0f4ff;
|
|
213
|
+
font-size: 1.25rem;
|
|
214
|
+
font-weight: 600;
|
|
215
|
+
|
|
216
|
+
.el-icon-arrow-left {
|
|
217
|
+
display: inline-block;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
//弹窗顶部title整行样式
|
|
222
|
+
.mobileDialogTitle {
|
|
223
|
+
width: 100%;
|
|
224
|
+
height: 64px;
|
|
225
|
+
display: flex;
|
|
226
|
+
justify-content: space-between;
|
|
227
|
+
align-items: center;
|
|
228
|
+
color: white;
|
|
229
|
+
font-size: 1.25rem;
|
|
230
|
+
|
|
231
|
+
span:last-child {
|
|
232
|
+
color: #3875ff;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
// 手机端分页去除跳转及跳转页码显示
|
|
237
|
+
.el-pagination {
|
|
238
|
+
text-align: center;
|
|
239
|
+
|
|
240
|
+
.el-pagination__sizes,
|
|
241
|
+
.el-pagination__jump {
|
|
242
|
+
display: none !important;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
// 普通弹窗
|
|
247
|
+
.el-message {
|
|
248
|
+
min-width: 280px !important;
|
|
249
|
+
width: 94% !important;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.el-message-box {
|
|
253
|
+
// width: 94% !important;
|
|
254
|
+
margin: auto;
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
@media (min-width: $screen-sm-min) and (max-width: $screen-md-min) {
|
|
259
|
+
.pcHide {
|
|
260
|
+
display: none !important;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
#index {
|
|
264
|
+
.minW-active {
|
|
265
|
+
width: 64px !important;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.el-container {
|
|
269
|
+
.indexHeader {
|
|
270
|
+
min-width: 800px;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
// .toBack {
|
|
276
|
+
// display: none;
|
|
277
|
+
// }
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
@media (min-width: $screen-md-min) and (max-width: $screen-lg-min) {
|
|
281
|
+
.pcHide {
|
|
282
|
+
display: none !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
#index {
|
|
286
|
+
.minW-active {
|
|
287
|
+
width: 64px !important;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.el-container {
|
|
291
|
+
.indexHeader {
|
|
292
|
+
min-width: 800px;
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
// .toBack {
|
|
298
|
+
// display: none;
|
|
299
|
+
// }
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
@media (min-width: $screen-lg-min) {
|
|
303
|
+
.pcHide {
|
|
304
|
+
display: none !important;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
#index {
|
|
308
|
+
.minW-active {
|
|
309
|
+
width: 64px !important;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.el-container {
|
|
313
|
+
.indexHeader {
|
|
314
|
+
min-width: 800px;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
// .toBack {
|
|
320
|
+
// display: none;
|
|
321
|
+
// }
|
|
322
|
+
|
|
323
|
+
::v-deep .el-date-range-picker__header {
|
|
324
|
+
::v-deep .el-icon-arrow-left {
|
|
325
|
+
display: inline-block !important;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.el-icon-arrow-left {
|
|
329
|
+
display: inline-block !important;
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
}
|