@ganwei-web/ganwei-pc-cli 6.2.2 → 6.2.4

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 (297) hide show
  1. package/ganwei-app-6.2.1/.gitignore +33 -0
  2. package/ganwei-app-6.2.1/.npmrc +1 -0
  3. package/ganwei-app-6.2.1/moduleConfiguration/.gitignore +27 -0
  4. package/ganwei-app-6.2.1/moduleConfiguration/copyFile.js +8 -14
  5. package/ganwei-app-6.2.1/moduleConfiguration/init.js +2 -8
  6. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.babelrc +4 -0
  7. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.editorconfig +22 -0
  8. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.env.development +23 -0
  9. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.env.production +29 -0
  10. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.env.test +22 -0
  11. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.eslintignore +13 -0
  12. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.eslintrc.cjs +178 -0
  13. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.gitignore +27 -0
  14. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.prettierignore +13 -0
  15. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.prettierrc.cjs +37 -0
  16. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/auto-imports.d.ts +5 -0
  17. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/banner.js +9 -0
  18. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/build-version.js +42 -0
  19. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/bulidList.js +26 -0
  20. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/enteryJson.js +108 -0
  21. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/filterStatic.js +64 -0
  22. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/init.js +27 -0
  23. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/look-dir.js +24 -0
  24. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/rollup-options.js +35 -0
  25. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/test.js +3 -0
  26. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/vite-plugin-stats-html.js +595 -0
  27. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/components.d.ts +20 -0
  28. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/env.d.ts +7 -0
  29. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/index.html +20 -0
  30. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/package-lock.json +3965 -0
  31. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/package.json +69 -0
  32. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/pnpm-lock.yaml +5034 -0
  33. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/index-plus-vars.css +93 -0
  34. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/index-plus.css +1 -0
  35. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/index.css +15926 -0
  36. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/pptxjs.css +161 -0
  37. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.css +1135 -0
  38. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.js +1 -0
  39. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.json +1969 -0
  40. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.ttf +0 -0
  41. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.woff +0 -0
  42. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.woff2 +0 -0
  43. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/language/en-US/noPage.json +3 -0
  44. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/language/zh-CN/noPage.json +3 -0
  45. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/language/zh-HK/noPage.json +3 -0
  46. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/themes/dark.css +77 -0
  47. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/themes/default-theme.js +34 -0
  48. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/themes/light.css +79 -0
  49. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/App.vue +198 -0
  50. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/index.scssc +0 -0
  51. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/linkSetting.scssc +0 -0
  52. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/sceneSetting.scssc +0 -0
  53. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/specialTask.scssc +0 -0
  54. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/style.scssc +0 -0
  55. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/weekTask.scssc +0 -0
  56. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/VideoSystem.scss +397 -0
  57. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/el-dialog.scss +58 -0
  58. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/el-drawer.scss +41 -0
  59. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/index.scss +1052 -0
  60. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/login.scss +320 -0
  61. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/mobileStyle.scss +332 -0
  62. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/noDataTips.scss +57 -0
  63. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/reset.scss +1192 -0
  64. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/style-black.scss +1 -0
  65. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/style-white.scss +1 -0
  66. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/style.scss +633 -0
  67. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/videoPlaybackCom.scss +468 -0
  68. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/videoPlayer.scss +441 -0
  69. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/images/logo.png +0 -0
  70. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/plugins/encrypt.js +122 -0
  71. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/appFrame.vue +163 -0
  72. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/bottom.vue +15 -0
  73. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/css/bottom.scss +381 -0
  74. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/css/top.scss +49 -0
  75. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/js/Voice.js +345 -0
  76. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/js/bottom.js +102 -0
  77. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/top.vue +114 -0
  78. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/i18n/i18n.js +42 -0
  79. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/i18n/i18nObserver.js +39 -0
  80. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/i18n/vueI18n.js +17 -0
  81. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/toast/index.js +64 -0
  82. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/toast/index.vue +152 -0
  83. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/hostMap.js +9 -0
  84. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/main.js +39 -0
  85. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/Auth.js +83 -0
  86. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/BA.js +81 -0
  87. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/EquipList.js +127 -0
  88. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/Event.js +34 -0
  89. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/GwEcharts.js +9 -0
  90. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/PPT.js +5 -0
  91. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/RealTime.js +43 -0
  92. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/SystemConfig.js +177 -0
  93. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/Video.js +57 -0
  94. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/VideoTour.js +129 -0
  95. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/WelcomeWord.js +24 -0
  96. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/WorkOrder.js +265 -0
  97. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/videoSystem.js +81 -0
  98. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api.js +35 -0
  99. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/apiFunction.js +200 -0
  100. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/encrypt.js +14 -0
  101. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/http.js +186 -0
  102. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/router.js +31 -0
  103. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/store.js +189 -0
  104. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/types.js +16 -0
  105. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/formValidate.js +25 -0
  106. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/isApp.js +18 -0
  107. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/language.js +45 -0
  108. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/myUtils.js +643 -0
  109. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/timeFormat.js +23 -0
  110. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/timesYMDHMS.js +27 -0
  111. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/views/ganwei-app-empty-page/src/noPage.vue +22 -0
  112. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/stats.html +356 -0
  113. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/vite.base.config.js +244 -0
  114. package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/vite.config.ts +44 -0
  115. package/ganwei-app-6.2.1/packages/ganwei-app-home/.babelrc +4 -0
  116. package/ganwei-app-6.2.1/packages/ganwei-app-home/.editorconfig +22 -0
  117. package/ganwei-app-6.2.1/packages/ganwei-app-home/.env.development +23 -0
  118. package/ganwei-app-6.2.1/packages/ganwei-app-home/.env.production +29 -0
  119. package/ganwei-app-6.2.1/packages/ganwei-app-home/.env.test +22 -0
  120. package/ganwei-app-6.2.1/packages/ganwei-app-home/.eslintignore +13 -0
  121. package/ganwei-app-6.2.1/packages/ganwei-app-home/.eslintrc.cjs +178 -0
  122. package/ganwei-app-6.2.1/packages/ganwei-app-home/.gitignore +27 -0
  123. package/ganwei-app-6.2.1/packages/ganwei-app-home/.prettierignore +13 -0
  124. package/ganwei-app-6.2.1/packages/ganwei-app-home/.prettierrc.cjs +37 -0
  125. package/ganwei-app-6.2.1/packages/ganwei-app-home/.stylelintrc.cjs +18 -0
  126. package/ganwei-app-6.2.1/packages/ganwei-app-home/auto-imports.d.ts +56 -0
  127. package/ganwei-app-6.2.1/packages/ganwei-app-home/components.d.ts +25 -0
  128. package/ganwei-app-6.2.1/packages/ganwei-app-home/env.d.ts +21 -0
  129. package/ganwei-app-6.2.1/packages/ganwei-app-home/index.html +20 -0
  130. package/ganwei-app-6.2.1/packages/ganwei-app-home/package.json +87 -0
  131. package/ganwei-app-6.2.1/packages/ganwei-app-home/public/static/language/en-US/home.json +39 -0
  132. package/ganwei-app-6.2.1/packages/ganwei-app-home/public/static/language/zh-CN/home.json +39 -0
  133. package/ganwei-app-6.2.1/packages/ganwei-app-home/public/static/language/zh-HK/home.json +39 -0
  134. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/App.vue +203 -0
  135. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/assets/images/logo.png +0 -0
  136. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/components/Layout/TitleList.vue +20 -0
  137. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/enums/index.ts +24 -0
  138. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/main.ts +29 -0
  139. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/models/index.ts +91 -0
  140. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/request/api/RealTime.ts +27 -0
  141. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/request/api.ts +5 -0
  142. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/router.ts +30 -0
  143. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/store.js +189 -0
  144. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/types.js +16 -0
  145. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeMenuItem.vue +95 -0
  146. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeMenus.vue +118 -0
  147. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeMenusEditDrawer.vue +119 -0
  148. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeSnapshots.vue +109 -0
  149. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/chatbot.vue +96 -0
  150. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/eslint.config.js +10 -0
  151. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/css/index.scss +5 -0
  152. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/img/chatbot.gif +0 -0
  153. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/img/six.png +0 -0
  154. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/index.vue +42 -0
  155. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useLanguageStyle.ts +21 -0
  156. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useManageMenus.ts +38 -0
  157. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useMenus.ts +49 -0
  158. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/usePolling.ts +38 -0
  159. package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useRealTime.ts +128 -0
  160. package/ganwei-app-6.2.1/packages/ganwei-app-home/stats.html +4975 -0
  161. package/ganwei-app-6.2.1/packages/ganwei-app-home/tsconfig.json +58 -0
  162. package/ganwei-app-6.2.1/packages/ganwei-app-home/types/gw-app-public.d.ts +4 -0
  163. package/ganwei-app-6.2.1/packages/ganwei-app-home/vite.base.config.ts +233 -0
  164. package/ganwei-app-6.2.1/packages/ganwei-app-home/vite.config.ts +49 -0
  165. package/ganwei-app-6.2.1/packages/ganwei-app-index/.gitignore +27 -0
  166. package/ganwei-app-6.2.1/packages/ganwei-app-index/index.html +1 -2
  167. package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/config.json +2 -2
  168. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/util.js +4 -10
  169. package/ganwei-app-6.2.1/packages/ganwei-app-index/src/types.js +1 -1
  170. package/ganwei-app-6.2.1/packages/ganwei-app-login/.babelrc +4 -0
  171. package/ganwei-app-6.2.1/packages/ganwei-app-login/.editorconfig +22 -0
  172. package/ganwei-app-6.2.1/packages/ganwei-app-login/.env.development +23 -0
  173. package/ganwei-app-6.2.1/packages/ganwei-app-login/.env.production +29 -0
  174. package/ganwei-app-6.2.1/packages/ganwei-app-login/.env.test +22 -0
  175. package/ganwei-app-6.2.1/packages/ganwei-app-login/.eslintignore +13 -0
  176. package/ganwei-app-6.2.1/packages/ganwei-app-login/.eslintrc.cjs +178 -0
  177. package/ganwei-app-6.2.1/packages/ganwei-app-login/.gitignore +27 -0
  178. package/ganwei-app-6.2.1/packages/ganwei-app-login/.prettierignore +13 -0
  179. package/ganwei-app-6.2.1/packages/ganwei-app-login/.prettierrc.cjs +37 -0
  180. package/ganwei-app-6.2.1/packages/ganwei-app-login/.stylelintrc.cjs +16 -0
  181. package/ganwei-app-6.2.1/packages/ganwei-app-login/auto-imports.d.ts +5 -0
  182. package/ganwei-app-6.2.1/packages/ganwei-app-login/env.d.ts +67 -0
  183. package/ganwei-app-6.2.1/packages/ganwei-app-login/index.html +20 -0
  184. package/ganwei-app-6.2.1/packages/ganwei-app-login/package.json +79 -0
  185. package/ganwei-app-6.2.1/packages/ganwei-app-login/public/static/language/en-US/login.json +48 -0
  186. package/ganwei-app-6.2.1/packages/ganwei-app-login/public/static/language/zh-CN/login.json +48 -0
  187. package/ganwei-app-6.2.1/packages/ganwei-app-login/public/static/language/zh-HK/login.json +48 -0
  188. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/App.vue +225 -0
  189. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/assets/images/bg.png +0 -0
  190. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/assets/images/logo.png +0 -0
  191. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/assets/images/refresh.png +0 -0
  192. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/components/app-drag/index.vue +183 -0
  193. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/hostMap.ts +11 -0
  194. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/main.ts +19 -0
  195. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/models/index.ts +48 -0
  196. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/request/api/Auth.ts +27 -0
  197. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/request/api.ts +5 -0
  198. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/router.ts +30 -0
  199. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/Login.vue +99 -0
  200. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/css/login.scss +78 -0
  201. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/js/useLogin.ts +73 -0
  202. package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/js/useRememberPassword.ts +48 -0
  203. package/ganwei-app-6.2.1/packages/ganwei-app-login/stats.html +4975 -0
  204. package/ganwei-app-6.2.1/packages/ganwei-app-login/tsconfig.json +56 -0
  205. package/ganwei-app-6.2.1/packages/ganwei-app-login/types/gw-app-public.d.ts +4 -0
  206. package/ganwei-app-6.2.1/packages/ganwei-app-login/vite.base.config.ts +233 -0
  207. package/ganwei-app-6.2.1/packages/ganwei-app-login/vite.config.ts +51 -0
  208. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.babelrc +4 -0
  209. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.editorconfig +22 -0
  210. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.env.development +23 -0
  211. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.env.production +29 -0
  212. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.env.test +22 -0
  213. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.eslintignore +13 -0
  214. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.eslintrc.cjs +178 -0
  215. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.gitignore +27 -0
  216. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.prettierignore +13 -0
  217. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.prettierrc.cjs +37 -0
  218. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.stylelintrc.cjs +17 -0
  219. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/auto-imports.d.ts +5 -0
  220. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/env.d.ts +21 -0
  221. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/index.html +20 -0
  222. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/package.json +85 -0
  223. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/public/static/language/en-US/setPage.json +25 -0
  224. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/public/static/language/zh-CN/setPage.json +25 -0
  225. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/public/static/language/zh-HK/setPage.json +25 -0
  226. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/App.vue +202 -0
  227. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/assets/images/logo.png +0 -0
  228. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/components/buttonModeSelect/index.vue +190 -0
  229. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/hostMap.ts +11 -0
  230. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/main.ts +24 -0
  231. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/models/index.ts +0 -0
  232. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/request/api/Auth.ts +21 -0
  233. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/request/api.ts +5 -0
  234. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/router.ts +29 -0
  235. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/store.js +189 -0
  236. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/types.js +16 -0
  237. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useChangeLanguage.ts +19 -0
  238. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useChangeTheme.ts +16 -0
  239. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useClearCache.ts +26 -0
  240. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useJavaFunc.ts +146 -0
  241. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useLogout.ts +52 -0
  242. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/setPage.vue +120 -0
  243. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/stats.html +4975 -0
  244. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/tsconfig.json +58 -0
  245. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/types/gw-app-public.d.ts +4 -0
  246. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/vite.base.config.ts +233 -0
  247. package/ganwei-app-6.2.1/packages/ganwei-app-set-page/vite.config.ts +49 -0
  248. package/ganwei-app-6.2.1/packages/ganwei-app-template/.babelrc +4 -0
  249. package/ganwei-app-6.2.1/packages/ganwei-app-template/.editorconfig +22 -0
  250. package/ganwei-app-6.2.1/packages/ganwei-app-template/.env.development +23 -0
  251. package/ganwei-app-6.2.1/packages/ganwei-app-template/.env.production +29 -0
  252. package/ganwei-app-6.2.1/packages/ganwei-app-template/.env.test +22 -0
  253. package/ganwei-app-6.2.1/packages/ganwei-app-template/.eslintignore +13 -0
  254. package/ganwei-app-6.2.1/packages/ganwei-app-template/.eslintrc.cjs +178 -0
  255. package/ganwei-app-6.2.1/packages/ganwei-app-template/.gitignore +27 -0
  256. package/ganwei-app-6.2.1/packages/ganwei-app-template/.prettierignore +13 -0
  257. package/ganwei-app-6.2.1/packages/ganwei-app-template/.prettierrc.cjs +37 -0
  258. package/ganwei-app-6.2.1/packages/ganwei-app-template/auto-imports.d.ts +5 -0
  259. package/ganwei-app-6.2.1/packages/ganwei-app-template/components.d.ts +14 -0
  260. package/ganwei-app-6.2.1/packages/ganwei-app-template/env.d.ts +7 -0
  261. package/ganwei-app-6.2.1/packages/ganwei-app-template/index.html +18 -0
  262. package/ganwei-app-6.2.1/packages/ganwei-app-template/package.json +77 -0
  263. package/ganwei-app-6.2.1/packages/ganwei-app-template/public/static/language/en-US/template.json +3 -0
  264. package/ganwei-app-6.2.1/packages/ganwei-app-template/public/static/language/zh-CN/template.json +3 -0
  265. package/ganwei-app-6.2.1/packages/ganwei-app-template/public/static/language/zh-HK/template.json +3 -0
  266. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/App.vue +202 -0
  267. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/assets/images/logo.png +0 -0
  268. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/components/buttonModeSelect/index.vue +190 -0
  269. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/hostMap.ts +11 -0
  270. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/main.ts +24 -0
  271. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/models/index.ts +0 -0
  272. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/request/api/Auth.ts +21 -0
  273. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/request/api.ts +5 -0
  274. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/router.ts +29 -0
  275. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/store.js +189 -0
  276. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/types.js +16 -0
  277. package/ganwei-app-6.2.1/packages/ganwei-app-template/src/views/ganwei-app-template/src/template.vue +22 -0
  278. package/ganwei-app-6.2.1/packages/ganwei-app-template/tsconfig.json +58 -0
  279. package/ganwei-app-6.2.1/packages/ganwei-app-template/types/gw-app-public.d.ts +4 -0
  280. package/ganwei-app-6.2.1/packages/ganwei-app-template/vite.base.config.js +246 -0
  281. package/ganwei-app-6.2.1/packages/ganwei-app-template/vite.config.ts +44 -0
  282. package/ganwei-iotcenter-index-6.2.1/.gitignore +31 -0
  283. package/ganwei-iotcenter-index-6.2.1/.npmrc +1 -0
  284. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/.gitignore +27 -0
  285. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/json/config.json +47 -43
  286. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/App.vue +5 -0
  287. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/isDebug/isDebug.vue +2 -9
  288. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/types.js +1 -1
  289. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/index.js +0 -3
  290. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/jumpIframe/index.vue +9 -3
  291. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/jumpIframe/preloadMethod.js +3 -3
  292. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/.gitignore +27 -0
  293. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/login.scss +50 -30
  294. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/types.js +1 -1
  295. package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-template/.gitignore +27 -0
  296. package/ganwei-pc.js +0 -0
  297. package/package.json +1 -1
