@ganwei-web/ganwei-pc-cli 6.2.6 → 6.2.7

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 (558) hide show
  1. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/pnpm-lock.yaml +5034 -5034
  2. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/eslint.config.js +10 -10
  3. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/css/ElementPlusAdapter.css +705 -705
  4. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.css +1167 -1167
  5. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/font/iconfont.json +2025 -2025
  6. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/ElementPlusAdapter.iife.js +628 -628
  7. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/elementPlus.min.js +73 -73
  8. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/js/vue3/gw_app_api.iife.js +4024 -4024
  9. package/ganwei-app-6.2.1/packages/ganwei-app-login/package.json +78 -78
  10. package/ganwei-app-6.2.1/packages/ganwei-app-template/auto-imports.d.ts +5 -5
  11. package/ganwei-app-6.2.1/packages/ganwei-app-template/components.d.ts +14 -14
  12. package/ganwei-app-6.2.1/packages/ganwei-app-template/package.json +76 -76
  13. package/ganwei-app-6.2.1/pnpm-lock.yaml +8810 -8810
  14. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/auto-imports.d.ts +5 -5
  15. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/auto-imports.d.ts +5 -5
  16. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/auto-imports.d.ts +5 -5
  17. package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-index/auto-imports.d.ts +5 -5
  18. package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-login/auto-imports.d.ts +5 -5
  19. package/ganwei-iotcenter-index-6.2.2/packages/ganwei-iotcenter-template/auto-imports.d.ts +5 -5
  20. package/ganwei-iotcenter-index-6.2.2/pnpm-lock.yaml +7962 -7962
  21. package/ganwei-iotcenter-index-6.2.3/.gitignore +31 -0
  22. package/ganwei-iotcenter-index-6.2.3/.npmrc +1 -0
  23. package/ganwei-iotcenter-index-6.2.3/.nvmrc +1 -0
  24. package/ganwei-iotcenter-index-6.2.3/configuration/clean.cjs +48 -0
  25. package/ganwei-iotcenter-index-6.2.3/configuration/cleanNodeModule.js +18 -0
  26. package/ganwei-iotcenter-index-6.2.3/configuration/gitClone.js +45 -0
  27. package/ganwei-iotcenter-index-6.2.3/configuration/moduleConfiguration.json +9 -0
  28. package/ganwei-iotcenter-index-6.2.3/configuration/updateModule.cjs +30 -0
  29. package/ganwei-iotcenter-index-6.2.3/init.cjs +30 -0
  30. package/ganwei-iotcenter-index-6.2.3/package.json +47 -0
  31. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.babelrc +4 -0
  32. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.editorconfig +22 -0
  33. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.env.development +22 -0
  34. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.env.production +22 -0
  35. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.env.test +22 -0
  36. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.eslintignore +13 -0
  37. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.eslintrc.cjs +176 -0
  38. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.gitignore +27 -0
  39. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.prettierignore +13 -0
  40. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/.prettierrc.cjs +19 -0
  41. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/auto-imports.d.ts +5 -0
  42. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/build/enteryJson.js +8 -0
  43. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/build/vite-addInfo-html.ts +38 -0
  44. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/build/vite-plugin-stats-html.js +595 -0
  45. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/components.d.ts +87 -0
  46. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/env.d.ts +7 -0
  47. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/index.html +33 -0
  48. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/package.json +92 -0
  49. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/css/ElementPlusAdapter.css +1417 -0
  50. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/css/element-plus/css-vars.css +1 -0
  51. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/css/element-plus/index.css +16959 -0
  52. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/css/element-ui/index.css +16075 -0
  53. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/css/equipStatus.css +70 -0
  54. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/css/index.css +15926 -0
  55. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/css/reset-6-1.css +396 -0
  56. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/css/reset.css +1988 -0
  57. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.css +1135 -0
  58. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.js +1 -0
  59. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.json +1969 -0
  60. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.ttf +0 -0
  61. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff +0 -0
  62. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/appFont/iconfont.woff2 +0 -0
  63. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.ttf +0 -0
  64. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/element-icons.woff +0 -0
  65. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.css +4195 -0
  66. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.js +1 -0
  67. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.json +7324 -0
  68. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.ttf +0 -0
  69. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff +0 -0
  70. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/fonts/font/iconfont.woff2 +0 -0
  71. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/http/createAxios--/346/234/252/346/267/273/345/212/240SM/347/211/210/346/234/254.js +486 -0
  72. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/http/createAxios.js +434 -0
  73. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/head-background.png +0 -0
  74. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-dark.svg +48 -0
  75. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-green.svg +42 -0
  76. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-alarmIcon-light.svg +26 -0
  77. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-dark.svg +20 -0
  78. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-green.svg +20 -0
  79. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-apppreview-light.svg +14 -0
  80. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-dark.svg +22 -0
  81. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-green.svg +16 -0
  82. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-contentfull-light.svg +16 -0
  83. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-contentfull.svg +22 -0
  84. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-dark.svg +19 -0
  85. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-green.svg +14 -0
  86. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen-light.svg +12 -0
  87. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-fullscreen.svg +19 -0
  88. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-loading.png +0 -0
  89. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-dark.svg +67 -0
  90. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-green.svg +67 -0
  91. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-light.svg +67 -0
  92. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-logo-src-small.png +0 -0
  93. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-logo-src.svg +67 -0
  94. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-nopage-dark.png +0 -0
  95. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-nopage-green.png +0 -0
  96. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-nopage-light.png +0 -0
  97. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-dark.svg +32 -0
  98. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-green.svg +32 -0
  99. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-normalIcon-light.svg +9 -0
  100. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-skin-dark.svg +22 -0
  101. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-skin-green.svg +22 -0
  102. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-skin-light.svg +15 -0
  103. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-skin.svg +22 -0
  104. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-dark.svg +18 -0
  105. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-green.svg +18 -0
  106. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping-light.svg +18 -0
  107. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-tuchuquanping.svg +18 -0
  108. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-upgrade.svg +18 -0
  109. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-user-dark.svg +22 -0
  110. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-user-green.svg +27 -0
  111. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-user-light.svg +22 -0
  112. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-user.svg +26 -0
  113. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-dark.svg +37 -0
  114. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-green.svg +37 -0
  115. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/index-warningIcon-light.svg +15 -0
  116. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/login-bg-img.png +0 -0
  117. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/login-bg.jpg +0 -0
  118. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/logo.png +0 -0
  119. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/menu-background.png +0 -0
  120. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/renew-message-dark.svg +1 -0
  121. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/renew-message-green.svg +1 -0
  122. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/renew-message-light.svg +1 -0
  123. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/right-close.png +0 -0
  124. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/right-open.png +0 -0
  125. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-fullscreen.png +0 -0
  126. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-guzhang.png +0 -0
  127. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-jinggao.png +0 -0
  128. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-shezhi.png +0 -0
  129. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-xinxi.png +0 -0
  130. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/systemsnapshot-zichan.png +0 -0
  131. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/unread-message-dark.svg +19 -0
  132. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/unread-message-green.svg +22 -0
  133. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/unread-message-light.svg +17 -0
  134. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/images/webconfig-location.svg +17 -0
  135. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/axios.min.js +2 -0
  136. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/drag.js +391 -0
  137. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/echarts.min.js +25 -0
  138. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js +1 -0
  139. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/element-ui/index.js.gz +0 -0
  140. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/enc-base64-min.js +86 -0
  141. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/filereader.js +455 -0
  142. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/font.js +56 -0
  143. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/getConfigInfoData.js +57 -0
  144. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/getLanguage.js +232 -0
  145. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/getLanguageOptions.js +52 -0
  146. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/getUserPermissionList.js +58 -0
  147. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/h5player.min.js +311 -0
  148. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/hmac-sha256.js +18 -0
  149. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/jquery-3.4.1.min.js +4189 -0
  150. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/jquery.slim.min.js +2 -0
  151. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/jsencrypt.min.js +2 -0
  152. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/jszip.min.js +14 -0
  153. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/liveplayer-lib.min.js +1 -0
  154. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/moment.js +5670 -0
  155. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/pptxjs.min.js +14105 -0
  156. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/signalr.min.js +17 -0
  157. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/sm4Encrypt.js +14 -0
  158. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/tXml.js +244 -0
  159. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/transformpcm.worker.js +58 -0
  160. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/vue-i18n.min.js +6 -0
  161. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/vue-router.min.js +11 -0
  162. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/vue.min.js +11 -0
  163. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/js/vuex.min.js +6 -0
  164. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/json/RAMScope.json +201 -0
  165. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/json/config.json +155 -0
  166. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/json/snapshot.json +34 -0
  167. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.css +246 -0
  168. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/lib/treeV2/treeV2.js +5384 -0
  169. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/dark-6-1.css +457 -0
  170. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/dark.css +426 -0
  171. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/default-theme-6-1.js +48 -0
  172. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/default-theme.js +53 -0
  173. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/green-6-1.css +357 -0
  174. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/light-6-1.css +463 -0
  175. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/light.css +414 -0
  176. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/public/static/themes/themeConfig.json +42 -0
  177. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/App.vue +88 -0
  178. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/assets/plugins/encrypt.js +122 -0
  179. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/auto-import.d.ts +61 -0
  180. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/contextMenu/Index.vue +113 -0
  181. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/contextMenu/index.js +42 -0
  182. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/features/Form/InputPassword/index.vue +101 -0
  183. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/images/appconnect.jpg +0 -0
  184. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/appPreview/index.vue +282 -0
  185. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.js +19 -0
  186. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/contentFullScreen/index.vue +10 -0
  187. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/equipAlarmDialog/index.vue +203 -0
  188. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/expirationReminder/index.vue +108 -0
  189. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.js +49 -0
  190. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/fullScreen/index.vue +10 -0
  191. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.scss +137 -0
  192. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/index.vue +58 -0
  193. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/notificationSlot/index.vue +124 -0
  194. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/ApprovalDialog.vue +147 -0
  195. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.js +331 -0
  196. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.scss +257 -0
  197. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/processDesign/index.vue +61 -0
  198. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/RenewDialog.vue +99 -0
  199. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.js +95 -0
  200. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.scss +0 -0
  201. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/index.vue +8 -0
  202. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/renewMessages/renew.vue +278 -0
  203. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.js +45 -0
  204. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.scss +36 -0
  205. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/saveMode/index.vue +22 -0
  206. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.js +70 -0
  207. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.scss +94 -0
  208. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/switchTheme/index.vue +35 -0
  209. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.scss +0 -0
  210. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/unReadMessages/index.vue +156 -0
  211. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.js +108 -0
  212. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.scss +147 -0
  213. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/upgrade/index.vue +34 -0
  214. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/forceEdit.js +78 -0
  215. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.js +265 -0
  216. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.scss +5 -0
  217. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/PWEditDialog/index.vue +40 -0
  218. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.js +94 -0
  219. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.scss +151 -0
  220. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/index.vue +96 -0
  221. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.js +68 -0
  222. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/logoutDialog/index.vue +16 -0
  223. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.js +178 -0
  224. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.scss +16 -0
  225. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/restartPlatformDialog/index.vue +46 -0
  226. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/safeModeDialog/index.vue +195 -0
  227. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.js +70 -0
  228. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.scss +95 -0
  229. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/switchPark/index.vue +35 -0
  230. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.js +240 -0
  231. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.scss +160 -0
  232. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/headerRight/userInfo/systemInfoDialog/index.vue +50 -0
  233. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.js +61 -0
  234. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.scss +40 -0
  235. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/index.vue +18 -0
  236. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.scss +152 -0
  237. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/labelPage/index.vue +432 -0
  238. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.js +82 -0
  239. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.scss +44 -0
  240. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/indexRightContent/normalPage/index.vue +21 -0
  241. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/isDebug/isDebug.vue +57 -0
  242. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/isDebug/warning.png +0 -0
  243. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/layouts/Navigation/AsideMenu.vue +473 -0
  244. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/layouts/Navigation/ContractMenu.vue +347 -0
  245. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/layouts/Navigation/TopNav.vue +393 -0
  246. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/layouts/Sidebar/LeftContent/index.vue +643 -0
  247. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/noAccess/noPage.vue +68 -0
  248. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/sceneMonitor/index.js +145 -0
  249. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/unreadMsg/listItem.vue +36 -0
  250. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/components/unreadMsg/unread.vue +265 -0
  251. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/composables/useAuth.ts +269 -0
  252. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/composables/useDialog.ts +68 -0
  253. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/composables/useFullscreen.ts +100 -0
  254. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/composables/usePermission.ts +230 -0
  255. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/composables/useTheme.ts +115 -0
  256. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/hostMap.js +13 -0
  257. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/main.js +52 -0
  258. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/mixins/judgePermission.js +60 -0
  259. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/request/api/frame.js +148 -0
  260. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/request/api.js +14 -0
  261. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/router.js +34 -0
  262. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/services/main.example.js +17 -0
  263. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/services/socket.init.js +362 -0
  264. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/services/socket.io.esm.min.js +7 -0
  265. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/services/socket.io.js +118 -0
  266. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/services/socketexample.vue +150 -0
  267. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/services/socketplugin.js +10 -0
  268. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/services/socketservice.js +37 -0
  269. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/store.js +228 -0
  270. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/types.js +16 -0
  271. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/MFEManager.js +156 -0
  272. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/bubbleSort.ts +168 -0
  273. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/gwEquipCache.js +325 -0
  274. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/gwSignalr.js +66 -0
  275. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/historyExport.js +158 -0
  276. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/setStorage.js +5 -0
  277. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/utils/sm4Encrypt.js +200 -0
  278. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/views/Index.vue +118 -0
  279. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/views/index.js +381 -0
  280. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/views/jumpIframe/index.vue +271 -0
  281. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/views/jumpIframe/preloadMethod.js +54 -0
  282. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/src/views/jumpIframe/queryParser.js +47 -0
  283. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/tsconfig.json +64 -0
  284. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-index/vite.config.ts +270 -0
  285. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.babelrc +8 -0
  286. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.editorconfig +22 -0
  287. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.env.development +22 -0
  288. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.env.production +22 -0
  289. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.env.test +22 -0
  290. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.eslintignore +13 -0
  291. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.eslintrc.cjs +162 -0
  292. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.gitignore +27 -0
  293. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.prettierignore +13 -0
  294. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/.prettierrc.cjs +37 -0
  295. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/auto-imports.d.ts +5 -0
  296. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/build/enteryJson.js +72 -0
  297. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/build/vite-addInfo-html.ts +38 -0
  298. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/build/vite-plugin-stats-html.js +595 -0
  299. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/env.d.ts +7 -0
  300. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/index.html +34 -0
  301. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/package.json +85 -0
  302. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/css/drag.css +140 -0
  303. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/css/element-plus/css-vars.css +1 -0
  304. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/css/element-plus/index.css +16959 -0
  305. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/css/element-ui/index.css +16075 -0
  306. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/css/equipStatus.css +70 -0
  307. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/css/index.css +15926 -0
  308. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/css/reset-6-1.css +180 -0
  309. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/css/reset.css +1992 -0
  310. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.css +1135 -0
  311. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.js +1 -0
  312. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.json +1969 -0
  313. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.ttf +0 -0
  314. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff +0 -0
  315. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/appFont/iconfont.woff2 +0 -0
  316. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.ttf +0 -0
  317. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/element-icons.woff +0 -0
  318. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.css +4195 -0
  319. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.js +1 -0
  320. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.json +7324 -0
  321. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.ttf +0 -0
  322. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff +0 -0
  323. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/fonts/font/iconfont.woff2 +0 -0
  324. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/http/createAxios--/346/234/252/346/267/273/345/212/240SM/347/211/210/346/234/254.js +486 -0
  325. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/http/createAxios.js +434 -0
  326. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/center.svg +23 -0
  327. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/centerActive.svg +24 -0
  328. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/center_light.svg +15 -0
  329. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/head-background.png +0 -0
  330. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-alarmIcon-dark.svg +48 -0
  331. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-alarmIcon-green.svg +42 -0
  332. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-alarmIcon-light.svg +26 -0
  333. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-apppreview-dark.svg +20 -0
  334. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-apppreview-green.svg +20 -0
  335. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-apppreview-light.svg +14 -0
  336. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-contentfull-dark.svg +22 -0
  337. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-contentfull-green.svg +16 -0
  338. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-contentfull-light.svg +16 -0
  339. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-contentfull.svg +22 -0
  340. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen-dark.svg +19 -0
  341. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen-green.svg +14 -0
  342. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen-light.svg +12 -0
  343. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-fullscreen.svg +19 -0
  344. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-loading.png +0 -0
  345. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-dark.svg +67 -0
  346. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-green.svg +67 -0
  347. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-light.svg +67 -0
  348. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-logo-src-small.png +0 -0
  349. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-logo-src.svg +67 -0
  350. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-nopage-dark.png +0 -0
  351. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-nopage-green.png +0 -0
  352. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-nopage-light.png +0 -0
  353. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-normalIcon-dark.svg +32 -0
  354. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-normalIcon-green.svg +32 -0
  355. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-normalIcon-light.svg +9 -0
  356. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-skin-dark.svg +22 -0
  357. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-skin-green.svg +22 -0
  358. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-skin-light.svg +15 -0
  359. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-skin.svg +22 -0
  360. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping-dark.svg +18 -0
  361. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping-green.svg +18 -0
  362. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping-light.svg +18 -0
  363. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-tuchuquanping.svg +18 -0
  364. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-upgrade.svg +18 -0
  365. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-user-dark.svg +22 -0
  366. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-user-green.svg +27 -0
  367. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-user-light.svg +22 -0
  368. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-user.svg +26 -0
  369. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-warningIcon-dark.svg +37 -0
  370. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-warningIcon-green.svg +37 -0
  371. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/index-warningIcon-light.svg +15 -0
  372. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/left.svg +23 -0
  373. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/leftActive.svg +24 -0
  374. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/left_light.svg +15 -0
  375. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/login-bg-img.png +0 -0
  376. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/login-bg.jpg +0 -0
  377. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/login-drag-start.png +0 -0
  378. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/login-drag-stop.png +0 -0
  379. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/logo.png +0 -0
  380. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/menu-background.png +0 -0
  381. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/refresh.png +0 -0
  382. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/renew-message-dark.svg +1 -0
  383. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/renew-message-green.svg +1 -0
  384. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/renew-message-light.svg +1 -0
  385. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/right-close.png +0 -0
  386. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/right-open.png +0 -0
  387. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/right.svg +23 -0
  388. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/rightActive.svg +24 -0
  389. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/right_light.svg +15 -0
  390. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-fullscreen.png +0 -0
  391. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-guzhang.png +0 -0
  392. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-jinggao.png +0 -0
  393. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-shezhi.png +0 -0
  394. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-xinxi.png +0 -0
  395. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/systemsnapshot-zichan.png +0 -0
  396. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/unread-message-dark.svg +19 -0
  397. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/unread-message-green.svg +22 -0
  398. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/unread-message-light.svg +17 -0
  399. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/images/webconfig-location.svg +17 -0
  400. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/axios.min.js +2 -0
  401. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/drag.js +391 -0
  402. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/echarts.min.js +25 -0
  403. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/element-ui/index.js +1 -0
  404. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/element-ui/index.js.gz +0 -0
  405. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/enc-base64-min.js +86 -0
  406. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/filereader.js +455 -0
  407. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/font.js +56 -0
  408. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/getConfigInfoData.js +57 -0
  409. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/getLanguage.js +232 -0
  410. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/getLanguageOptions.js +52 -0
  411. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/getUserPermissionList.js +58 -0
  412. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/h5player.min.js +311 -0
  413. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/hmac-sha256.js +18 -0
  414. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/jquery-3.4.1.min.js +4189 -0
  415. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/jquery.slim.min.js +2 -0
  416. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/jsencrypt.min.js +2 -0
  417. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/jszip.min.js +14 -0
  418. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/liveplayer-lib.min.js +1 -0
  419. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/moment.js +5670 -0
  420. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/pptxjs.min.js +14105 -0
  421. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/signalr.min.js +17 -0
  422. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/tXml.js +244 -0
  423. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/transformpcm.worker.js +58 -0
  424. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/vue-i18n.min.js +6 -0
  425. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/vue-router.min.js +11 -0
  426. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/vue.min.js +11 -0
  427. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/js/vuex.min.js +6 -0
  428. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/json/RAMScope.json +201 -0
  429. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/json/config.json +155 -0
  430. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/json/snapshot.json +34 -0
  431. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/lib/treeV2/treeV2.css +246 -0
  432. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/lib/treeV2/treeV2.js +5384 -0
  433. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/themes/dark-6-1.css +430 -0
  434. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/themes/dark.css +426 -0
  435. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/themes/default-theme-6-1.js +48 -0
  436. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/themes/default-theme.js +53 -0
  437. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/themes/green-6-1.css +357 -0
  438. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/themes/light-6-1.css +424 -0
  439. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/themes/light.css +414 -0
  440. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/public/static/themes/themeConfig.json +42 -0
  441. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/App.vue +71 -0
  442. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/alertHandle.scss +22 -0
  443. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/browserScroll.scss +5 -0
  444. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/btnHandle.scss +36 -0
  445. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/containerHandle.scss +402 -0
  446. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/dialogStyle.scss +43 -0
  447. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/equipStatus.scss +88 -0
  448. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/index.scss +1358 -0
  449. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/inputStyle.scss +16 -0
  450. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/listHandle.scss +113 -0
  451. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/login.scss +335 -0
  452. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/mainInfo.scss +297 -0
  453. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/maintenanceInfo.scss +199 -0
  454. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/style.css +921 -0
  455. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/tableHandle.scss +147 -0
  456. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/css/txtHandle.scss +39 -0
  457. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/images/clouds_back.jpg +0 -0
  458. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/images/clouds_front.jpg +0 -0
  459. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/images/clouds_left.jpg +0 -0
  460. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/images/clouds_right.jpg +0 -0
  461. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/images/clouds_top.jpg +0 -0
  462. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/images/login-bg-img.png +0 -0
  463. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/images/login-sso-error.png +0 -0
  464. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/images/logo-bg.png +0 -0
  465. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/assets/plugins/encrypt.js +122 -0
  466. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/components/declaration/declaration.scss +119 -0
  467. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/components/declaration/declaration.vue +109 -0
  468. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/components/declaration/declarationPacts.vue +42 -0
  469. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/components/loginBg.vue +281 -0
  470. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/components/passwordModification/checkEmailContainer.vue +134 -0
  471. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/components/passwordModification/inputEmailContainer.vue +128 -0
  472. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/components/passwordModification/modifyPasswordContainer.vue +138 -0
  473. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification - /345/211/257/346/234/254.vue" +4 -0
  474. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/components/passwordModification/passwordModification.vue +223 -0
  475. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/directive/loadMore/loadMore.js +14 -0
  476. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/hostMap.js +18 -0
  477. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/main.js +39 -0
  478. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/mixins/setDefaultLanguage.js +87 -0
  479. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/request/api/login.js +95 -0
  480. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/request/api.js +13 -0
  481. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/router.js +48 -0
  482. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/types.js +16 -0
  483. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/utils/formValidate.js +25 -0
  484. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/utils/isApp.js +18 -0
  485. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/utils/language.js +45 -0
  486. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/utils/myUtils.js +646 -0
  487. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/utils/timeFormat.js +23 -0
  488. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/utils/timesYMDHMS.js +27 -0
  489. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/views/js/mainInfo.js +374 -0
  490. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/views/js/maintenanceInfo.js +202 -0
  491. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/views/login.vue +459 -0
  492. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/views/mainInfo.vue +62 -0
  493. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/views/maintenanceInfo.vue +67 -0
  494. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/views/ssoLogin.vue +239 -0
  495. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/src/views/ssoLogout.vue +58 -0
  496. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/tsconfig.json +58 -0
  497. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-login/vite.config.ts +237 -0
  498. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.babelrc +8 -0
  499. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.editorconfig +22 -0
  500. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.env.development +22 -0
  501. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.env.production +22 -0
  502. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.env.test +22 -0
  503. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.eslintignore +13 -0
  504. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.eslintrc.cjs +162 -0
  505. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.gitignore +27 -0
  506. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.prettierignore +13 -0
  507. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/.prettierrc.cjs +37 -0
  508. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/auto-imports.d.ts +5 -0
  509. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/build/enteryJson.js +64 -0
  510. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/env.d.ts +7 -0
  511. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/index.html +25 -0
  512. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/package.json +95 -0
  513. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/css/element-plus/css-vars.css +1 -0
  514. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/css/element-plus/index.css +16959 -0
  515. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/css/index.css +15926 -0
  516. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/css/reset-6-1.css +396 -0
  517. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.ttf +0 -0
  518. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/fonts/element-icons.woff +0 -0
  519. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.css +4195 -0
  520. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.js +1 -0
  521. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.json +7324 -0
  522. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.ttf +0 -0
  523. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff +0 -0
  524. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/fonts/font/iconfont.woff2 +0 -0
  525. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/http/createAxios.js +434 -0
  526. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/js/axios.min.js +2 -0
  527. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/js/font.js +56 -0
  528. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/js/getConfigInfoData.js +57 -0
  529. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/js/getLanguage.js +232 -0
  530. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/js/getLanguageOptions.js +52 -0
  531. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/js/getUserPermissionList.js +58 -0
  532. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/themes/dark-6-1.css +457 -0
  533. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/themes/default-theme-6-1.js +48 -0
  534. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/public/static/themes/light-6-1.css +463 -0
  535. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/App.vue +53 -0
  536. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/assets/images/template.jpg +0 -0
  537. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/hostMap.ts +45 -0
  538. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/main.ts +48 -0
  539. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/request/api/template.ts +3 -0
  540. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/request/api.ts +10 -0
  541. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/request/models/request/index.ts +0 -0
  542. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/request/models/response/index.ts +0 -0
  543. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/router.ts +37 -0
  544. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/utils/setStorage.js +5 -0
  545. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/src/views/template.vue +19 -0
  546. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/tsconfig.json +55 -0
  547. package/ganwei-iotcenter-index-6.2.3/packages/ganwei-iotcenter-template/vite.config.ts +233 -0
  548. package/ganwei-iotcenter-index-6.2.3/pnpm-lock.yaml +8724 -0
  549. package/ganwei-iotcenter-index-6.2.3/pnpm-workspace.yaml +3 -0
  550. package/ganwei-iotcenter-index-6.2.3/scripts/ensure-all-modules.js +139 -0
  551. package/ganwei-pc.js +3 -3
  552. package/package.json +30 -29
  553. package/src/createQuestions.js +1 -0
  554. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/stats.html +0 -356
  555. package/ganwei-app-6.2.1/packages/ganwei-app-home/stats.html +0 -4975
  556. package/ganwei-app-6.2.1/packages/ganwei-app-index/stats.html +0 -4975
  557. package/ganwei-app-6.2.1/packages/ganwei-app-login/stats.html +0 -4975
  558. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/stats.html +0 -4975
