@ganwei-web/ganwei-pc-cli 6.2.1 → 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.
Files changed (586) hide show
  1. package/ganwei-app-6.2.1/.nvmrc +1 -0
  2. package/ganwei-app-6.2.1/moduleConfiguration/.editorconfig +22 -0
  3. package/ganwei-app-6.2.1/moduleConfiguration/.env.development +23 -0
  4. package/ganwei-app-6.2.1/moduleConfiguration/.env.local.config +8 -0
  5. package/ganwei-app-6.2.1/moduleConfiguration/.env.production +29 -0
  6. package/ganwei-app-6.2.1/moduleConfiguration/.env.test +22 -0
  7. package/ganwei-app-6.2.1/moduleConfiguration/.eslintignore +13 -0
  8. package/ganwei-app-6.2.1/moduleConfiguration/.eslintrc.cjs +178 -0
  9. package/ganwei-app-6.2.1/moduleConfiguration/.prettierignore +13 -0
  10. package/ganwei-app-6.2.1/moduleConfiguration/.prettierrc.cjs +37 -0
  11. package/ganwei-app-6.2.1/moduleConfiguration/cleanNodeModule.js +16 -0
  12. package/ganwei-app-6.2.1/moduleConfiguration/copyFile.js +133 -0
  13. package/ganwei-app-6.2.1/moduleConfiguration/filterStatic.js +65 -0
  14. package/ganwei-app-6.2.1/moduleConfiguration/init.js +48 -0
  15. package/ganwei-app-6.2.1/moduleConfiguration/moduleConfiguration.json +17 -0
  16. package/ganwei-app-6.2.1/package.json +41 -0
  17. package/ganwei-app-6.2.1/packages/ganwei-app-index/.babelrc +4 -0
  18. package/ganwei-app-6.2.1/packages/ganwei-app-index/.editorconfig +22 -0
  19. package/ganwei-app-6.2.1/packages/ganwei-app-index/.env.development +23 -0
  20. package/ganwei-app-6.2.1/packages/ganwei-app-index/.env.production +29 -0
  21. package/ganwei-app-6.2.1/packages/ganwei-app-index/.env.test +22 -0
  22. package/ganwei-app-6.2.1/packages/ganwei-app-index/.eslintignore +13 -0
  23. package/ganwei-app-6.2.1/packages/ganwei-app-index/.eslintrc.cjs +178 -0
  24. package/ganwei-app-6.2.1/packages/ganwei-app-index/.prettierignore +13 -0
  25. package/ganwei-app-6.2.1/packages/ganwei-app-index/.prettierrc.cjs +37 -0
  26. package/ganwei-app-6.2.1/packages/ganwei-app-index/.stylelintrc.cjs +18 -0
  27. package/ganwei-app-6.2.1/packages/ganwei-app-index/auto-imports.d.ts +5 -0
  28. package/ganwei-app-6.2.1/packages/ganwei-app-index/env.d.ts +22 -0
  29. package/ganwei-app-6.2.1/packages/ganwei-app-index/index.html +21 -0
  30. package/ganwei-app-6.2.1/packages/ganwei-app-index/package-lock.json +18130 -0
  31. package/ganwei-app-6.2.1/packages/ganwei-app-index/package.json +88 -0
  32. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/ElementPlusAdapter.css +706 -0
  33. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/index-plus-vars.css +93 -0
  34. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/index-plus.css +1 -0
  35. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/index.css +15254 -0
  36. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/pptxjs.css +161 -0
  37. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/reset-6.1.css +433 -0
  38. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/element-icons.ttf +0 -0
  39. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/element-icons.woff +0 -0
  40. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.css +1167 -0
  41. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.js +1 -0
  42. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.json +2025 -0
  43. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.ttf +0 -0
  44. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.woff +0 -0
  45. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.woff2 +0 -0
  46. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/index-loading.png +0 -0
  47. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/loading_1.png +0 -0
  48. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/loading_2.png +0 -0
  49. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/loading_3.png +0 -0
  50. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/loading_4.png +0 -0
  51. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/logo.png +0 -0
  52. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/noPermission.png +0 -0
  53. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/noPermission1.png +0 -0
  54. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/refresh.png +0 -0
  55. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/scene_current.svg +36 -0
  56. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/scene_equip.svg +30 -0
  57. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/scene_safe.svg +29 -0
  58. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/scene_zonghe.svg +28 -0
  59. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_alarm.svg +13 -0
  60. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_info.svg +15 -0
  61. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_setup.svg +15 -0
  62. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_warning.svg +15 -0
  63. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/snapshot_zichan.svg +15 -0
  64. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/images/ts.svg +29 -0
  65. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/axios.min.js +2 -0
  66. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/base/MFEManager.js +70 -0
  67. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/echarts.min.js +45 -0
  68. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/enc-base64-min.js +88 -0
  69. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/hmac-sha256.js +18 -0
  70. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/jsencrypt.min.js +2 -0
  71. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/signalr.min.js +17 -0
  72. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/transformpcm.worker.js +58 -0
  73. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2/elementUI.min.js +1 -0
  74. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2/injectCss.js +12 -0
  75. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2/vue-i18n.min.js +6 -0
  76. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2/vue-router.min.js +11 -0
  77. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2/vue.min.js +11 -0
  78. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue2/vuex.min.js +6 -0
  79. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/ElementPlusAdapter.iife.js +628 -0
  80. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/elementPlus.min.js +73 -0
  81. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/gw_app_api.iife.js +4024 -0
  82. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/vue-i18n.min.js +6 -0
  83. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/vue-router.min.js +6 -0
  84. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/vue.min.js +1 -0
  85. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/vuex.min.js +6 -0
  86. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/autoPlay.json +187 -0
  87. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/commandConfig.json +10 -0
  88. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/config.json +32 -0
  89. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/modules.json +93 -0
  90. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/player.json +6 -0
  91. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/ppt.json +6 -0
  92. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/scene.json +72 -0
  93. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/welcome.json +8 -0
  94. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/en-US/frame.json +30 -0
  95. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/en-US/publics.json +73 -0
  96. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/zh-CN/frame.json +30 -0
  97. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/zh-CN/publics.json +73 -0
  98. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/zh-HK/frame.json +30 -0
  99. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/language/zh-HK/publics.json +73 -0
  100. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/dark-6.1.css +325 -0
  101. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/dark.css +84 -0
  102. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/default-theme.js +43 -0
  103. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/light-6.1.css +333 -0
  104. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/themes/light.css +85 -0
  105. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/App.vue +256 -0
  106. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/components/NavBarItem.vue +28 -0
  107. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/components/NavBarItemBack.vue +18 -0
  108. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/components/NavBarItemCommon.vue +13 -0
  109. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/components/NavBarItemLogo.vue +33 -0
  110. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/index.vue +66 -0
  111. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/NavigationBar/models/index.ts +10 -0
  112. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/appFrame.vue +119 -0
  113. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/bottom.vue +76 -0
  114. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/css/bottom.scss +54 -0
  115. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/css/top.scss +44 -0
  116. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/js/useGestrue.ts +22 -0
  117. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/appFrame/top.vue +93 -0
  118. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/loading/index.vue +71 -0
  119. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/qrcodeReader/qrcodeReader.vue +328 -0
  120. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/components/QrcodeCapture.vue +54 -0
  121. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/components/QrcodeDropZone.vue +42 -0
  122. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/components/QrcodeStream.vue +327 -0
  123. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/index.js +32 -0
  124. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/camera.js +153 -0
  125. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/errors.js +25 -0
  126. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/scanner.js +114 -0
  127. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/shimGetUserMedia.js +30 -0
  128. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/util.js +22 -0
  129. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/mixins/CommonAPI.vue +27 -0
  130. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/enums/index.ts +19 -0
  131. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/hostMap.ts +8 -0
  132. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/main.ts +27 -0
  133. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/models/index.ts +81 -0
  134. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/request/api/Auth.ts +80 -0
  135. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/request/api.ts +5 -0
  136. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/router.ts +134 -0
  137. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/store.js +192 -0
  138. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/types.js +16 -0
  139. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/utils/MFEManager.ts +141 -0
  140. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/utils/URLSearchParams.ts +149 -0
  141. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/utils/defineWindowAttr.ts +4 -0
  142. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/utils/eventBus.ts +6 -0
  143. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/EditPassword/index.vue +142 -0
  144. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/ganwei-app-jump/src/index.vue +174 -0
  145. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/ganwei-app-jump/src/lifecycles.js +29 -0
  146. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/Index.vue +113 -0
  147. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/getSystemInfo.ts +35 -0
  148. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useEventBus.ts +93 -0
  149. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useInitMenus.ts +47 -0
  150. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useKeepAlive.ts +35 -0
  151. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useNavigationBar.ts +94 -0
  152. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/usePush.ts +62 -0
  153. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/views/index/useScan.ts +36 -0
  154. package/ganwei-app-6.2.1/packages/ganwei-app-index/stats.html +4975 -0
  155. package/ganwei-app-6.2.1/packages/ganwei-app-index/tsconfig.json +58 -0
  156. package/ganwei-app-6.2.1/packages/ganwei-app-index/types/gw-app-public.d.ts +4 -0
  157. package/ganwei-app-6.2.1/packages/ganwei-app-index/vite.base.config.ts +233 -0
  158. package/ganwei-app-6.2.1/packages/ganwei-app-index/vite.config.ts +51 -0
  159. package/ganwei-app-6.2.1/pnpm-lock.yaml +8810 -0
  160. package/ganwei-app-6.2.1/pnpm-workspace.yaml +3 -0
  161. package/ganwei-iotcenter-index-6.2.1/.nvmrc +1 -0
  162. package/ganwei-iotcenter-index-6.2.1/configuration/cleanNodeModule.js +18 -0
  163. package/ganwei-iotcenter-index-6.2.1/configuration/gitClone.js +45 -0
  164. package/ganwei-iotcenter-index-6.2.1/configuration/moduleConfiguration.json +20 -0
  165. package/ganwei-iotcenter-index-6.2.1/configuration/updateModule.cjs +30 -0
  166. package/ganwei-iotcenter-index-6.2.1/init.cjs +30 -0
  167. package/ganwei-iotcenter-index-6.2.1/package.json +41 -0
  168. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.babelrc +4 -0
  169. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.editorconfig +22 -0
  170. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.env.development +22 -0
  171. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.env.production +22 -0
  172. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.env.test +22 -0
  173. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.eslintignore +13 -0
  174. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.eslintrc.cjs +176 -0
  175. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.prettierignore +13 -0
  176. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.prettierrc.cjs +19 -0
  177. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/auto-imports.d.ts +5 -0
  178. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/build/enteryJson.js +9 -0
  179. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/build/vite-addInfo-html.ts +38 -0
  180. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/build/vite-plugin-stats-html.js +595 -0
  181. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/components.d.ts +87 -0
  182. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/env.d.ts +7 -0
  183. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/index.html +31 -0
  184. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/package.json +89 -0
  185. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/css/element-plus/css-vars.css +1 -0
  186. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/css/element-plus/index.css +16959 -0
  187. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/css/element-ui/index.css +16075 -0
  188. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/css/equipStatus.css +70 -0
  189. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/css/index.css +15926 -0
  190. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/css/reset-6-1.css +155 -0
  191. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.css +1135 -0
  192. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.js +1 -0
  193. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.json +1969 -0
  194. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.ttf +0 -0
  195. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff +0 -0
  196. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff2 +0 -0
  197. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.ttf +0 -0
  198. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.woff +0 -0
  199. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.css +3779 -0
  200. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.js +1 -0
  201. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.json +6596 -0
  202. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.ttf +0 -0
  203. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff +0 -0
  204. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff2 +0 -0
  205. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/http/createAxios.js +486 -0
  206. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/head-background.png +0 -0
  207. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-dark.svg +48 -0
  208. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-green.svg +42 -0
  209. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-light.svg +26 -0
  210. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-dark.svg +20 -0
  211. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-green.svg +20 -0
  212. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-light.svg +14 -0
  213. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-dark.svg +22 -0
  214. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-green.svg +16 -0
  215. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-light.svg +16 -0
  216. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-contentfull.svg +22 -0
  217. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-dark.svg +19 -0
  218. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-green.svg +14 -0
  219. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-light.svg +12 -0
  220. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen.svg +19 -0
  221. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-loading.png +0 -0
  222. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-dark.svg +67 -0
  223. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-green.svg +67 -0
  224. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-light.svg +67 -0
  225. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-small.png +0 -0
  226. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-logo-src.svg +67 -0
  227. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-nopage-dark.png +0 -0
  228. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-nopage-green.png +0 -0
  229. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-nopage-light.png +0 -0
  230. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-dark.svg +32 -0
  231. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-green.svg +32 -0
  232. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-light.svg +9 -0
  233. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-skin-dark.svg +22 -0
  234. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-skin-green.svg +22 -0
  235. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-skin-light.svg +15 -0
  236. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-skin.svg +22 -0
  237. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-dark.svg +18 -0
  238. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-green.svg +18 -0
  239. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-light.svg +18 -0
  240. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping.svg +18 -0
  241. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-upgrade.svg +18 -0
  242. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-user-dark.svg +22 -0
  243. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-user-green.svg +27 -0
  244. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-user-light.svg +22 -0
  245. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-user.svg +26 -0
  246. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-dark.svg +37 -0
  247. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-green.svg +37 -0
  248. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-light.svg +15 -0
  249. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/login-bg-img.png +0 -0
  250. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/logo.png +0 -0
  251. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/menu-background.png +0 -0
  252. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/renew-message-dark.svg +1 -0
  253. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/renew-message-green.svg +1 -0
  254. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/renew-message-light.svg +1 -0
  255. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/right-close.png +0 -0
  256. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/right-open.png +0 -0
  257. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-fullscreen.png +0 -0
  258. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-guzhang.png +0 -0
  259. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-jinggao.png +0 -0
  260. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-shezhi.png +0 -0
  261. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-xinxi.png +0 -0
  262. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-zichan.png +0 -0
  263. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/unread-message-dark.svg +19 -0
  264. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/unread-message-green.svg +22 -0
  265. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/unread-message-light.svg +17 -0
  266. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/images/webconfig-location.svg +17 -0
  267. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/axios.min.js +2 -0
  268. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/echarts.min.js +25 -0
  269. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js +1 -0
  270. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js.gz +0 -0
  271. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/enc-base64-min.js +86 -0
  272. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/filereader.js +455 -0
  273. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/font.js +56 -0
  274. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/getConfigInfoData.js +57 -0
  275. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/getLanguage.js +144 -0
  276. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/getLanguageOptions.js +52 -0
  277. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/getUserPermissionList.js +55 -0
  278. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/h5player.min.js +311 -0
  279. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/hmac-sha256.js +18 -0
  280. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/jquery.slim.min.js +2 -0
  281. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/jsencrypt.min.js +2 -0
  282. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/jszip.min.js +14 -0
  283. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/liveplayer-lib.min.js +1 -0
  284. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/moment.js +5670 -0
  285. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/pptxjs.min.js +14105 -0
  286. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/signalr.min.js +17 -0
  287. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/tXml.js +244 -0
  288. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/transformpcm.worker.js +58 -0
  289. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/vue-i18n.min.js +6 -0
  290. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/vue-router.min.js +11 -0
  291. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/vue.min.js +11 -0
  292. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/js/vuex.min.js +6 -0
  293. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/json/RAMScope.json +201 -0
  294. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/json/config.json +154 -0
  295. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/json/snapshot.json +34 -0
  296. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.css +246 -0
  297. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.js +5384 -0
  298. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/themes/dark-6-1.css +430 -0
  299. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/themes/dark.css +426 -0
  300. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/themes/default-theme-6-1.js +48 -0
  301. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/themes/default-theme.js +53 -0
  302. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/themes/green-6-1.css +357 -0
  303. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/themes/light-6-1.css +424 -0
  304. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/themes/light.css +414 -0
  305. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/themes/themeConfig.json +42 -0
  306. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/App.vue +52 -0
  307. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/assets/plugins/encrypt.js +122 -0
  308. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/auto-import.d.ts +61 -0
  309. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/asideMenu/contractMenu.vue +216 -0
  310. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/asideMenu/menu.vue +238 -0
  311. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/asideMenu/topNav.vue +238 -0
  312. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/contextMenu/index.js +42 -0
  313. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/contextMenu/index.vue +113 -0
  314. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.js +204 -0
  315. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.scss +258 -0
  316. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexLeftContent/index.vue +112 -0
  317. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/images/appconnect.jpg +0 -0
  318. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/index.vue +282 -0
  319. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.js +19 -0
  320. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.vue +10 -0
  321. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.js +50 -0
  322. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.vue +10 -0
  323. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.js +28 -0
  324. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.scss +137 -0
  325. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.vue +20 -0
  326. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/ApprovalDialog.vue +147 -0
  327. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.js +327 -0
  328. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.scss +253 -0
  329. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.vue +61 -0
  330. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/RenewDialog.vue +97 -0
  331. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.js +95 -0
  332. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.scss +0 -0
  333. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.vue +8 -0
  334. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/renew.vue +271 -0
  335. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.js +45 -0
  336. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.scss +36 -0
  337. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.vue +22 -0
  338. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.js +70 -0
  339. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.scss +94 -0
  340. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.vue +35 -0
  341. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.js +146 -0
  342. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.scss +0 -0
  343. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.vue +8 -0
  344. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.js +81 -0
  345. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.scss +147 -0
  346. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.vue +30 -0
  347. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/forceEdit.js +78 -0
  348. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.js +265 -0
  349. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.scss +5 -0
  350. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.vue +39 -0
  351. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.js +94 -0
  352. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.scss +113 -0
  353. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.vue +90 -0
  354. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.js +68 -0
  355. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.vue +16 -0
  356. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.js +178 -0
  357. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.scss +16 -0
  358. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.vue +46 -0
  359. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/safeModeDialog/index.vue +195 -0
  360. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.js +70 -0
  361. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.scss +95 -0
  362. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.vue +35 -0
  363. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.js +240 -0
  364. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.scss +158 -0
  365. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.vue +50 -0
  366. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.js +63 -0
  367. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.scss +40 -0
  368. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.vue +20 -0
  369. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.js +398 -0
  370. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.scss +136 -0
  371. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.vue +36 -0
  372. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.js +34 -0
  373. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.scss +44 -0
  374. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.vue +21 -0
  375. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/inputPassword/index.vue +65 -0
  376. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/isDebug/isDebug.vue +57 -0
  377. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/isDebug/warning.png +0 -0
  378. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/noAccess/noAccess.vue +78 -0
  379. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/noAccess/noPage.vue +68 -0
  380. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/sceneMonitor/index.js +95 -0
  381. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/toast/index.js +65 -0
  382. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/toast/index.vue +136 -0
  383. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/unreadMsg/listItem.vue +36 -0
  384. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/unreadMsg/unread.vue +300 -0
  385. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/hostMap.js +13 -0
  386. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/main.js +50 -0
  387. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/mixins/judgePermission.js +29 -0
  388. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/publish/pub.ts +28 -0
  389. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/request/api/frame.js +142 -0
  390. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/request/api.js +14 -0
  391. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/router.js +34 -0
  392. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/store.js +221 -0
  393. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/types.js +16 -0
  394. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/utils/MFEManager.js +156 -0
  395. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/utils/gwEquipCache.js +325 -0
  396. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/utils/gwSignalr.js +66 -0
  397. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/utils/historyExport.js +158 -0
  398. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/utils/setStorage.js +5 -0
  399. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/Index.vue +81 -0
  400. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/index.js +297 -0
  401. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/jumpIframe/index.vue +242 -0
  402. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/jumpIframe/preloadMethod.js +54 -0
  403. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/jumpIframe/queryParser.js +47 -0
  404. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/tsconfig.json +57 -0
  405. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/vite.config.ts +270 -0
  406. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.babelrc +8 -0
  407. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.editorconfig +22 -0
  408. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.env.development +22 -0
  409. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.env.production +22 -0
  410. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.env.test +22 -0
  411. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.eslintignore +13 -0
  412. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.eslintrc.cjs +162 -0
  413. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.prettierignore +13 -0
  414. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.prettierrc.cjs +37 -0
  415. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/auto-imports.d.ts +5 -0
  416. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/build/enteryJson.js +72 -0
  417. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/build/vite-addInfo-html.ts +38 -0
  418. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/build/vite-plugin-stats-html.js +595 -0
  419. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/env.d.ts +7 -0
  420. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/index.html +34 -0
  421. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/package.json +84 -0
  422. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/css/drag.css +140 -0
  423. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/css/element-plus/css-vars.css +1 -0
  424. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/css/element-plus/index.css +16957 -0
  425. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/css/element-ui/index.css +16075 -0
  426. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/css/element-ui/reset.css +1471 -0
  427. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/css/index.css +15926 -0
  428. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/css/reset-6-1.css +114 -0
  429. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.css +1135 -0
  430. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.js +1 -0
  431. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.json +1969 -0
  432. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.ttf +0 -0
  433. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff +0 -0
  434. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff2 +0 -0
  435. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.ttf +0 -0
  436. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.woff +0 -0
  437. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.css +4151 -0
  438. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.js +1 -0
  439. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.json +7247 -0
  440. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.ttf +0 -0
  441. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff +0 -0
  442. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff2 +0 -0
  443. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/http/createAxios.js +316 -0
  444. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/center.svg +23 -0
  445. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/centerActive.svg +24 -0
  446. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/center_light.svg +15 -0
  447. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/index-loading.png +0 -0
  448. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-dark.svg +67 -0
  449. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-green.svg +67 -0
  450. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-light.svg +67 -0
  451. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-small.png +0 -0
  452. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/index-logo-src.svg +67 -0
  453. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/left.svg +23 -0
  454. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/leftActive.svg +24 -0
  455. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/left_light.svg +15 -0
  456. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/login-bg-img.png +0 -0
  457. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/login-drag-start.png +0 -0
  458. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/login-drag-stop.png +0 -0
  459. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/logo.png +0 -0
  460. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/refresh.png +0 -0
  461. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/right.svg +23 -0
  462. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/rightActive.svg +24 -0
  463. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/images/right_light.svg +15 -0
  464. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/js/axios.min.js +3 -0
  465. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/js/drag.js +391 -0
  466. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/js/font.js +57 -0
  467. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/js/getConfigInfoData.js +57 -0
  468. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/js/getLanguage.js +143 -0
  469. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/js/getLanguageOptions.js +52 -0
  470. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/js/jquery.min.js +10716 -0
  471. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/themes/dark-6-1.css +430 -0
  472. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/themes/dark.css +426 -0
  473. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/themes/default-theme-6-1.js +46 -0
  474. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/themes/default-theme.js +53 -0
  475. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/themes/green-6-1.css +336 -0
  476. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/themes/light-6-1.css +424 -0
  477. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/themes/light.css +414 -0
  478. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/public/static/themes/themeConfig.json +42 -0
  479. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/App.vue +70 -0
  480. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/alertHandle.scss +22 -0
  481. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/browserScroll.scss +5 -0
  482. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/btnHandle.scss +36 -0
  483. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/containerHandle.scss +402 -0
  484. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/dialogStyle.scss +43 -0
  485. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/equipStatus.scss +88 -0
  486. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/index.scss +1358 -0
  487. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/inputStyle.scss +16 -0
  488. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/listHandle.scss +113 -0
  489. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/login.scss +335 -0
  490. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/mainInfo.scss +297 -0
  491. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/maintenanceInfo.scss +199 -0
  492. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/style.css +921 -0
  493. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/tableHandle.scss +147 -0
  494. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/txtHandle.scss +39 -0
  495. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/images/login-bg-img.png +0 -0
  496. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/images/login-sso-error.png +0 -0
  497. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/images/logo-bg.png +0 -0
  498. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/plugins/encrypt.js +122 -0
  499. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/components/declaration/declaration.scss +118 -0
  500. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/components/declaration/declaration.vue +109 -0
  501. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/components/declaration/declarationPacts.vue +42 -0
  502. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/components/passwordModification/checkEmailContainer.vue +134 -0
  503. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/components/passwordModification/inputEmailContainer.vue +128 -0
  504. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/components/passwordModification/modifyPasswordContainer.vue +138 -0
  505. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification - /345/211/257/346/234/254.vue" +4 -0
  506. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification.vue +223 -0
  507. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/directive/loadMore/loadMore.js +14 -0
  508. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/hostMap.js +18 -0
  509. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/main.js +39 -0
  510. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/mixins/setDefaultLanguage.js +87 -0
  511. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/request/api/login.js +95 -0
  512. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/request/api.js +13 -0
  513. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/router.js +48 -0
  514. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/types.js +16 -0
  515. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/utils/formValidate.js +25 -0
  516. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/utils/isApp.js +18 -0
  517. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/utils/language.js +45 -0
  518. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/utils/myUtils.js +646 -0
  519. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/utils/timeFormat.js +23 -0
  520. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/utils/timesYMDHMS.js +27 -0
  521. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/views/js/mainInfo.js +374 -0
  522. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/views/js/maintenanceInfo.js +202 -0
  523. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/views/login.vue +458 -0
  524. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/views/ssoLogin.vue +230 -0
  525. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/views/ssoLogout.vue +58 -0
  526. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/vite.config.ts +237 -0
  527. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.babelrc +8 -0
  528. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.editorconfig +22 -0
  529. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.env.development +22 -0
  530. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.env.production +22 -0
  531. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.env.test +22 -0
  532. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.eslintignore +13 -0
  533. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.eslintrc.cjs +162 -0
  534. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.prettierignore +13 -0
  535. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.prettierrc.cjs +37 -0
  536. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/auto-imports.d.ts +5 -0
  537. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/build/enteryJson.js +64 -0
  538. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/build/vite-addInfo-html.js +15 -0
  539. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/build/vite-addInfo-html.ts +38 -0
  540. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html +14 -0
  541. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/build/vite-plugin-stats-html.js +595 -0
  542. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/env.d.ts +7 -0
  543. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/index.html +25 -0
  544. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/package.json +94 -0
  545. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/css/element-plus/css-vars.css +1 -0
  546. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/css/element-plus/index.css +16957 -0
  547. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/css/reset-6-1.css +114 -0
  548. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.css +1135 -0
  549. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.js +1 -0
  550. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.json +1969 -0
  551. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.ttf +0 -0
  552. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff +0 -0
  553. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/appFont/iconfont.woff2 +0 -0
  554. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.ttf +0 -0
  555. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.woff +0 -0
  556. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.css +3535 -0
  557. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.js +1 -0
  558. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.json +6169 -0
  559. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.ttf +0 -0
  560. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff +0 -0
  561. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff2 +0 -0
  562. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/http/createAxios.js +372 -0
  563. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/images/index-loading.png +0 -0
  564. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/js/axios.min.js +3 -0
  565. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/js/font.js +58 -0
  566. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/js/getConfigInfoData.js +58 -0
  567. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/js/getLanguage.js +142 -0
  568. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/js/getLanguageOptions.js +51 -0
  569. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/themes/dark-6-1.css +430 -0
  570. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/themes/default-theme-6-1.js +48 -0
  571. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/themes/light-6-1.css +424 -0
  572. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/public/static/themes/themeConfig.json +42 -0
  573. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/App.vue +41 -0
  574. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/assets/images/template.jpg +0 -0
  575. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/hostMap.js +14 -0
  576. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/main.js +39 -0
  577. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/request/api/template.js +11 -0
  578. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/request/api.js +9 -0
  579. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/router.js +23 -0
  580. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/utils/setStorage.js +5 -0
  581. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/src/views/template.vue +1008 -0
  582. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/tsconfig.json +21 -0
  583. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/tsconfig.node.json +10 -0
  584. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/vite.config.ts +240 -0
  585. package/ganwei-iotcenter-index-6.2.1/pnpm-workspace.yaml +3 -0
  586. package/package.json +3 -2