@@ -0,0 +1,178 @@
1
+ /* eslint-disable @typescript-eslint/naming-convention */
2
+ module.exports = {
3
+ globals: {
4
+ myJavaFun: 'readonly'
5
+ },
6
+ env: {
7
+ browser: true,
8
+ es2021: true,
9
+ node: true
10
+ },
11
+ extends: [
12
+ 'eslint:recommended',
13
+ 'plugin:vue/vue3-essential',
14
+ 'plugin:@typescript-eslint/recommended'
15
+ // 'plugin:prettier/recommended' // 解决ESlint和Prettier冲突
16
+ ],
17
+ overrides: [],
18
+ parser: 'vue-eslint-parser',
19
+ parserOptions: {
20
+ ecmaVersion: 'latest',
21
+ sourceType: 'module',
22
+ parser: '@typescript-eslint/parser',
23
+ ecmaFeatures: {
24
+ jsx: true
25
+ }
26
+ },
27
+ plugins: ['vue', '@typescript-eslint', 'simple-import-sort'],
28
+
29
+ /*
30
+ 下面这些rules是用来设置从插件来的规范代码的规则,使用必须去掉前缀eslint-plugin-
31
+ 主要有如下的设置规则,可以设置字符串也可以设置数字,两者效果一致
32
+ "off" -> 0 关闭规则
33
+ "warn" -> 1 开启警告规则
34
+ "error" -> 2 开启错误规则
35
+ */
36
+ // 参数说明:
37
+ // 参数1 : 错误等级
38
+ // 参数2 : 处理方式
39
+ rules: {
40
+ "simple-import-sort/imports": [
41
+ "error",
42
+ {
43
+ groups: [
44
+ // node_modulse packages
45
+ ["^vue", "^element", "^@(?!ganwei)\\w", '^@?\\w'],
46
+ // @ganwei private packages
47
+ ["^@ganwei"],
48
+ // alias or relative path
49
+ ["^@/", "'^\\.\\.(?!/?$)', '^\\.\\./?$'"]
50
+ ]
51
+ }
52
+ ],
53
+ "simple-import-sort/exports": "error",
54
+ // allow async-await
55
+ 'generator-star-spacing': 'off',
56
+ // allow debugger during development
57
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
58
+
59
+ 'prefer-promise-reject-errors': 0,
60
+ 'space-unary-ops': 0,
61
+ 'no-unused-expressions': 0,
62
+ 'no-useless-return': 0,
63
+ 'standard/no-callback-literal': 0,
64
+ 'import/first': 0,
65
+ 'import/export': 0,
66
+ 'no-mixed-operators': 0,
67
+ 'no-use-before-define': 0,
68
+ 'no-useless-escape': 0,
69
+ // 允许使用分号
70
+ semi: [0, 'never'],
71
+ // 取消文件结尾处需要换行符
72
+ 'eol-last': 0,
73
+ // 允许使用==
74
+ eqeqeq: 0,
75
+ // 缩进使用不做限制
76
+ indent: 0,
77
+ // 允许使用tab
78
+ 'no-tabs': 0,
79
+ // 函数圆括号之前没有空格
80
+ //'space-before-function-paren': [2, "never"],
81
+ 'space-before-function-paren': 0, //这句话表示在函数后可以不加空格
82
+ // 不要求块内空格填充格式
83
+ 'padded-blocks': 0,
84
+ // 不限制变量一起声明
85
+ 'one-var': 0,
86
+ // debugger使用
87
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
88
+ // 开发模式允许使用console
89
+ 'no-console': process.env.NODE_ENV === 'production' ? 2 : 0,
90
+ // 条件语句中复制操作符需要用圆括号括起来
91
+ 'no-cond-assign': [2, 'except-parens'],
92
+ // 允许使用条件表达式使用常量
93
+ 'no-constant-condition': 0,
94
+ // 单行可忽略大括号,多行不可忽略
95
+ curly: [2, 'multi-line'],
96
+ // 不允许使用var变量
97
+ 'no-var': 2,
98
+ // 不允许出现多个空格
99
+ 'no-multi-spaces': [
100
+ 'error',
101
+ {
102
+ ignoreEOLComments: true
103
+ }
104
+ ],
105
+ camelcase: 0,
106
+ // 对象字面量的键值空格风格
107
+ 'key-spacing': 2,
108
+ // if语句包含一个return语句, else就多余
109
+ 'no-else-return': 2,
110
+ // 建议将经常出现的数字提取为变量
111
+ 'no-magic-numbers': [
112
+ 0,
113
+ {
114
+ ignoreArrayIndexes: true
115
+ }
116
+ ],
117
+ // 不允许重复声明变量
118
+ 'no-redeclare': [
119
+ 2,
120
+ {
121
+ builtinGlobals: true
122
+ }
123
+ ],
124
+ // 立即执行函数风格
125
+ 'wrap-iife': [2, 'inside'],
126
+ // 不允许圆括号中出现空格
127
+ 'space-in-parens': [2, 'never'],
128
+ // 确保运算符周围有空格
129
+ 'space-infix-ops': 2,
130
+ // 强制点号与属性同一行
131
+ 'dot-location': [2, 'property'],
132
+ // 强制单行代码使用空格
133
+ 'block-spacing': [2, 'always'],
134
+ // 约束for-in使用hasOwnProperty判断
135
+ 'guard-for-in': 0,
136
+ // 采用one true brace style大括号风格
137
+ 'brace-style': [
138
+ 2,
139
+ '1tbs',
140
+ {
141
+ allowSingleLine: true
142
+ }
143
+ ],
144
+ // 统一逗号周围空格风格
145
+ 'comma-spacing': [
146
+ 2,
147
+ {
148
+ before: false,
149
+ after: true
150
+ }
151
+ ],
152
+ // 禁止出现多个空行
153
+ 'no-multiple-empty-lines': [
154
+ 2,
155
+ {
156
+ max: 1,
157
+ maxEOF: 2
158
+ }
159
+ ],
160
+ // 允许箭头函数不使用圆括号
161
+ 'arrow-parens': 0,
162
+ // 规范generator函数的使用
163
+ //'generator-star-spacing': [2, {'before': false, 'after': true}],
164
+ // 要求在块级
165
+ 'lines-around-comment': [
166
+ 2,
167
+ {
168
+ beforeBlockComment: true,
169
+ afterBlockComment: false,
170
+ beforeLineComment: false,
171
+ afterLineComment: false
172
+ }
173
+ ],
174
+ "@typescript-eslint/no-this-alias": ["off"],
175
+ 'vue/multi-word-component-names': 'off', //关闭组件命名规则,
176
+ 'new-cap': ['error', { "newIsCap": true, capIsNew: false }]
177
+ }
178
+ }
@@ -0,0 +1,27 @@
1
+ # Logs
2
+ logs
3
+ *.log
4
+ npm-debug.log*
5
+ yarn-debug.log*
6
+ yarn-error.log*
7
+ pnpm-debug.log*
8
+ lerna-debug.log*
9
+ node_modules
10
+ dist
11
+ dist-ssr
12
+ *.local
13
+
14
+ # Editor directories and files
15
+ .vscode/*
16
+ !.vscode/extensions.json
17
+ .idea
18
+ .DS_Store
19
+ *.suo
20
+ *.ntvs*
21
+ *.njsproj
22
+ *.sln
23
+ *.sw?
24
+ vite.config.ts.timestamp-*.mjs
25
+ vite.config.ts.timestamp-*.js
26
+
27
+ .stylelintcache
@@ -0,0 +1,13 @@
1
+ dist
2
+ node_modules
3
+ public
4
+ .husky
5
+ .vscode
6
+ .idea
7
+ *.sh
8
+ *.md
9
+
10
+ src/assets
11
+ commitlint.config.cjs
12
+ .prettierrc.cjs
13
+ .prettierignore
@@ -0,0 +1,37 @@
1
+ module.exports = {
2
+ // (x)=>{},单个参数箭头函数是否显示小括号。(always:始终显示;avoid:省略括号。默认:always)
3
+ arrowParens: "avoid",
4
+ // 开始标签的右尖括号是否跟随在最后一行属性末尾,默认false
5
+ bracketSameLine: false,
6
+ // 对象字面量的括号之间打印空格 (true - Example: { foo: bar } ; false - Example: {foo:bar})
7
+ bracketSpacing: false,
8
+ // 是否格式化一些文件中被嵌入的代码片段的风格(auto|off;默认auto)
9
+ embeddedLanguageFormatting: "off",
10
+ // 指定 HTML 文件的空格敏感度 (css|strict|ignore;默认css)
11
+ htmlWhitespaceSensitivity: "css",
12
+ // 当文件已经被 Prettier 格式化之后,是否会在文件顶部插入一个特殊的 @format 标记,默认false
13
+ insertPragma: false,
14
+ // 在 JSX 中使用单引号替代双引号,默认false
15
+ jsxSingleQuote: false,
16
+ // 每行最多字符数量,超出换行(默认80)
17
+ printWidth: 200,
18
+ // 超出打印宽度 (always | never | preserve )
19
+ proseWrap: "preserve",
20
+ // 对象属性是否使用引号(as-needed | consistent | preserve;默认as-needed:对象的属性需要加引号才添加;)
21
+ quoteProps: "as-needed",
22
+ // 是否只格式化在文件顶部包含特定注释(@prettier| @format)的文件,默认false
23
+ requirePragma: false,
24
+ // 结尾添加分号
25
+ semi: false,
26
+ // 使用单引号 (true:单引号;false:双引号)
27
+ singleQuote: false,
28
+ // 缩进空格数,默认2个空格
29
+ tabWidth: 4,
30
+ // 元素末尾是否加逗号,默认es5: ES5中的 objects, arrays 等会添加逗号,TypeScript 中的 type 后不加逗号
31
+ trailingComma: "none",
32
+ // 指定缩进方式,空格或tab,默认false,即使用空格
33
+ useTabs: false,
34
+ // vue 文件中是否缩进 <style> 和 <script> 标签,默认 false
35
+ vueIndentScriptAndStyle: false,
36
+ singleAttributePerLine: false
37
+ };
@@ -0,0 +1,16 @@
1
+ module.exports = {
2
+ "extends": ["stylelint-config-standard-scss", "stylelint-config-clean-order", "stylelint-config-recommended-vue"],
3
+ rules: {
4
+ 'selector-pseudo-element-no-unknown': [
5
+ true,
6
+ { ignorePseudoElements: ['v-deep'] },
7
+ ],
8
+ "function-no-unknown": [
9
+ true,
10
+ { ignoreFunctions: ['constant'] }
11
+ ],
12
+ // TODO
13
+ 'selector-class-pattern': null,
14
+ "custom-property-pattern": null
15
+ }
16
+ }
@@ -0,0 +1,5 @@
1
+ // Generated by 'unplugin-auto-import'
2
+ export { }
3
+ declare global {
4
+
5
+ }
@@ -0,0 +1,67 @@
1
+
2
+ import { RouteLocationNormalizedLoaded, Router, TypesConfig } from 'vue-router'
3
+ import Wujie from 'wujie'
4
+ import { EventBus } from 'wujie/esm/event'
5
+
6
+ import type { IToast } from "./src/components/toast"
7
+ import type { HostMap } from "./src/hostMap"
8
+
9
+ declare module 'vue' {
10
+ interface ComponentCustomProperties {
11
+ $route: TypesConfig extends Record<'$route', infer T> ? T : RouteLocationNormalizedLoaded
12
+ $router: TypesConfig extends Record<'$router', infer T> ? T : Router
13
+ $message: IToast
14
+ $hostMap: HostMap
15
+ }
16
+ }
17
+
18
+ declare module '*.vue' {
19
+ import type { DefineComponent } from 'vue'
20
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
21
+ const component: DefineComponent<{}, {}, any>
22
+ export default component
23
+ }
24
+
25
+ declare global {
26
+ interface Window {
27
+ __WUJIE?: Wujie
28
+ __POWERED_BY_WUJIE__?: boolean
29
+ $wujie: {
30
+ bus: EventBus;
31
+ shadowRoot?: ShadowRoot;
32
+ props?: {
33
+ [key: string]: any;
34
+ };
35
+ location?: Record<string, any>;
36
+ }
37
+ i18n?: {
38
+ messages: Record<string, any>;
39
+ }
40
+ myJavaFun: {
41
+ SetVoiceXFLanguage: (language: string) => void;
42
+ SetVoiceXFAccent: (language: string) => void;
43
+ SetKey: (type: number, key: string) => void;
44
+ VoiceOpen: () => void;
45
+ StartVoice: (arg: string) => void
46
+ StopVoice: () => void
47
+ getPushId: () => void
48
+ getMoblieType: () => string
49
+ getCameraPermissions: () => void
50
+ getPassword: (userName: string) => void
51
+ setPassword: (userNameWithPassword: string, pwd?: string) => void
52
+ OpenLocalUrl: (url: string) => void
53
+ }
54
+
55
+ BackPushID?: (RID: string) => void
56
+ setPushId?: (RID: string) => void
57
+ locationNotice?: (messgae: string) => void
58
+ getPassword?: (pwd: string, userName: string) => void
59
+ }
60
+
61
+ interface AppWindow extends Window {
62
+ __WUJIE: Wujie
63
+ __POWERED_BY_WUJIE__: boolean
64
+ }
65
+ }
66
+
67
+ export default {}
@@ -0,0 +1,20 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+
4
+ <head id="indexHead">
5
+ <meta charset="utf-8" />
6
+ <title>gw</title>
7
+ <meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no, viewport-fit=cover" />
8
+ <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
9
+ <meta http-equiv="Pragma" content="no-cache" />
10
+ <meta http-equiv="Expires" content="0" />
11
+ <link rel="icon" href="static/images/logo.png" type="image/x-icon" />
12
+ </head>
13
+
14
+ <body>
15
+ <div id="app"></div>
16
+ </body>
17
+ <!-- <script src="https://cdn.bootcdn.net/ajax/libs/eruda/3.0.0/eruda.min.js"></script>
18
+ <script>eruda.init();</script> -->
19
+
20
+ </html>
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "ganwei-app-login",
3
+ "private": true,
4
+ "version": "0.0.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite --force --host",
8
+ "build": "vite build --mode production",
9
+ "preview": "vite preview",
10
+ "eslint": "eslint --ext .ts,.js,.vue ./src",
11
+ "stylelint": "stylelint \"**/*.scss\"",
12
+ "fix": "eslint --fix --ext .ts,.js,.vue ./src && stylelint --fix \"**/*.scss\""
13
+ },
14
+ "dependencies": {
15
+ "@babel/core": "^7.24.7",
16
+ "@element-plus/icons-vue": "^2.3.1",
17
+ "@ganwei-web/element-plus-adapter": "^1.0.0",
18
+ "@ganwei-web/gw-app-api": "^1.0.2",
19
+ "@ganwei-web/gw-app-components": "^1.0.3",
20
+ "@ganwei-web/gw-app-mfe": "^1.0.0",
21
+ "@ganwei-web/gw-app-public": "^1.0.0",
22
+ "@ganwei-web/gw-app-styles": "^1.0.0",
23
+ "@ganwei-web/gw-app-ts": "^1.0.0",
24
+ "axios": "^1.7.2",
25
+ "dayjs": "^1.11.11",
26
+ "element-plus": "^2.7.6",
27
+ "jquery": "^3.7.1",
28
+ "js-base64": "^2.6.4",
29
+ "jsencrypt": "^3.3.2",
30
+ "sass": "^1.77.6",
31
+ "vue": "^3.4.31",
32
+ "vue-i18n": "9.3.0-beta.24",
33
+ "vue-property-decorator": "^9.1.2",
34
+ "vue-router": "^4.4.0",
35
+ "vuex": "^4.1.0",
36
+ "wujie": "^1.0.22"
37
+ },
38
+ "devDependencies": {
39
+ "@babel/eslint-parser": "^7.24.7",
40
+ "@babel/generator": "^7.25.6",
41
+ "@babel/parser": "^7.25.6",
42
+ "@babel/plugin-syntax-dynamic-import": "^7.8.3",
43
+ "@babel/traverse": "^7.25.6",
44
+ "@babel/types": "^7.25.6",
45
+ "@types/babel-traverse": "^6.25.10",
46
+ "@types/node": "^18.19.39",
47
+ "@typescript-eslint/eslint-plugin": "^5.62.0",
48
+ "@typescript-eslint/parser": "^5.62.0",
49
+ "@vitejs/plugin-vue": "^2.3.4",
50
+ "autoprefixer": "^10.4.19",
51
+ "eslint": "^8.57.0",
52
+ "eslint-config-prettier": "^8.10.0",
53
+ "eslint-plugin-prettier": "^4.2.1",
54
+ "eslint-plugin-simple-import-sort": "^12.1.1",
55
+ "eslint-plugin-vue": "^9.27.0",
56
+ "prettier": "^2.8.8",
57
+ "rollup-plugin-external-globals": "^0.8.0",
58
+ "rollup-plugin-visualizer": "^5.12.0",
59
+ "stylelint": "^16.6.1",
60
+ "stylelint-config-clean-order": "^5.4.2",
61
+ "stylelint-config-recommended-vue": "^1.5.0",
62
+ "stylelint-config-standard-scss": "^13.1.0",
63
+ "tslib": "^2.6.3",
64
+ "typescript": "^4.9.5",
65
+ "unplugin-auto-import": "^0.13.0",
66
+ "unplugin-vue-components": "^0.24.1",
67
+ "vite": "^4.5.3",
68
+ "vite-multiple-assets": "^1.3.1",
69
+ "vite-plugin-compression": "^0.5.1",
70
+ "vite-plugin-eslint": "^1.8.1",
71
+ "vite-plugin-externals": "^0.6.2",
72
+ "vite-plugin-html": "^3.2.2",
73
+ "vite-plugin-libcss": "^1.1.1",
74
+ "vite-plugin-static-copy": "^0.17.1",
75
+ "vite-plugin-stylelint": "^5.3.1",
76
+ "vite-plugin-vue-devtools": "^7.4.4",
77
+ "vue-tsc": "^1.8.27"
78
+ }
79
+ }
@@ -0,0 +1,48 @@
1
+ {
2
+ "main": {
3
+ "title": "",
4
+ "subTitle": "",
5
+ "formItem": [
6
+ "Account",
7
+ "Password",
8
+ "Verification Code"
9
+ ],
10
+ "placeholder": [
11
+ "Input User Name",
12
+ "Enter Password",
13
+ "Enter Verification Code"
14
+ ],
15
+ "button": [
16
+ "Logging In...",
17
+ "Login"
18
+ ]
19
+ },
20
+ "footer": "gw",
21
+ "documentTitle": "IoTCenter",
22
+ "tips": {
23
+ "passwordExpire": "The Password Expires, Please Contact The Administrator",
24
+ "toConnectPage": "Do You Want To Change To Another Web Server",
25
+ "tip": "Tips"
26
+ },
27
+ "msg": {
28
+ "title": "Login Prompt",
29
+ "beforeLogin": [
30
+ "Please Refresh The Page",
31
+ "The User Name And Password Cannot Be Empty",
32
+ "The User Name Cannot Be Empty",
33
+ "The Password Cannot Be Empty",
34
+ "The Verification Code Cannot Be Empty",
35
+ "The User Name Cannot Contain Spaces"
36
+ ],
37
+ "afterLogin": [
38
+ "Please Modify The Initial Password",
39
+ "Password Used For A Long Time, Please Change The Password!",
40
+ "Login Succeed"
41
+ ]
42
+ },
43
+ "systemError": "Systemic",
44
+ "button": {
45
+ "confirm": "OK",
46
+ "cancel": "Cancel"
47
+ }
48
+ }
@@ -0,0 +1,48 @@
1
+ {
2
+ "main": {
3
+ "title": "欢迎使用",
4
+ "subTitle": "请输入账号、密码登录",
5
+ "formItem": [
6
+ "账号",
7
+ "密码",
8
+ "验证码"
9
+ ],
10
+ "placeholder": [
11
+ "请输入账号",
12
+ "请输入密码",
13
+ "请输入验证码"
14
+ ],
15
+ "button": [
16
+ "登录中...",
17
+ "立即登录"
18
+ ]
19
+ },
20
+ "footer": "gw",
21
+ "documentTitle": "综合运营管理平台",
22
+ "tips": {
23
+ "passwordExpire": "密码过期,请联系管理员",
24
+ "toConnectPage": "您是否退出到服务连接界面",
25
+ "tip": "提示信息"
26
+ },
27
+ "msg": {
28
+ "title": "登录提示",
29
+ "beforeLogin": [
30
+ "请重新刷新页面",
31
+ "用户名和密码不能为空",
32
+ "用户名不能为空",
33
+ "密码不能为空",
34
+ "验证码不能为空",
35
+ "用户名不能包含空格"
36
+ ],
37
+ "afterLogin": [
38
+ "请修改初始密码",
39
+ "密码长时间使用,请修改密码!",
40
+ "登录成功"
41
+ ]
42
+ },
43
+ "systemError": "系统异常",
44
+ "button": {
45
+ "confirm": "确定",
46
+ "cancel": "取消"
47
+ }
48
+ }
@@ -0,0 +1,48 @@
1
+ {
2
+ "main": {
3
+ "title": "歡迎使用",
4
+ "subTitle": "請輸入賬號、密碼登錄",
5
+ "formItem": [
6
+ "賬號",
7
+ "密码",
8
+ "验证码"
9
+ ],
10
+ "placeholder": [
11
+ "請輸入賬號",
12
+ "请输入密码",
13
+ "请输入验证码"
14
+ ],
15
+ "button": [
16
+ "登錄中...",
17
+ "立即登录"
18
+ ]
19
+ },
20
+ "footer": "深圳市敢爲軟件技術有限公司",
21
+ "documentTitle": "物聯網綜合運營管理平臺",
22
+ "tips": {
23
+ "passwordExpire": "密碼過期,請聯繫管理員",
24
+ "toConnectPage": "您是否退出到服務連接界面",
25
+ "tip": "提示信息"
26
+ },
27
+ "msg": {
28
+ "title": "登錄提示",
29
+ "beforeLogin": [
30
+ "請重新刷新頁面",
31
+ "用户名和密码不能为空",
32
+ "用户名不能为空",
33
+ "密码不能为空",
34
+ "验证码不能为空",
35
+ "用户名不能包含空格"
36
+ ],
37
+ "afterLogin": [
38
+ "請修改初始密碼",
39
+ "密码长时间使用,请修改密码!",
40
+ "登录成功"
41
+ ]
42
+ },
43
+ "systemError": "系統異常",
44
+ "button": {
45
+ "confirm": "確定",
46
+ "cancel": "取消"
47
+ }
48
+ }