@@ -1,628 +1,628 @@
1
- var ElementPlusAdapter = function(exports, elementPlus, vue) {
2
- "use strict";
3
- const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
4
- ...{
5
- inheritAttrs: false
6
- },
7
- __name: "index",
8
- setup(__props) {
9
- const attrs = vue.useAttrs();
10
- const loading = vue.ref(false);
11
- const handleClick = async (evt) => {
12
- const res = attrs.onClick(evt);
13
- if (res instanceof Promise) {
14
- loading.value = true;
15
- res.finally(() => {
16
- loading.value = false;
17
- });
18
- }
19
- return res;
20
- };
21
- return (_ctx, _cache) => {
22
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElButton), vue.normalizeProps(vue.guardReactiveProps({ type: "primary", loading: loading.value, ...vue.unref(attrs), onClick: handleClick })), vue.createSlots({ _: 2 }, [
23
- vue.renderList(_ctx.$slots, (value, key) => {
24
- return {
25
- name: key,
26
- fn: vue.withCtx((slotProps) => [
27
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
28
- ])
29
- };
30
- })
31
- ]), 1040);
32
- };
33
- }
34
- });
35
- const index_vue_vue_type_style_index_0_lang$k = "";
36
- const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
37
- __name: "index",
38
- setup(__props) {
39
- const attrs = vue.useAttrs();
40
- return (_ctx, _cache) => {
41
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElCascader), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
42
- vue.renderList(_ctx.$slots, (value, key) => {
43
- return {
44
- name: key,
45
- fn: vue.withCtx((slotProps) => [
46
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
47
- ])
48
- };
49
- })
50
- ]), 1040);
51
- };
52
- }
53
- });
54
- const index_vue_vue_type_style_index_0_lang$j = "";
55
- const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
56
- __name: "index",
57
- setup(__props) {
58
- const attrs = vue.useAttrs();
59
- return (_ctx, _cache) => {
60
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElCheckbox), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
61
- vue.renderList(_ctx.$slots, (value, key) => {
62
- return {
63
- name: key,
64
- fn: vue.withCtx((slotProps) => [
65
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
66
- ])
67
- };
68
- })
69
- ]), 1040);
70
- };
71
- }
72
- });
73
- const index_vue_vue_type_style_index_0_lang$i = "";
74
- const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
75
- __name: "index",
76
- setup(__props) {
77
- return (_ctx, _cache) => {
78
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElCollapse), null, vue.createSlots({ _: 2 }, [
79
- vue.renderList(_ctx.$slots, (value, key) => {
80
- return {
81
- name: key,
82
- fn: vue.withCtx((slotProps) => [
83
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
84
- ])
85
- };
86
- })
87
- ]), 1024);
88
- };
89
- }
90
- });
91
- const index_vue_vue_type_style_index_0_lang$h = "";
92
- const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
93
- __name: "index",
94
- setup(__props) {
95
- const attrs = vue.useAttrs();
96
- return (_ctx, _cache) => {
97
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDatePicker), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
98
- vue.renderList(_ctx.$slots, (value, key) => {
99
- return {
100
- name: key,
101
- fn: vue.withCtx((slotProps) => [
102
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
103
- ])
104
- };
105
- })
106
- ]), 1040);
107
- };
108
- }
109
- });
110
- const index_vue_vue_type_style_index_0_lang$g = "";
111
- const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
112
- __name: "index",
113
- setup(__props) {
114
- return (_ctx, _cache) => {
115
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDialog), vue.normalizeProps(vue.guardReactiveProps(_ctx.$attrs)), vue.createSlots({ _: 2 }, [
116
- vue.renderList(_ctx.$slots, (value, key) => {
117
- return {
118
- name: key,
119
- fn: vue.withCtx((slotProps) => [
120
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
121
- ])
122
- };
123
- })
124
- ]), 1040);
125
- };
126
- }
127
- });
128
- const index_vue_vue_type_style_index_0_lang$f = "";
129
- const UI_AUTOMATION_TOKEN = `data-testid`;
130
- function useDataTestId() {
131
- const attrs = vue.useAttrs();
132
- if (attrs[UI_AUTOMATION_TOKEN] === void 0 || attrs[UI_AUTOMATION_TOKEN] === null || typeof attrs[UI_AUTOMATION_TOKEN] !== "string") {
133
- console.warn(`${UI_AUTOMATION_TOKEN} is required to UI Automation`);
134
- }
135
- }
136
- const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
137
- __name: "index",
138
- setup(__props) {
139
- const attrs = vue.useAttrs();
140
- useDataTestId();
141
- return (_ctx, _cache) => {
142
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDrawer), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
143
- vue.renderList(_ctx.$slots, (value, key) => {
144
- return {
145
- name: key,
146
- fn: vue.withCtx((slotProps) => [
147
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
148
- ])
149
- };
150
- })
151
- ]), 1040);
152
- };
153
- }
154
- });
155
- const index_vue_vue_type_style_index_0_lang$e = "";
156
- const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
157
- __name: "index",
158
- setup(__props) {
159
- const attrs = vue.useAttrs();
160
- useDataTestId();
161
- return (_ctx, _cache) => {
162
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDropdown), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
163
- vue.renderList(_ctx.$slots, (value, key) => {
164
- return {
165
- name: key,
166
- fn: vue.withCtx((slotProps) => [
167
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
168
- ])
169
- };
170
- })
171
- ]), 1040);
172
- };
173
- }
174
- });
175
- const index_vue_vue_type_style_index_0_lang$d = "";
176
- function useExpose(proxyElement) {
177
- const expose = {};
178
- vue.onMounted(() => {
179
- Object.assign(expose, proxyElement.value);
180
- });
181
- return expose;
182
- }
183
- const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
184
- __name: "index",
185
- setup(__props, { expose: __expose }) {
186
- const proxyElement = vue.ref();
187
- const expose = useExpose(proxyElement);
188
- __expose(expose);
189
- const attrs = vue.useAttrs();
190
- return (_ctx, _cache) => {
191
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElForm), vue.mergeProps(vue.unref(attrs), {
192
- ref_key: "proxyElement",
193
- ref: proxyElement
194
- }), vue.createSlots({ _: 2 }, [
195
- vue.renderList(_ctx.$slots, (value, key) => {
196
- return {
197
- name: key,
198
- fn: vue.withCtx((slotProps) => [
199
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
200
- ])
201
- };
202
- })
203
- ]), 1040);
204
- };
205
- }
206
- });
207
- const index_vue_vue_type_style_index_0_lang$c = "";
208
- /*! Element Plus Icons Vue v2.3.1 */
209
- var picture_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ vue.defineComponent({
210
- name: "Picture",
211
- __name: "picture",
212
- setup(__props) {
213
- return (_ctx, _cache) => (vue.openBlock(), vue.createElementBlock("svg", {
214
- xmlns: "http://www.w3.org/2000/svg",
215
- viewBox: "0 0 1024 1024"
216
- }, [
217
- vue.createElementVNode("path", {
218
- fill: "currentColor",
219
- d: "M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"
220
- }),
221
- vue.createElementVNode("path", {
222
- fill: "currentColor",
223
- d: "M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64M185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952z"
224
- })
225
- ]));
226
- }
227
- });
228
- var picture_default = picture_vue_vue_type_script_setup_true_lang_default;
229
- const _hoisted_1 = { class: "error-slot" };
230
- const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
231
- __name: "index",
232
- setup(__props) {
233
- return (_ctx, _cache) => {
234
- const _component_el_icon = vue.resolveComponent("el-icon");
235
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElImage), {
236
- fit: "contain",
237
- lazy: ""
238
- }, {
239
- error: vue.withCtx(() => [
240
- vue.createElementVNode("div", _hoisted_1, [
241
- vue.createVNode(_component_el_icon, null, {
242
- default: vue.withCtx(() => [
243
- vue.createVNode(vue.unref(picture_default))
244
- ]),
245
- _: 1
246
- })
247
- ])
248
- ]),
249
- _: 1
250
- });
251
- };
252
- }
253
- });
254
- const index_vue_vue_type_style_index_0_lang$b = "";
255
- const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
256
- __name: "ElInput",
257
- setup(__props) {
258
- const attrs = vue.useAttrs();
259
- useDataTestId();
260
- return (_ctx, _cache) => {
261
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElInput), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
262
- vue.renderList(_ctx.$slots, (value, key) => {
263
- return {
264
- name: key,
265
- fn: vue.withCtx((slotProps) => [
266
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
267
- ])
268
- };
269
- })
270
- ]), 1040);
271
- };
272
- }
273
- });
274
- const ElInput_vue_vue_type_style_index_0_lang = "";
275
- const index$2 = "";
276
- const vLoading = {
277
- mounted(el, binding, vnode, prevVnode) {
278
- var _a, _b;
279
- const vueInstance = vnode.ctx.proxy;
280
- el.setAttribute(`element-loading-text`, (vueInstance == null ? void 0 : vueInstance.$t("publics.tips.loading")) + "...");
281
- el.setAttribute(`element-loading-spinner`, " ");
282
- el.setAttribute(`element-loading-background`, "customLoading");
283
- (_b = (_a = elementPlus.vLoading).mounted) == null ? void 0 : _b.call(_a, el, binding, vnode, prevVnode);
284
- },
285
- updated(el, binding, vnode, prevVnode) {
286
- var _a, _b;
287
- (_b = (_a = elementPlus.vLoading).updated) == null ? void 0 : _b.call(_a, el, binding, vnode, prevVnode);
288
- },
289
- unmounted(el, binding, vnode, prevVnode) {
290
- var _a, _b;
291
- (_b = (_a = elementPlus.vLoading).unmounted) == null ? void 0 : _b.call(_a, el, binding, vnode, prevVnode);
292
- }
293
- };
294
- const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
295
- __name: "index",
296
- setup(__props) {
297
- const attrs = vue.useAttrs();
298
- useDataTestId();
299
- return (_ctx, _cache) => {
300
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElMenu), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
301
- vue.renderList(_ctx.$slots, (value, key) => {
302
- return {
303
- name: key,
304
- fn: vue.withCtx((slotProps) => [
305
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
306
- ])
307
- };
308
- })
309
- ]), 1040);
310
- };
311
- }
312
- });
313
- const index_vue_vue_type_style_index_0_lang$a = "";
314
- const index$1 = "";
315
- const index = "";
316
- const install = elementPlus.ElNotification.install;
317
- const defaultOption = {
318
- duration: 2e3
319
- };
320
- const ElNotification = elementPlus.ElNotification;
321
- const notificationTypes = [
322
- "success",
323
- "info",
324
- "warning",
325
- "error"
326
- ];
327
- notificationTypes.forEach((type) => {
328
- ElNotification[type] = (options) => {
329
- if (typeof options === "string") {
330
- return elementPlus.ElNotification[type](options);
331
- }
332
- if (vue.isVNode(options)) {
333
- return elementPlus.ElNotification[type](options);
334
- }
335
- let data = {
336
- ...defaultOption,
337
- ...options,
338
- customClass: type,
339
- type
340
- };
341
- return ElNotification(data);
342
- };
343
- });
344
- ElNotification.install = (app) => {
345
- install == null ? void 0 : install(app);
346
- app.config.globalProperties.$notify = ElNotification;
347
- };
348
- const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
349
- __name: "index",
350
- setup(__props) {
351
- const attrs = vue.useAttrs();
352
- useDataTestId();
353
- const defaultAttrs = {
354
- pageSizes: [20, 50, 100],
355
- layout: "sizes,prev, pager, next,total"
356
- };
357
- return (_ctx, _cache) => {
358
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElPagination), vue.normalizeProps(vue.guardReactiveProps({ ...defaultAttrs, ...vue.unref(attrs) })), vue.createSlots({ _: 2 }, [
359
- vue.renderList(_ctx.$slots, (value, key) => {
360
- return {
361
- name: key,
362
- fn: vue.withCtx((slotProps) => [
363
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
364
- ])
365
- };
366
- })
367
- ]), 1040);
368
- };
369
- }
370
- });
371
- const index_vue_vue_type_style_index_0_lang$9 = "";
372
- const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
373
- __name: "index",
374
- setup(__props) {
375
- return (_ctx, _cache) => {
376
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElPopover), null, vue.createSlots({ _: 2 }, [
377
- vue.renderList(_ctx.$slots, (value, key) => {
378
- return {
379
- name: key,
380
- fn: vue.withCtx((slotProps) => [
381
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
382
- ])
383
- };
384
- })
385
- ]), 1024);
386
- };
387
- }
388
- });
389
- const index_vue_vue_type_style_index_0_lang$8 = "";
390
- const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
391
- __name: "index",
392
- setup(__props) {
393
- const attrs = vue.useAttrs();
394
- return (_ctx, _cache) => {
395
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElRadio), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
396
- vue.renderList(_ctx.$slots, (value, key) => {
397
- return {
398
- name: key,
399
- fn: vue.withCtx((slotProps) => [
400
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
401
- ])
402
- };
403
- })
404
- ]), 1040);
405
- };
406
- }
407
- });
408
- const index_vue_vue_type_style_index_0_lang$7 = "";
409
- const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
410
- __name: "index",
411
- props: {
412
- round: {
413
- type: Boolean,
414
- default: false
415
- }
416
- },
417
- setup(__props) {
418
- const attrs = vue.useAttrs();
419
- useDataTestId();
420
- return (_ctx, _cache) => {
421
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElRadioGroup), vue.mergeProps(vue.unref(attrs), {
422
- class: { round: __props.round }
423
- }), vue.createSlots({ _: 2 }, [
424
- vue.renderList(_ctx.$slots, (value, key) => {
425
- return {
426
- name: key,
427
- fn: vue.withCtx((slotProps) => [
428
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
429
- ])
430
- };
431
- })
432
- ]), 1040, ["class"]);
433
- };
434
- }
435
- });
436
- const index_vue_vue_type_style_index_0_lang$6 = "";
437
- const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
438
- __name: "index",
439
- setup(__props, { expose: __expose }) {
440
- const proxyElement = vue.ref();
441
- const expose = useExpose(proxyElement);
442
- __expose(expose);
443
- const attrs = vue.useAttrs();
444
- useDataTestId();
445
- return (_ctx, _cache) => {
446
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElSelect), vue.mergeProps(vue.unref(attrs), {
447
- ref_key: "proxyElement",
448
- ref: proxyElement
449
- }), vue.createSlots({ _: 2 }, [
450
- vue.renderList(_ctx.$slots, (value, key) => {
451
- return {
452
- name: key,
453
- fn: vue.withCtx((slotProps) => [
454
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
455
- ])
456
- };
457
- })
458
- ]), 1040);
459
- };
460
- }
461
- });
462
- const index_vue_vue_type_style_index_0_lang$5 = "";
463
- const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
464
- __name: "index",
465
- setup(__props) {
466
- const attrs = vue.useAttrs();
467
- useDataTestId();
468
- return (_ctx, _cache) => {
469
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElSwitch), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
470
- vue.renderList(_ctx.$slots, (value, key) => {
471
- return {
472
- name: key,
473
- fn: vue.withCtx((slotProps) => [
474
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
475
- ])
476
- };
477
- })
478
- ]), 1040);
479
- };
480
- }
481
- });
482
- const index_vue_vue_type_style_index_0_lang$4 = "";
483
- function useResizeTable() {
484
- const instance = vue.getCurrentInstance();
485
- const height = vue.ref();
486
- let el = null;
487
- vue.onMounted(() => {
488
- resizeTable();
489
- window.addEventListener("resize", resizeTable);
490
- });
491
- vue.onBeforeUnmount(() => {
492
- window.removeEventListener("resize", resizeTable);
493
- });
494
- function resizeTable() {
495
- var _a;
496
- el = (_a = instance == null ? void 0 : instance.proxy) == null ? void 0 : _a.$el;
497
- if (el) {
498
- height.value = el == null ? void 0 : el.clientHeight;
499
- }
500
- }
501
- return height;
502
- }
503
- const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
504
- __name: "index",
505
- setup(__props) {
506
- const height = useResizeTable();
507
- useDataTestId();
508
- return (_ctx, _cache) => {
509
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTable), { height: vue.unref(height) }, vue.createSlots({ _: 2 }, [
510
- vue.renderList(_ctx.$slots, (value, key) => {
511
- return {
512
- name: key,
513
- fn: vue.withCtx((slotProps) => [
514
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
515
- ])
516
- };
517
- })
518
- ]), 1032, ["height"]);
519
- };
520
- }
521
- });
522
- const index_vue_vue_type_style_index_0_lang$3 = "";
523
- const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
524
- __name: "index",
525
- setup(__props) {
526
- const attrs = vue.useAttrs();
527
- return (_ctx, _cache) => {
528
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTimePicker), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
529
- vue.renderList(_ctx.$slots, (value, key) => {
530
- return {
531
- name: key,
532
- fn: vue.withCtx((slotProps) => [
533
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
534
- ])
535
- };
536
- })
537
- ]), 1040);
538
- };
539
- }
540
- });
541
- const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
542
- __name: "index",
543
- setup(__props) {
544
- return (_ctx, _cache) => {
545
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTransfer));
546
- };
547
- }
548
- });
549
- const index_vue_vue_type_style_index_0_lang$2 = "";
550
- const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
551
- __name: "index",
552
- setup(__props) {
553
- return (_ctx, _cache) => {
554
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTree), null, vue.createSlots({ _: 2 }, [
555
- vue.renderList(_ctx.$slots, (value, key) => {
556
- return {
557
- name: key,
558
- fn: vue.withCtx((slotProps) => [
559
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
560
- ])
561
- };
562
- })
563
- ]), 1024);
564
- };
565
- }
566
- });
567
- const index_vue_vue_type_style_index_0_lang$1 = "";
568
- const _sfc_main = /* @__PURE__ */ vue.defineComponent({
569
- __name: "index",
570
- setup(__props) {
571
- return (_ctx, _cache) => {
572
- return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElUpload), { class: "upload_wrapper" }, vue.createSlots({ _: 2 }, [
573
- vue.renderList(_ctx.$slots, (value, key) => {
574
- return {
575
- name: key,
576
- fn: vue.withCtx((slotProps) => [
577
- vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
578
- ])
579
- };
580
- })
581
- ]), 1024);
582
- };
583
- }
584
- });
585
- const index_vue_vue_type_style_index_0_lang = "";
586
- const Adapter = {
587
- ElInput: _sfc_main$c,
588
- ElDropdown: _sfc_main$f,
589
- ElMenu: _sfc_main$b,
590
- ElRadioGroup: _sfc_main$7,
591
- ElTable: _sfc_main$4,
592
- ElSelect: _sfc_main$6,
593
- ElPagination: _sfc_main$a,
594
- ElButton: _sfc_main$m,
595
- ElForm: _sfc_main$e,
596
- ElCascader: _sfc_main$l,
597
- ElRadio: _sfc_main$8,
598
- ElCheckbox: _sfc_main$k,
599
- ElDatePicker: _sfc_main$i,
600
- ElTimePicker: _sfc_main$3,
601
- ElDialog: _sfc_main$h,
602
- ElSwitch: _sfc_main$5,
603
- ElDrawer: _sfc_main$g,
604
- ElPopover: _sfc_main$9,
605
- ElTransfer: _sfc_main$2,
606
- ElCollapse: _sfc_main$j,
607
- ElImage: _sfc_main$d,
608
- ElUpload: _sfc_main,
609
- ElTree: _sfc_main$1
610
- };
611
- function adapterInstall(app) {
612
- for (const [key, component] of Object.entries(Adapter)) {
613
- app.component(key, component);
614
- }
615
- adapterLoading(app);
616
- app.use(elementPlus.ElMessageBox);
617
- app.use(ElNotification);
618
- }
619
- function adapterLoading(app) {
620
- app.directive("loading", vLoading);
621
- }
622
- exports.adapterInstall = adapterInstall;
623
- exports.adapterLoading = adapterLoading;
624
- exports.default = Adapter;
625
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
626
- return exports;
627
- }({}, ElementPlus, Vue);
628
- //# sourceMappingURL=ElementPlusAdapter.iife.js.map
1
+ var ElementPlusAdapter = function(exports, elementPlus, vue) {
2
+ "use strict";
3
+ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
4
+ ...{
5
+ inheritAttrs: false
6
+ },
7
+ __name: "index",
8
+ setup(__props) {
9
+ const attrs = vue.useAttrs();
10
+ const loading = vue.ref(false);
11
+ const handleClick = async (evt) => {
12
+ const res = attrs.onClick(evt);
13
+ if (res instanceof Promise) {
14
+ loading.value = true;
15
+ res.finally(() => {
16
+ loading.value = false;
17
+ });
18
+ }
19
+ return res;
20
+ };
21
+ return (_ctx, _cache) => {
22
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElButton), vue.normalizeProps(vue.guardReactiveProps({ type: "primary", loading: loading.value, ...vue.unref(attrs), onClick: handleClick })), vue.createSlots({ _: 2 }, [
23
+ vue.renderList(_ctx.$slots, (value, key) => {
24
+ return {
25
+ name: key,
26
+ fn: vue.withCtx((slotProps) => [
27
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
28
+ ])
29
+ };
30
+ })
31
+ ]), 1040);
32
+ };
33
+ }
34
+ });
35
+ const index_vue_vue_type_style_index_0_lang$k = "";
36
+ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
37
+ __name: "index",
38
+ setup(__props) {
39
+ const attrs = vue.useAttrs();
40
+ return (_ctx, _cache) => {
41
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElCascader), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
42
+ vue.renderList(_ctx.$slots, (value, key) => {
43
+ return {
44
+ name: key,
45
+ fn: vue.withCtx((slotProps) => [
46
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
47
+ ])
48
+ };
49
+ })
50
+ ]), 1040);
51
+ };
52
+ }
53
+ });
54
+ const index_vue_vue_type_style_index_0_lang$j = "";
55
+ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
56
+ __name: "index",
57
+ setup(__props) {
58
+ const attrs = vue.useAttrs();
59
+ return (_ctx, _cache) => {
60
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElCheckbox), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
61
+ vue.renderList(_ctx.$slots, (value, key) => {
62
+ return {
63
+ name: key,
64
+ fn: vue.withCtx((slotProps) => [
65
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
66
+ ])
67
+ };
68
+ })
69
+ ]), 1040);
70
+ };
71
+ }
72
+ });
73
+ const index_vue_vue_type_style_index_0_lang$i = "";
74
+ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
75
+ __name: "index",
76
+ setup(__props) {
77
+ return (_ctx, _cache) => {
78
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElCollapse), null, vue.createSlots({ _: 2 }, [
79
+ vue.renderList(_ctx.$slots, (value, key) => {
80
+ return {
81
+ name: key,
82
+ fn: vue.withCtx((slotProps) => [
83
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
84
+ ])
85
+ };
86
+ })
87
+ ]), 1024);
88
+ };
89
+ }
90
+ });
91
+ const index_vue_vue_type_style_index_0_lang$h = "";
92
+ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
93
+ __name: "index",
94
+ setup(__props) {
95
+ const attrs = vue.useAttrs();
96
+ return (_ctx, _cache) => {
97
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDatePicker), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
98
+ vue.renderList(_ctx.$slots, (value, key) => {
99
+ return {
100
+ name: key,
101
+ fn: vue.withCtx((slotProps) => [
102
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
103
+ ])
104
+ };
105
+ })
106
+ ]), 1040);
107
+ };
108
+ }
109
+ });
110
+ const index_vue_vue_type_style_index_0_lang$g = "";
111
+ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
112
+ __name: "index",
113
+ setup(__props) {
114
+ return (_ctx, _cache) => {
115
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDialog), vue.normalizeProps(vue.guardReactiveProps(_ctx.$attrs)), vue.createSlots({ _: 2 }, [
116
+ vue.renderList(_ctx.$slots, (value, key) => {
117
+ return {
118
+ name: key,
119
+ fn: vue.withCtx((slotProps) => [
120
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
121
+ ])
122
+ };
123
+ })
124
+ ]), 1040);
125
+ };
126
+ }
127
+ });
128
+ const index_vue_vue_type_style_index_0_lang$f = "";
129
+ const UI_AUTOMATION_TOKEN = `data-testid`;
130
+ function useDataTestId() {
131
+ const attrs = vue.useAttrs();
132
+ if (attrs[UI_AUTOMATION_TOKEN] === void 0 || attrs[UI_AUTOMATION_TOKEN] === null || typeof attrs[UI_AUTOMATION_TOKEN] !== "string") {
133
+ console.warn(`${UI_AUTOMATION_TOKEN} is required to UI Automation`);
134
+ }
135
+ }
136
+ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
137
+ __name: "index",
138
+ setup(__props) {
139
+ const attrs = vue.useAttrs();
140
+ useDataTestId();
141
+ return (_ctx, _cache) => {
142
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDrawer), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
143
+ vue.renderList(_ctx.$slots, (value, key) => {
144
+ return {
145
+ name: key,
146
+ fn: vue.withCtx((slotProps) => [
147
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
148
+ ])
149
+ };
150
+ })
151
+ ]), 1040);
152
+ };
153
+ }
154
+ });
155
+ const index_vue_vue_type_style_index_0_lang$e = "";
156
+ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
157
+ __name: "index",
158
+ setup(__props) {
159
+ const attrs = vue.useAttrs();
160
+ useDataTestId();
161
+ return (_ctx, _cache) => {
162
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElDropdown), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
163
+ vue.renderList(_ctx.$slots, (value, key) => {
164
+ return {
165
+ name: key,
166
+ fn: vue.withCtx((slotProps) => [
167
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
168
+ ])
169
+ };
170
+ })
171
+ ]), 1040);
172
+ };
173
+ }
174
+ });
175
+ const index_vue_vue_type_style_index_0_lang$d = "";
176
+ function useExpose(proxyElement) {
177
+ const expose = {};
178
+ vue.onMounted(() => {
179
+ Object.assign(expose, proxyElement.value);
180
+ });
181
+ return expose;
182
+ }
183
+ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
184
+ __name: "index",
185
+ setup(__props, { expose: __expose }) {
186
+ const proxyElement = vue.ref();
187
+ const expose = useExpose(proxyElement);
188
+ __expose(expose);
189
+ const attrs = vue.useAttrs();
190
+ return (_ctx, _cache) => {
191
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElForm), vue.mergeProps(vue.unref(attrs), {
192
+ ref_key: "proxyElement",
193
+ ref: proxyElement
194
+ }), vue.createSlots({ _: 2 }, [
195
+ vue.renderList(_ctx.$slots, (value, key) => {
196
+ return {
197
+ name: key,
198
+ fn: vue.withCtx((slotProps) => [
199
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
200
+ ])
201
+ };
202
+ })
203
+ ]), 1040);
204
+ };
205
+ }
206
+ });
207
+ const index_vue_vue_type_style_index_0_lang$c = "";
208
+ /*! Element Plus Icons Vue v2.3.1 */
209
+ var picture_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ vue.defineComponent({
210
+ name: "Picture",
211
+ __name: "picture",
212
+ setup(__props) {
213
+ return (_ctx, _cache) => (vue.openBlock(), vue.createElementBlock("svg", {
214
+ xmlns: "http://www.w3.org/2000/svg",
215
+ viewBox: "0 0 1024 1024"
216
+ }, [
217
+ vue.createElementVNode("path", {
218
+ fill: "currentColor",
219
+ d: "M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"
220
+ }),
221
+ vue.createElementVNode("path", {
222
+ fill: "currentColor",
223
+ d: "M384 288q64 0 64 64t-64 64q-64 0-64-64t64-64M185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952z"
224
+ })
225
+ ]));
226
+ }
227
+ });
228
+ var picture_default = picture_vue_vue_type_script_setup_true_lang_default;
229
+ const _hoisted_1 = { class: "error-slot" };
230
+ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
231
+ __name: "index",
232
+ setup(__props) {
233
+ return (_ctx, _cache) => {
234
+ const _component_el_icon = vue.resolveComponent("el-icon");
235
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElImage), {
236
+ fit: "contain",
237
+ lazy: ""
238
+ }, {
239
+ error: vue.withCtx(() => [
240
+ vue.createElementVNode("div", _hoisted_1, [
241
+ vue.createVNode(_component_el_icon, null, {
242
+ default: vue.withCtx(() => [
243
+ vue.createVNode(vue.unref(picture_default))
244
+ ]),
245
+ _: 1
246
+ })
247
+ ])
248
+ ]),
249
+ _: 1
250
+ });
251
+ };
252
+ }
253
+ });
254
+ const index_vue_vue_type_style_index_0_lang$b = "";
255
+ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
256
+ __name: "ElInput",
257
+ setup(__props) {
258
+ const attrs = vue.useAttrs();
259
+ useDataTestId();
260
+ return (_ctx, _cache) => {
261
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElInput), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
262
+ vue.renderList(_ctx.$slots, (value, key) => {
263
+ return {
264
+ name: key,
265
+ fn: vue.withCtx((slotProps) => [
266
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
267
+ ])
268
+ };
269
+ })
270
+ ]), 1040);
271
+ };
272
+ }
273
+ });
274
+ const ElInput_vue_vue_type_style_index_0_lang = "";
275
+ const index$2 = "";
276
+ const vLoading = {
277
+ mounted(el, binding, vnode, prevVnode) {
278
+ var _a, _b;
279
+ const vueInstance = vnode.ctx.proxy;
280
+ el.setAttribute(`element-loading-text`, (vueInstance == null ? void 0 : vueInstance.$t("publics.tips.loading")) + "...");
281
+ el.setAttribute(`element-loading-spinner`, " ");
282
+ el.setAttribute(`element-loading-background`, "customLoading");
283
+ (_b = (_a = elementPlus.vLoading).mounted) == null ? void 0 : _b.call(_a, el, binding, vnode, prevVnode);
284
+ },
285
+ updated(el, binding, vnode, prevVnode) {
286
+ var _a, _b;
287
+ (_b = (_a = elementPlus.vLoading).updated) == null ? void 0 : _b.call(_a, el, binding, vnode, prevVnode);
288
+ },
289
+ unmounted(el, binding, vnode, prevVnode) {
290
+ var _a, _b;
291
+ (_b = (_a = elementPlus.vLoading).unmounted) == null ? void 0 : _b.call(_a, el, binding, vnode, prevVnode);
292
+ }
293
+ };
294
+ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
295
+ __name: "index",
296
+ setup(__props) {
297
+ const attrs = vue.useAttrs();
298
+ useDataTestId();
299
+ return (_ctx, _cache) => {
300
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElMenu), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
301
+ vue.renderList(_ctx.$slots, (value, key) => {
302
+ return {
303
+ name: key,
304
+ fn: vue.withCtx((slotProps) => [
305
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
306
+ ])
307
+ };
308
+ })
309
+ ]), 1040);
310
+ };
311
+ }
312
+ });
313
+ const index_vue_vue_type_style_index_0_lang$a = "";
314
+ const index$1 = "";
315
+ const index = "";
316
+ const install = elementPlus.ElNotification.install;
317
+ const defaultOption = {
318
+ duration: 2e3
319
+ };
320
+ const ElNotification = elementPlus.ElNotification;
321
+ const notificationTypes = [
322
+ "success",
323
+ "info",
324
+ "warning",
325
+ "error"
326
+ ];
327
+ notificationTypes.forEach((type) => {
328
+ ElNotification[type] = (options) => {
329
+ if (typeof options === "string") {
330
+ return elementPlus.ElNotification[type](options);
331
+ }
332
+ if (vue.isVNode(options)) {
333
+ return elementPlus.ElNotification[type](options);
334
+ }
335
+ let data = {
336
+ ...defaultOption,
337
+ ...options,
338
+ customClass: type,
339
+ type
340
+ };
341
+ return ElNotification(data);
342
+ };
343
+ });
344
+ ElNotification.install = (app) => {
345
+ install == null ? void 0 : install(app);
346
+ app.config.globalProperties.$notify = ElNotification;
347
+ };
348
+ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
349
+ __name: "index",
350
+ setup(__props) {
351
+ const attrs = vue.useAttrs();
352
+ useDataTestId();
353
+ const defaultAttrs = {
354
+ pageSizes: [20, 50, 100],
355
+ layout: "sizes,prev, pager, next,total"
356
+ };
357
+ return (_ctx, _cache) => {
358
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElPagination), vue.normalizeProps(vue.guardReactiveProps({ ...defaultAttrs, ...vue.unref(attrs) })), vue.createSlots({ _: 2 }, [
359
+ vue.renderList(_ctx.$slots, (value, key) => {
360
+ return {
361
+ name: key,
362
+ fn: vue.withCtx((slotProps) => [
363
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
364
+ ])
365
+ };
366
+ })
367
+ ]), 1040);
368
+ };
369
+ }
370
+ });
371
+ const index_vue_vue_type_style_index_0_lang$9 = "";
372
+ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
373
+ __name: "index",
374
+ setup(__props) {
375
+ return (_ctx, _cache) => {
376
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElPopover), null, vue.createSlots({ _: 2 }, [
377
+ vue.renderList(_ctx.$slots, (value, key) => {
378
+ return {
379
+ name: key,
380
+ fn: vue.withCtx((slotProps) => [
381
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
382
+ ])
383
+ };
384
+ })
385
+ ]), 1024);
386
+ };
387
+ }
388
+ });
389
+ const index_vue_vue_type_style_index_0_lang$8 = "";
390
+ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
391
+ __name: "index",
392
+ setup(__props) {
393
+ const attrs = vue.useAttrs();
394
+ return (_ctx, _cache) => {
395
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElRadio), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
396
+ vue.renderList(_ctx.$slots, (value, key) => {
397
+ return {
398
+ name: key,
399
+ fn: vue.withCtx((slotProps) => [
400
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
401
+ ])
402
+ };
403
+ })
404
+ ]), 1040);
405
+ };
406
+ }
407
+ });
408
+ const index_vue_vue_type_style_index_0_lang$7 = "";
409
+ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
410
+ __name: "index",
411
+ props: {
412
+ round: {
413
+ type: Boolean,
414
+ default: false
415
+ }
416
+ },
417
+ setup(__props) {
418
+ const attrs = vue.useAttrs();
419
+ useDataTestId();
420
+ return (_ctx, _cache) => {
421
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElRadioGroup), vue.mergeProps(vue.unref(attrs), {
422
+ class: { round: __props.round }
423
+ }), vue.createSlots({ _: 2 }, [
424
+ vue.renderList(_ctx.$slots, (value, key) => {
425
+ return {
426
+ name: key,
427
+ fn: vue.withCtx((slotProps) => [
428
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
429
+ ])
430
+ };
431
+ })
432
+ ]), 1040, ["class"]);
433
+ };
434
+ }
435
+ });
436
+ const index_vue_vue_type_style_index_0_lang$6 = "";
437
+ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
438
+ __name: "index",
439
+ setup(__props, { expose: __expose }) {
440
+ const proxyElement = vue.ref();
441
+ const expose = useExpose(proxyElement);
442
+ __expose(expose);
443
+ const attrs = vue.useAttrs();
444
+ useDataTestId();
445
+ return (_ctx, _cache) => {
446
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElSelect), vue.mergeProps(vue.unref(attrs), {
447
+ ref_key: "proxyElement",
448
+ ref: proxyElement
449
+ }), vue.createSlots({ _: 2 }, [
450
+ vue.renderList(_ctx.$slots, (value, key) => {
451
+ return {
452
+ name: key,
453
+ fn: vue.withCtx((slotProps) => [
454
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
455
+ ])
456
+ };
457
+ })
458
+ ]), 1040);
459
+ };
460
+ }
461
+ });
462
+ const index_vue_vue_type_style_index_0_lang$5 = "";
463
+ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
464
+ __name: "index",
465
+ setup(__props) {
466
+ const attrs = vue.useAttrs();
467
+ useDataTestId();
468
+ return (_ctx, _cache) => {
469
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElSwitch), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
470
+ vue.renderList(_ctx.$slots, (value, key) => {
471
+ return {
472
+ name: key,
473
+ fn: vue.withCtx((slotProps) => [
474
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
475
+ ])
476
+ };
477
+ })
478
+ ]), 1040);
479
+ };
480
+ }
481
+ });
482
+ const index_vue_vue_type_style_index_0_lang$4 = "";
483
+ function useResizeTable() {
484
+ const instance = vue.getCurrentInstance();
485
+ const height = vue.ref();
486
+ let el = null;
487
+ vue.onMounted(() => {
488
+ resizeTable();
489
+ window.addEventListener("resize", resizeTable);
490
+ });
491
+ vue.onBeforeUnmount(() => {
492
+ window.removeEventListener("resize", resizeTable);
493
+ });
494
+ function resizeTable() {
495
+ var _a;
496
+ el = (_a = instance == null ? void 0 : instance.proxy) == null ? void 0 : _a.$el;
497
+ if (el) {
498
+ height.value = el == null ? void 0 : el.clientHeight;
499
+ }
500
+ }
501
+ return height;
502
+ }
503
+ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
504
+ __name: "index",
505
+ setup(__props) {
506
+ const height = useResizeTable();
507
+ useDataTestId();
508
+ return (_ctx, _cache) => {
509
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTable), { height: vue.unref(height) }, vue.createSlots({ _: 2 }, [
510
+ vue.renderList(_ctx.$slots, (value, key) => {
511
+ return {
512
+ name: key,
513
+ fn: vue.withCtx((slotProps) => [
514
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
515
+ ])
516
+ };
517
+ })
518
+ ]), 1032, ["height"]);
519
+ };
520
+ }
521
+ });
522
+ const index_vue_vue_type_style_index_0_lang$3 = "";
523
+ const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
524
+ __name: "index",
525
+ setup(__props) {
526
+ const attrs = vue.useAttrs();
527
+ return (_ctx, _cache) => {
528
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTimePicker), vue.normalizeProps(vue.guardReactiveProps(vue.unref(attrs))), vue.createSlots({ _: 2 }, [
529
+ vue.renderList(_ctx.$slots, (value, key) => {
530
+ return {
531
+ name: key,
532
+ fn: vue.withCtx((slotProps) => [
533
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
534
+ ])
535
+ };
536
+ })
537
+ ]), 1040);
538
+ };
539
+ }
540
+ });
541
+ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
542
+ __name: "index",
543
+ setup(__props) {
544
+ return (_ctx, _cache) => {
545
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTransfer));
546
+ };
547
+ }
548
+ });
549
+ const index_vue_vue_type_style_index_0_lang$2 = "";
550
+ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
551
+ __name: "index",
552
+ setup(__props) {
553
+ return (_ctx, _cache) => {
554
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElTree), null, vue.createSlots({ _: 2 }, [
555
+ vue.renderList(_ctx.$slots, (value, key) => {
556
+ return {
557
+ name: key,
558
+ fn: vue.withCtx((slotProps) => [
559
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
560
+ ])
561
+ };
562
+ })
563
+ ]), 1024);
564
+ };
565
+ }
566
+ });
567
+ const index_vue_vue_type_style_index_0_lang$1 = "";
568
+ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
569
+ __name: "index",
570
+ setup(__props) {
571
+ return (_ctx, _cache) => {
572
+ return vue.openBlock(), vue.createBlock(vue.unref(elementPlus.ElUpload), { class: "upload_wrapper" }, vue.createSlots({ _: 2 }, [
573
+ vue.renderList(_ctx.$slots, (value, key) => {
574
+ return {
575
+ name: key,
576
+ fn: vue.withCtx((slotProps) => [
577
+ vue.renderSlot(_ctx.$slots, key, vue.mergeProps(slotProps, { key }))
578
+ ])
579
+ };
580
+ })
581
+ ]), 1024);
582
+ };
583
+ }
584
+ });
585
+ const index_vue_vue_type_style_index_0_lang = "";
586
+ const Adapter = {
587
+ ElInput: _sfc_main$c,
588
+ ElDropdown: _sfc_main$f,
589
+ ElMenu: _sfc_main$b,
590
+ ElRadioGroup: _sfc_main$7,
591
+ ElTable: _sfc_main$4,
592
+ ElSelect: _sfc_main$6,
593
+ ElPagination: _sfc_main$a,
594
+ ElButton: _sfc_main$m,
595
+ ElForm: _sfc_main$e,
596
+ ElCascader: _sfc_main$l,
597
+ ElRadio: _sfc_main$8,
598
+ ElCheckbox: _sfc_main$k,
599
+ ElDatePicker: _sfc_main$i,
600
+ ElTimePicker: _sfc_main$3,
601
+ ElDialog: _sfc_main$h,
602
+ ElSwitch: _sfc_main$5,
603
+ ElDrawer: _sfc_main$g,
604
+ ElPopover: _sfc_main$9,
605
+ ElTransfer: _sfc_main$2,
606
+ ElCollapse: _sfc_main$j,
607
+ ElImage: _sfc_main$d,
608
+ ElUpload: _sfc_main,
609
+ ElTree: _sfc_main$1
610
+ };
611
+ function adapterInstall(app) {
612
+ for (const [key, component] of Object.entries(Adapter)) {
613
+ app.component(key, component);
614
+ }
615
+ adapterLoading(app);
616
+ app.use(elementPlus.ElMessageBox);
617
+ app.use(ElNotification);
618
+ }
619
+ function adapterLoading(app) {
620
+ app.directive("loading", vLoading);
621
+ }
622
+ exports.adapterInstall = adapterInstall;
623
+ exports.adapterLoading = adapterLoading;
624
+ exports.default = Adapter;
625
+ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
626
+ return exports;
627
+ }({}, ElementPlus, Vue);
628
+ //# sourceMappingURL=ElementPlusAdapter.iife.js.map