@ganwei-web/ganwei-pc-cli 6.2.0 → 6.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ganwei-app-6.2.1/.nvmrc +1 -0
- package/ganwei-app-6.2.1/moduleConfiguration/.env.development +23 -0
- package/ganwei-app-6.2.1/moduleConfiguration/.env.local.config +8 -0
- package/ganwei-app-6.2.1/moduleConfiguration/.env.production +29 -0
- package/ganwei-app-6.2.1/moduleConfiguration/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/moduleConfiguration/cleanNodeModule.js +16 -0
- package/ganwei-app-6.2.1/moduleConfiguration/copyFile.js +133 -0
- package/ganwei-app-6.2.1/moduleConfiguration/filterStatic.js +65 -0
- package/ganwei-app-6.2.1/moduleConfiguration/init.js +48 -0
- package/ganwei-app-6.2.1/moduleConfiguration/moduleConfiguration.json +17 -0
- package/ganwei-app-6.2.1/package.json +41 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/.stylelintrc.cjs +18 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/auto-imports.d.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/env.d.ts +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/index.html +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/package-lock.json +18130 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/package.json +88 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/ElementPlusAdapter.css +706 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/index-plus-vars.css +93 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/index-plus.css +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/index.css +15254 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/pptxjs.css +161 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/reset-6.1.css +433 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.css +1167 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.js +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.json +2025 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.ttf +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.woff +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.woff2 +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/loading_1.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/loading_2.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/loading_3.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/loading_4.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/noPermission.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/noPermission1.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/scene_current.svg +36 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/scene_equip.svg +30 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/scene_safe.svg +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/scene_zonghe.svg +28 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_alarm.svg +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_info.svg +15 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_setup.svg +15 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_warning.svg +15 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_zichan.svg +15 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/ts.svg +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/axios.min.js +2 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/base/MFEManager.js +70 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/echarts.min.js +45 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/enc-base64-min.js +88 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2/elementUI.min.js +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2/injectCss.js +12 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/ElementPlusAdapter.iife.js +628 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/elementPlus.min.js +73 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/gw_app_api.iife.js +4024 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/vue-i18n.min.js +6 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/vue-router.min.js +6 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/vue.min.js +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/vuex.min.js +6 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/autoPlay.json +187 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/commandConfig.json +10 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/config.json +32 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/modules.json +93 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/player.json +6 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/ppt.json +6 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/scene.json +72 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/welcome.json +8 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/en-US/frame.json +30 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/en-US/publics.json +73 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/zh-CN/frame.json +30 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/zh-CN/publics.json +73 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/zh-HK/frame.json +30 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/zh-HK/publics.json +73 -0
- package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/dark-6-1.css → ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/dark-6.1.css} +28 -36
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/dark.css +84 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/default-theme.js +43 -0
- package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login/public/static/themes/light-6-1.css → ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/light-6.1.css} +46 -51
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/light.css +85 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/App.vue +256 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/components/NavBarItem.vue +28 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/components/NavBarItemBack.vue +18 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/components/NavBarItemCommon.vue +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/components/NavBarItemLogo.vue +33 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/index.vue +66 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/models/index.ts +10 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/appFrame.vue +119 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/bottom.vue +76 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/css/bottom.scss +54 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/css/top.scss +44 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/js/useGestrue.ts +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/top.vue +93 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/loading/index.vue +71 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/qrcodeReader/qrcodeReader.vue +328 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/components/QrcodeCapture.vue +54 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/components/QrcodeDropZone.vue +42 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/components/QrcodeStream.vue +327 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/index.js +32 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/camera.js +153 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/errors.js +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/scanner.js +114 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/shimGetUserMedia.js +30 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/util.js +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/mixins/CommonAPI.vue +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/enums/index.ts +19 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/hostMap.ts +8 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/main.ts +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/models/index.ts +81 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/request/api/Auth.ts +80 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/request/api.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/router.ts +134 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/store.js +192 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/utils/MFEManager.ts +141 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/utils/URLSearchParams.ts +149 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/utils/defineWindowAttr.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/utils/eventBus.ts +6 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/EditPassword/index.vue +142 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/ganwei-app-jump/src/index.vue +174 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/ganwei-app-jump/src/lifecycles.js +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/Index.vue +113 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/getSystemInfo.ts +35 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useEventBus.ts +93 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useInitMenus.ts +47 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useKeepAlive.ts +35 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useNavigationBar.ts +94 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/usePush.ts +62 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useScan.ts +36 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/stats.html +4975 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/tsconfig.json +58 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/types/gw-app-public.d.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/vite.base.config.ts +233 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/vite.config.ts +51 -0
- package/ganwei-app-6.2.1/pnpm-lock.yaml +8810 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.babelrc +4 -0
- package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/getLanguage.js +5 -5
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/hmac-sha256.js +18 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/jsencrypt.min.js +2 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/signalr.min.js +17 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/transformpcm.worker.js +58 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/vue-i18n.min.js +6 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/vue-router.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/vue.min.js +11 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/vuex.min.js +6 -0
- package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/themes/dark-6-1.css +1 -1
- package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index}/public/static/themes/light-6-1.css +5 -5
- package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/ApprovalDialog.vue +13 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.prettierrc.cjs +37 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/refresh.png +0 -0
- package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/js/getLanguage.js +5 -5
- package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login}/public/static/themes/dark-6-1.css +1 -1
- package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login}/public/static/themes/light-6-1.css +5 -5
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/types.js +16 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.editorconfig +22 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.env.test +22 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.eslintignore +13 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.prettierignore +13 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.prettierrc.cjs +37 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.ttf +0 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.woff +0 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/images/index-loading.png +0 -0
- package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/js/getLanguage.js +5 -5
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/themes/dark-6-1.css +430 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/themes/light-6-1.css +424 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/views/template.vue +1008 -0
- package/ganwei-iotcenter-index-6.2.1/pnpm-workspace.yaml +3 -0
- package/package.json +5 -4
- package/src/create-app.js +7 -7
- package/src/createQuestions.js +7 -16
- package/ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template/src/views/template.vue +0 -49
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/moduleConfiguration}/.editorconfig +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/moduleConfiguration}/.env.test +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/moduleConfiguration}/.eslintignore +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/moduleConfiguration}/.prettierignore +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login → ganwei-app-6.2.1/moduleConfiguration}/.prettierrc.cjs +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/packages/ganwei-app-index}/.babelrc +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login → ganwei-app-6.2.1/packages/ganwei-app-index}/.editorconfig +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login → ganwei-app-6.2.1/packages/ganwei-app-index}/.env.test +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login → ganwei-app-6.2.1/packages/ganwei-app-index}/.eslintignore +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login → ganwei-app-6.2.1/packages/ganwei-app-index}/.prettierignore +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-app-6.2.1/packages/ganwei-app-index}/.prettierrc.cjs +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts → ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font}/element-icons.ttf +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/fonts → ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font}/element-icons.woff +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/packages/ganwei-app-index}/public/static/images/index-loading.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login → ganwei-app-6.2.1/packages/ganwei-app-index}/public/static/images/refresh.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/packages/ganwei-app-index}/public/static/js/hmac-sha256.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/packages/ganwei-app-index}/public/static/js/jsencrypt.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/packages/ganwei-app-index}/public/static/js/signalr.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/packages/ganwei-app-index}/public/static/js/transformpcm.worker.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js → ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2}/vue-i18n.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js → ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2}/vue-router.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js → ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2}/vue.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index/public/static/js → ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2}/vuex.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-index → ganwei-app-6.2.1/packages/ganwei-app-index}/src/types.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-app-6.2.1}/pnpm-workspace.yaml +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/.nvmrc +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/configuration/cleanNodeModule.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/configuration/gitClone.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/configuration/moduleConfiguration.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/configuration/updateModule.cjs +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/init.cjs +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/package.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index}/.editorconfig +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/.env.development +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/.env.production +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index}/.env.test +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index}/.eslintignore +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/.eslintrc.cjs +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index}/.prettierignore +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/.prettierrc.cjs +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/auto-imports.d.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/build/enteryJson.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/build/vite-addInfo-html.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/build/vite-plugin-stats-html.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/components.d.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/env.d.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/index.html +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/package.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/css/element-plus/css-vars.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/css/element-plus/index.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/css/element-ui/index.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/css/equipStatus.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/css/index.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/css/reset-6-1.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.ttf +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff2 +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index}/public/static/fonts/element-icons.ttf +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index}/public/static/fonts/element-icons.woff +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.ttf +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff2 +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/http/createAxios.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/head-background.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-contentfull.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index}/public/static/images/index-loading.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-small.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-logo-src.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-nopage-dark.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-nopage-green.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-nopage-light.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-skin-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-skin-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-skin-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-skin.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-upgrade.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-user-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-user-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-user-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-user.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/login-bg-img.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/logo.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/menu-background.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/renew-message-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/renew-message-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/renew-message-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/right-close.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/right-open.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-fullscreen.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-guzhang.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-jinggao.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-shezhi.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-xinxi.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-zichan.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/unread-message-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/unread-message-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/unread-message-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/images/webconfig-location.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/axios.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/echarts.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js.gz +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/enc-base64-min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/filereader.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/font.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/getConfigInfoData.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/getLanguageOptions.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/getUserPermissionList.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/h5player.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/jquery.slim.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/jszip.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/liveplayer-lib.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/moment.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/pptxjs.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/js/tXml.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/json/RAMScope.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/json/config.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/json/snapshot.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/themes/dark.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/themes/default-theme-6-1.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/themes/default-theme.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/themes/green-6-1.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/themes/light.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/public/static/themes/themeConfig.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/App.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/assets/plugins/encrypt.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/auto-import.d.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/asideMenu/contractMenu.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/asideMenu/menu.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/asideMenu/topNav.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/contextMenu/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/contextMenu/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/images/appconnect.jpg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/RenewDialog.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/renew.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/forceEdit.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/safeModeDialog/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/inputPassword/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/isDebug/isDebug.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/isDebug/warning.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/noAccess/noAccess.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/noAccess/noPage.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/sceneMonitor/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/toast/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/toast/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/unreadMsg/listItem.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/components/unreadMsg/unread.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/hostMap.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/main.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/mixins/judgePermission.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/publish/pub.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/request/api/frame.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/request/api.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/router.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/store.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-login → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index}/src/types.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/utils/MFEManager.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/utils/gwEquipCache.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/utils/gwSignalr.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/utils/historyExport.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/utils/setStorage.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/views/Index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/views/index.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/views/jumpIframe/index.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/views/jumpIframe/preloadMethod.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/src/views/jumpIframe/queryParser.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/tsconfig.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-index/vite.config.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/.babelrc +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/.env.development +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/.env.production +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/.eslintrc.cjs +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/auto-imports.d.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/build/enteryJson.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/build/vite-addInfo-html.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/build/vite-plugin-stats-html.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/env.d.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/index.html +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/package.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/css/drag.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/css/element-plus/css-vars.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/css/element-plus/index.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/css/element-ui/index.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/css/element-ui/reset.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/css/index.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/css/reset-6-1.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.ttf +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff2 +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login}/public/static/fonts/element-icons.ttf +0 -0
- /package/{ganwei-iotcenter-index-6.2.0/packages/ganwei-iotcenter-template → ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login}/public/static/fonts/element-icons.woff +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.ttf +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff2 +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/http/createAxios.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/center.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/centerActive.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/center_light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/index-loading.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-dark.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-green.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-small.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/index-logo-src.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/left.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/leftActive.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/left_light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/login-bg-img.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/login-drag-start.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/login-drag-stop.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/logo.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/right.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/rightActive.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/images/right_light.svg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/js/axios.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/js/drag.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/js/font.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/js/getConfigInfoData.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/js/getLanguageOptions.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/js/jquery.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/themes/dark.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/themes/default-theme-6-1.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/themes/default-theme.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/themes/green-6-1.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/themes/light.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/public/static/themes/themeConfig.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/App.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/alertHandle.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/browserScroll.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/btnHandle.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/containerHandle.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/dialogStyle.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/equipStatus.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/index.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/inputStyle.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/listHandle.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/login.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/mainInfo.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/maintenanceInfo.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/style.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/tableHandle.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/css/txtHandle.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/images/login-bg-img.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/images/login-sso-error.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/images/logo-bg.png +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/assets/plugins/encrypt.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/components/declaration/declaration.scss +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/components/declaration/declaration.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/components/declaration/declarationPacts.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/components/passwordModification/checkEmailContainer.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/components/passwordModification/inputEmailContainer.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/components/passwordModification/modifyPasswordContainer.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification - /345/211/257/346/234/254.vue" +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/directive/loadMore/loadMore.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/hostMap.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/main.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/mixins/setDefaultLanguage.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/request/api/login.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/request/api.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/router.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/utils/formValidate.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/utils/isApp.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/utils/language.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/utils/myUtils.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/utils/timeFormat.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/utils/timesYMDHMS.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/views/js/mainInfo.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/views/js/maintenanceInfo.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/views/login.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/views/ssoLogin.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/src/views/ssoLogout.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-login/vite.config.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/.babelrc +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/.env.development +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/.env.production +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/.eslintrc.cjs +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/auto-imports.d.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/build/enteryJson.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/build/vite-addInfo-html.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/build/vite-addInfo-html.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/env.d.ts +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/index.html +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/package.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/css/element-plus/css-vars.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/css/element-plus/index.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/css/reset-6-1.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.ttf +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff2 +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.css +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.ttf +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff2 +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/http/createAxios.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/js/axios.min.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/js/font.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/js/getConfigInfoData.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/js/getLanguageOptions.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/themes/default-theme-6-1.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/public/static/themes/themeConfig.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/src/App.vue +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/src/assets/images/template.jpg +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/src/hostMap.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/src/main.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/src/request/api/template.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/src/request/api.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/src/router.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/src/utils/setStorage.js +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/tsconfig.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/tsconfig.node.json +0 -0
- /package/{ganwei-iotcenter-index-6.2.0 → ganwei-iotcenter-index-6.2.1}/packages/ganwei-iotcenter-template/vite.config.ts +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
/* gw-color
|
|
2
|
+
/* gw-color 为基础颜色,原则上不允许添加、修改 */
|
|
3
3
|
--gw-color-primary: #3875ff;
|
|
4
4
|
--gw-color-primary1: #7af8ff;
|
|
5
5
|
--gw-color-primary2: #eaf4f8;
|
|
@@ -7,38 +7,34 @@
|
|
|
7
7
|
--gw-color-primary4: #60a3ff;
|
|
8
8
|
--gw-color-primary5: #38b7ff;
|
|
9
9
|
--gw-color-primary6: #276bed;
|
|
10
|
-
|
|
11
10
|
--gw-color-success: #13a212;
|
|
12
11
|
--gw-color-success1: #dfffcf;
|
|
13
12
|
--gw-color-success2: #4cff79;
|
|
14
13
|
--gw-color-success3: #a9d77e;
|
|
15
14
|
--gw-color-success4: #51c41c;
|
|
16
15
|
--gw-color-success5: #387500;
|
|
17
|
-
|
|
18
16
|
--gw-color-waning: #d08b00;
|
|
19
17
|
--gw-color-waning1: #fffbe6;
|
|
20
18
|
--gw-color-waning2: #ffe58f;
|
|
21
19
|
--gw-color-waning3: #f8c161;
|
|
22
20
|
--gw-color-waning4: #ff8f3a;
|
|
23
|
-
|
|
24
21
|
--gw-color-danger: #f22433;
|
|
25
22
|
--gw-color-danger1: #fff2f1;
|
|
26
23
|
--gw-color-danger2: #fccec6;
|
|
27
24
|
--gw-color-danger3: #ff484b;
|
|
28
25
|
--gw-color-danger4: #9b2627;
|
|
29
|
-
|
|
30
|
-
--gw-color-
|
|
31
|
-
--gw-color-
|
|
32
|
-
--gw-color-
|
|
33
|
-
--gw-color-
|
|
34
|
-
--gw-color-
|
|
35
|
-
--gw-color-
|
|
36
|
-
--gw-color-
|
|
37
|
-
--gw-color-
|
|
38
|
-
--gw-color-
|
|
39
|
-
--gw-color-
|
|
40
|
-
--gw-color-
|
|
41
|
-
--gw-color-Neutrals12: #555555;
|
|
26
|
+
--gw-color-Neutrals1: #333;
|
|
27
|
+
--gw-color-Neutrals2: #333;
|
|
28
|
+
--gw-color-Neutrals3: #333;
|
|
29
|
+
--gw-color-Neutrals4: #333;
|
|
30
|
+
--gw-color-Neutrals5: #333;
|
|
31
|
+
--gw-color-Neutrals6: #333;
|
|
32
|
+
--gw-color-Neutrals7: #333;
|
|
33
|
+
--gw-color-Neutrals8: #333;
|
|
34
|
+
--gw-color-Neutrals9: #333;
|
|
35
|
+
--gw-color-Neutrals10: #333;
|
|
36
|
+
--gw-color-Neutrals11: #333;
|
|
37
|
+
--gw-color-Neutrals12: #555;
|
|
42
38
|
--gw-color-Neutrals13: #8b8f97;
|
|
43
39
|
--gw-color-Neutrals14: #626d84;
|
|
44
40
|
--gw-color-Neutrals15: #dfe9ff;
|
|
@@ -49,42 +45,54 @@
|
|
|
49
45
|
--gw-color-Neutrals20: #f2f3f5;
|
|
50
46
|
--gw-color-Neutrals21: #f2f6ff;
|
|
51
47
|
--gw-color-Neutrals22: #f1f4f4;
|
|
52
|
-
--gw-color-Neutrals23: #
|
|
53
|
-
--gw-color-Neutrals24: #
|
|
54
|
-
--gw-color-Neutrals25: #
|
|
55
|
-
--gw-color-Neutrals26: #
|
|
56
|
-
--gw-color-Neutrals27: #
|
|
48
|
+
--gw-color-Neutrals23: #fff;
|
|
49
|
+
--gw-color-Neutrals24: #eee;
|
|
50
|
+
--gw-color-Neutrals25: #fff;
|
|
51
|
+
--gw-color-Neutrals26: #fff;
|
|
52
|
+
--gw-color-Neutrals27: #fff;
|
|
57
53
|
--gw-color-Neutrals28: #f9f9f9;
|
|
58
|
-
--gw-color-Neutrals29: #D8DDEA;
|
|
59
54
|
|
|
60
|
-
/* 命名规则 参考BEM
|
|
55
|
+
/* 命名规则 参考BEM命名法 */
|
|
56
|
+
|
|
61
57
|
/* --组件-元素-样式名__状态 */
|
|
58
|
+
|
|
62
59
|
/* 样式名:color(字体颜色),background(背景色),border(边框色) */
|
|
60
|
+
|
|
63
61
|
/* 状态:hover(悬浮),focus(聚焦),select、checked(选择)、...等 */
|
|
64
62
|
|
|
65
63
|
/* 底部主背景色 */
|
|
66
64
|
--frame-main-background: var(--gw-color-Neutrals20);
|
|
67
65
|
--frame-main-background-black: var(--gw-color-Neutrals27);
|
|
66
|
+
|
|
68
67
|
/* 弹窗内容深色背景 */
|
|
69
68
|
--frame-main-background-1: var(--gw-color-Neutrals25);
|
|
69
|
+
|
|
70
70
|
/* 内容区域背景 */
|
|
71
71
|
--frame-main-background-2: var(--gw-color-Neutrals23);
|
|
72
|
+
|
|
72
73
|
/* 内容header深色背景 */
|
|
73
74
|
--frame-main-background-3: var(--gw-color-Neutrals22);
|
|
75
|
+
|
|
74
76
|
/* 任务库 popover 背景 */
|
|
75
77
|
--frame-main-background-4: var(--gw-color-Neutrals20);
|
|
78
|
+
|
|
76
79
|
/* 主要字体色 */
|
|
77
80
|
--frame-main-color: var(--gw-color-Neutrals2);
|
|
81
|
+
|
|
78
82
|
/* 稍浅字体色 */
|
|
79
83
|
--frame-main-color-1: var(--gw-color-Neutrals12);
|
|
84
|
+
|
|
80
85
|
/* 主要边框色 */
|
|
81
|
-
|
|
86
|
+
|
|
87
|
+
/* --bor-default => --border-color-2 => */
|
|
82
88
|
--frame-main-border: var(--gw-color-Neutrals18);
|
|
89
|
+
|
|
83
90
|
/* 稍浅边框色 */
|
|
84
91
|
--frame-main-border1: var(--gw-color-Neutrals16);
|
|
85
92
|
|
|
86
93
|
/* 顶部背景色 */
|
|
87
94
|
--frame-top-background: var(--gw-color-Neutrals27);
|
|
95
|
+
|
|
88
96
|
/* 左侧菜单背景色 */
|
|
89
97
|
--frame-left-background: var(--gw-color-Neutrals23);
|
|
90
98
|
|
|
@@ -96,19 +104,17 @@
|
|
|
96
104
|
/* message弹窗 */
|
|
97
105
|
--message-background: var(--gw-color-Neutrals23);
|
|
98
106
|
--message-border: var(--gw-color-Neutrals22);
|
|
99
|
-
|
|
100
107
|
--message-box-background: var(--gw-color-Neutrals23);
|
|
101
108
|
--message-box-color: var(--gw-color-Neutrals2);
|
|
102
109
|
--message-box-button-color: var(--gw-color-Neutrals27);
|
|
103
110
|
|
|
104
111
|
/* 通知弹窗 */
|
|
105
112
|
--notification-color: var(--gw-color-Neutrals2);
|
|
106
|
-
|
|
107
113
|
--loading-background: var(--gw-color-Neutrals26);
|
|
108
114
|
|
|
109
115
|
/* 标签页 */
|
|
110
116
|
--labelpage-header-background: var(--gw-color-Neutrals20);
|
|
111
|
-
--labelpage-background: var(--gw-color-
|
|
117
|
+
--labelpage-background: var(--gw-color-Neutrals18);
|
|
112
118
|
--labelpage-background__active: var(--gw-color-Neutrals27);
|
|
113
119
|
--labelpage-color: var(--gw-color-Neutrals12);
|
|
114
120
|
--labelpage-color__active: var(--gw-color-Neutrals2);
|
|
@@ -120,7 +126,7 @@
|
|
|
120
126
|
--equiptab-color__active: var(--gw-color-Neutrals27);
|
|
121
127
|
--tab-color: var(--gw-color-Neutrals12);
|
|
122
128
|
--tab-color__active: var(--gw-color-Neutrals2);
|
|
123
|
-
--tab-background: var(--gw-color-
|
|
129
|
+
--tab-background: var(--gw-color-Neutrals16);
|
|
124
130
|
--tab-background__active: var(--gw-color-primary);
|
|
125
131
|
|
|
126
132
|
/* 实施快照标签页 */
|
|
@@ -138,19 +144,18 @@
|
|
|
138
144
|
--menu-color__active: var(--gw-color-Neutrals27);
|
|
139
145
|
--menu-background__hover: var(--gw-color-Neutrals19);
|
|
140
146
|
--menu-background__active: var(--gw-color-primary);
|
|
141
|
-
--menu-popup-color: var(--gw-color-Neutrals12);
|
|
142
147
|
--menu-popup-background: var(--gw-color-Neutrals21);
|
|
143
|
-
--menu-popup-background__hover: var(--gw-color-
|
|
148
|
+
--menu-popup-background__hover: var(--gw-color-Neutrals19);
|
|
144
149
|
--menu-submenu-color: var(--gw-color-Neutrals2);
|
|
145
150
|
|
|
146
|
-
/*form el-input
|
|
151
|
+
/* form el-input 用于表单 */
|
|
147
152
|
--form-input-color: var(--gw-color-Neutrals2);
|
|
148
153
|
--form-input-background: var(--gw-color-Neutrals25);
|
|
149
154
|
--form-input-background__disabled: var(--gw-color-Neutrals20);
|
|
150
155
|
--form-input-autofill-shadow: var(--gw-color-Neutrals25);
|
|
151
156
|
--input-number-background: var(--gw-color-Neutrals25);
|
|
152
157
|
|
|
153
|
-
/*el-input
|
|
158
|
+
/* el-input 基础 */
|
|
154
159
|
--input-color: var(--gw-color-Neutrals2);
|
|
155
160
|
--input-background: var(--gw-color-Neutrals27);
|
|
156
161
|
--input-background__disabled: var(--gw-color-Neutrals20);
|
|
@@ -162,19 +167,18 @@
|
|
|
162
167
|
--input-autofill-shadow: var(--gw-color-Neutrals27);
|
|
163
168
|
--input-number-button-background: var(--gw-color-Neutrals20);
|
|
164
169
|
|
|
165
|
-
/*form-item
|
|
170
|
+
/* form-item 表单项 */
|
|
166
171
|
--form-item-color__error: var(--gw-color-danger);
|
|
167
172
|
--form-label-color: var(--gw-color-Neutrals2);
|
|
168
173
|
|
|
169
|
-
/*el-select
|
|
174
|
+
/* el-select 下拉框 */
|
|
170
175
|
--select-tag-color: var(--gw-color-Neutrals12);
|
|
171
|
-
--select-tag-background: var(--gw-color-
|
|
176
|
+
--select-tag-background: var(--gw-color-Neutrals23);
|
|
172
177
|
--select-dropdown-border: var(--gw-color-Neutrals22);
|
|
173
178
|
--select-dropdown-background: var(--gw-color-Neutrals27);
|
|
174
179
|
--select-dropdown-color: var(--gw-color-Neutrals1);
|
|
175
180
|
--select-dropdown-color__selected: var(--gw-color-Neutrals27);
|
|
176
181
|
--select-dropdown-item-background__hover: var(--gw-color-primary);
|
|
177
|
-
|
|
178
182
|
--tag-background__success: var(--gw-color-primary);
|
|
179
183
|
--tag-background__danger: var(--gw-color-danger);
|
|
180
184
|
--tag-color: var(--gw-color-Neutrals27);
|
|
@@ -185,7 +189,7 @@
|
|
|
185
189
|
--dropdown-menu-color: var(--gw-color-Neutrals1);
|
|
186
190
|
--dropdown-menu-icon-color: var(--gw-color-Neutrals12);
|
|
187
191
|
|
|
188
|
-
/*el-checkbox
|
|
192
|
+
/* el-checkbox 多选框 */
|
|
189
193
|
--checkbox-label-color: var(--gw-color-Neutrals2);
|
|
190
194
|
--checkbox-label-color__checked: var(--gw-color-primary);
|
|
191
195
|
--checkbox-label-color__disabled: var(--gw-color-Neutrals12);
|
|
@@ -194,7 +198,7 @@
|
|
|
194
198
|
--checkbox-inner-background: var(--gw-color-Neutrals25);
|
|
195
199
|
--checkbox-inner-border__checked: var(--gw-color-primary);
|
|
196
200
|
|
|
197
|
-
/* el-radio
|
|
201
|
+
/* el-radio 单选框 */
|
|
198
202
|
--radio-label-color: var(--gw-color-Neutrals2);
|
|
199
203
|
--radio-label-color__disabled: var(--gw-color-Neutrals12);
|
|
200
204
|
--radio-inner-after: var(--gw-color-Neutrals27);
|
|
@@ -203,7 +207,7 @@
|
|
|
203
207
|
--radio-inner-background___disabled: var(--gw-color-Neutrals12);
|
|
204
208
|
--radio-inner-border__checked: var(--gw-color-primary);
|
|
205
209
|
|
|
206
|
-
/* el-switch
|
|
210
|
+
/* el-switch 滑块 */
|
|
207
211
|
--switch-label-color: var(--gw-color-Neutrals2);
|
|
208
212
|
--switch-core-border: var(--gw-color-Neutrals18);
|
|
209
213
|
--switch-core-background: var(--gw-color-Neutrals16);
|
|
@@ -235,7 +239,6 @@
|
|
|
235
239
|
--datepicker--table-header-color: var(--gw-color-Neutrals20);
|
|
236
240
|
--datepicker-border: var(--gw-color-Neutrals22);
|
|
237
241
|
--datepicker-background: var(--gw-color-Neutrals26);
|
|
238
|
-
--datepicker-background_active: var(--gw-color-primary);
|
|
239
242
|
--datepicker-background__inrange: var(--gw-color-Neutrals15);
|
|
240
243
|
--datepicker-icon-btn-color: var(--gw-color-primary);
|
|
241
244
|
--datepicker-month-background__hover: var(--gw-color-primary);
|
|
@@ -260,7 +263,6 @@
|
|
|
260
263
|
|
|
261
264
|
/* 树型组件 */
|
|
262
265
|
--tree-node-background: var(--gw-color-Neutrals23);
|
|
263
|
-
--tree-node-background_transparent: transparent;
|
|
264
266
|
--tree-node-background_select: var(--gw-color-Neutrals27);
|
|
265
267
|
--tree-node-background_hover: var(--gw-color-Neutrals21);
|
|
266
268
|
--tree-node-color: var(--gw-color-Neutrals2);
|
|
@@ -274,7 +276,7 @@
|
|
|
274
276
|
/* 分页 */
|
|
275
277
|
--page-color: var(--gw-color-Neutrals6);
|
|
276
278
|
--page-color__disabled: var(--gw-color-Neutrals13);
|
|
277
|
-
--page-color__active: var(--gw-color-
|
|
279
|
+
--page-color__active: var(--gw-color-Neutrals2);
|
|
278
280
|
--page-background: var(--gw-color-Neutrals22);
|
|
279
281
|
--page-background__active: var(--gw-color-primary);
|
|
280
282
|
--page-border: var(--gw-color-Neutrals21);
|
|
@@ -297,7 +299,6 @@
|
|
|
297
299
|
|
|
298
300
|
/* fullcalendar 日历 */
|
|
299
301
|
--fc-color: var(--gw-color-Neutrals2);
|
|
300
|
-
--fc-color__active: var(--gw-color-Neutrals27);
|
|
301
302
|
--fc-button-background: var(--gw-color-Neutrals23);
|
|
302
303
|
--fc-timelint-border: var(--gw-color-Neutrals18);
|
|
303
304
|
--fc-timelint-background__active: var(--gw-color-primary);
|
|
@@ -312,27 +313,21 @@
|
|
|
312
313
|
/* 滚动条 */
|
|
313
314
|
--scrollbar-background: var(--gw-color-Neutrals18);
|
|
314
315
|
--scrollbar-border: var(--gw-color-Neutrals18);
|
|
315
|
-
|
|
316
316
|
--timeline-line-background: var(--gw-color-Neutrals16);
|
|
317
317
|
--timeline-dot-background: var(--gw-color-Neutrals27);
|
|
318
318
|
--timeline-dot-background__active: var(--gw-color-primary);
|
|
319
319
|
--timeline-dot-border: var(--gw-color-Neutrals16);
|
|
320
320
|
--timeline-dot-border__active: var(--gw-color-Neutrals15);
|
|
321
321
|
--timeline-default: var(--gw-color-Neutrals18);
|
|
322
|
-
|
|
323
322
|
--upload-tips-color: var(--gw-color-Neutrals13);
|
|
324
|
-
|
|
325
323
|
--contextmenu-background: var(--gw-color-Neutrals27);
|
|
326
324
|
--contextmenu-background__hover: var(--gw-color-Neutrals20);
|
|
327
325
|
--contextmenu-color: var(--gw-color-Neutrals1);
|
|
328
326
|
--contextmenu-color__disabled: var(--gw-color-Neutrals12);
|
|
329
327
|
--contextmenu-icon-color: var(--gw-color-Neutrals12);
|
|
330
|
-
|
|
331
|
-
--loading-bgColor: rgb(255, 255, 255);
|
|
332
|
-
|
|
328
|
+
--loading-bgColor: rgb(255 255 255);
|
|
333
329
|
--equipselect-header-background: var(--gw-color-Neutrals23);
|
|
334
330
|
--equipselect-body-background: var(--gw-color-Neutrals20);
|
|
335
|
-
|
|
336
331
|
--task-popper-background: var(--gw-color-Neutrals27);
|
|
337
332
|
--task-popper-item-background: var(--gw-color-Neutrals28);
|
|
338
333
|
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
:root, :host {
|
|
2
|
+
--con-textColor1: #333;
|
|
3
|
+
--snapshot-item-bg: #ffffff;
|
|
4
|
+
--snapshot-item-title: #333333;
|
|
5
|
+
--snapshot-desc-title: #000000;
|
|
6
|
+
--subTitle: #222222;
|
|
7
|
+
|
|
8
|
+
--appFrameMain-bg: #F5F6F6;
|
|
9
|
+
--appTop-color: #000000;
|
|
10
|
+
--appTop-scrollBg: #F5F6F6;
|
|
11
|
+
--appBottom-color: #2E323E;
|
|
12
|
+
|
|
13
|
+
--list-bg: #F5F6F6;
|
|
14
|
+
--list-color: #000000;
|
|
15
|
+
--list-border-color: #ADB1B9;
|
|
16
|
+
|
|
17
|
+
--content-bg: #eeeeee;
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
--voice-holding-bg1: #FFFFFF;
|
|
21
|
+
--voice-holding-bg2: #F5F6F6;
|
|
22
|
+
|
|
23
|
+
--welcomWord-icon: #626571;
|
|
24
|
+
--welcomWord-subtitle: #2D2E30;
|
|
25
|
+
--welcomWord-fontSizeColor: #222222;
|
|
26
|
+
--welcomWord-textareaBg: #ffffff;
|
|
27
|
+
|
|
28
|
+
--slider-runway: #3F4452;
|
|
29
|
+
--input-bg: #ffffff;
|
|
30
|
+
--input-border: #ADB1B9;
|
|
31
|
+
--input-readonly-Bg: #DFE4E7;
|
|
32
|
+
--radio-label: #222222;
|
|
33
|
+
|
|
34
|
+
--workorder-icon: #1F2329;
|
|
35
|
+
--workorder-title: #1F2329;
|
|
36
|
+
--workorder-orderBg: #F5F6F6;
|
|
37
|
+
--workorder-line: #cccccc;
|
|
38
|
+
--workorder-info-Bg: #ffffff;
|
|
39
|
+
--workorder-info-label: #646A73;
|
|
40
|
+
--workorder-upload-Bg: #F5F6F6;
|
|
41
|
+
--workorder-desc-time: #999999;
|
|
42
|
+
|
|
43
|
+
--tree-color: #838794;
|
|
44
|
+
--tree-selectBg: #FFFFFF;
|
|
45
|
+
|
|
46
|
+
--dialog-bottom-button-border: #E9E9E9;
|
|
47
|
+
--dialog-header-color: #000000;
|
|
48
|
+
|
|
49
|
+
--switch-core-Bg: #D5DADD;
|
|
50
|
+
--switch-core-Border: #BDC5C9;
|
|
51
|
+
|
|
52
|
+
--table-cell-color: #222222;
|
|
53
|
+
--set-item-color: #333333;
|
|
54
|
+
|
|
55
|
+
--dropdown-border: #DDE0E3;
|
|
56
|
+
--dropdown-hover: #F1F4F4;
|
|
57
|
+
--dropdown-popper-arrow: #ffffff;
|
|
58
|
+
|
|
59
|
+
--time-select-gradient: linear-gradient(180deg,
|
|
60
|
+
#ffffff 0%,
|
|
61
|
+
rgba(35, 41, 56, 0) 47%,
|
|
62
|
+
#ffffff 100%);
|
|
63
|
+
--time-select-active: #333333;
|
|
64
|
+
|
|
65
|
+
--login-btn-Bg: #3874F7;
|
|
66
|
+
|
|
67
|
+
--voice-holdingAni: linear-gradient(180deg, #ffffff 0%, #f5f6f6 100%);
|
|
68
|
+
--equip-tab-left: url("/static/img/left_white.svg");
|
|
69
|
+
--equip-tab-center: url("/static/img/center_white.svg");
|
|
70
|
+
--equip-tab-right: url("/static/img/right_white.svg");
|
|
71
|
+
|
|
72
|
+
--video-treeNode-bg: #ffffff;
|
|
73
|
+
--video-tree-border: #CCCCCC;
|
|
74
|
+
--video-extra-bg: #f1f4f4;
|
|
75
|
+
--video-extra-color: #262626;
|
|
76
|
+
--video-time-content-color: #2D2E30;
|
|
77
|
+
--video-time-timestamp-color: #B4B4B4;
|
|
78
|
+
--con-borderColor: #e6e6e6;
|
|
79
|
+
--con-bgColor5: #f5f5f5;
|
|
80
|
+
|
|
81
|
+
--voice-placeholder-title-color: #0070FF;
|
|
82
|
+
--voice-placeholder-background: linear-gradient(180deg, #E7E8FF 0%, #D1EEFF 100%);
|
|
83
|
+
--voice-command-list-background: #FFFFFF;
|
|
84
|
+
--voice-command-item-background: #F6F8FD;
|
|
85
|
+
}
|
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="app">
|
|
3
|
+
<router-view v-cloak />
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script setup lang="ts">
|
|
8
|
+
import { onBeforeMount } from 'vue'
|
|
9
|
+
function callbackVoiceXFData(data) {
|
|
10
|
+
if (data) {
|
|
11
|
+
let outerLink = document.getElementById('outerLink')
|
|
12
|
+
outerLink.contentWindow.postMessage({
|
|
13
|
+
voice: data
|
|
14
|
+
}, '*')
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
window.callbackVoiceXFData = callbackVoiceXFData
|
|
18
|
+
onBeforeMount(() => {
|
|
19
|
+
document.documentElement.setAttribute('data-theme', localStorage.theme || 'dark')
|
|
20
|
+
document.documentElement.setAttribute('class', localStorage.theme || 'dark')
|
|
21
|
+
document.documentElement.setAttribute('languagetype', localStorage.languageType || 'zh-CN')
|
|
22
|
+
window.addEventListener("message", function (event) {
|
|
23
|
+
if (event?.data?.voiceInit) {
|
|
24
|
+
console.log("语音初始化");
|
|
25
|
+
try {
|
|
26
|
+
myJavaFun.SetKey(0, '81c0081e');
|
|
27
|
+
myJavaFun.SetVoiceXFLanguage('zh_cn');
|
|
28
|
+
myJavaFun.SetVoiceXFAccent('mandarin');
|
|
29
|
+
} catch (e) {
|
|
30
|
+
console.log(e)
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
if (event?.data?.StartVoice) {
|
|
34
|
+
console.log('开始语音')
|
|
35
|
+
try {
|
|
36
|
+
myJavaFun.StartVoice('1');
|
|
37
|
+
} catch (e) {
|
|
38
|
+
console.log(e)
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
if (event?.data?.StopVoice) {
|
|
42
|
+
console.log('结束语音')
|
|
43
|
+
try {
|
|
44
|
+
myJavaFun.StopVoice();
|
|
45
|
+
} catch (e) {
|
|
46
|
+
console.log(e)
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
})
|
|
51
|
+
</script>
|
|
52
|
+
<style>
|
|
53
|
+
html body {
|
|
54
|
+
position: relative;
|
|
55
|
+
|
|
56
|
+
overflow: hidden;
|
|
57
|
+
|
|
58
|
+
height: 100vh;
|
|
59
|
+
min-height: 100vh;
|
|
60
|
+
|
|
61
|
+
font-family: 'Microsoft YaHei', sans-serif;
|
|
62
|
+
|
|
63
|
+
background-color: var(--frame-main-background);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
html body div {
|
|
67
|
+
box-sizing: border-box;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
a:focus,
|
|
71
|
+
input:focus,
|
|
72
|
+
p:focus,
|
|
73
|
+
div:focus,
|
|
74
|
+
span:focus,
|
|
75
|
+
button:focus,
|
|
76
|
+
i:focus,
|
|
77
|
+
label:focus,
|
|
78
|
+
.el-checkbox:focus {
|
|
79
|
+
-webkit-tap-highlight-color: transparent;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.noData {
|
|
83
|
+
display: flex;
|
|
84
|
+
align-items: center;
|
|
85
|
+
justify-content: center;
|
|
86
|
+
|
|
87
|
+
width: 100%;
|
|
88
|
+
height: 100%;
|
|
89
|
+
|
|
90
|
+
color: white;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.noData span {
|
|
94
|
+
font-size: 16px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.app {
|
|
98
|
+
padding-top: constant(safe-area-inset-top);
|
|
99
|
+
padding-top: env(safe-area-inset-top);
|
|
100
|
+
padding-bottom: constant(safe-area-inset-bottom);
|
|
101
|
+
padding-bottom: env(safe-area-inset-bottom);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.app {
|
|
105
|
+
overflow: hidden;
|
|
106
|
+
overflow: -moz-scrollbars-none;
|
|
107
|
+
height: 100vh;
|
|
108
|
+
|
|
109
|
+
-ms-overflow-style: none;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.loginSet {
|
|
113
|
+
top: 38px !important;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.loginSet .el-button {
|
|
117
|
+
width: 100% !important;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.flex-start {
|
|
121
|
+
display: flex;
|
|
122
|
+
align-items: center;
|
|
123
|
+
justify-content: flex-start;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.flex-start-start {
|
|
127
|
+
display: flex;
|
|
128
|
+
align-items: flex-start;
|
|
129
|
+
justify-content: flex-start;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.flex-end {
|
|
133
|
+
display: flex;
|
|
134
|
+
align-items: center;
|
|
135
|
+
justify-content: flex-end;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.flex-center {
|
|
139
|
+
display: flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
justify-content: center;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.flex-column {
|
|
145
|
+
flex-direction: column;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.flex-between-center {
|
|
149
|
+
display: flex;
|
|
150
|
+
align-items: center;
|
|
151
|
+
justify-content: space-between;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.flex1 {
|
|
155
|
+
flex: 1;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.flex-shrink0 {
|
|
159
|
+
flex-shrink: 0;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.flex-wrap {
|
|
163
|
+
flex-wrap: wrap;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.line1 {
|
|
167
|
+
overflow: hidden;
|
|
168
|
+
display: -webkit-box;
|
|
169
|
+
-webkit-box-orient: vertical;
|
|
170
|
+
|
|
171
|
+
word-break: break-all;
|
|
172
|
+
|
|
173
|
+
-webkit-line-clamp: 1;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.line2 {
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
display: -webkit-box;
|
|
179
|
+
-webkit-box-orient: vertical;
|
|
180
|
+
|
|
181
|
+
word-break: break-all;
|
|
182
|
+
|
|
183
|
+
-webkit-line-clamp: 2;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.w100 {
|
|
187
|
+
width: 100%;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.wh100 {
|
|
191
|
+
width: 100%;
|
|
192
|
+
height: 100%;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.editBaseCheckBox {
|
|
196
|
+
width: 370px !important;
|
|
197
|
+
padding: 12px;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.editBaseCheckBox .el-checkbox-group {
|
|
201
|
+
display: flex;
|
|
202
|
+
flex-flow: row wrap;
|
|
203
|
+
justify-content: flex-start;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.editBaseCheckBox .el-autocomplete {
|
|
207
|
+
width: 100%;
|
|
208
|
+
height: 32px;
|
|
209
|
+
margin-bottom: 12px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.editBaseCheckBox .el-autocomplete .el-input,
|
|
213
|
+
.editBaseCheckBox .el-autocomplete div {
|
|
214
|
+
height: 32px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.editBaseCheckBox .el-autocomplete input {
|
|
218
|
+
height: 100% !important;
|
|
219
|
+
background-color: black;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.conditionAnalysePopper {
|
|
223
|
+
width: 300px !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.conditionAnalysePopper .conditionAnalyse {
|
|
227
|
+
/* width: 400px; */
|
|
228
|
+
padding: 7px 12px;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.conditionAnalysePopper .conditionAnalyse .el-row {
|
|
232
|
+
margin-top: 12px;
|
|
233
|
+
padding-bottom: 4px;
|
|
234
|
+
|
|
235
|
+
color: #f0f4ff;
|
|
236
|
+
|
|
237
|
+
border-color: rgb(240 244 255 / 16%);
|
|
238
|
+
border-bottom: 1px dashed;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.conditionAnalysePopper .conditionAnalyse .el-row .el-col {
|
|
242
|
+
text-align: left;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.conditionAnalysePopper .conditionAnalyse .el-row:first-child {
|
|
246
|
+
margin-top: 0 !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.appFrameMain {
|
|
250
|
+
.wujie_iframe {
|
|
251
|
+
display: inline-block;
|
|
252
|
+
width: 100%;
|
|
253
|
+
height: 100%;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
</style>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<Component :is="getComponent(data.type)" :data="data" :style="data.style"></Component>
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script setup lang="ts">
|
|
6
|
+
import { NavItem } from '@ganwei-web/gw-app-mfe';
|
|
7
|
+
|
|
8
|
+
import NavBarItemBack from './NavBarItemBack.vue'
|
|
9
|
+
import NavBarItemCommon from './NavBarItemCommon.vue'
|
|
10
|
+
import NavBarItemLogo from './NavBarItemLogo.vue'
|
|
11
|
+
|
|
12
|
+
const props = defineProps<{ data: NavItem }>()
|
|
13
|
+
|
|
14
|
+
const getComponent = (type: string) => {
|
|
15
|
+
switch (type) {
|
|
16
|
+
case 'logo':
|
|
17
|
+
return NavBarItemLogo;
|
|
18
|
+
case 'back':
|
|
19
|
+
return NavBarItemBack;
|
|
20
|
+
case 'common':
|
|
21
|
+
return NavBarItemCommon;
|
|
22
|
+
default:
|
|
23
|
+
return {};
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
</script>
|
|
27
|
+
|
|
28
|
+
<style lang="scss" scoped></style>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div @click="data.onClick">
|
|
3
|
+
<template v-if="data.icon">
|
|
4
|
+
<i class="iconfont-app" :class="data.icon"></i>
|
|
5
|
+
</template>
|
|
6
|
+
<template v-if="data.img">
|
|
7
|
+
<img :src="data.img" alt="" />
|
|
8
|
+
</template>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script setup lang="ts">
|
|
13
|
+
import { INavItemBack } from '@ganwei-web/gw-app-mfe';
|
|
14
|
+
|
|
15
|
+
defineProps<{ data: INavItemBack }>()
|
|
16
|
+
</script>
|
|
17
|
+
|
|
18
|
+
<style lang="scss" scoped></style>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div @click="data.onClick">
|
|
3
|
+
{{ data.title }}
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script setup lang="ts">
|
|
8
|
+
import { INavItemCommon } from '@ganwei-web/gw-app-mfe';
|
|
9
|
+
|
|
10
|
+
const props = defineProps<{ data: INavItemCommon }>()
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<style lang="scss" scoped></style>
|