@@ -0,0 +1,1358 @@
1
+ @import "./dialogStyle.scss";
2
+ @import "./txtHandle.scss";
3
+ @import "./browserScroll.scss";
4
+ @import "./containerHandle.scss";
5
+
6
+ .el-dropdown {
7
+ color: white !important;
8
+ }
9
+
10
+ #index {
11
+ background-color: var(--con-bgColor22) !important;
12
+
13
+ ::v-deep .el-dialog {
14
+ @include el-dialog;
15
+ }
16
+
17
+ .el-menu {
18
+ background-color: var(--nav-bgColor5) !important;
19
+ }
20
+ }
21
+
22
+ .el-popper {
23
+ .themeChange {
24
+ .el-radio-group {
25
+ display: flex;
26
+ justify-content: space-between;
27
+ flex-wrap: nowrap !important;
28
+ }
29
+ }
30
+ }
31
+
32
+
33
+ .isCollapse {
34
+ margin-right: 0;
35
+ // transition: all 0.5s ease-in-out;
36
+
37
+ .maxActive {
38
+ left: calc(var(--left)*(-1px)) !important;
39
+ }
40
+
41
+ .minActive {
42
+ .minActiveContent {
43
+ left: 0px !important;
44
+ }
45
+ }
46
+ }
47
+
48
+ .noIsCollapse {
49
+ margin-right: calc(var(--result)*1px);
50
+ transition: all 0.5s ease-in-out;
51
+ position: relative;
52
+ z-index: 99;
53
+
54
+ .maxActive {
55
+ left: 0px !important;
56
+
57
+ }
58
+
59
+ .minActive {
60
+ .minActiveContent {
61
+ left: -64px !important;
62
+ }
63
+
64
+ }
65
+ }
66
+
67
+ .topIndexHeader {
68
+ width: 100%;
69
+ height: 60px;
70
+ background-color: var(--con-bgColor5-1);
71
+ position: absolute;
72
+ top: 0px;
73
+ left: 0px;
74
+ }
75
+
76
+ .dropdownMenu {
77
+ p {
78
+ color: var(--popover-txColor);
79
+ }
80
+ }
81
+
82
+ .transition {
83
+ transition: all 0.5s ease-in-out;
84
+ }
85
+
86
+ .minActive {
87
+ width: 64px;
88
+ position: relative;
89
+
90
+ .minActiveContent {
91
+ width: 100%;
92
+ height: 100%;
93
+ position: absolute;
94
+ left: -64px;
95
+ // transition: all 0.5s ease-in-out;
96
+ }
97
+ }
98
+
99
+ ::v-deep.languageSelect {
100
+ width: 90px;
101
+
102
+ .el-input__inner {
103
+ border-color: var(--border-color-5) !important;
104
+ }
105
+
106
+ &:hover {
107
+
108
+ .el-select__caret,
109
+ .icon-gw-icon-diqiu,
110
+ input {
111
+ color: #4a7bf3 !important;
112
+ }
113
+
114
+ .el-input__inner {
115
+ border-color: #4a7bf3 !important;
116
+ }
117
+ }
118
+
119
+ input {
120
+ background-color: transparent !important;
121
+ }
122
+
123
+ ::v-deep .el-input__prefix {
124
+ display: flex;
125
+ justify-content: center;
126
+ align-items: center;
127
+ }
128
+
129
+ .icon-gw-icon-diqiu {
130
+ color: var(--con-textColor1) !important;
131
+ font-size: 14px !important;
132
+ }
133
+ }
134
+
135
+ ::v-deep .el-menu--collapse {
136
+ .el-submenu__title {
137
+ text-align: center;
138
+ transition: none !important;
139
+
140
+ .iconfont {
141
+ margin-right: 0px !important;
142
+ }
143
+ }
144
+
145
+ .is-active {
146
+ background-color: #3875ff !important;
147
+ z-index: 99;
148
+
149
+ .el-submenu__title {
150
+ background-color: #3875ff !important;
151
+
152
+ >i,
153
+ >span,
154
+ >span i {
155
+ color: white;
156
+ }
157
+ }
158
+ }
159
+ }
160
+
161
+ .themeImage {
162
+ display: flex;
163
+ align-items: center;
164
+ cursor: pointer;
165
+ }
166
+
167
+ ::v-deep .el-menu--vertical {
168
+ .is-active {
169
+ // background-color: #3875ff !important;
170
+ z-index: 99;
171
+ }
172
+
173
+ .two-title-ch.is-active {
174
+ background-color: #3875ff !important;
175
+ z-index: 99;
176
+ }
177
+
178
+ ::v-deep.el-menu--vertical {
179
+ z-index: 99;
180
+
181
+ .is-active {
182
+ background-color: #3875ff !important;
183
+ }
184
+ }
185
+ }
186
+
187
+ ::v-deep .el-pagination {
188
+ padding: 0;
189
+
190
+ .el-input__inner {
191
+ height: 32px;
192
+ }
193
+
194
+ .el-pagination__sizes,
195
+ .el-pagination__editor {
196
+ .el-input__inner {
197
+ height: 32px !important;
198
+ }
199
+ }
200
+
201
+ button {
202
+ width: 32px;
203
+ height: 32px;
204
+ }
205
+
206
+ .el-pager {
207
+ li {
208
+ width: 32px !important;
209
+ height: 32px !important;
210
+ line-height: 32px !important;
211
+ }
212
+ }
213
+ }
214
+
215
+ .draw-enter-active,
216
+ .draw-leave-active {
217
+ transition: all 1s ease;
218
+ }
219
+
220
+ .draw-enter,
221
+ .draw-leave-to {
222
+ width: 0;
223
+ }
224
+
225
+ html,
226
+ body {
227
+ height: 100%;
228
+ font-size: 16px;
229
+ box-sizing: border-box;
230
+
231
+ a {
232
+ text-decoration: none;
233
+ }
234
+
235
+ .activeIndexLeft {
236
+ color: #fff !important;
237
+ background: var(--tab-selBgColor3);
238
+ }
239
+
240
+ .el-container {
241
+ height: 100%;
242
+ }
243
+
244
+ #index {
245
+ -webkit-font-smoothing: antialiased;
246
+ -moz-osx-font-smoothing: grayscale;
247
+ height: 100%;
248
+ background: var(--tab-selTXColor1);
249
+ color: var(--tab-selBgColor3); // 系统运行信息
250
+
251
+ .systemInformation_main {
252
+ width: 100%;
253
+ height: 100%;
254
+
255
+ .systemInformation {
256
+ width: 100%;
257
+ height: 100%;
258
+
259
+ >header {
260
+ position: absolute;
261
+ top: -42px;
262
+ margin-left: 10%;
263
+ width: 80%;
264
+ height: 40px;
265
+ line-height: 40px;
266
+ text-align: center;
267
+ color: var(--tab-selTXColor);
268
+ }
269
+
270
+ .information_box {
271
+ display: flex;
272
+ flex-wrap: wrap;
273
+ justify-content: space-between;
274
+ width: 100%;
275
+ height: calc(100% - 50px);
276
+
277
+ // &::after {
278
+ // position: absolute;
279
+ // content: "";
280
+ // top: 0;
281
+ // left: 50%;
282
+ // transform: translateX(-50%);
283
+ // display: block;
284
+ // width: 0.5px;
285
+ // height: 100%;
286
+ // background-color: var(--btn-borderColor1);
287
+ // }
288
+
289
+ >div {
290
+ margin-bottom: 16px;
291
+ position: relative;
292
+ width: 100%;
293
+
294
+ .inform_title {
295
+ padding-left: 1rem;
296
+ width: 100%;
297
+ border-radius: 3px;
298
+ font-size: 16px;
299
+ height: 32px;
300
+ line-height: 32px;
301
+ background-color: var(--con-bgColor5);
302
+ color: var(--dialog-textColor1);
303
+ }
304
+
305
+ .inform_msg {
306
+ background-color: var(--dialog-bgColor3);
307
+ border: 1px solid;
308
+ border-color: var(--bor-default);
309
+ border-radius: 3px;
310
+ overflow: auto;
311
+
312
+ p {
313
+ margin: 0;
314
+ }
315
+
316
+ .inform_link {
317
+ display: flex;
318
+ justify-content: space-between;
319
+ padding: 0 1rem;
320
+ width: 100%;
321
+ height: 32px;
322
+ line-height: 32px;
323
+ font-size: 14px;
324
+ background-color: var(--dialog-bgColor3);
325
+
326
+ &:not(:last-of-type) {
327
+ border-bottom: 0.5px solid;
328
+ border-color: var(--bor-default);
329
+ }
330
+
331
+ .inform_nm {
332
+ color: var(--dialog-textColor1);
333
+ }
334
+
335
+ .inform_value {
336
+ padding-left: 1rem;
337
+ flex: 1;
338
+ text-align: right;
339
+ color: var(--dialog-textColor1);
340
+ @include whiteSpace;
341
+ }
342
+ }
343
+ }
344
+ }
345
+ }
346
+ }
347
+ }
348
+
349
+ .maxActive {
350
+ width: 220px;
351
+ height: 100%;
352
+ left: 0px;
353
+ position: fixed;
354
+ z-index: 100;
355
+ }
356
+
357
+ .maxW {
358
+ user-select: none;
359
+ height: 100%;
360
+ // overflow: hidden;
361
+ background-color: var(--nav-bgColor5);
362
+ // transition: all 0.5s ease-in-out;
363
+
364
+ .aside-header {
365
+ height: 64px;
366
+ display: flex;
367
+ justify-content: left;
368
+ align-items: center;
369
+ padding-left: 20px;
370
+ background-color: var(--con-bgColor5-1);
371
+ box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
372
+
373
+ .aside-header-box {
374
+ display: flex;
375
+ justify-content: center;
376
+ white-space: nowrap;
377
+ height: 100%;
378
+
379
+ // padding-left: 20px;
380
+ img {
381
+ width: 76%;
382
+ height: 90%;
383
+ }
384
+
385
+ a {
386
+ display: flex;
387
+ align-items: center;
388
+ }
389
+
390
+ .max-img {
391
+ // margin-left: 20px;
392
+ }
393
+
394
+ .min-img {
395
+ width: 100%;
396
+ height: auto;
397
+ }
398
+ }
399
+ }
400
+
401
+ // 导航
402
+ .left-nav {
403
+ width: 100%;
404
+ height: calc(100% - 64px); // 新版UI
405
+
406
+ &.noHeader {
407
+ height: 100%;
408
+ }
409
+
410
+ .list {
411
+ width: 100%;
412
+ height: calc(100% - 44px);
413
+
414
+ // background-color: $foregroundColor_1 !important; // 高亮
415
+ @mixin spanAndIcoColor {
416
+
417
+ i,
418
+ span {
419
+ color: var(--tab-selTXColor);
420
+ }
421
+ }
422
+
423
+ // 历史记录
424
+ .historical {
425
+ width: 100%;
426
+ min-height: 20px;
427
+ padding-top: 8px;
428
+
429
+ >div {
430
+ width: 100%;
431
+ }
432
+
433
+ .title {
434
+ padding: 0 20px;
435
+ width: 100%;
436
+ height: 46px;
437
+ line-height: 46px;
438
+ font-size: 14px;
439
+ color: var(--asideColor);
440
+ cursor: pointer;
441
+ font-weight: 600;
442
+ white-space: nowrap;
443
+
444
+ i {
445
+ vertical-align: middle;
446
+ margin-right: 5px;
447
+ width: 24px;
448
+ text-align: center;
449
+ font-size: 18px;
450
+ display: inline-block;
451
+ }
452
+
453
+ span {
454
+ font-weight: 400;
455
+ }
456
+
457
+ &:hover {
458
+ .icon_wangxia {
459
+ transition: all 0.2s;
460
+ transform: rotate(-90deg);
461
+ }
462
+
463
+ @include spanAndIcoColor;
464
+ }
465
+ }
466
+ }
467
+
468
+ .max {
469
+ width: calc(100% + 8px);
470
+ height: 100%;
471
+ // overflow-y: scroll;
472
+ overflow: hidden;
473
+ // @include firefoxScroll;
474
+ padding-top: 20px;
475
+
476
+ ::v-deep .el-loading-mask {
477
+ visibility: visible;
478
+ }
479
+
480
+ >.el-input {
481
+ width: calc(100% - 40px);
482
+ text-indent: 0;
483
+ margin-left: 20px;
484
+ margin-bottom: 10px;
485
+
486
+ background-color: var(--input-bgColor4);
487
+ border: 0.5px solid var(--input-borderColor3);
488
+
489
+ ::v-deep .el-input__inner {
490
+ color: var(--input-txColor1);
491
+ line-height: 1;
492
+ }
493
+
494
+ ::v-deep .el-input__wrapper {
495
+ background: transparent;
496
+ box-shadow: 0 0 0 0px;
497
+ }
498
+ }
499
+
500
+ >div {
501
+ // padding: 0 16px 0 16px;
502
+ text-indent: 16px;
503
+
504
+ .title-border {
505
+ position: relative;
506
+ margin-top: 16px;
507
+ padding-left: 8px;
508
+ color: var(--asideColor);
509
+ ;
510
+ font-size: 14px;
511
+ line-height: 46px !important;
512
+
513
+ &::after {
514
+ position: absolute;
515
+ top: 0;
516
+ left: 0;
517
+ content: '';
518
+ display: block;
519
+ height: 1px;
520
+ width: 100%;
521
+ background-color: var(--input-borderColor);
522
+ /* 如果不用 background-color, 使用 border-top:1px solid #f00; 效果是一样的*/
523
+ -webkit-transform: scaleY(0.5);
524
+ transform: scaleY(0.5);
525
+ }
526
+ }
527
+
528
+ .path-name,
529
+ .title {
530
+ height: 46px;
531
+ line-height: 46px;
532
+ font-size: 14px;
533
+ white-space: nowrap;
534
+ }
535
+
536
+ .multistage {
537
+ >.title {
538
+ height: 46px;
539
+ white-space: nowrap;
540
+ }
541
+ }
542
+ }
543
+
544
+ .p-hover {
545
+ cursor: pointer;
546
+ transition: all 0.2s;
547
+ border-radius: 3px;
548
+ overflow: hidden;
549
+
550
+ a {
551
+ font-size: 14px;
552
+ width: 100%;
553
+ height: 40px;
554
+ display: inline-block;
555
+ color: var(--asideColor);
556
+ font-weight: 600;
557
+ font-size: 14px;
558
+ text-indent: initial;
559
+
560
+ i {
561
+ float: left;
562
+ margin-left: 10px;
563
+ font-size: 20px;
564
+ font-weight: 500;
565
+ font-size: 20px;
566
+ }
567
+
568
+ button {
569
+ height: 100% !important;
570
+ background-color: transparent !important;
571
+ border: none;
572
+ }
573
+
574
+ .el-button--default {
575
+ height: 100% !important;
576
+ border: none !important;
577
+ }
578
+
579
+ >span {
580
+ display: block; // margin-top: 0px !important;
581
+ }
582
+ }
583
+
584
+ &:hover {
585
+ background-color: var(--nav-bgColor1);
586
+ @include spanAndIcoColor;
587
+ }
588
+ }
589
+
590
+ // 只有一级菜单
591
+ .alone {
592
+ .title {
593
+ margin-top: 16px;
594
+ padding-left: 8px;
595
+ height: 46px;
596
+ color: var(--nav-txColor);
597
+ white-space: nowrap;
598
+ }
599
+
600
+ a {
601
+ i {
602
+ margin-right: 16px;
603
+ color: var(--nav-txColor);
604
+ }
605
+
606
+ button {
607
+ background-color: transparent !important;
608
+ border: none;
609
+ }
610
+
611
+ .el-button--default {
612
+ border: none !important;
613
+ }
614
+ }
615
+ }
616
+
617
+ .el-menu {
618
+ height: calc(100% - 44px)
619
+ }
620
+
621
+ // 菜单高亮
622
+ .menu-active {
623
+ background-color: var(--nav-selBgColor2);
624
+ @include spanAndIcoColor;
625
+
626
+ i,
627
+ span {
628
+ color: var(--asideColor) !important;
629
+ }
630
+ }
631
+ }
632
+ }
633
+
634
+ // 折叠面板按钮
635
+ .fold {
636
+ width: 100%;
637
+ height: 44px;
638
+
639
+ >div {
640
+ display: flex;
641
+ align-items: center;
642
+ margin-top: 10px;
643
+ // width: 100%;
644
+ height: 100%;
645
+ // border-radius: 3px;
646
+ // background-color: var(--con-bgColor3);
647
+ font-size: 14px;
648
+ cursor: pointer;
649
+ margin: 0px 20px;
650
+ border-top: 1px solid rgba(157, 166, 186, 0.39);
651
+
652
+ &.menuOverflow {
653
+ border-top: none;
654
+ }
655
+
656
+ span {
657
+ color: var(--nav-txColor1);
658
+ }
659
+
660
+ i {
661
+ font-size: 16px;
662
+ margin-right: 16px;
663
+ color: var(--nav-txColor1);
664
+ }
665
+
666
+ i.cacelmargin {
667
+ margin-left: 4px !important;
668
+ margin-right: 0px !important;
669
+ }
670
+
671
+ button {
672
+ border: 0;
673
+ padding: 0;
674
+ background-color: transparent !important;
675
+ }
676
+
677
+ .el-button--default {
678
+ padding: 0;
679
+ border: none !important;
680
+ }
681
+ }
682
+ }
683
+ }
684
+ }
685
+
686
+
687
+ // 主内容
688
+ >.el-container {
689
+ flex: 1;
690
+ background-color: var(--con-bgColor3);
691
+
692
+ // 2023-02-23 安全模式
693
+ .safeMode {
694
+ font-size: 18px;
695
+ color: #878A91;
696
+ line-height: 24px;
697
+ pointer-events: none;
698
+
699
+ .safeMode1 {
700
+ margin-left: 10px;
701
+ color: #F22433;
702
+ }
703
+
704
+ .safeMode2 {
705
+ margin-left: 10px;
706
+ color: #00DB1C;
707
+ }
708
+
709
+ .safeMode3 {
710
+ margin-left: 10px;
711
+ color: #78262E;
712
+ }
713
+ }
714
+
715
+ .indexHeader {
716
+ height: 64px;
717
+ line-height: 64px;
718
+ text-align: center;
719
+ background-color: var(--con-bgColor5-1);
720
+ white-space: nowrap;
721
+ position: relative;
722
+ padding-left: 0px;
723
+ padding-right: 16px;
724
+ box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.05);
725
+
726
+ // 2023-02-23 安全模式
727
+ .safeMode {
728
+ position: absolute;
729
+ left: 40%;
730
+ bottom: 15px;
731
+ transform: translateX(-50%);
732
+ }
733
+
734
+ .el-menu--horizontal {
735
+ display: flex;
736
+ height: 100%;
737
+ border-bottom: 0px;
738
+
739
+ >div {
740
+ display: flex;
741
+ align-items: center;
742
+ height: 100%;
743
+ }
744
+ }
745
+
746
+ .aside-header {
747
+ margin-left: -24px;
748
+ width: 220px;
749
+ height: 60px;
750
+ display: flex;
751
+ justify-content: center;
752
+ align-items: center;
753
+ background-color: var(--con-bgColor5-1);
754
+ box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
755
+
756
+ .aside-header-box {
757
+ display: flex;
758
+ justify-content: center;
759
+ white-space: nowrap;
760
+ height: 100%;
761
+
762
+ a {
763
+ display: flex;
764
+ align-items: center;
765
+ }
766
+
767
+ .max-img {
768
+ // margin-left: 20px;
769
+ }
770
+
771
+ .min-img {
772
+ width: 100%;
773
+ }
774
+ }
775
+ }
776
+
777
+ &>a {
778
+ display: none;
779
+ }
780
+
781
+ .header-right {
782
+ display: flex;
783
+ align-items: center;
784
+ float: right;
785
+ position: absolute;
786
+ right: 16px;
787
+ top: 0;
788
+ height: 100%;
789
+ // color: white;
790
+ color: var(--con-textColor1);
791
+
792
+ .languageSelect {
793
+ width: 90px;
794
+
795
+ ::v-deep .el-input__prefix {
796
+ display: flex;
797
+ justify-content: center;
798
+ align-items: center;
799
+ }
800
+
801
+ .icon-gw-icon-diqiu {
802
+ font-size: 14px !important;
803
+ }
804
+ }
805
+
806
+ >div:last-child {
807
+ padding-right: 0px !important;
808
+ }
809
+
810
+ >div {
811
+ line-height: 1;
812
+ cursor: pointer;
813
+ height: 60px;
814
+ display: flex;
815
+ align-items: center;
816
+ padding: 0 10px;
817
+
818
+ }
819
+
820
+ .el-avatar {
821
+ width: 28px;
822
+ height: 28px;
823
+ line-height: 28px;
824
+ vertical-align: middle;
825
+ background-color: transparent;
826
+ border-radius: 0px;
827
+ // margin: 0 18px;
828
+ }
829
+
830
+ ::v-deep .el-badge {
831
+ line-height: 1;
832
+
833
+ .el-badge__content.is-fixed {
834
+ top: 5px;
835
+ right: 13px;
836
+ }
837
+
838
+ .el-badge__content {
839
+ background-color: #ff0024;
840
+ border-color: #ff0024;
841
+ }
842
+ }
843
+
844
+ span {
845
+ vertical-align: middle;
846
+ cursor: pointer;
847
+ }
848
+
849
+ .username {
850
+ padding-right: 10px;
851
+ font-size: 14px;
852
+ }
853
+
854
+ i {
855
+ vertical-align: middle;
856
+ color: white;
857
+ cursor: pointer;
858
+ font-size: 24px;
859
+ // padding: 8px;
860
+ }
861
+
862
+ .iconxiajiantou {
863
+ margin-right: 18px;
864
+ font-size: 20px;
865
+ }
866
+
867
+ .icon-xialasanjiao {
868
+ font-size: 12px;
869
+ margin-left: 3px;
870
+ color: var(--popover-txColor);
871
+ }
872
+ }
873
+
874
+ ::v-deep .el-dialog .el-dialog__body .el-form {
875
+ padding: 0 16px;
876
+ }
877
+
878
+ ::v-deep .el-dialog .el-dialog__body .el-form-item {
879
+ margin-top: 8px;
880
+ margin-bottom: 8px;
881
+ }
882
+
883
+ ::v-deep .el-dialog .el-dialog__body .el-input__inner {
884
+ height: 34px;
885
+ line-height: 34px;
886
+ border-radius: 2px;
887
+ }
888
+
889
+ ::v-deep .el-dialog .el-dialog__body .el-form-item__label {
890
+ padding-right: 24px;
891
+ }
892
+
893
+ ::v-deep .el-dialog .el-dialog__body .el-form-item__error {
894
+ top: 90%;
895
+ left: 90px;
896
+ }
897
+ }
898
+
899
+ .indexBottomContent {
900
+ height: calc(100% - 64px)
901
+ }
902
+
903
+ // 面包屑导航
904
+ .breadcrumb {
905
+ width: 100%;
906
+ height: 48px;
907
+ padding-left: 16px;
908
+ background-color: var(--con-bgColor3);
909
+
910
+ >div {
911
+ height: 100%;
912
+ line-height: 48px;
913
+ font-size: 14px;
914
+ }
915
+
916
+ ::v-deep .el-breadcrumb {
917
+
918
+ .is-link,
919
+ span {
920
+ font-weight: 500;
921
+ color: var(--con-textColor1);
922
+ }
923
+ }
924
+ }
925
+
926
+ // 页面内容组件
927
+ .el-main {
928
+ padding: 0;
929
+ background-color: var(--con-bgColor22);
930
+ height: 100%;
931
+ position: relative;
932
+
933
+ ::v-deep .el-tabs {
934
+ height: 100%;
935
+
936
+ .el-tabs__header {
937
+
938
+ height: 24px;
939
+ margin-bottom: 0;
940
+ border-bottom: 1px solid;
941
+ border-color: var(--tab-borderColor);
942
+ background-color: var(--tab-bgColor5);
943
+
944
+ .el-tabs__nav-scroll {
945
+ ::-webkit-scrollbar {
946
+ width: 4px;
947
+ height: 4px;
948
+ }
949
+
950
+ ::-webkit-scrollbar-button:vertical:start,
951
+ ::-webkit-scrollbar-button:vertical:end,
952
+ ::-webkit-scrollbar-button:horizontal:start,
953
+ ::-webkit-scrollbar-button:horizontal:end {
954
+ display: none;
955
+ }
956
+
957
+ ::-webkit-scrollbar-corner {
958
+ background-color: red;
959
+ }
960
+ }
961
+
962
+ .el-tabs__nav {
963
+ height: 24px;
964
+ border: 0;
965
+
966
+ &:hover {
967
+ overflow-x: auto;
968
+ overflow-y: hidden;
969
+ }
970
+
971
+ .el-tabs__item {
972
+ height: 100%;
973
+ margin: 0;
974
+ border: 0;
975
+ color: var(--tab-selTXColor1);
976
+
977
+ &:not(:first-child) {
978
+ margin-left: 1px;
979
+ }
980
+
981
+ &:only-of-type {
982
+ .el-icon-close {
983
+ display: none;
984
+ }
985
+ }
986
+
987
+ .el-icon {
988
+ font-size: 14px;
989
+ margin-right: 4px;
990
+ overflow: hidden;
991
+ // transition: all .3s cubic-bezier(.645, .045, .355, 1);
992
+ }
993
+
994
+ span:nth-child(2) {
995
+ font-size: 12px;
996
+ }
997
+ }
998
+
999
+ .el-icon-close {
1000
+ font-size: 14px;
1001
+
1002
+ &:hover {
1003
+ background: transparent;
1004
+ color: var(--con-themeColor);
1005
+ }
1006
+ }
1007
+
1008
+ .is-active {
1009
+ background-color: var(--tab-selBgColor);
1010
+ color: var(--tab-selTXColor);
1011
+
1012
+ .el-icon-refresh-right {
1013
+ width: 14px;
1014
+ transition: all 0.3s;
1015
+
1016
+ &:hover {
1017
+ color: var(--con-themeColor);
1018
+ }
1019
+ }
1020
+
1021
+ .active {
1022
+ transform: rotate(360deg);
1023
+ transition: all 0.5s;
1024
+ }
1025
+ }
1026
+ }
1027
+ }
1028
+
1029
+ .el-tabs__content {
1030
+ height: calc(100% - 24px);
1031
+
1032
+ .el-tab-pane {
1033
+ height: 100%;
1034
+ }
1035
+ }
1036
+ }
1037
+
1038
+ // 2023-02-23 安全模式
1039
+ .safeMode {
1040
+ position: absolute;
1041
+ right: 220px;
1042
+ top: 0px;
1043
+ }
1044
+ }
1045
+
1046
+ .el-main:not(.container-main) {
1047
+ ::v-deep .el-tabs {
1048
+ @include tab-header;
1049
+ }
1050
+ }
1051
+ }
1052
+ }
1053
+ }
1054
+
1055
+ .aside-list-child {
1056
+ padding: 8px;
1057
+
1058
+ li {
1059
+ font-size: 0.875rem;
1060
+ text-align: center;
1061
+ line-height: 32px;
1062
+ color: var(--tab-selBgColor3);
1063
+ border-radius: 3px;
1064
+ margin-top: 3px;
1065
+
1066
+ &:hover {
1067
+ color: var(--tab-selTXColor1);
1068
+ background: var(--tab-selBgColor3);
1069
+ }
1070
+ }
1071
+ }
1072
+
1073
+ ::v-deep .el-button {
1074
+ display: flex !important;
1075
+ justify-content: center !important;
1076
+ }
1077
+
1078
+ ::v-deep .el-button--default {
1079
+ color: var(--input-selBorColor);
1080
+ background-color: var(--btn-background-primary) !important;
1081
+ border: 0.5px solid var(--btn-borderColor1) !important;
1082
+
1083
+ &:hover {
1084
+ background-color: var(--btn-borderColor1) !important;
1085
+ }
1086
+ }
1087
+
1088
+ ::v-deep .el-button--primary {
1089
+ color: #e6edff !important;
1090
+ }
1091
+
1092
+ ::v-deep .el-button--info {
1093
+ color: #e6edff !important;
1094
+ border: 0.5px solid var(--btn-borderColor1) !important;
1095
+ background: #3a3a3a !important;
1096
+ }
1097
+
1098
+ ::v-deep .el-dialog {
1099
+ .el-dialog__body {
1100
+ .el-form {
1101
+ .el-form-item__label {
1102
+ color: var(--tab-selTXColor1);
1103
+ }
1104
+
1105
+ .el-form-item__content {
1106
+ .el-input {
1107
+ input {
1108
+ // background: var(--con-bgColor2); // border-color: var(--btn-borderColor1);
1109
+ }
1110
+ }
1111
+
1112
+ .el-textarea .el-textarea__inner {
1113
+ background: var(--con-bgColor2);
1114
+ }
1115
+
1116
+ .el-textarea.is-disabled .el-textarea__inner,
1117
+ .el-input.is-disabled .el-input__inner {
1118
+ background: var(--con-bgColor3) !important;
1119
+ border-color: var(--btn-borderColor1);
1120
+ }
1121
+
1122
+ .el-date-editor.is-disabled,
1123
+ .el-date-editor.is-disabled .el-range-input {
1124
+ background: var(--con-bgColor3) !important;
1125
+ border-color: var(--btn-borderColor1);
1126
+ }
1127
+
1128
+ .el-checkbox-group {
1129
+ width: 100%;
1130
+ margin-top: 14px;
1131
+
1132
+ .el-checkbox {
1133
+ border: 0.5px solid var(--btn-borderColor1);
1134
+
1135
+ .el-checkbox__inner {
1136
+ border: 0.5px solid var(--btn-borderColor1);
1137
+ }
1138
+ }
1139
+
1140
+ .is-checked {
1141
+ border: 1px solid #3875ff;
1142
+ }
1143
+
1144
+ .el-checkbox__input {
1145
+ border: unset;
1146
+ }
1147
+
1148
+ label {
1149
+ width: 100%;
1150
+ }
1151
+ }
1152
+
1153
+ .el-radio-group {
1154
+ width: 100%;
1155
+ height: 100%;
1156
+
1157
+ .el-radio {
1158
+ width: 33.2%;
1159
+ height: 100%;
1160
+ margin-left: 0;
1161
+ padding: 0 0 0 6px;
1162
+ line-height: 32px;
1163
+ border-radius: 3px;
1164
+ margin-right: 0 !important;
1165
+ border: 0.5px solid var(--btn-borderColor1);
1166
+
1167
+ &:nth-child(2) {
1168
+ margin-left: 0 !important;
1169
+ }
1170
+
1171
+ .el-radio__label {
1172
+ font-size: 0.75rem;
1173
+ padding-left: 5px !important;
1174
+ color: var(--tab-selTXColor1);
1175
+ }
1176
+
1177
+ .el-radio__input {
1178
+ border: unset !important;
1179
+ }
1180
+ }
1181
+
1182
+ .is-checked {
1183
+ border: 1px solid #3875ff;
1184
+ }
1185
+ }
1186
+
1187
+ .el-select {
1188
+ .el-tag__close {
1189
+ color: black;
1190
+ }
1191
+ }
1192
+ }
1193
+ }
1194
+
1195
+ .changePasswordForm {
1196
+ .el-form-item {
1197
+ // margin-bottom: 12px !important;
1198
+ }
1199
+
1200
+ .el-form-item__label {
1201
+ width: 92px;
1202
+ color: var(--dialog-textColor1);
1203
+ }
1204
+
1205
+ .el-input {
1206
+ // width: 70% !important;
1207
+ }
1208
+ }
1209
+
1210
+ .changePasswordForm_en {
1211
+ .el-form-item__label {
1212
+ width: 172px;
1213
+ color: var(--dialog-textColor1);
1214
+ }
1215
+
1216
+ .el-input {
1217
+ width: unset !important;
1218
+ }
1219
+ }
1220
+ }
1221
+ }
1222
+
1223
+ .treeData {
1224
+ background: #181c29;
1225
+
1226
+ ::v-deep .el-tree {
1227
+ background: transparent;
1228
+
1229
+ .el-tree-node__content {
1230
+ color: var(--tab-selTXColor1);
1231
+ }
1232
+ }
1233
+
1234
+ ::v-deep .el-tree-node__content {
1235
+ background: var(--con-bgColor5);
1236
+ color: var(--tab-selTXColor1);
1237
+
1238
+ .el-tree-node__label {
1239
+ font-size: 0.75rem;
1240
+ }
1241
+
1242
+ .el-checkbox {
1243
+ display: none;
1244
+ }
1245
+ }
1246
+
1247
+ ::v-deep .el-tree-node__children {
1248
+ .el-tree-node__content {
1249
+ padding-left: 0 !important; // display: inline-block;
1250
+
1251
+ .el-tree-node__label {
1252
+ padding-right: 8px;
1253
+ }
1254
+ }
1255
+ }
1256
+
1257
+ ::v-deep .el-tree-node.is-checked {
1258
+ >.el-tree-node__content {
1259
+ &:first-of-type {
1260
+ background: #3875ff;
1261
+ color: var(--tab-selTXColor1);
1262
+ }
1263
+ }
1264
+ }
1265
+ }
1266
+
1267
+ .el-dropdown-menu {
1268
+ margin-top: 0;
1269
+
1270
+ p {
1271
+ font-size: 14px;
1272
+ width: 220px;
1273
+ height: 28px;
1274
+ display: flex;
1275
+ align-items: center;
1276
+ color: #f0f4ff;
1277
+ padding: 10px 4px;
1278
+ margin: 0px;
1279
+
1280
+ i {
1281
+ margin-left: 16px;
1282
+ margin-right: 14px;
1283
+ font-size: 16px;
1284
+ }
1285
+ }
1286
+
1287
+ .user {
1288
+ padding: 4px 15px 14px;
1289
+ display: flex;
1290
+ align-items: center;
1291
+ margin-bottom: 10px;
1292
+ border-bottom: 1px solid var(--con-borderColor);
1293
+
1294
+ .el-avatar {
1295
+ background: transparent;
1296
+ height: auto;
1297
+ margin-right: 10px;
1298
+ }
1299
+
1300
+ span {
1301
+ color: var(--popover-txColor);
1302
+ }
1303
+ }
1304
+ }
1305
+
1306
+ .slide-fade {
1307
+ position: absolute;
1308
+ left: 0;
1309
+ right: 0;
1310
+ }
1311
+
1312
+ .slide-fade-enter-active {
1313
+ transition: all 1.2s ease;
1314
+ }
1315
+
1316
+ .slide-fade-leave-active {
1317
+ transition: all 0.1s cubic-bezier(2, 0.5, 0.8, 1);
1318
+ }
1319
+
1320
+ .slide-fade-enter,
1321
+ .slide-fade-leave-to {
1322
+ left: 0;
1323
+ right: 0;
1324
+ transform: translateX(50px);
1325
+ opacity: 0;
1326
+ }
1327
+
1328
+ .pcShow {
1329
+ display: none !important;
1330
+ }
1331
+
1332
+ .appShow {
1333
+ display: none !important;
1334
+ }
1335
+
1336
+ // @media (max-width: $screen-xs-max) {
1337
+ // .pcShow {
1338
+ // display: none !important;
1339
+ // }
1340
+ // }
1341
+
1342
+ // @media (min-width: $screen-sm-min) and (max-width: $screen-md-min) {
1343
+ // .appShow {
1344
+ // display: none !important;
1345
+ // }
1346
+ // }
1347
+
1348
+ // @media (min-width: $screen-md-min) and (max-width: $screen-lg-min) {
1349
+ // .appShow {
1350
+ // display: none !important;
1351
+ // }
1352
+ // }
1353
+
1354
+ // @media (min-width: $screen-lg-min) {
1355
+ // .appShow {
1356
+ // display: none !important;
1357
+ // }
1358
+ // }