@ganwei-web/ganwei-pc-cli 6.2.0
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-iotcenter-index-6.2.0/.nvmrc +1 -0
- package/ganwei-iotcenter-index-6.2.0/configuration/cleanNodeModule.js +18 -0
- package/ganwei-iotcenter-index-6.2.0/configuration/gitClone.js +45 -0
- package/ganwei-iotcenter-index-6.2.0/configuration/moduleConfiguration.json +20 -0
- package/ganwei-iotcenter-index-6.2.0/configuration/updateModule.cjs +30 -0
- package/ganwei-iotcenter-index-6.2.0/init.cjs +30 -0
- package/ganwei-iotcenter-index-6.2.0/package.json +41 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/.babelrc +4 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/.env.development +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/.env.production +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/.eslintrc.cjs +176 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/.prettierrc.cjs +19 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/auto-imports.d.ts +5 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/build/enteryJson.js +9 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/build/vite-addInfo-html.ts +38 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/components.d.ts +87 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/env.d.ts +7 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/index.html +31 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/package.json +89 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/css/element-plus/css-vars.css +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/css/element-plus/index.css +16959 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/css/element-ui/index.css +16075 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/css/equipStatus.css +70 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/css/index.css +15926 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/css/reset-6-1.css +155 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.css +1135 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.json +1969 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.css +3779 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.json +6596 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/http/createAxios.js +486 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/head-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-dark.svg +48 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-green.svg +42 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-light.svg +26 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-dark.svg +20 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-green.svg +20 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-light.svg +14 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-green.svg +16 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-light.svg +16 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-contentfull.svg +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-green.svg +14 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-light.svg +12 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen.svg +19 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-loading.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-dark.svg +67 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-green.svg +67 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-light.svg +67 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-small.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-logo-src.svg +67 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-nopage-dark.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-nopage-green.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-nopage-light.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-dark.svg +32 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-green.svg +32 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-light.svg +9 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-skin-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-skin-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-skin-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-skin.svg +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-dark.svg +18 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-green.svg +18 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-light.svg +18 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping.svg +18 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-upgrade.svg +18 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-user-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-user-green.svg +27 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-user-light.svg +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-user.svg +26 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-dark.svg +37 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-green.svg +37 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/logo.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/menu-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/renew-message-dark.svg +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/renew-message-green.svg +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/renew-message-light.svg +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/right-close.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/right-open.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-fullscreen.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-guzhang.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-jinggao.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-shezhi.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-xinxi.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-zichan.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/unread-message-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/unread-message-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/unread-message-light.svg +17 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/images/webconfig-location.svg +17 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/axios.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/echarts.min.js +25 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js.gz +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/enc-base64-min.js +86 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/filereader.js +455 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/font.js +56 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/getConfigInfoData.js +57 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/getLanguage.js +144 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/getLanguageOptions.js +52 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/getUserPermissionList.js +55 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/h5player.min.js +311 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/hmac-sha256.js +18 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/jquery.slim.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/jsencrypt.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/jszip.min.js +14 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/liveplayer-lib.min.js +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/moment.js +5670 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/pptxjs.min.js +14105 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/signalr.min.js +17 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/tXml.js +244 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/transformpcm.worker.js +58 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/vue-i18n.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/vue-router.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/vue.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js/vuex.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/json/RAMScope.json +201 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/json/config.json +154 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/json/snapshot.json +34 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.css +246 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.js +5384 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/themes/dark-6-1.css +430 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/themes/dark.css +426 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/themes/default-theme-6-1.js +48 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/themes/default-theme.js +53 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/themes/green-6-1.css +357 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/themes/light-6-1.css +424 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/themes/light.css +414 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/themes/themeConfig.json +42 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/App.vue +52 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/assets/plugins/encrypt.js +122 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/auto-import.d.ts +61 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/asideMenu/contractMenu.vue +216 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/asideMenu/menu.vue +238 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/asideMenu/topNav.vue +238 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/contextMenu/index.js +42 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/contextMenu/index.vue +113 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.js +204 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.scss +258 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.vue +112 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/images/appconnect.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/index.vue +282 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.js +19 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.vue +10 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.js +50 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.vue +10 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.js +28 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.scss +137 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.vue +20 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/ApprovalDialog.vue +135 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.js +327 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.scss +253 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.vue +61 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/RenewDialog.vue +97 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.js +95 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.scss +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.vue +8 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/renew.vue +271 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.js +45 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.scss +36 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.vue +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.js +70 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.scss +94 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.vue +35 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.js +146 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.scss +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.vue +8 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.js +81 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.scss +147 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.vue +30 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/forceEdit.js +78 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.js +265 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.scss +5 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.vue +39 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.js +94 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.scss +113 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.vue +90 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.js +68 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.vue +16 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.js +178 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.scss +16 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.vue +46 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/safeModeDialog/index.vue +195 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.js +70 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.scss +95 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.vue +35 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.js +240 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.scss +158 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.vue +50 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.js +63 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.scss +40 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.vue +20 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.js +398 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.scss +136 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.vue +36 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.js +34 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.scss +44 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.vue +21 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/inputPassword/index.vue +65 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/isDebug/isDebug.vue +57 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/isDebug/warning.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/noAccess/noAccess.vue +78 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/noAccess/noPage.vue +68 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/sceneMonitor/index.js +95 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/toast/index.js +65 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/toast/index.vue +136 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/unreadMsg/listItem.vue +36 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/components/unreadMsg/unread.vue +300 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/hostMap.js +13 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/main.js +50 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/mixins/judgePermission.js +29 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/publish/pub.ts +28 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/request/api/frame.js +142 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/request/api.js +14 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/router.js +34 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/store.js +221 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/types.js +16 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/utils/MFEManager.js +156 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/utils/gwEquipCache.js +325 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/utils/gwSignalr.js +66 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/utils/historyExport.js +158 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/utils/setStorage.js +5 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/views/Index.vue +81 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/views/index.js +297 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/views/jumpIframe/index.vue +242 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/views/jumpIframe/preloadMethod.js +54 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/src/views/jumpIframe/queryParser.js +47 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/tsconfig.json +57 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/vite.config.ts +270 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/.babelrc +8 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/.env.development +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/.env.production +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/.eslintrc.cjs +162 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/.prettierrc.cjs +37 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/auto-imports.d.ts +5 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/build/enteryJson.js +72 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/build/vite-addInfo-html.ts +38 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/env.d.ts +7 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/index.html +34 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/package.json +84 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/css/drag.css +140 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/css/element-plus/css-vars.css +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/css/element-plus/index.css +16957 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/css/element-ui/index.css +16075 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/css/element-ui/reset.css +1471 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/css/index.css +15926 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/css/reset-6-1.css +114 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.css +1135 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.json +1969 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.css +4151 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.json +7247 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/http/createAxios.js +316 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/center.svg +23 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/centerActive.svg +24 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/center_light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/index-loading.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-dark.svg +67 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-green.svg +67 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-light.svg +67 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-small.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/index-logo-src.svg +67 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/left.svg +23 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/leftActive.svg +24 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/left_light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/login-drag-start.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/login-drag-stop.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/logo.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/refresh.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/right.svg +23 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/rightActive.svg +24 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/images/right_light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/js/axios.min.js +3 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/js/drag.js +391 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/js/font.js +57 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/js/getConfigInfoData.js +57 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/js/getLanguage.js +143 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/js/getLanguageOptions.js +52 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/js/jquery.min.js +10716 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/dark-6-1.css +333 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/dark.css +426 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/default-theme-6-1.js +46 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/default-theme.js +53 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/green-6-1.css +336 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/light-6-1.css +338 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/light.css +414 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/themeConfig.json +42 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/App.vue +70 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/alertHandle.scss +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/browserScroll.scss +5 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/btnHandle.scss +36 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/containerHandle.scss +402 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/dialogStyle.scss +43 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/equipStatus.scss +88 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/index.scss +1358 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/inputStyle.scss +16 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/listHandle.scss +113 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/login.scss +335 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/mainInfo.scss +297 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/maintenanceInfo.scss +199 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/style.css +921 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/tableHandle.scss +147 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/txtHandle.scss +39 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/images/login-sso-error.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/images/logo-bg.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/plugins/encrypt.js +122 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/components/declaration/declaration.scss +118 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/components/declaration/declaration.vue +109 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/components/declaration/declarationPacts.vue +42 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/components/passwordModification/checkEmailContainer.vue +134 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/components/passwordModification/inputEmailContainer.vue +128 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/components/passwordModification/modifyPasswordContainer.vue +138 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification - /345/211/257/346/234/254.vue" +4 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification.vue +223 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/directive/loadMore/loadMore.js +14 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/hostMap.js +18 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/main.js +39 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/mixins/setDefaultLanguage.js +87 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/request/api/login.js +95 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/request/api.js +13 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/router.js +48 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/types.js +16 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/utils/formValidate.js +25 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/utils/isApp.js +18 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/utils/language.js +45 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/utils/myUtils.js +646 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/utils/timeFormat.js +23 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/utils/timesYMDHMS.js +27 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/views/js/mainInfo.js +374 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/views/js/maintenanceInfo.js +202 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/views/login.vue +458 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/views/ssoLogin.vue +230 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/views/ssoLogout.vue +58 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/vite.config.ts +237 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/.babelrc +8 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/.env.development +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/.env.production +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/.eslintrc.cjs +162 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/.prettierrc.cjs +37 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/auto-imports.d.ts +5 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/build/enteryJson.js +64 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/build/vite-addInfo-html.js +15 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/build/vite-addInfo-html.ts +38 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html +14 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/env.d.ts +7 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/index.html +25 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/package.json +94 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/css/element-plus/css-vars.css +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/css/element-plus/index.css +16957 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/css/reset-6-1.css +114 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.css +1135 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.json +1969 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.css +3535 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.json +6169 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/http/createAxios.js +372 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/images/index-loading.png +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/js/axios.min.js +3 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/js/font.js +58 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/js/getConfigInfoData.js +58 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/js/getLanguage.js +142 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/js/getLanguageOptions.js +51 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/themes/dark-6-1.css +430 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/themes/default-theme-6-1.js +48 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/themes/light-6-1.css +424 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/public/static/themes/themeConfig.json +42 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/App.vue +41 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/assets/images/template.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/hostMap.js +14 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/main.js +39 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/request/api/template.js +11 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/request/api.js +9 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/router.js +23 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/utils/setStorage.js +5 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/views/template.vue +49 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/tsconfig.json +21 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/tsconfig.node.json +10 -0
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/vite.config.ts +240 -0
- package/ganwei-iotcenter-index-6.2.0/pnpm-workspace.yaml +3 -0
- package/ganwei-pc.js +3 -0
- package/package.json +28 -0
- package/src/copyConfig.js +85 -0
- package/src/copyDemo.js +21 -0
- package/src/create-app.js +90 -0
- package/src/createQuestions.js +46 -0
- package/src/index.js +63 -0
- package/src/remove-depencies.js +27 -0
package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/light.css
ADDED
|
@@ -0,0 +1,414 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--color-primary: #000;
|
|
3
|
+
--color-text-primary: #333;
|
|
4
|
+
--color-text2: #595959;
|
|
5
|
+
--color-text1: #606266;
|
|
6
|
+
--input-btn-color: #d3d8e2;
|
|
7
|
+
--border-color-base: rgba(19, 18, 18, 0.171);
|
|
8
|
+
--background-color-base: #f2f3f5;
|
|
9
|
+
--background1: #f5f5f5;
|
|
10
|
+
--background2: #fff;
|
|
11
|
+
--inputbackground3: #fff;
|
|
12
|
+
--front-color: #fff;
|
|
13
|
+
--btn-background-primary: #fff;
|
|
14
|
+
--btn-color-primary: #262626;
|
|
15
|
+
--btn-color: #fff;
|
|
16
|
+
--control-background: #3875ff;
|
|
17
|
+
--btn-hover-primary: #2769c2;
|
|
18
|
+
--background-color-light: #f5f5f5;
|
|
19
|
+
--table-icon-edit-color: #346ae4;
|
|
20
|
+
--table-icon-del-color: #bf2533;
|
|
21
|
+
--success: #63e03f;
|
|
22
|
+
--alarm: #f22433;
|
|
23
|
+
--warning: #f5bb36;
|
|
24
|
+
--h-color: #5386bb;
|
|
25
|
+
--mask: rgba(0, 0, 0, 0.3);
|
|
26
|
+
|
|
27
|
+
--nav-bgColor: #0754aa;
|
|
28
|
+
--nav-bgColor1: #181c29;
|
|
29
|
+
--nav-bgColor2: transparent;
|
|
30
|
+
--nav-bgColor3: #2f3d4a;
|
|
31
|
+
--nav-bgColor4: #181c29;
|
|
32
|
+
--nav-bgColor5: #fff;
|
|
33
|
+
--nav-bgColor6: #eff4fe;
|
|
34
|
+
--nav-txColor: rgba(240, 244, 255, 0.56);
|
|
35
|
+
--nav-txColor1: #555;
|
|
36
|
+
|
|
37
|
+
--asideColor: #fff;
|
|
38
|
+
|
|
39
|
+
--nav-iconColor: #606266;
|
|
40
|
+
--nav-hoverBgColor: #181c29;
|
|
41
|
+
--nav-hoverTxColor: #f0f4ff;
|
|
42
|
+
--nav-hoverIconColor: #f0f4ff;
|
|
43
|
+
--nav-selBgColor: linear-gradient(to bottom right, #2e9bff, #1ecff7);
|
|
44
|
+
--nav-selBgColor2: #00b4ed;
|
|
45
|
+
--nav-selTxColor: #f0f4ff;
|
|
46
|
+
--nav-selIconColor: #f0f4ff;
|
|
47
|
+
|
|
48
|
+
--btn-bgColor: #3875ff;
|
|
49
|
+
--btn-bgColor1: #fff;
|
|
50
|
+
--btn-bgColor2: #f22433;
|
|
51
|
+
--btn-bgColor3: #fff;
|
|
52
|
+
--btn-bgColor4: #fff;
|
|
53
|
+
--btn-bgColor5: linear-gradient(to bottom right, #2e9bff, #1ecff7);
|
|
54
|
+
--btn-bgColor7: #eafaf4;
|
|
55
|
+
--btn-bgColor8: #fff;
|
|
56
|
+
--btn-bgColor9: #fff;
|
|
57
|
+
--btn-bgColor10: #ebefef;
|
|
58
|
+
--btn-disableBgColor: #0c79dd;
|
|
59
|
+
--btn-selectBgColor: #3875ff;
|
|
60
|
+
--btn-txColor: #606266;
|
|
61
|
+
--btn-txColor1: #3875ff;
|
|
62
|
+
--btn-txColor2: #262626;
|
|
63
|
+
--btn-txColor3: #fff;
|
|
64
|
+
--btn-txColor4: #f56c6c;
|
|
65
|
+
--btn-txColor5: #fff;
|
|
66
|
+
--btn-txColor6: #f22433;
|
|
67
|
+
--btn-bgColor6: #13c2c2;
|
|
68
|
+
--btn-txColor7: #313747;
|
|
69
|
+
--btn-txColor8: #2cd08c;
|
|
70
|
+
--btn-txColor9: #333333;
|
|
71
|
+
--btn-txColor10:#0987e5;
|
|
72
|
+
--btn-iconColor: #e6edff;
|
|
73
|
+
--btn-iconColor1: #d3d8e2;
|
|
74
|
+
--btn-iconColor2: #3875ff;
|
|
75
|
+
--btn-borderColor: #3875ff;
|
|
76
|
+
--btn-borderColor1: rgba(240, 244, 255, 0.16);
|
|
77
|
+
--btn-borderColor2: #e6e6e6;
|
|
78
|
+
--btn-borderColor3: #d5f6e8;
|
|
79
|
+
--btn-hoverBgColor: #fff;
|
|
80
|
+
--btn-hoverBgColor1: #ecf5ff;
|
|
81
|
+
--btn-hoverBgColor2: #2769c2;
|
|
82
|
+
--btn-hoverBgColor3: #253045;
|
|
83
|
+
--btn-hoverBgColor4: #409eff;
|
|
84
|
+
--btn-hoverBgColor5: linear-gradient(to bottom right, #1ecff7, #2e9bff);
|
|
85
|
+
--btn-hoverTXColor: #3875ff;
|
|
86
|
+
--btn-hoverTXColor1: #f0f4ff;
|
|
87
|
+
--btn-hoverBorColor: #264069;
|
|
88
|
+
|
|
89
|
+
--tab-bgColor: #f5f5f5;
|
|
90
|
+
--tab-bgColor2: #f5f5f5;
|
|
91
|
+
--tab-bgColor3: #2ba3fd;
|
|
92
|
+
--tab-bgColor4: #fff;
|
|
93
|
+
--tab-bgColor5: #f2f3f5;
|
|
94
|
+
--tab-bgColor6: #dbdee5;
|
|
95
|
+
--tab-bgColor7: transparent;
|
|
96
|
+
--tab-txColor: #333;
|
|
97
|
+
--tab-txColor1: rgba(51, 51, 51, 0.64);
|
|
98
|
+
--tab-txColor2: #333;
|
|
99
|
+
--tab-borderColor: #e1e3e6;
|
|
100
|
+
--tab-borderColor1: #eeeeee;
|
|
101
|
+
--tab-selBgColor: #fff;
|
|
102
|
+
--tab-selBgColor2: #fff;
|
|
103
|
+
--tab-selBgColor3: #fff;
|
|
104
|
+
--tab-selBgColor4: #1a90ff;
|
|
105
|
+
--tab-selBgColor5: #1a90ff;
|
|
106
|
+
--tab-selTXColor: #333;
|
|
107
|
+
--tab-selTXColor1: #ffffff;
|
|
108
|
+
--tab-hoverTXColor: #3875ff;
|
|
109
|
+
--tab-hoverBg: #fff;
|
|
110
|
+
--tab-actColor: #f5f7fa;
|
|
111
|
+
|
|
112
|
+
--input-bgColor: #fff;
|
|
113
|
+
--input-bgColor2: #919191;
|
|
114
|
+
--input-bgColor3: #fff;
|
|
115
|
+
--input-bgColor4: #fff;
|
|
116
|
+
--input-bgColor5: #fff;
|
|
117
|
+
--input-bgColor6: #f8f8f8;
|
|
118
|
+
--input-disabled-bgColor: #f8f8f8;
|
|
119
|
+
--input-btnBgColor3: #fff;
|
|
120
|
+
--input-btnBorColor: #e6e6e6;
|
|
121
|
+
--input-btnBgColor: #333;
|
|
122
|
+
--input-txColor: #d3d8e2;
|
|
123
|
+
--input-txColor1: #000;
|
|
124
|
+
--input-plaColor: #2d2e30;
|
|
125
|
+
--input-plaColor1: #8c8c8c;
|
|
126
|
+
--input-iconColor: #8f9091;
|
|
127
|
+
--input-iconColor1: #f0f4ff;
|
|
128
|
+
--input-borderColor: rgba(240, 244, 255, 0.16);
|
|
129
|
+
--input-borderColor1: rgba(235, 236, 240, 0.5);
|
|
130
|
+
--input-borderColor2: #e6e6e6;
|
|
131
|
+
--input-borderColor3: #e6e6e6;
|
|
132
|
+
--input-selBorColor: #3875ff;
|
|
133
|
+
--input-hoverBorColor: #8f9091;
|
|
134
|
+
|
|
135
|
+
--textarea-fontColor: #262626;
|
|
136
|
+
--textarea-backgroundColor: #fafafa;
|
|
137
|
+
--textarea-borderColor: #eee;
|
|
138
|
+
|
|
139
|
+
--txt-color-1: #3875ff;
|
|
140
|
+
--txt-color-2: #ff7a00;
|
|
141
|
+
|
|
142
|
+
--table-headerBgColor: #fafafa;
|
|
143
|
+
--table-headerBgColor2: #f2f6ff;
|
|
144
|
+
--table-txColor: #333;
|
|
145
|
+
--table-headerTXColor: #333;
|
|
146
|
+
--table-borderColor: #e6e6e6;
|
|
147
|
+
--table-rowBgColor: #fff;
|
|
148
|
+
--table-hoverRowBgColor: #e9f5fe;
|
|
149
|
+
--table-rowBgColor-strip: #fff;
|
|
150
|
+
--table-rowBgColor-strip2: #fff;
|
|
151
|
+
--table-iconEdit: #346ae4;
|
|
152
|
+
--table-iconDel: #bf2533;
|
|
153
|
+
--table-borderBottomColor: #fff;
|
|
154
|
+
|
|
155
|
+
--con-textColor1: #333;
|
|
156
|
+
--con-textColor2: #595959;
|
|
157
|
+
--con-textColor3: rgba(240, 244, 255, 0.64);
|
|
158
|
+
--con-textColor4: #606266;
|
|
159
|
+
--con-textColor5: rgba(240, 244, 255, 0.32);
|
|
160
|
+
--con-textColor6: rgba(240, 244, 255, 0.16);
|
|
161
|
+
--con-textColor7: rgba(240, 244, 255, 0.08);
|
|
162
|
+
--con-textColor8: #262626;
|
|
163
|
+
--con-textColor9: #262626;
|
|
164
|
+
--con-textColor10: #f0f4ff;
|
|
165
|
+
--con-textColor11: #409eff;
|
|
166
|
+
--con-textColor12: #0f283e;
|
|
167
|
+
--con-textColor13: linear-gradient(to top, #2c75d8, #61c5fe);
|
|
168
|
+
--con-textColor14: #0f283e;
|
|
169
|
+
--con-textColor15: #222222;
|
|
170
|
+
--con-textColor16: #999999;
|
|
171
|
+
--con-textColor17: #222222;
|
|
172
|
+
--con-textColor18: #777777;
|
|
173
|
+
--con-textColor19: #0f283e;
|
|
174
|
+
--con-textColor20: #666666;
|
|
175
|
+
--con-textColor21: #ff7700;
|
|
176
|
+
--con-textColor22: #0790ff;
|
|
177
|
+
--con-textColor23: #1c93fe;
|
|
178
|
+
--con-textColor24: #333333;
|
|
179
|
+
--con-textColor25: #666666;
|
|
180
|
+
--con-textColor26: #333333;
|
|
181
|
+
--con-textColor27: #333333;
|
|
182
|
+
--con-textColor28: #999999;
|
|
183
|
+
--con-textColor29: #0dbc00;
|
|
184
|
+
--con-bgColor1: #090f1a;
|
|
185
|
+
--con-bgColor2: #f5f5f5;
|
|
186
|
+
--con-bgColor3: #f5f5f5;
|
|
187
|
+
--con-bgColor4: #fff;
|
|
188
|
+
--con-bgColor5: #f5f5f5;
|
|
189
|
+
--con-bgColor5-1: #fff;
|
|
190
|
+
--con-bgColor6: #fff;
|
|
191
|
+
--con-bgColor6-1: #f9f9f9;
|
|
192
|
+
--con-bgColor7: #fff;
|
|
193
|
+
--con-bgColor8: #fff;
|
|
194
|
+
--con-bgColor9: #697073;
|
|
195
|
+
--con-bgColor10: #fff;
|
|
196
|
+
--con-bgColor11: #fff;
|
|
197
|
+
--con-bgColor12: #2ba3fd;
|
|
198
|
+
--con-bgColor13: linear-gradient(-43deg, rgba(39, 121, 230, 0.7) 4%, rgba(39, 176, 230, 0.9) 94%);
|
|
199
|
+
--con-bgColor14: linear-gradient(90deg, #104cb3, #16a6e2);
|
|
200
|
+
--con-bgColor15: #104cb3;
|
|
201
|
+
--con-bgColor16: transparent;
|
|
202
|
+
--con-bgColor17: #12202e;
|
|
203
|
+
--con-bgColor18: #fff;
|
|
204
|
+
--con-bgColor19: #fff;
|
|
205
|
+
--con-bgColor20: #fff;
|
|
206
|
+
--con-bgColor21: #f1f4f4;
|
|
207
|
+
--con-bgColor22: #f2f3f5;
|
|
208
|
+
--con-bgColor23: #f5f5f5;
|
|
209
|
+
--con-bgColor24: #f1f4f4;
|
|
210
|
+
--con-bgColor25: #dfdfdf;
|
|
211
|
+
--con-bgColor26: white;
|
|
212
|
+
--con-bgColor27: #f1f4f4;
|
|
213
|
+
--con-bgColor28: #f1f4f4;
|
|
214
|
+
--con-bgColor29: #ffffff;
|
|
215
|
+
--con-bgColor30: #efefef;
|
|
216
|
+
--con-bgColor31: #ffffff;
|
|
217
|
+
--con-borderColor: #e6e6e6;
|
|
218
|
+
--con-borderColor1: transparent;
|
|
219
|
+
--con-borderColor2: rgba(240, 244, 255, 0.08);
|
|
220
|
+
--con-borderColor3: #cccccc;
|
|
221
|
+
--con-borderColor4: #cccccc;
|
|
222
|
+
--con-borderColor5: #eeeeee;
|
|
223
|
+
--con-borderHoverColor: #c0c4cc;
|
|
224
|
+
--con-borderHoverColor2: #5d709b;
|
|
225
|
+
|
|
226
|
+
--con-themeColor: #3875ff;
|
|
227
|
+
--con-themeColor2: #2669ec;
|
|
228
|
+
--con-successColor: #63e03f;
|
|
229
|
+
--con-alarmColor: #f22433;
|
|
230
|
+
--con-alarmColor2: #f73231;
|
|
231
|
+
--con-warningColor: #f5bb36;
|
|
232
|
+
|
|
233
|
+
--border-color-1: #cccccc;
|
|
234
|
+
--border-color-2: #d9d9d9;
|
|
235
|
+
--border-color-3: #d9d9d9;
|
|
236
|
+
--border-color-4: #ffffff;
|
|
237
|
+
--border-color-5: #e6e6e6;
|
|
238
|
+
--bor-default: #e6e6e6;
|
|
239
|
+
--bor-primary: #3875ff;
|
|
240
|
+
--bor-danger: #f22433;
|
|
241
|
+
--bor-light: #fff;
|
|
242
|
+
|
|
243
|
+
--dialog-textColor1: #333;
|
|
244
|
+
--dialog-textColor2: rgba(0, 0, 0, 0.65);
|
|
245
|
+
--dialog-labelBgColor: #eee;
|
|
246
|
+
--dialog-bgColor: #fff;
|
|
247
|
+
--dialog-bgColor2: #f5f5f5;
|
|
248
|
+
--dialog-bgColor3: #fff;
|
|
249
|
+
--dialog-bgColor4: #fff;
|
|
250
|
+
--dialog-groupBgColor: #3875ff;
|
|
251
|
+
--dialog-groupBgColor2: #00b4ed;
|
|
252
|
+
--dialog-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.2);
|
|
253
|
+
|
|
254
|
+
--tips-textColor1: #f0f4ff;
|
|
255
|
+
--tips-textColor2: rgba(240, 244, 255, 0.56);
|
|
256
|
+
--tips-bgColor: #252833;
|
|
257
|
+
--tips-text: #999999;
|
|
258
|
+
|
|
259
|
+
--sel-textColor: #f0f4ff;
|
|
260
|
+
--sel-bgColor: #0c0e14;
|
|
261
|
+
--sel-tagtextColor: #606266;
|
|
262
|
+
--sel-tagBgColor: #ebefef;
|
|
263
|
+
--sel-tagIconColor: #606266;
|
|
264
|
+
|
|
265
|
+
--dropdown-bgColor: #fff;
|
|
266
|
+
--dropdown-bgColor1: rgba(255, 255, 255, 0.8);
|
|
267
|
+
|
|
268
|
+
--page-textColor: #595959;
|
|
269
|
+
--page-textColor1: #888;
|
|
270
|
+
--page-borColor: #e6e6e6;
|
|
271
|
+
--page-bgColor: #3875ff;
|
|
272
|
+
--page-bgColor2: #ffffff;
|
|
273
|
+
|
|
274
|
+
--tree-bgColor: #fff;
|
|
275
|
+
--tree-bgColor1: #fff;
|
|
276
|
+
--tree-bgColor2: #fff;
|
|
277
|
+
--tree-bgColor3: #fff;
|
|
278
|
+
--tree-bgColor4: #f1efef;
|
|
279
|
+
--tree-bgColor5: #ffffff;
|
|
280
|
+
--tree-bgColor6: #f2f3f5;
|
|
281
|
+
--tree-bgColor7: #fff;
|
|
282
|
+
--tree-bgColor8: rgba(255, 255, 255, 0.5);
|
|
283
|
+
--tree-txColor: #595959;
|
|
284
|
+
--tree-txColor1: #606266;
|
|
285
|
+
--tree-iconColor: #979797;
|
|
286
|
+
--tree-selBgColor: #ffffff;
|
|
287
|
+
--tree-selBgColor1: #3875ff;
|
|
288
|
+
--tree-selTXColor: #fff;
|
|
289
|
+
--tree-linearColor: #8c8c8c;
|
|
290
|
+
--tree-borderColor: #e6e6e6;
|
|
291
|
+
--tree-borderColor1: #e6e6e6;
|
|
292
|
+
--tree-labelBg: #d9d9d9;
|
|
293
|
+
|
|
294
|
+
--radio-bgColor: #fff;
|
|
295
|
+
--radio-selectBg: #3875ff;
|
|
296
|
+
--radio-selectBorder: #fff;
|
|
297
|
+
|
|
298
|
+
--switch-bgColor: #d9d9d9;
|
|
299
|
+
--switch-bgColor1: #337cef;
|
|
300
|
+
|
|
301
|
+
--popover-bgColor: #fff;
|
|
302
|
+
--popover-bgColor2: #fff;
|
|
303
|
+
--popover-bgColor3: #fff;
|
|
304
|
+
--popover-txColor: #606266;
|
|
305
|
+
--popover-borderColor: #e6e6e6;
|
|
306
|
+
--popover-borderColor2: #595959;
|
|
307
|
+
--popover-borderColor3: #eee;
|
|
308
|
+
--popover-hoverBgColor: #f5f7fa;
|
|
309
|
+
--popover-hoverTXColor: #595959;
|
|
310
|
+
|
|
311
|
+
--scrollbar-bgColor: #e1e3e6;
|
|
312
|
+
|
|
313
|
+
--avater-textColor: #fff;
|
|
314
|
+
--avater-baColor: #c0c4cc;
|
|
315
|
+
|
|
316
|
+
--datePanelBg: #fff;
|
|
317
|
+
--timeHeaderColor: #333;
|
|
318
|
+
--pickerHeaderBg: #f2f3f5;
|
|
319
|
+
--iconBtnColor: #999;
|
|
320
|
+
--pickRangeBg: #dfe9ff;
|
|
321
|
+
--footerBtnColor: #666666;
|
|
322
|
+
--datePick-selectRangeBg: #f5f5f5;
|
|
323
|
+
--datePick-selectColor: #f0f4ff;
|
|
324
|
+
--timePick-hoverBg: #f5f7fa;
|
|
325
|
+
|
|
326
|
+
--noData-fontColor: #252833;
|
|
327
|
+
--noData-fontColor1: rgba(0, 0, 0, 0.65);
|
|
328
|
+
|
|
329
|
+
--fc-todayBg: #d9f5fe;
|
|
330
|
+
|
|
331
|
+
--radar-bgColor: #fcfdff;
|
|
332
|
+
--radar-title: #60a3ff;
|
|
333
|
+
|
|
334
|
+
--tag-title: #666666;
|
|
335
|
+
--tag-unit: #666666;
|
|
336
|
+
--tag-number1: #ff3a3a;
|
|
337
|
+
--tag-number2: #666666;
|
|
338
|
+
--tag-number3: #ff7700;
|
|
339
|
+
--tag-number4: #0dbc00;
|
|
340
|
+
--tag-number5: #999999;
|
|
341
|
+
|
|
342
|
+
--timeLine-default: #eeeeee;
|
|
343
|
+
--timeLine-infosBg: #f1f4f4;
|
|
344
|
+
--timeLine-dot1: #fff;
|
|
345
|
+
--timeLine-dotBorder1: #d7e3ff;
|
|
346
|
+
--timeLine-dotBorder2: #ccc;
|
|
347
|
+
--timeLine-line: #aeaeae;
|
|
348
|
+
|
|
349
|
+
--list-bgColor-1: #ffffff;
|
|
350
|
+
--list-bgColor-2: #f0f4ff;
|
|
351
|
+
--list-bgColor-3: #ffffff;
|
|
352
|
+
--list-labelBg: #f2f6ff;
|
|
353
|
+
|
|
354
|
+
--snapshots-bg: #fff;
|
|
355
|
+
--snapshots-bor: -webkit-linear-gradient(-40deg, transparent 0%, transparent 10%, transparent 90%, transparent 100%) 10;
|
|
356
|
+
--snapshot-bor: transparent;
|
|
357
|
+
--snapshot-bg: #fff;
|
|
358
|
+
--snapshot-bs: transparent;
|
|
359
|
+
--snapshot-number: #0f283e;
|
|
360
|
+
|
|
361
|
+
--splitline-bor1: #e7e7e7;
|
|
362
|
+
--splitline-bor2: #e7e7e7;
|
|
363
|
+
|
|
364
|
+
--notifyBg: #fff;
|
|
365
|
+
--notifytitle: #262626;
|
|
366
|
+
--notifytext: #606266;
|
|
367
|
+
|
|
368
|
+
--line-color: #bfbfbf;
|
|
369
|
+
--line-color-1: #ccc;
|
|
370
|
+
--line-finish: #3875ff;
|
|
371
|
+
|
|
372
|
+
--types-fc-opacity: #0f283e;
|
|
373
|
+
--types-fc-opacity2: #7d7d7d;
|
|
374
|
+
--types-fc-opacity3: #999999;
|
|
375
|
+
--types-fc: #0f283e;
|
|
376
|
+
|
|
377
|
+
--active-bg: #3875ff;
|
|
378
|
+
--active-fc: #fff;
|
|
379
|
+
|
|
380
|
+
--descriptions-bor: #ced9df;
|
|
381
|
+
--descriptions-fc: #0f283e;
|
|
382
|
+
|
|
383
|
+
--loadingBg: #7fa2f3;
|
|
384
|
+
--loading-bgColor: rgba(255, 255, 255, 0.9);
|
|
385
|
+
|
|
386
|
+
--img-color-1: linear-gradient(180deg, #f2f3f5 0%, #757d93 100%);
|
|
387
|
+
--img-color-2: #8b8f97;
|
|
388
|
+
|
|
389
|
+
--top-menu-bg: #eff4fe;
|
|
390
|
+
--top-menu-fc: #626d84;
|
|
391
|
+
|
|
392
|
+
--theme-hover: #e1e7eb;
|
|
393
|
+
|
|
394
|
+
--plugin-blue1: #0396ff;
|
|
395
|
+
--plugin-blue2: #2d94ff;
|
|
396
|
+
--plugin-bgColor1: #f9f9f9;
|
|
397
|
+
--plugin-bgColor2: #fff;
|
|
398
|
+
--plugin-bgColor3: #0396ff;
|
|
399
|
+
--plugin-bgColor4:#e8f3ff;
|
|
400
|
+
--plugin-bgColor5:#fff;
|
|
401
|
+
--plugin-radial-bgColor: #f9f9f9;
|
|
402
|
+
--plugin-tagColor1: #c6c6c6;
|
|
403
|
+
--plugin-tagColor2: #e6e6e6;
|
|
404
|
+
--plugin-tagColor3: #e8f3ff;
|
|
405
|
+
--plugin-tagColor4: #FFCB3E;
|
|
406
|
+
--plugin-borderColor1:#e3e3e3;
|
|
407
|
+
--plugin-text1:#f0f4ff;
|
|
408
|
+
--plugin-text2:#fff;
|
|
409
|
+
--plugin-titleColor1:#0e7cce;
|
|
410
|
+
--plugin-downloadColor:#000;
|
|
411
|
+
|
|
412
|
+
--allocation-menu-active-background: #3875ff;
|
|
413
|
+
--allocation-menu-active-color: white;
|
|
414
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"theme": {
|
|
3
|
+
"supportThemes": [{
|
|
4
|
+
"value": "dark",
|
|
5
|
+
"color": "#3d4a63",
|
|
6
|
+
"name": "黑色",
|
|
7
|
+
"name-en": "Black",
|
|
8
|
+
"skin": "/static/images/index-skin-dark.svg",
|
|
9
|
+
"logo": "/static/images/index-logo-src-dark.svg",
|
|
10
|
+
"fullScreen": "/static/images/index-fullscreen-dark.svg",
|
|
11
|
+
"user": "/static/images/index-user-dark.svg",
|
|
12
|
+
"outFullScreeen": "/static/images/index-tuchuquanping-dark.svg",
|
|
13
|
+
"contentFullScreen": "/static/images/index-contentfull-dark.svg",
|
|
14
|
+
"appPreview": "/static/images/index-apppreview-dark.svg"
|
|
15
|
+
}, {
|
|
16
|
+
"value": "light",
|
|
17
|
+
"color": "#ffffff",
|
|
18
|
+
"name": "白色",
|
|
19
|
+
"name-en": "White",
|
|
20
|
+
"skin": "/static/images/index-skin-light.svg",
|
|
21
|
+
"logo": "/static/images/index-logo-src-light.svg",
|
|
22
|
+
"fullScreen": "/static/images/index-fullscreen-light.svg",
|
|
23
|
+
"user": "/static/images/index-user-light.svg",
|
|
24
|
+
"outFullScreeen": "/static/images/index-tuchuquanping-light.svg",
|
|
25
|
+
"contentFullScreen": "/static/images/index-contentfull-light.svg",
|
|
26
|
+
"appPreview": "/static/images/index-apppreview-light.svg"
|
|
27
|
+
},{
|
|
28
|
+
"value": "green",
|
|
29
|
+
"color": "#02716b",
|
|
30
|
+
"name": "绿色",
|
|
31
|
+
"name-en": "Green",
|
|
32
|
+
"skin": "/static/images/index-skin-green.svg",
|
|
33
|
+
"logo": "/static/images/index-logo-src-green.svg",
|
|
34
|
+
"fullScreen": "/static/images/index-fullscreen-green.svg",
|
|
35
|
+
"user": "/static/images/index-user-green.svg",
|
|
36
|
+
"outFullScreeen": "/static/images/index-tuchuquanping-green.svg",
|
|
37
|
+
"contentFullScreen": "/static/images/index-contentfull-green.svg",
|
|
38
|
+
"appPreview": "/static/images/index-apppreview-green.svg"
|
|
39
|
+
}
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="app">
|
|
3
|
+
<el-config-provider :locale="locale">
|
|
4
|
+
<router-view v-cloak v-if="isShow"/>
|
|
5
|
+
</el-config-provider>
|
|
6
|
+
</div>
|
|
7
|
+
</template>
|
|
8
|
+
<script>
|
|
9
|
+
import muduleObserve from '@ganwei-web/gw-base-utils-plus/moduleObserve/dist/index.es.js'
|
|
10
|
+
import setDefaultLanguage from './mixins/setDefaultLanguage'
|
|
11
|
+
export default {
|
|
12
|
+
mixins: [muduleObserve, setDefaultLanguage],
|
|
13
|
+
name: 'App',
|
|
14
|
+
data () {
|
|
15
|
+
return {
|
|
16
|
+
isNoRequestObserveGetPublic: true
|
|
17
|
+
};
|
|
18
|
+
},
|
|
19
|
+
mounted () {
|
|
20
|
+
document.documentElement.setAttribute('class', localStorage.theme || 'dark')
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
</script>
|
|
24
|
+
<style lang="scss">
|
|
25
|
+
html,
|
|
26
|
+
body,
|
|
27
|
+
#app,.app {
|
|
28
|
+
width: 100%;
|
|
29
|
+
height: 100%;
|
|
30
|
+
padding: 0!important;
|
|
31
|
+
overflow: hidden;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.el-select-dropdown {
|
|
35
|
+
background-color: #fff;
|
|
36
|
+
border: none !important;
|
|
37
|
+
|
|
38
|
+
.el-select-dropdown__item {
|
|
39
|
+
color: #333 !important;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.el-message {
|
|
44
|
+
background-color: #fff;
|
|
45
|
+
border-color: #fff;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.el-popper .el-popper__arrow::before,
|
|
49
|
+
.el-select__popper.el-popper[data-popper-placement^=bottom] .el-popper__arrow::before {
|
|
50
|
+
border-color: white !important;
|
|
51
|
+
background-color: white !important
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
::-webkit-scrollbar-thumb {
|
|
55
|
+
background-color: #e1e3e6 !important;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
input:-webkit-autofill {
|
|
59
|
+
-webkit-text-fill-color: black;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.el-message-box {
|
|
63
|
+
background-color: white !important;
|
|
64
|
+
|
|
65
|
+
.el-message-box__title,
|
|
66
|
+
.el-message-box__message {
|
|
67
|
+
color: #333 !important;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
</style>
|
package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/alertHandle.scss
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
//统一弹窗属性设置
|
|
2
|
+
@mixin mobileAlertHeader {
|
|
3
|
+
height: 54px !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
@mixin mobileAlertBody {
|
|
7
|
+
height: calc(100% - 118px) !important;
|
|
8
|
+
overflow: auto;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@mixin mobileAlertFooter {
|
|
12
|
+
top: 0;
|
|
13
|
+
height: 64px !important;
|
|
14
|
+
line-height: 64px;
|
|
15
|
+
padding: 0 !important;
|
|
16
|
+
|
|
17
|
+
.el-button {
|
|
18
|
+
width: 60px !important;
|
|
19
|
+
height: 28px !important;
|
|
20
|
+
@include nativeBtn;
|
|
21
|
+
}
|
|
22
|
+
}
|
package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/src/assets/css/btnHandle.scss
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// 公共底层按钮
|
|
2
|
+
@mixin btn {
|
|
3
|
+
width: 100%;
|
|
4
|
+
color: $textColor_2;
|
|
5
|
+
display: block;
|
|
6
|
+
text-align: right;
|
|
7
|
+
margin: 0;
|
|
8
|
+
|
|
9
|
+
span {
|
|
10
|
+
width: 60px;
|
|
11
|
+
height: 28px;
|
|
12
|
+
line-height: 28px;
|
|
13
|
+
text-align: center;
|
|
14
|
+
font-size: 14px;
|
|
15
|
+
border-radius: 3px;
|
|
16
|
+
display: inline-block;
|
|
17
|
+
background-color: $n-frondHigh;
|
|
18
|
+
cursor: pointer;
|
|
19
|
+
|
|
20
|
+
&:nth-child(1) {
|
|
21
|
+
right: 70px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&:nth-child(2) {
|
|
25
|
+
background-color: $themeColor_1;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@mixin nativeBtn {
|
|
31
|
+
display: inline-block !important;
|
|
32
|
+
width: 60px;
|
|
33
|
+
height: 28px;
|
|
34
|
+
vertical-align: middle;
|
|
35
|
+
font-size: 14px;
|
|
36
|
+
}
|