@ganwei-web/ganwei-pc-cli 6.2.4 → 6.2.6
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.1/configuration/moduleConfiguration.json +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.env.development +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.env.production +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.env.test +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.env.development +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.env.production +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.env.test +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.env.production +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.env.test +1 -1
- package/ganwei-iotcenter-index-6.2.2/.gitignore +31 -0
- package/ganwei-iotcenter-index-6.2.2/.npmrc +1 -0
- package/ganwei-iotcenter-index-6.2.2/.nvmrc +1 -0
- package/ganwei-iotcenter-index-6.2.2/configuration/cleanNodeModule.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/configuration/gitClone.js +45 -0
- package/ganwei-iotcenter-index-6.2.2/configuration/moduleConfiguration.json +9 -0
- package/ganwei-iotcenter-index-6.2.2/configuration/updateModule.cjs +30 -0
- package/ganwei-iotcenter-index-6.2.2/init.cjs +30 -0
- package/ganwei-iotcenter-index-6.2.2/package.json +46 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.babelrc +4 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.env.development +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.env.production +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.eslintrc.cjs +176 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.gitignore +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/.prettierrc.cjs +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/auto-imports.d.ts +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/build/enteryJson.js +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/build/vite-addInfo-html.ts +38 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/components.d.ts +87 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/env.d.ts +7 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/index.html +31 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/package.json +90 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/element-plus/css-vars.css +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/element-plus/index.css +16959 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/element-ui/index.css +16075 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/equipStatus.css +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/index.css +15926 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/reset-6-1.css +180 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/css/reset.css +1992 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.css +1135 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.json +1969 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.css +4195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.json +7324 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/http/createAxios--/346/234/252/346/267/273/345/212/240SM/347/211/210/346/234/254.js +486 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/http/createAxios.js +434 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/head-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-dark.svg +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-green.svg +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-light.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-dark.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-green.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-light.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-green.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-light.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-contentfull.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-green.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-light.svg +12 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-loading.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-dark.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-green.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-light.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-small.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-logo-src.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-nopage-dark.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-nopage-green.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-nopage-light.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-dark.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-green.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-light.svg +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-skin-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-skin-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-skin-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-skin.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-dark.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-green.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-light.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-upgrade.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-user-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-user-green.svg +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-user-light.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-user.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-dark.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-green.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/login-bg.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/logo.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/menu-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/renew-message-dark.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/renew-message-green.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/renew-message-light.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/right-close.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/right-open.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-fullscreen.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-guzhang.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-jinggao.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-shezhi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-xinxi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-zichan.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/unread-message-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/unread-message-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/unread-message-light.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/images/webconfig-location.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/axios.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/drag.js +354 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/echarts.min.js +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js.gz +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/enc-base64-min.js +86 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/filereader.js +455 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/font.js +56 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/getConfigInfoData.js +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/getLanguage.js +232 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/getLanguageOptions.js +52 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/getUserPermissionList.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/h5player.min.js +311 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/hmac-sha256.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/jquery-3.4.1.min.js +4189 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/jquery.slim.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/jsencrypt.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/jszip.min.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/liveplayer-lib.min.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/moment.js +5670 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/pptxjs.min.js +14105 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/signalr.min.js +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/tXml.js +244 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/transformpcm.worker.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/vue-i18n.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/vue-router.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/vue.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/js/vuex.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/json/RAMScope.json +201 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/json/config.json +155 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/json/snapshot.json +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.css +246 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.js +5384 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/dark-6-1.css +430 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/dark.css +426 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/default-theme-6-1.js +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/default-theme.js +53 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/green-6-1.css +357 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/light-6-1.css +424 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/light.css +414 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/public/static/themes/themeConfig.json +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/App.vue +88 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/assets/plugins/encrypt.js +122 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/auto-import.d.ts +61 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/asideMenu/contractMenu.vue +216 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/asideMenu/menu.vue +195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/asideMenu/topNav.vue +256 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/contextMenu/index.js +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/contextMenu/index.vue +113 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.js +205 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.scss +248 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.vue +112 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/images/appconnect.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/index.vue +282 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.js +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.vue +10 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/equipAlarmDialog/index.vue +203 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/expirationReminder/index.vue +108 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.js +50 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.vue +10 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.js +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.scss +137 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.vue +23 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/ApprovalDialog.vue +147 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.js +331 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.scss +257 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.vue +61 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/RenewDialog.vue +97 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.js +95 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.scss +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.vue +8 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/renew.vue +278 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.js +45 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.scss +36 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.vue +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.js +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.scss +94 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.vue +35 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.js +147 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.scss +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.vue +8 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.js +108 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.scss +147 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.vue +33 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/forceEdit.js +78 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.js +265 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.scss +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.vue +39 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.js +94 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.scss +110 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.vue +95 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.js +68 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.vue +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.js +178 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.scss +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.vue +46 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/safeModeDialog/index.vue +195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.js +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.scss +95 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.vue +35 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.js +240 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.scss +158 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.vue +50 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.js +63 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.scss +40 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.vue +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.js +398 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.scss +136 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.vue +36 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.js +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.scss +44 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.vue +21 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/inputPassword/index.vue +65 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/isDebug/isDebug.vue +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/isDebug/warning.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/noAccess/noAccess.vue +78 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/noAccess/noPage.vue +68 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/sceneMonitor/index.js +120 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/toast/index.js +65 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/toast/index.vue +136 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/unreadMsg/listItem.vue +36 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/components/unreadMsg/unread.vue +265 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/hostMap.js +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/main.js +51 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/mixins/judgePermission.js +38 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/publish/pub.ts +28 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/request/api/frame.js +148 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/request/api.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/router.js +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/store.js +228 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/types.js +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/MFEManager.js +156 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/gwEquipCache.js +325 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/gwSignalr.js +66 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/historyExport.js +158 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/utils/setStorage.js +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/Index.vue +81 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/index.js +291 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/jumpIframe/index.vue +257 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/jumpIframe/preloadMethod.js +54 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/src/views/jumpIframe/queryParser.js +47 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/tsconfig.json +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/vite.config.ts +270 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.babelrc +8 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.env.development +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.env.production +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.eslintrc.cjs +162 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.gitignore +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/.prettierrc.cjs +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/auto-imports.d.ts +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/build/enteryJson.js +72 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/build/vite-addInfo-html.ts +38 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/env.d.ts +7 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/index.html +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/package.json +84 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/element-plus/css-vars.css +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/element-plus/index.css +16959 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/element-ui/index.css +16075 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/equipStatus.css +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/index.css +15926 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/reset-6-1.css +180 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/css/reset.css +1992 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.css +1135 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.json +1969 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.css +4195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.json +7324 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/http/createAxios--/346/234/252/346/267/273/345/212/240SM/347/211/210/346/234/254.js +486 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/http/createAxios.js +434 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/head-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-alarmIcon-dark.svg +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-alarmIcon-green.svg +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-alarmIcon-light.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-apppreview-dark.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-apppreview-green.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-apppreview-light.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-contentfull-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-contentfull-green.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-contentfull-light.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-contentfull.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen-green.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen-light.svg +12 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-loading.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-dark.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-green.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-light.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-small.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-logo-src.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-nopage-dark.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-nopage-green.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-nopage-light.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-normalIcon-dark.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-normalIcon-green.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-normalIcon-light.svg +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-skin-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-skin-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-skin-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-skin.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping-dark.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping-green.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping-light.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-upgrade.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-user-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-user-green.svg +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-user-light.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-user.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-warningIcon-dark.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-warningIcon-green.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/index-warningIcon-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/login-bg.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/logo.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/menu-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/renew-message-dark.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/renew-message-green.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/renew-message-light.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/right-close.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/right-open.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-fullscreen.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-guzhang.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-jinggao.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-shezhi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-xinxi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-zichan.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/unread-message-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/unread-message-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/unread-message-light.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/images/webconfig-location.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/axios.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/drag.js +354 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/echarts.min.js +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/element-ui/index.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/element-ui/index.js.gz +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/enc-base64-min.js +86 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/filereader.js +455 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/font.js +56 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/getConfigInfoData.js +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/getLanguage.js +232 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/getLanguageOptions.js +52 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/getUserPermissionList.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/h5player.min.js +311 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/hmac-sha256.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/jquery-3.4.1.min.js +4189 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/jquery.slim.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/jsencrypt.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/jszip.min.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/liveplayer-lib.min.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/moment.js +5670 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/pptxjs.min.js +14105 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/signalr.min.js +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/tXml.js +244 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/transformpcm.worker.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/vue-i18n.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/vue-router.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/vue.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/js/vuex.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/json/RAMScope.json +201 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/json/config.json +155 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/json/snapshot.json +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/lib/treeV2/treeV2.css +246 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/lib/treeV2/treeV2.js +5384 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/dark-6-1.css +430 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/dark.css +426 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/default-theme-6-1.js +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/default-theme.js +53 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/green-6-1.css +357 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/light-6-1.css +424 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/light.css +414 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/public/static/themes/themeConfig.json +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/App.vue +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/alertHandle.scss +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/browserScroll.scss +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/btnHandle.scss +36 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/containerHandle.scss +402 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/dialogStyle.scss +43 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/equipStatus.scss +88 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/index.scss +1358 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/inputStyle.scss +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/listHandle.scss +113 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/login.scss +335 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/mainInfo.scss +297 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/maintenanceInfo.scss +199 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/style.css +921 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/tableHandle.scss +147 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/css/txtHandle.scss +39 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_back.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_front.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_left.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_right.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/clouds_top.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/login-sso-error.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/images/logo-bg.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/assets/plugins/encrypt.js +122 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/declaration/declaration.scss +119 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/declaration/declaration.vue +109 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/declaration/declarationPacts.vue +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/loginBg.vue +281 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/checkEmailContainer.vue +134 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/inputEmailContainer.vue +128 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/modifyPasswordContainer.vue +138 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification - /345/211/257/346/234/254.vue" +4 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification.vue +223 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/directive/loadMore/loadMore.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/hostMap.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/main.js +39 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/mixins/setDefaultLanguage.js +87 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/request/api/login.js +95 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/request/api.js +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/router.js +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/types.js +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/formValidate.js +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/isApp.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/language.js +45 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/myUtils.js +646 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/timeFormat.js +23 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/utils/timesYMDHMS.js +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/js/mainInfo.js +374 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/js/maintenanceInfo.js +202 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/login.vue +459 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/mainInfo.vue +62 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/maintenanceInfo.vue +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/ssoLogin.vue +239 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/src/views/ssoLogout.vue +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/vite.config.ts +237 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.babelrc +8 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.env.development +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.env.production +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.eslintrc.cjs +162 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.gitignore +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/.prettierrc.cjs +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/auto-imports.d.ts +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/enteryJson.js +64 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/vite-addInfo-html.js +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/vite-addInfo-html.ts +38 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/env.d.ts +7 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/index.html +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/package.json +94 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/element-plus/css-vars.css +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/element-plus/index.css +16959 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/element-ui/index.css +16075 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/equipStatus.css +70 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/index.css +15926 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/reset-6-1.css +180 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/css/reset.css +1992 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.css +1135 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.json +1969 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.css +4195 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.json +7324 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff2 +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/http/createAxios--/346/234/252/346/267/273/345/212/240SM/347/211/210/346/234/254.js +486 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/http/createAxios.js +434 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/head-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-alarmIcon-dark.svg +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-alarmIcon-green.svg +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-alarmIcon-light.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-apppreview-dark.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-apppreview-green.svg +20 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-apppreview-light.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-contentfull-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-contentfull-green.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-contentfull-light.svg +16 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-contentfull.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-fullscreen-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-fullscreen-green.svg +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-fullscreen-light.svg +12 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-fullscreen.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-loading.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src-dark.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src-green.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src-light.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src-small.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-logo-src.svg +67 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-nopage-dark.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-nopage-green.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-nopage-light.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-normalIcon-dark.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-normalIcon-green.svg +32 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-normalIcon-light.svg +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-skin-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-skin-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-skin-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-skin.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-tuchuquanping-dark.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-tuchuquanping-green.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-tuchuquanping-light.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-tuchuquanping.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-upgrade.svg +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-user-dark.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-user-green.svg +27 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-user-light.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-user.svg +26 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-warningIcon-dark.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-warningIcon-green.svg +37 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/index-warningIcon-light.svg +15 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/login-bg-img.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/login-bg.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/logo.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/menu-background.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/renew-message-dark.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/renew-message-green.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/renew-message-light.svg +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/right-close.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/right-open.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-fullscreen.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-guzhang.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-jinggao.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-shezhi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-xinxi.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/systemsnapshot-zichan.png +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/unread-message-dark.svg +19 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/unread-message-green.svg +22 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/unread-message-light.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/images/webconfig-location.svg +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/axios.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/drag.js +354 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/echarts.min.js +25 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/element-ui/index.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/element-ui/index.js.gz +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/enc-base64-min.js +86 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/filereader.js +455 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/font.js +56 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/getConfigInfoData.js +57 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/getLanguage.js +232 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/getLanguageOptions.js +52 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/getUserPermissionList.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/h5player.min.js +311 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/hmac-sha256.js +18 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/jquery-3.4.1.min.js +4189 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/jquery.slim.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/jsencrypt.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/jszip.min.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/liveplayer-lib.min.js +1 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/moment.js +5670 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/pptxjs.min.js +14105 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/signalr.min.js +17 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/tXml.js +244 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/transformpcm.worker.js +58 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/vue-i18n.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/vue-router.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/vue.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/js/vuex.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/json/RAMScope.json +201 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/json/config.json +155 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/json/snapshot.json +34 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/lib/treeV2/treeV2.css +246 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/lib/treeV2/treeV2.js +5384 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/dark-6-1.css +430 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/dark.css +426 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/default-theme-6-1.js +48 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/default-theme.js +53 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/green-6-1.css +357 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/light-6-1.css +424 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/light.css +414 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/public/static/themes/themeConfig.json +42 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/App.vue +41 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/assets/images/template.jpg +0 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/hostMap.js +14 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/main.js +39 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/request/api/template.js +11 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/request/api.js +9 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/router.js +23 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/utils/setStorage.js +5 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/src/views/template.vue +49 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/tsconfig.json +21 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/tsconfig.node.json +10 -0
- package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/vite.config.ts +240 -0
- package/ganwei-iotcenter-index-6.2.2/pnpm-lock.yaml +7962 -0
- package/ganwei-iotcenter-index-6.2.2/pnpm-workspace.yaml +3 -0
- package/package.json +2 -1
- package/src/createQuestions.js +1 -0
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div id="ssoLogin" v-loading='loading' loading-type="2">
|
|
3
|
+
<div class="error-box" v-show="isError">
|
|
4
|
+
<img src="@/assets/images/login-sso-error.png">
|
|
5
|
+
<p class="error-txt">{{ errorTxt }}</p>
|
|
6
|
+
<el-button type="primary" @click="toBack">{{ $t('login.publics.button.confirm') }}</el-button>
|
|
7
|
+
</div>
|
|
8
|
+
</div>
|
|
9
|
+
</template>
|
|
10
|
+
<script>
|
|
11
|
+
export default {
|
|
12
|
+
data() {
|
|
13
|
+
return {
|
|
14
|
+
query: {},
|
|
15
|
+
urlConfig: null,
|
|
16
|
+
loginConfig: null,
|
|
17
|
+
loading: true,
|
|
18
|
+
isError: false,
|
|
19
|
+
errorTxt: ''
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
mounted() {
|
|
23
|
+
this.getSsoConfig();
|
|
24
|
+
},
|
|
25
|
+
methods: {
|
|
26
|
+
getSsoConfig() {
|
|
27
|
+
if (window.getConfigInfoData) {
|
|
28
|
+
window.getConfigInfoData().then(webConfig => {
|
|
29
|
+
if (!this.$route.params.appid) {
|
|
30
|
+
this.urlConfig = webConfig?.ssoConfig?.default?.ssoUrl
|
|
31
|
+
this.loginConfig = webConfig?.ssoConfig?.default?.ssoLogin;
|
|
32
|
+
} else {
|
|
33
|
+
this.urlConfig = webConfig?.ssoConfig[this.$route.params.appid]?.ssoUrl
|
|
34
|
+
this.loginConfig = webConfig?.ssoConfig[this.$route.params.appid]?.ssoLogin;
|
|
35
|
+
}
|
|
36
|
+
this.ssoLogin()
|
|
37
|
+
})
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
async ssoLogin() {
|
|
42
|
+
if (this.$route.query) {
|
|
43
|
+
this.query = this.$route.query;
|
|
44
|
+
let query = window.location.hash.split('?')[1];
|
|
45
|
+
if (query && this.query.url) {
|
|
46
|
+
this.query.url = new URLSearchParams(query).get('url');
|
|
47
|
+
}
|
|
48
|
+
if (window.location.search) {
|
|
49
|
+
let search = window.location.search.split('?')[1];
|
|
50
|
+
let searchObj = new URLSearchParams(search)
|
|
51
|
+
for (let i of searchObj.keys()) {
|
|
52
|
+
this.query[i] = searchObj.get(i);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
if (JSON.stringify(this.query) == '{}') {
|
|
58
|
+
// 判断是否需要进行重定向
|
|
59
|
+
if (this.urlConfig.method == 'redirect') {
|
|
60
|
+
// 判断参数是否被加到#之前,是的话重定向地址
|
|
61
|
+
if (window.location.search) {
|
|
62
|
+
let str = window.location.origin + window.location.pathname + window.location.hash + window.location.search
|
|
63
|
+
window.location.href = str;
|
|
64
|
+
} else {
|
|
65
|
+
window.location.href = this.urlConfig.api;
|
|
66
|
+
}
|
|
67
|
+
} else {
|
|
68
|
+
|
|
69
|
+
// 调用获取重定向地址接口
|
|
70
|
+
this.ssoUrlApi(this.urlConfig.api, this.urlConfig.method).then(res => {
|
|
71
|
+
if (res.data.code == 200) {
|
|
72
|
+
let data = res.data.data;
|
|
73
|
+
let { requestUrl, ...queryData } = data;
|
|
74
|
+
let url = `${data.requestUrl}?`
|
|
75
|
+
Object.keys(queryData).forEach((item, index) => {
|
|
76
|
+
if (index > 0) {
|
|
77
|
+
url += '&'
|
|
78
|
+
}
|
|
79
|
+
console.log(item, this.camel2UnderLine(item));
|
|
80
|
+
url += `${this.camel2UnderLine(item)}=${queryData[item]}`
|
|
81
|
+
})
|
|
82
|
+
url = url.replace(/\#/g, '%23');
|
|
83
|
+
|
|
84
|
+
window.location.href = url;
|
|
85
|
+
} else {
|
|
86
|
+
this.isError = true;
|
|
87
|
+
this.errorTxt = res.data.message;
|
|
88
|
+
}
|
|
89
|
+
this.loading = false;
|
|
90
|
+
}).catch(er => {
|
|
91
|
+
this.isError = true;
|
|
92
|
+
this.loading = false;
|
|
93
|
+
})
|
|
94
|
+
}
|
|
95
|
+
} else {
|
|
96
|
+
|
|
97
|
+
// 调用单点登录接口
|
|
98
|
+
this.ssoApi(this.loginConfig.api, this.loginConfig.method, this.query).then(res => {
|
|
99
|
+
if (res.data.code == 200) {
|
|
100
|
+
this.$message.success(this.$t('login.tips.loginSuccess'));
|
|
101
|
+
if (res.data.data) {
|
|
102
|
+
sessionStorage.userName = res.data.data.userName
|
|
103
|
+
}
|
|
104
|
+
sessionStorage.isSsoLogin = '1';
|
|
105
|
+
sessionStorage.ssoLoginAppId = this.$route.params.appid;
|
|
106
|
+
// 判断是否需要进行重定向
|
|
107
|
+
if (this.urlConfig.method == 'redirect') {
|
|
108
|
+
// 判断参数是否被加到#之前,是的话重定向地址
|
|
109
|
+
if (window.location.search) {
|
|
110
|
+
let str = window.location.origin + window.location.pathname + window.location.hash + window.location.search
|
|
111
|
+
window.location.href = str;
|
|
112
|
+
} else {
|
|
113
|
+
window.location.href = this.urlConfig.api;
|
|
114
|
+
}
|
|
115
|
+
} else if (this.query.url) {
|
|
116
|
+
try {
|
|
117
|
+
let url = new URL(window.location.origin + decodeURI(this.query.url));
|
|
118
|
+
const search = url.href.indexOf('?') > -1 ? url.href.split('?')[1] : ''
|
|
119
|
+
const urlSearchParams = new URLSearchParams(search)
|
|
120
|
+
const searchParams = new URLSearchParams(this.query)
|
|
121
|
+
const mergedParams = this.mergeURLSearchParams(searchParams, urlSearchParams)
|
|
122
|
+
mergedParams.delete('url')
|
|
123
|
+
let urlString = url.origin + url.pathname + url.hash.split('?')[0] + '?' + mergedParams.toString()
|
|
124
|
+
window.location.href = urlString
|
|
125
|
+
} catch (error) {
|
|
126
|
+
this.loading = false;
|
|
127
|
+
this.errorTxt = error.message;
|
|
128
|
+
this.isError = true;
|
|
129
|
+
}
|
|
130
|
+
} else {
|
|
131
|
+
const userAgent = navigator.userAgent.toLowerCase();
|
|
132
|
+
if (/mobile|android|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(userAgent)) {
|
|
133
|
+
this.$api.get('/APP/index.html').then(res => {
|
|
134
|
+
window.location.href = '/APP'
|
|
135
|
+
}).catch(err => {
|
|
136
|
+
if (err.status == 404) {
|
|
137
|
+
window.location.href = '/#/Index'
|
|
138
|
+
}
|
|
139
|
+
})
|
|
140
|
+
} else {
|
|
141
|
+
window.location.href = '/#/Index'
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// this.$router.push('/Index');
|
|
146
|
+
} else {
|
|
147
|
+
this.isError = true;
|
|
148
|
+
this.errorTxt = res.data.message;
|
|
149
|
+
}
|
|
150
|
+
this.loading = false;
|
|
151
|
+
}).catch(er => {
|
|
152
|
+
this.isError = true;
|
|
153
|
+
this.loading = false;
|
|
154
|
+
this.errorTxt = this.$t('login.tips.errorAppear');
|
|
155
|
+
})
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
},
|
|
159
|
+
|
|
160
|
+
// 可配置接口
|
|
161
|
+
ssoUrlApi(api, method) {
|
|
162
|
+
return this.Axios({
|
|
163
|
+
method: method,
|
|
164
|
+
url: api
|
|
165
|
+
});
|
|
166
|
+
},
|
|
167
|
+
|
|
168
|
+
// 可配置接口
|
|
169
|
+
ssoApi(api, method, data) {
|
|
170
|
+
return this.Axios({
|
|
171
|
+
method: method,
|
|
172
|
+
url: api,
|
|
173
|
+
data: method.toLowerCase() == 'get' ? null : data,
|
|
174
|
+
params: method.toLowerCase() == 'post' ? '' : data
|
|
175
|
+
});
|
|
176
|
+
},
|
|
177
|
+
|
|
178
|
+
toBack() {
|
|
179
|
+
window.history.back(-1);
|
|
180
|
+
},
|
|
181
|
+
|
|
182
|
+
camel2UnderLine(name) {
|
|
183
|
+
let isCamel = name.match(/^([a-z]+)([A-Z][a-z]*)$/);
|
|
184
|
+
if (isCamel) {
|
|
185
|
+
name = isCamel[1] + '_' + isCamel[2].toLowerCase();
|
|
186
|
+
}
|
|
187
|
+
return name;
|
|
188
|
+
},
|
|
189
|
+
|
|
190
|
+
mergeURLSearchParams(searchParams1, searchParams2) {
|
|
191
|
+
const mergedParams = new URLSearchParams();
|
|
192
|
+
for (const [key, value] of searchParams1) {
|
|
193
|
+
mergedParams.append(key, value);
|
|
194
|
+
}
|
|
195
|
+
for (const [key, value] of searchParams2) {
|
|
196
|
+
mergedParams.set(key, value);
|
|
197
|
+
}
|
|
198
|
+
return mergedParams;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
</script>
|
|
203
|
+
<style lang="scss" scoped>
|
|
204
|
+
#ssoLogin {
|
|
205
|
+
width: 100%;
|
|
206
|
+
height: 100%;
|
|
207
|
+
display: flex;
|
|
208
|
+
align-items: center;
|
|
209
|
+
justify-content: center;
|
|
210
|
+
|
|
211
|
+
.error-box {
|
|
212
|
+
width: 80%;
|
|
213
|
+
max-width: 570px;
|
|
214
|
+
text-align: center;
|
|
215
|
+
transform: translateY(-10px);
|
|
216
|
+
|
|
217
|
+
img {
|
|
218
|
+
width: 100%;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.error-txt {
|
|
222
|
+
font-size: 24px;
|
|
223
|
+
color: #90959b;
|
|
224
|
+
margin: 26px 0 28px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.el-button {
|
|
228
|
+
width: 160px;
|
|
229
|
+
font-size: 22px;
|
|
230
|
+
padding: 8px 20px;
|
|
231
|
+
|
|
232
|
+
&:not(:hover) {
|
|
233
|
+
background-color: #669eff;
|
|
234
|
+
border-color: #669eff;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
</style>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<a></a>
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script>
|
|
7
|
+
export default {
|
|
8
|
+
data () {
|
|
9
|
+
return {
|
|
10
|
+
url: ''
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
mounted () {
|
|
14
|
+
this.getSsoConfig();
|
|
15
|
+
},
|
|
16
|
+
methods: {
|
|
17
|
+
|
|
18
|
+
async getSsoConfig () {
|
|
19
|
+
if (window.top.getConfigInfoData) {
|
|
20
|
+
window.top.getConfigInfoData().then(webConfig => {
|
|
21
|
+
if (!this.$route.params.appid) {
|
|
22
|
+
this.config = webConfig.ssoConfig.default.ssoLogOut
|
|
23
|
+
} else {
|
|
24
|
+
this.config = webConfig.ssoConfig[this.$route.params.appid].ssoLogOut
|
|
25
|
+
}
|
|
26
|
+
})
|
|
27
|
+
}
|
|
28
|
+
await this.ssoLogout()
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
async ssoLogout () {
|
|
32
|
+
let ssoLogOut = await this.ssoUrlApi(this.config.api, this.config.method);
|
|
33
|
+
if (ssoLogOut.status == 200 && ssoLogOut.data && ssoLogOut.data.data) {
|
|
34
|
+
this.ssoLogOutConfig = ssoLogOut.data.data;
|
|
35
|
+
let { serviceurl, ...queryData } = this.ssoLogOutConfig;
|
|
36
|
+
let url = `${serviceurl}?`
|
|
37
|
+
Object.keys(queryData).forEach((item, index) => {
|
|
38
|
+
if (index > 0) {
|
|
39
|
+
url += '&'
|
|
40
|
+
}
|
|
41
|
+
url += `${item}=${queryData[item]}`
|
|
42
|
+
})
|
|
43
|
+
url = url.replace(/\#/g, '%23');
|
|
44
|
+
window.top.location.href = serviceurl ? url : '/';
|
|
45
|
+
} else if (ssoLogOut.status == 200) {
|
|
46
|
+
window.top.location.href = '/';
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
ssoUrlApi (api, method) {
|
|
50
|
+
return this.Axios({
|
|
51
|
+
method: method,
|
|
52
|
+
url: api
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
</script>
|
|
58
|
+
<style lang="scss" scoped></style>
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
import { defineConfig, loadEnv } from "vite"
|
|
2
|
+
import vue from '@vitejs/plugin-vue'
|
|
3
|
+
import path, { resolve } from "path"
|
|
4
|
+
import autoprefixer from "autoprefixer"
|
|
5
|
+
import AutoImport from "unplugin-auto-import/vite"
|
|
6
|
+
import { visualizer } from "rollup-plugin-visualizer"
|
|
7
|
+
import { createHtmlPlugin } from "vite-plugin-html"
|
|
8
|
+
import { name } from "./package.json"
|
|
9
|
+
import stats from "./build/vite-plugin-stats-html"
|
|
10
|
+
import getEntryPath from "./build/enteryJson.js"
|
|
11
|
+
import viteAddInfoHtml from './build/vite-addInfo-html'
|
|
12
|
+
|
|
13
|
+
import { externalTagPlugin, externalTag } from "./build/enteryJson.js";
|
|
14
|
+
|
|
15
|
+
const htmlParams = {
|
|
16
|
+
minify: true,
|
|
17
|
+
pages: getEntryPath
|
|
18
|
+
}
|
|
19
|
+
import indexPort from "../../configuration/moduleConfiguration.json"
|
|
20
|
+
const VITE_APP_INDEX_PORT = indexPort.addressMapping['ganwei-iotcenter-index']
|
|
21
|
+
|
|
22
|
+
export default ({ mode }) => {
|
|
23
|
+
const VITE_APP_TARGET_URL = indexPort.proxyTarget || loadEnv(mode, process.cwd()).VITE_APP_TARGET_URL
|
|
24
|
+
const VITE_APP_THIS_URL = loadEnv(mode, process.cwd()).VITE_APP_THIS_URL
|
|
25
|
+
const port = Number(indexPort.addressMapping?.[name].split(':').pop());
|
|
26
|
+
const VITE_APP_PORT = port || Number(loadEnv(mode, process.cwd()).VITE_APP_PORT)
|
|
27
|
+
return defineConfig({
|
|
28
|
+
root: __dirname, // 项目根目录(index.html 文件所在的位置),
|
|
29
|
+
base: mode == 'development' ? '' : `/${name}/`,
|
|
30
|
+
mode: "development", // 模式
|
|
31
|
+
publicDir: "public", // 静态资源服务的文件夹
|
|
32
|
+
// cacheDir: path.resolve(__dirname, '/node_modules/.vite'), // 存储缓存文件的目录
|
|
33
|
+
define: { __INTLIFY_JIT_COMPILATION__: true },
|
|
34
|
+
plugins: [
|
|
35
|
+
vue(),
|
|
36
|
+
visualizer({
|
|
37
|
+
open: false, //注意这里要设置为true,否则无效
|
|
38
|
+
gzipSize: true
|
|
39
|
+
}),
|
|
40
|
+
//plus按需引入
|
|
41
|
+
AutoImport(),
|
|
42
|
+
createHtmlPlugin(htmlParams),
|
|
43
|
+
stats({
|
|
44
|
+
filename: "stats.html"
|
|
45
|
+
}),
|
|
46
|
+
viteAddInfoHtml(),
|
|
47
|
+
externalTagPlugin(externalTag)
|
|
48
|
+
],
|
|
49
|
+
resolve: {
|
|
50
|
+
alias: [
|
|
51
|
+
{
|
|
52
|
+
find: "@",
|
|
53
|
+
replacement: resolve(__dirname, "src")
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
find: "@static",
|
|
57
|
+
replacement: resolve(__dirname, "static")
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
find: "@assets",
|
|
61
|
+
replacement: resolve(__dirname, "src/assets")
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
find: "@views",
|
|
65
|
+
replacement: resolve(__dirname, "src/views")
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
// 忽略后缀名的配置选项, 添加 .vue 选项时要记得原本默认忽略的选项也要手动写入
|
|
69
|
+
extensions: [".ts", ".mjs", ".js", ".json", ".vue"]
|
|
70
|
+
},
|
|
71
|
+
css: {
|
|
72
|
+
postcss: {
|
|
73
|
+
plugins: [
|
|
74
|
+
autoprefixer({
|
|
75
|
+
overrideBrowserslist: ["Android 4.1", "iOS 7.1", "Chrome > 31", "ff > 31", "ie >= 8"]
|
|
76
|
+
})
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
preprocessorOptions: {
|
|
80
|
+
// 全局样式引入
|
|
81
|
+
// scss: {
|
|
82
|
+
// additionalData: '@use "./src/assets/css/style.scss" as *;',
|
|
83
|
+
// javascriptEnabled: true
|
|
84
|
+
// }
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
server: {
|
|
88
|
+
headers: {
|
|
89
|
+
"Access-Control-Allow-Origin": "*"
|
|
90
|
+
},
|
|
91
|
+
cors: { credentials: true, methods: "PUT,POST,GET,DELETE,OPTIONS", origin: VITE_APP_INDEX_PORT },
|
|
92
|
+
host: VITE_APP_THIS_URL, // 指定服务器应该监听哪个 IP 地址
|
|
93
|
+
port: VITE_APP_PORT, // 端口
|
|
94
|
+
strictPort: true, // 若端口已被占用,尝试下移一格端口
|
|
95
|
+
https: false, // 启用 TLS + HTTP/2
|
|
96
|
+
open: true,
|
|
97
|
+
proxy: {
|
|
98
|
+
"/api": {
|
|
99
|
+
target: VITE_APP_TARGET_URL,
|
|
100
|
+
changeOrigin: true,
|
|
101
|
+
secure: false,
|
|
102
|
+
rewrite: path => path.replace(/^\/api/, "/api"),
|
|
103
|
+
headers: {
|
|
104
|
+
Referer: VITE_APP_TARGET_URL
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"/IoT": {
|
|
108
|
+
target: VITE_APP_TARGET_URL,
|
|
109
|
+
changeOrigin: true,
|
|
110
|
+
secure: false,
|
|
111
|
+
rewrite: path => path.replace(/^\/IoT/, "/IoT"),
|
|
112
|
+
headers: {
|
|
113
|
+
Referer: VITE_APP_TARGET_URL
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"/monitor": {
|
|
117
|
+
target: VITE_APP_TARGET_URL,
|
|
118
|
+
changeOrigin: true,
|
|
119
|
+
secure: false,
|
|
120
|
+
ws: true,
|
|
121
|
+
rewrite: path => path.replace(/^\/monitor/, "/monitor"),
|
|
122
|
+
headers: {
|
|
123
|
+
Referer: VITE_APP_TARGET_URL
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"/downFileNotify": {
|
|
127
|
+
target: VITE_APP_TARGET_URL,
|
|
128
|
+
changeOrigin: true,
|
|
129
|
+
secure: false,
|
|
130
|
+
ws: true,
|
|
131
|
+
rewrite: path => path.replace(/^\/downFileNotify/, "/downFileNotify"),
|
|
132
|
+
headers: {
|
|
133
|
+
Referer: VITE_APP_TARGET_URL
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"/workOrder": {
|
|
137
|
+
target: VITE_APP_TARGET_URL,
|
|
138
|
+
changeOrigin: true,
|
|
139
|
+
secure: false,
|
|
140
|
+
ws: true,
|
|
141
|
+
rewrite: path => path.replace(/^\/workOrder/, "/workOrder"),
|
|
142
|
+
headers: {
|
|
143
|
+
Referer: VITE_APP_TARGET_URL
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"/DownloadFile": {
|
|
147
|
+
target: VITE_APP_TARGET_URL,
|
|
148
|
+
changeOrigin: true,
|
|
149
|
+
secure: false,
|
|
150
|
+
ws: true,
|
|
151
|
+
rewrite: path => path.replace(/^\/DownloadFile/, "/DownloadFile"),
|
|
152
|
+
headers: {
|
|
153
|
+
Referer: VITE_APP_TARGET_URL
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"/jdsso": {
|
|
157
|
+
target: VITE_APP_TARGET_URL,
|
|
158
|
+
changeOrigin: true,
|
|
159
|
+
secure: false,
|
|
160
|
+
ws: true,
|
|
161
|
+
rewrite: path => path.replace(/^\/jdsso/, "/jdsso"),
|
|
162
|
+
headers: {
|
|
163
|
+
Referer: VITE_APP_TARGET_URL
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"/eGroupNotify": {
|
|
167
|
+
target: VITE_APP_TARGET_URL,
|
|
168
|
+
changeOrigin: true,
|
|
169
|
+
secure: false,
|
|
170
|
+
ws: true,
|
|
171
|
+
rewrite: path => path.replace(/^\/eGroupNotify/, "/eGroupNotify"),
|
|
172
|
+
headers: {
|
|
173
|
+
Referer: VITE_APP_TARGET_URL
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"/equipStatusMonitor": {
|
|
177
|
+
target: VITE_APP_TARGET_URL,
|
|
178
|
+
changeOrigin: true,
|
|
179
|
+
secure: false,
|
|
180
|
+
ws: true,
|
|
181
|
+
rewrite: path => path.replace(/^\/equipStatusMonitor/, "/equipStatusMonitor"),
|
|
182
|
+
headers: {
|
|
183
|
+
Referer: VITE_APP_TARGET_URL
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
},
|
|
187
|
+
force: true, // 强制使依赖预构建
|
|
188
|
+
hmr: {},
|
|
189
|
+
watch: {},
|
|
190
|
+
fs: {
|
|
191
|
+
strict: false, // 限制为工作区 root 路径以外的文件的访问
|
|
192
|
+
allow: [], // 限制哪些文件可以通过 /@fs/ 路径提供服务
|
|
193
|
+
deny: [".env", ".env.*", "*.{pem,crt}"] // 用于限制 Vite 开发服务器提供敏感文件的黑名单
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
build: {
|
|
197
|
+
sourcemap: false, // 构建后是否生成 source map 文件
|
|
198
|
+
chunkSizeWarningLimit: 1500, // 规定触发警告的 chunk(文件块) 大小
|
|
199
|
+
cssCodeSplit: true,
|
|
200
|
+
// brotliSize: false, // 禁用压缩大小报告
|
|
201
|
+
minify: "esbuild",
|
|
202
|
+
terserOptions: {
|
|
203
|
+
compress: {
|
|
204
|
+
drop_console: true, // 生产环境去除console
|
|
205
|
+
drop_debugger: true // 生产环境去除debugger
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
//outDir: path.resolve(__dirname, `../../dist/${name}`),
|
|
209
|
+
rollupOptions: {
|
|
210
|
+
// 自定义底层的 Rollup 打包配置 ('[name]'.includes("ganwe")?'[name]/':'')
|
|
211
|
+
output: {
|
|
212
|
+
dir: path.resolve(__dirname, `../../dist/${name}`),
|
|
213
|
+
assetFileNames: assetInfo => {
|
|
214
|
+
if (!assetInfo.name) {
|
|
215
|
+
throw Error("assetInfo.name is empty")
|
|
216
|
+
}
|
|
217
|
+
const info = assetInfo.name.split(".")
|
|
218
|
+
let extType = info[info.length - 1]
|
|
219
|
+
if (/png|jpe?g|svg|gif|tiff|bmp|ico/i.test(extType)) {
|
|
220
|
+
extType = "images"
|
|
221
|
+
}
|
|
222
|
+
return `assets/${extType}/[name]-[hash][extname]`
|
|
223
|
+
},
|
|
224
|
+
chunkFileNames: `assets/js/[name]-[hash].js`,
|
|
225
|
+
entryFileNames: `assets/js/[name]-[hash].js`,
|
|
226
|
+
compact: false,
|
|
227
|
+
manualChunks(id) {
|
|
228
|
+
if (id.includes("node_modules")) {
|
|
229
|
+
return "vendor"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
emptyOutDir: false
|
|
235
|
+
}
|
|
236
|
+
})
|
|
237
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# https://editorconfig.org
|
|
2
|
+
root = true # 根目录的配置文件,编辑器会由当前目录向上查找,如果找到 `roor = true` 的文件,则不再查找
|
|
3
|
+
|
|
4
|
+
[*] # 匹配所有的文件
|
|
5
|
+
indent_style = space # 空格缩进
|
|
6
|
+
indent_size = 4 # 缩进空格为4个
|
|
7
|
+
end_of_line = lf # 文件换行符是 linux 的 `\n`
|
|
8
|
+
charset = utf-8 # 文件编码是 utf-8
|
|
9
|
+
trim_trailing_whitespace = true # 不保留行末的空格
|
|
10
|
+
insert_final_newline = true # 文件末尾添加一个空行
|
|
11
|
+
curly_bracket_next_line = false # 大括号不另起一行
|
|
12
|
+
spaces_around_operators = true # 运算符两遍都有空格
|
|
13
|
+
indent_brace_style = 1tbs # 条件语句格式是 1tbs
|
|
14
|
+
|
|
15
|
+
[*.js] # 对所有的 js 文件生效
|
|
16
|
+
quote_type = single # 字符串使用单引号
|
|
17
|
+
|
|
18
|
+
[*.{html,less,css,json}] # 对所有 html, less, css, json 文件生效
|
|
19
|
+
quote_type = double # 字符串使用双引号
|
|
20
|
+
|
|
21
|
+
[package.json] # 对 package.json 生效
|
|
22
|
+
indent_size = 2 # 使用2个空格缩进
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
## 开发环境
|
|
2
|
+
|
|
3
|
+
# 变量必须以 VITE_ 为前缀才能暴露给外部读取
|
|
4
|
+
NODE_ENV = "development"
|
|
5
|
+
|
|
6
|
+
# 图片路径
|
|
7
|
+
VITE_IMAGE_BASE = "/static/images/"
|
|
8
|
+
|
|
9
|
+
# 标题
|
|
10
|
+
VITE_APP_TITLE = ''
|
|
11
|
+
|
|
12
|
+
# 端口
|
|
13
|
+
VITE_APP_PORT = 8170
|
|
14
|
+
|
|
15
|
+
# API请求前缀
|
|
16
|
+
VITE_APP_BASE_API = ''
|
|
17
|
+
|
|
18
|
+
# proxy代理配置
|
|
19
|
+
VITE_APP_TARGET_URL = 'https://127.0.0.1:44380/'
|
|
20
|
+
|
|
21
|
+
# 本地地址
|
|
22
|
+
VITE_APP_THIS_URL = '127.0.0.1'
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
## 生产环境
|
|
2
|
+
|
|
3
|
+
# 变量必须以 VITE_ 为前缀才能暴露给外部读取
|
|
4
|
+
NODE_ENV = "production"
|
|
5
|
+
|
|
6
|
+
# 图片路径
|
|
7
|
+
VITE_IMAGE_BASE = "/APP/static/images/"
|
|
8
|
+
|
|
9
|
+
# 标题
|
|
10
|
+
VITE_APP_TITLE = ''
|
|
11
|
+
|
|
12
|
+
# 端口
|
|
13
|
+
VITE_APP_PORT = 0
|
|
14
|
+
|
|
15
|
+
# API请求前缀
|
|
16
|
+
VITE_APP_BASE_API = ''
|
|
17
|
+
|
|
18
|
+
# proxy代理配置
|
|
19
|
+
VITE_APP_TARGET_URL = 'https://127.0.0.1:44380/'
|
|
20
|
+
|
|
21
|
+
# 本地地址
|
|
22
|
+
VITE_APP_THIS_URL = '127.0.0.1'
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
## 测试环境
|
|
2
|
+
|
|
3
|
+
# 变量必须以 VITE_ 为前缀才能暴露给外部读取
|
|
4
|
+
NODE_ENV = "test"
|
|
5
|
+
|
|
6
|
+
# 图片路径
|
|
7
|
+
VITE_IMAGE_BASE = "/APP/static/images/"
|
|
8
|
+
|
|
9
|
+
# 标题
|
|
10
|
+
VITE_APP_TITLE = ''
|
|
11
|
+
|
|
12
|
+
# 端口
|
|
13
|
+
VITE_APP_PORT = 7777
|
|
14
|
+
|
|
15
|
+
# API请求前缀
|
|
16
|
+
VITE_APP_BASE_API = ''
|
|
17
|
+
|
|
18
|
+
# proxy代理配置
|
|
19
|
+
VITE_APP_TARGET_URL = 'https://127.0.0.1:44380/'
|
|
20
|
+
|
|
21
|
+
# 本地地址
|
|
22
|
+
VITE_APP_THIS_URL = ''
|