@ganwei-web/ganwei-pc-cli 6.2.5 → 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.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
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div></div>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
import { ElNotification } from 'element-plus'
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
data() {
|
|
9
|
+
return {
|
|
10
|
+
alarmInfo: {
|
|
11
|
+
Id: 0,
|
|
12
|
+
Message: 0,
|
|
13
|
+
Position: 0,
|
|
14
|
+
AlarmStyle: 0,
|
|
15
|
+
AlarmTime: 0
|
|
16
|
+
},
|
|
17
|
+
// 队列相关数据
|
|
18
|
+
alarmQueue: [], // 存储待显示的通知队列
|
|
19
|
+
isProcessing: false, // 是否正在显示通知
|
|
20
|
+
notificationInterval: 1000, // 通知显示间隔(ms)
|
|
21
|
+
queueTimer: null, // 队列处理定时器
|
|
22
|
+
// 可选:用于去重
|
|
23
|
+
shownIds: new Set(),
|
|
24
|
+
maxShownIds: 100, // 避免内存泄漏,限制最大存储数量
|
|
25
|
+
activeNotifications: new Map(), // 存储当前活动的通知
|
|
26
|
+
maxActiveNotifications: 3, // 最多同时显示的通知数量
|
|
27
|
+
notificationOrder: [], // 按顺序存储通知ID,用于FIFO管理
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
mounted() {
|
|
31
|
+
// 自定义事件监听(用于同页面内的变化)
|
|
32
|
+
window.addEventListener('customEventChange', this.handleCustomStorageChange);
|
|
33
|
+
},
|
|
34
|
+
beforeUnmount() {
|
|
35
|
+
// 移除事件监听
|
|
36
|
+
window.removeEventListener('customEventChange', this.handleCustomStorageChange);
|
|
37
|
+
// 清理队列和通知
|
|
38
|
+
this.clearAllNotifications();
|
|
39
|
+
},
|
|
40
|
+
methods: {
|
|
41
|
+
handleCustomStorageChange(event) {
|
|
42
|
+
if (event.detail.key === 'EquipAlarmDialog') {
|
|
43
|
+
if (!event.detail.data) {
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
const alarmData = JSON.parse(event.detail.data);
|
|
47
|
+
this.addToQueue(alarmData);
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
// 添加通知到队列
|
|
52
|
+
addToQueue(alarmData) {
|
|
53
|
+
// 可选:根据Id去重
|
|
54
|
+
// if (alarmData.Id && this.shownIds.has(alarmData.Id)) {
|
|
55
|
+
// return; // 已显示过,跳过
|
|
56
|
+
// }
|
|
57
|
+
|
|
58
|
+
// 添加到队列
|
|
59
|
+
this.alarmQueue.push(alarmData);
|
|
60
|
+
|
|
61
|
+
// 如果队列长度过大,移除最旧的通知(可选)
|
|
62
|
+
if (this.alarmQueue.length > 50) {
|
|
63
|
+
this.alarmQueue.shift();
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// 启动处理队列(如果还没启动)
|
|
67
|
+
if (!this.isProcessing) {
|
|
68
|
+
this.startQueueProcessing();
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
// 启动队列处理
|
|
73
|
+
startQueueProcessing() {
|
|
74
|
+
this.isProcessing = true;
|
|
75
|
+
|
|
76
|
+
// 立即处理第一个通知
|
|
77
|
+
this.processNextNotification();
|
|
78
|
+
|
|
79
|
+
// 设置定时器,每this.notificationInterval处理一个通知
|
|
80
|
+
this.queueTimer = setInterval(() => {
|
|
81
|
+
this.processNextNotification();
|
|
82
|
+
}, this.notificationInterval);
|
|
83
|
+
},
|
|
84
|
+
|
|
85
|
+
// 处理下一个通知
|
|
86
|
+
processNextNotification() {
|
|
87
|
+
// 如果队列为空,停止处理
|
|
88
|
+
if (this.alarmQueue.length === 0) {
|
|
89
|
+
this.stopQueueProcessing();
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// 取出队列中的第一个通知
|
|
94
|
+
const alarmData = this.alarmQueue.shift();
|
|
95
|
+
|
|
96
|
+
// 记录已显示的Id(可选)
|
|
97
|
+
if (alarmData.Id) {
|
|
98
|
+
this.shownIds.add(alarmData.Id);
|
|
99
|
+
// 清理过期的记录,避免内存泄漏
|
|
100
|
+
if (this.shownIds.size > this.maxShownIds) {
|
|
101
|
+
const iterator = this.shownIds.values();
|
|
102
|
+
this.shownIds.delete(iterator.next().value);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// 显示通知
|
|
107
|
+
this.showNotification(alarmData);
|
|
108
|
+
},
|
|
109
|
+
|
|
110
|
+
// 显示通知
|
|
111
|
+
showNotification(alarmData) {
|
|
112
|
+
// 检查是否达到最大通知数量
|
|
113
|
+
if (this.notificationOrder.length >= this.maxActiveNotifications) {
|
|
114
|
+
// 移除最早的通知(第一个)
|
|
115
|
+
this.removeOldestNotification();
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// 生成唯一ID用于跟踪
|
|
119
|
+
const notificationId = Date.now() + Math.random().toString(36).substr(2, 9);
|
|
120
|
+
|
|
121
|
+
// 显示新通知
|
|
122
|
+
const notification = ElNotification({
|
|
123
|
+
title: alarmData.AlarmTime ? alarmData.AlarmTime.replace('T', ' ') : '',
|
|
124
|
+
message: alarmData.Message,
|
|
125
|
+
position: alarmData.Position,
|
|
126
|
+
type: alarmData.AlarmStyle,
|
|
127
|
+
customClass: 'equip-alarm-notification',
|
|
128
|
+
duration: 3000, // 设置显示时长,比如3秒
|
|
129
|
+
onClose: () => {
|
|
130
|
+
// 从活动通知中移除
|
|
131
|
+
this.activeNotifications.delete(notificationId);
|
|
132
|
+
// 从顺序列表中移除
|
|
133
|
+
const index = this.notificationOrder.indexOf(notificationId);
|
|
134
|
+
if (index > -1) {
|
|
135
|
+
this.notificationOrder.splice(index, 1);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
|
|
140
|
+
// 保存到活动通知中
|
|
141
|
+
this.activeNotifications.set(notificationId, {
|
|
142
|
+
instance: notification,
|
|
143
|
+
data: alarmData,
|
|
144
|
+
timestamp: Date.now()
|
|
145
|
+
});
|
|
146
|
+
|
|
147
|
+
// 添加到顺序列表
|
|
148
|
+
this.notificationOrder.push(notificationId);
|
|
149
|
+
},
|
|
150
|
+
|
|
151
|
+
// 移除最早的通知
|
|
152
|
+
removeOldestNotification() {
|
|
153
|
+
if (this.notificationOrder.length === 0) return;
|
|
154
|
+
|
|
155
|
+
// 获取最早的通知ID
|
|
156
|
+
const oldestNotificationId = this.notificationOrder[0];
|
|
157
|
+
|
|
158
|
+
// 从Map中获取通知实例并关闭
|
|
159
|
+
const oldestNotification = this.activeNotifications.get(oldestNotificationId);
|
|
160
|
+
if (oldestNotification) {
|
|
161
|
+
oldestNotification.instance.close();
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// 从Map中移除
|
|
165
|
+
this.activeNotifications.delete(oldestNotificationId);
|
|
166
|
+
|
|
167
|
+
// 从顺序列表中移除
|
|
168
|
+
this.notificationOrder.shift();
|
|
169
|
+
},
|
|
170
|
+
|
|
171
|
+
// 停止队列处理
|
|
172
|
+
stopQueueProcessing() {
|
|
173
|
+
this.isProcessing = false;
|
|
174
|
+
if (this.queueTimer) {
|
|
175
|
+
clearInterval(this.queueTimer);
|
|
176
|
+
this.queueTimer = null;
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
|
|
180
|
+
// 清理所有通知
|
|
181
|
+
clearAllNotifications() {
|
|
182
|
+
// 停止队列处理
|
|
183
|
+
this.stopQueueProcessing();
|
|
184
|
+
|
|
185
|
+
// 清空队列
|
|
186
|
+
this.alarmQueue = [];
|
|
187
|
+
|
|
188
|
+
// 关闭所有活动的通知
|
|
189
|
+
for (const notification of this.activeNotifications.values()) {
|
|
190
|
+
notification.instance.close();
|
|
191
|
+
}
|
|
192
|
+
this.activeNotifications.clear();
|
|
193
|
+
|
|
194
|
+
// 清空顺序列表
|
|
195
|
+
this.notificationOrder = [];
|
|
196
|
+
|
|
197
|
+
// 清空已显示的ID记录
|
|
198
|
+
this.shownIds.clear();
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
</script>
|
|
203
|
+
<style lang="scss" scoped></style>
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<el-dialog :title="$t('login.应用到期提醒')" class="systemInformation_main" v-model="dialogVisible" :before-close="closeDialog" width="690" top="6vh" center append-to="#index">
|
|
3
|
+
<el-table :data="expirepluginList" height="400" border >
|
|
4
|
+
<template v-slot:empty>
|
|
5
|
+
<div class="noDataTips"></div>
|
|
6
|
+
</template>
|
|
7
|
+
<el-table-column prop="pluginName" :label="$t('login.应用名称')" min-width="120px"></el-table-column>
|
|
8
|
+
<el-table-column prop="endTime" :label="$t('login.到期时间')" min-width="120px"></el-table-column>
|
|
9
|
+
<el-table-column prop="isExpired" :label="$t('login.状态')" min-width="120px">
|
|
10
|
+
<template #default="scope">
|
|
11
|
+
<el-tag :type="getState(scope.row.isExpired, 'type')">{{ $t(getState(scope.row.isExpired, 'label')) }}</el-tag>
|
|
12
|
+
</template>
|
|
13
|
+
</el-table-column>
|
|
14
|
+
</el-table>
|
|
15
|
+
<template v-slot:footer>
|
|
16
|
+
<span class="dialog-footer">
|
|
17
|
+
<el-button type="primary" plain @click="restartIoT">{{$t('login.framePro.title.RestartPlatform')}}</el-button>
|
|
18
|
+
<el-button type="primary" @click="toRenew">{{$t('login.续费')}}</el-button>
|
|
19
|
+
</span>
|
|
20
|
+
</template>
|
|
21
|
+
</el-dialog>
|
|
22
|
+
</template>
|
|
23
|
+
<script>
|
|
24
|
+
export default {
|
|
25
|
+
data () {
|
|
26
|
+
return {
|
|
27
|
+
dialogVisible: false,
|
|
28
|
+
expirepluginList: [],
|
|
29
|
+
stateList: [{
|
|
30
|
+
value: true,
|
|
31
|
+
label: 'login.即将到期',
|
|
32
|
+
type: 'warning'
|
|
33
|
+
}, {
|
|
34
|
+
value: false,
|
|
35
|
+
label: 'login.已到期',
|
|
36
|
+
type: 'error'
|
|
37
|
+
}]
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
mounted () {
|
|
41
|
+
// 自定义事件监听(用于同页面内的变化)
|
|
42
|
+
window.addEventListener('customEventChange', this.handleCustomStorageChange);
|
|
43
|
+
},
|
|
44
|
+
beforeUnmount() {
|
|
45
|
+
window.removeEventListener('customEventChange', this.handleCustomStorageChange);
|
|
46
|
+
},
|
|
47
|
+
computed: {
|
|
48
|
+
},
|
|
49
|
+
methods: {
|
|
50
|
+
handleCustomStorageChange(event) {
|
|
51
|
+
if (event.detail.key === 'PluginExpireCount') {
|
|
52
|
+
if (event.detail.count > 0) {
|
|
53
|
+
this.getAllPluginExpire()
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
getAllPluginExpire() {
|
|
58
|
+
this.$api.getAllPluginExpire().then(res => {
|
|
59
|
+
const { data, code, message } = res.data;
|
|
60
|
+
if (code == 200) {
|
|
61
|
+
this.expirepluginList = data;
|
|
62
|
+
if (this.expirepluginList.length > 0) {
|
|
63
|
+
this.dialogVisible = true;
|
|
64
|
+
}
|
|
65
|
+
} else {
|
|
66
|
+
this.$message.warning(message)
|
|
67
|
+
}
|
|
68
|
+
})
|
|
69
|
+
},
|
|
70
|
+
restartIoT() {
|
|
71
|
+
this.dialogVisible = false;
|
|
72
|
+
try {
|
|
73
|
+
this.$parent.$refs.userInfo.showRestartPlatform = true;
|
|
74
|
+
} catch (error) {
|
|
75
|
+
console.log(error);
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
toRenew() {
|
|
79
|
+
try {
|
|
80
|
+
this.$parent.$refs.renewMessages.$refs.renew.drawer = true;
|
|
81
|
+
} catch (error) {
|
|
82
|
+
console.log(error);
|
|
83
|
+
}
|
|
84
|
+
this.dialogVisible = false;
|
|
85
|
+
},
|
|
86
|
+
getState(value, key) {
|
|
87
|
+
let result = this.stateList.find(item => item.value === value);
|
|
88
|
+
return result ? result[key] : '';
|
|
89
|
+
},
|
|
90
|
+
closeDialog () {
|
|
91
|
+
this.expirepluginList = [];
|
|
92
|
+
this.dialogVisible = false;
|
|
93
|
+
// this.$emit('closeDialog')
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
</script>
|
|
98
|
+
<style lang="scss" scoped>
|
|
99
|
+
.el-overlay,
|
|
100
|
+
.el-overlay-dialog {
|
|
101
|
+
display: flex;
|
|
102
|
+
justify-content: center;
|
|
103
|
+
align-items: center;
|
|
104
|
+
}
|
|
105
|
+
:deep(td.el-table__cell) {
|
|
106
|
+
border-bottom: 1px solid var(--frame-main-border) !important;
|
|
107
|
+
}
|
|
108
|
+
</style>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
|
|
2
|
+
export default {
|
|
3
|
+
inject: ['config', 'theme'],
|
|
4
|
+
data () {
|
|
5
|
+
return {
|
|
6
|
+
n: 0,
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
mounted () {
|
|
10
|
+
let that = this
|
|
11
|
+
document.addEventListener("webkitfullscreenchange", function(e) {
|
|
12
|
+
if (!e.currentTarget.webkitIsFullScreen) {
|
|
13
|
+
that.signOutFullCreen()
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
},
|
|
17
|
+
methods: {
|
|
18
|
+
setFullCreen(){
|
|
19
|
+
this.n = 1
|
|
20
|
+
this.inFullCreeen(document.documentElement)
|
|
21
|
+
},
|
|
22
|
+
signOutFullCreen(){
|
|
23
|
+
this.n = 2
|
|
24
|
+
this.outFullCreeen(document)
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
inFullCreeen (element) {
|
|
28
|
+
let el = element
|
|
29
|
+
let rfs = el.requestFullScreen || el.webkitRequestFullScreen || el.mozRequestFullScreen || el.msRequestFullScreen
|
|
30
|
+
if (typeof rfs != 'undefined' && rfs) {
|
|
31
|
+
rfs.call(el)
|
|
32
|
+
} else if (typeof window.ActiveXObject != 'undefined') {
|
|
33
|
+
// eslint-disable-next-line
|
|
34
|
+
let wscript = new ActiveXObject('WScript.Shell')
|
|
35
|
+
wscript.SendKeys('{F11}')
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
outFullCreeen (element) {
|
|
39
|
+
let el = element
|
|
40
|
+
let cfs = el.cancelFullScreen || el.webkitCancelFullScreen || el.mozCancelFullScreen || el.exitFullScreen
|
|
41
|
+
if (typeof cfs != 'undefined' && cfs) {
|
|
42
|
+
cfs.call(el)
|
|
43
|
+
} else if (typeof window.ActiveXObject != 'undefined') {
|
|
44
|
+
// eslint-disable-next-line
|
|
45
|
+
let wscript = new ActiveXObject('WScript.Shell')
|
|
46
|
+
wscript.SendKeys('{F11}')
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<el-tooltip popper-class="topToolTip" :content="$t('login.framePro.tips.fullScreen')" placement="bottom">
|
|
4
|
+
<img v-if="n % 2 == 0" :src="theme.fullScreen" alt="" @click.stop.prevent="setFullCreen()" />
|
|
5
|
+
<img v-else :src="theme.outFullScreeen" @click.stop.prevent="signOutFullCreen()" alt="" />
|
|
6
|
+
</el-tooltip>
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script src="./index.js"></script>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import isDebug from '@/components/isDebug/isDebug.vue'
|
|
2
|
+
import appPreview from './appPreview/index.vue'
|
|
3
|
+
import contentFullScreen from './contentFullScreen/index.vue'
|
|
4
|
+
import equipAlarmDialog from './equipAlarmDialog/index.vue'
|
|
5
|
+
import expirationReminder from './expirationReminder/index.vue'
|
|
6
|
+
import fullScreen from './fullScreen/index.vue'
|
|
7
|
+
import processDesign from './processDesign/index.vue'
|
|
8
|
+
import renewMessages from './renewMessages/index.vue'
|
|
9
|
+
import saveMode from './saveMode/index.vue'
|
|
10
|
+
import switchTheme from './switchTheme/index.vue'
|
|
11
|
+
import unReadMessages from './unReadMessages/index.vue'
|
|
12
|
+
import upgrade from './upgrade/index.vue'
|
|
13
|
+
import userInfo from './userInfo/index.vue'
|
|
14
|
+
|
|
15
|
+
export default {
|
|
16
|
+
components: {
|
|
17
|
+
saveMode,
|
|
18
|
+
fullScreen,
|
|
19
|
+
contentFullScreen,
|
|
20
|
+
unReadMessages,
|
|
21
|
+
switchTheme,
|
|
22
|
+
userInfo,
|
|
23
|
+
equipAlarmDialog,
|
|
24
|
+
isDebug,
|
|
25
|
+
appPreview,
|
|
26
|
+
upgrade,
|
|
27
|
+
processDesign,
|
|
28
|
+
renewMessages,
|
|
29
|
+
expirationReminder
|
|
30
|
+
},
|
|
31
|
+
inject: ['config', 'theme'],
|
|
32
|
+
}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
|
|
2
|
+
.indexHeader {
|
|
3
|
+
height: 64px;
|
|
4
|
+
line-height: 64px;
|
|
5
|
+
text-align: center;
|
|
6
|
+
background-color: var(--frame-top-background);
|
|
7
|
+
white-space: nowrap;
|
|
8
|
+
position: relative;
|
|
9
|
+
padding-left: 16px;
|
|
10
|
+
padding-right: 16px;
|
|
11
|
+
z-index: 2;
|
|
12
|
+
.el-menu--horizontal {
|
|
13
|
+
display: flex;
|
|
14
|
+
height: 100%;
|
|
15
|
+
border-bottom: 0px;
|
|
16
|
+
|
|
17
|
+
>div {
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
height: 100%;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.aside-header {
|
|
25
|
+
margin-left: -24px;
|
|
26
|
+
width: 220px;
|
|
27
|
+
height: 60px;
|
|
28
|
+
display: flex;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
align-items: center;
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
.aside-header-box {
|
|
34
|
+
display: flex;
|
|
35
|
+
justify-content: center;
|
|
36
|
+
white-space: nowrap;
|
|
37
|
+
height: 100%;
|
|
38
|
+
|
|
39
|
+
a {
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: center;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.min-img {
|
|
45
|
+
width: 100%;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&>a {
|
|
51
|
+
display: none;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.header-right {
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
float: right;
|
|
58
|
+
position: absolute;
|
|
59
|
+
right: 16px;
|
|
60
|
+
top: 0;
|
|
61
|
+
height: 100%;
|
|
62
|
+
color: var(--frame-main-color);
|
|
63
|
+
|
|
64
|
+
>div:last-child {
|
|
65
|
+
padding-right: 0px !important;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
>div {
|
|
69
|
+
line-height: 1;
|
|
70
|
+
cursor: pointer;
|
|
71
|
+
height: 50px;
|
|
72
|
+
display: flex;
|
|
73
|
+
align-items: center;
|
|
74
|
+
padding: 0 12px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
::v-deep .el-avatar {
|
|
78
|
+
width: 28px;
|
|
79
|
+
height: 28px;
|
|
80
|
+
line-height: 28px;
|
|
81
|
+
vertical-align: middle;
|
|
82
|
+
background-color: transparent;
|
|
83
|
+
border-radius: 0px;
|
|
84
|
+
// margin: 0 18px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
span {
|
|
88
|
+
vertical-align: middle;
|
|
89
|
+
cursor: pointer;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.username {
|
|
93
|
+
padding-right: 10px;
|
|
94
|
+
font-size: 14px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.iconxiajiantou {
|
|
98
|
+
margin-right: 18px;
|
|
99
|
+
font-size: 20px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.icon-xialasanjiao {
|
|
103
|
+
font-size: 12px;
|
|
104
|
+
margin-left: 3px;
|
|
105
|
+
color: var(--dropdown-menu-color);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
::v-deep .el-dialog {
|
|
111
|
+
.el-form {
|
|
112
|
+
padding: 0 16px;
|
|
113
|
+
|
|
114
|
+
.el-form-item {
|
|
115
|
+
margin-top: 8px;
|
|
116
|
+
margin-bottom: 8px;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.el-dialog__body {
|
|
121
|
+
.el-input__inner {
|
|
122
|
+
height: 34px;
|
|
123
|
+
line-height: 34px;
|
|
124
|
+
border-radius: 2px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.el-form-item__label {
|
|
128
|
+
padding-right: 24px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.el-form-item__error {
|
|
132
|
+
top: 90%;
|
|
133
|
+
left: 90px;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="header-right">
|
|
3
|
+
<equipAlarmDialog />
|
|
4
|
+
<expirationReminder />
|
|
5
|
+
<saveMode v-if="config?.showTopBtn?.safeTips || config?.showTopBtn?.safeTips === undefined" />
|
|
6
|
+
<upgrade v-if="config?.showTopBtn?.update || config?.showTopBtn?.update === undefined" />
|
|
7
|
+
<app-preview v-if="config?.showTopBtn?.appPreview || config?.showTopBtn?.appPreview === undefined" />
|
|
8
|
+
<fullScreen v-if="config?.showTopBtn?.fullScreen || config?.showTopBtn?.fullScreen === undefined" />
|
|
9
|
+
<contentFullScreen
|
|
10
|
+
v-if="config?.showTopBtn?.contentFullScreen || config?.showTopBtn?.contentFullScreen === undefined" />
|
|
11
|
+
<unReadMessages v-if="config?.showTopBtn?.notify || config?.showTopBtn?.notify === undefined" />
|
|
12
|
+
<processDesign v-if="config?.showTopBtn?.processDesign || config?.showTopBtn?.processDesign === undefined" />
|
|
13
|
+
<renewMessages ref="renewMessages"
|
|
14
|
+
v-if="config?.showTopBtn?.notify || config?.showTopBtn?.notify === undefined" />
|
|
15
|
+
<switchTheme v-if="config?.showTopBtn?.themes || config?.showTopBtn?.themes === undefined" />
|
|
16
|
+
<!-- config?.showSwitchTheme -->
|
|
17
|
+
<userInfo ref="userInfo" v-if="config?.showTopBtn?.user || config?.showTopBtn?.user === undefined" />
|
|
18
|
+
<!-- <isDebug /> -->
|
|
19
|
+
</div>
|
|
20
|
+
</template>
|
|
21
|
+
|
|
22
|
+
<script src="./index.js"></script>
|
|
23
|
+
<style src="./index.scss" scoped></style>
|