Gemini-Next

  1. |-- gemini-next
  2. |-- .gitignore
  3. |-- README.md
  4. |-- index.html
  5. |-- package.json
  6. |-- tsconfig.json
  7. |-- vite.config.ts
  8. |-- yarn.lock
  9. |-- img
  10. | |-- audit.png
  11. | |-- dash.png
  12. | |-- login.png
  13. | |-- logo.jpeg
  14. | |-- query.png
  15. | |-- record.png
  16. |-- public
  17. | |-- favicon.ico
  18. | |-- icon.png
  19. |-- src
  20. |-- App.vue
  21. |-- global.d.ts
  22. |-- main.ts
  23. |-- router.ts
  24. |-- shims-vue.d.ts
  25. |-- vite-env.d.ts
  26. |-- apis
  27. | |-- autotask.ts
  28. | |-- board.ts
  29. | |-- dash.ts
  30. | |-- db.ts
  31. | |-- fetchSchema.ts
  32. | |-- flow.ts
  33. | |-- homeApis.ts
  34. | |-- listAppApis.ts
  35. | |-- loginApi.ts
  36. | |-- orderPostApis.ts
  37. | |-- policy.ts
  38. | |-- query.ts
  39. | |-- record.ts
  40. | |-- rules.ts
  41. | |-- setting.ts
  42. | |-- user.ts
  43. |-- assets
  44. | |-- comment
  45. | | |-- 1.svg
  46. | | |-- 2.svg
  47. | | |-- 3.svg
  48. | | |-- comment.svg
  49. | | |-- rockets.svg
  50. | |-- login
  51. | |-- 1.mp4
  52. | |-- logo.png
  53. |-- components # 组件库
  54. | |-- chartCard
  55. | | |-- chart.less
  56. | | |-- chartCard.vue
  57. | | |-- miniArea.vue
  58. | | |-- miniBar.vue
  59. | | |-- miniCol.vue
  60. | |-- editor
  61. | | |-- editor.vue
  62. | | |-- impl.ts
  63. | | |-- keyword.ts
  64. | | |-- work.ts
  65. | |-- listApp
  66. | | |-- listApp.vue
  67. | | |-- queryApp.vue
  68. | | |-- queryBanner.vue
  69. | | |-- queryOrder.vue
  70. | |-- menu
  71. | | |-- menu.vue
  72. | |-- orderProfile
  73. | | |-- comment.vue
  74. | | |-- orderProfile.vue
  75. | | |-- osc.vue
  76. | | |-- rejectModal.vue
  77. | | |-- results.vue
  78. | |-- pageHeader
  79. | | |-- pageHeader.vue
  80. | |-- queryProfile
  81. | | |-- queryProfile.vue
  82. | |-- steps
  83. | | |-- steps.vue
  84. | |-- table
  85. | | |-- index.ts
  86. | | |-- orderTable.vue
  87. | | |-- orderTableSearch.vue
  88. | | |-- stateTags.vue
  89. | | |-- table.vue
  90. | |-- user
  91. | |-- changePassword.vue
  92. | |-- registerForm.vue
  93. | |-- userRules.vue
  94. |-- config # 通用配置
  95. | |-- request.ts
  96. | |-- vars.ts
  97. |-- lang # i18n相关
  98. | |-- en-us.ts
  99. | |-- index.ts
  100. | |-- zh-cn.ts
  101. | |-- en-us
  102. | | |-- autoTask
  103. | | | |-- index.ts
  104. | | |-- common
  105. | | | |-- index.ts
  106. | | |-- menu
  107. | | | |-- index.ts
  108. | | |-- order
  109. | | | |-- index.ts
  110. | | |-- query
  111. | | | |-- index.ts
  112. | | |-- record
  113. | | | |-- index.ts
  114. | | |-- setting
  115. | | | |-- index.ts
  116. | | |-- user
  117. | | |-- index.ts
  118. | |-- zh-cn
  119. | |-- autoTask
  120. | | |-- index.ts
  121. | |-- common
  122. | | |-- index.ts
  123. | |-- menu
  124. | | |-- index.ts
  125. | |-- order
  126. | | |-- index.ts
  127. | |-- query
  128. | | |-- index.ts
  129. | |-- record
  130. | | |-- index.ts
  131. | |-- setting
  132. | | |-- index.ts
  133. | |-- user
  134. | |-- index.ts
  135. |-- lib
  136. | |-- index.ts
  137. |-- mixins
  138. | |-- common.ts
  139. | |-- db.ts
  140. | |-- fetch.ts
  141. | |-- juno.ts
  142. |-- socket
  143. | |-- index.ts
  144. |-- store
  145. | |-- index.ts
  146. | |-- types.ts
  147. | |-- module
  148. | |-- common.ts
  149. | |-- highlight.ts
  150. | |-- menu.ts
  151. | |-- order.ts
  152. | |-- user.ts
  153. |-- style
  154. | |-- theme.less
  155. |-- types
  156. | |-- index.ts
  157. |-- views # 页面
  158. |-- apply
  159. | |-- apply.vue
  160. | |-- order.vue
  161. |-- common
  162. | |-- announce.vue
  163. | |-- auditLayout.vue
  164. | |-- sponsor.vue
  165. | |-- subLayout.vue
  166. |-- home
  167. | |-- home.vue
  168. | |-- profile.vue
  169. |-- layout
  170. | |-- layout.vue
  171. |-- login
  172. | |-- login-form.vue
  173. | |-- login.vue
  174. |-- manager
  175. | |-- autotask
  176. | | |-- autotask.vue
  177. | | |-- autotaskModal.vue
  178. | | |-- autotaskTable.vue
  179. | |-- board
  180. | | |-- board.vue
  181. | |-- db
  182. | | |-- db.vue
  183. | | |-- dbForm.vue
  184. | | |-- dbModal.vue
  185. | | |-- dbTable.vue
  186. | | |-- dbTableSearch.vue
  187. | |-- flow
  188. | | |-- flow.vue
  189. | | |-- flowModal.vue
  190. | | |-- flowTable.vue
  191. | |-- policy
  192. | | |-- policy.vue
  193. | | |-- policyModal.vue
  194. | | |-- policyTable.vue
  195. | |-- rules
  196. | | |-- rules.ts
  197. | | |-- rules.vue
  198. | |-- setting
  199. | | |-- setting.vue
  200. | |-- user
  201. | |-- user.vue
  202. | |-- userTable.vue
  203. | |-- userTableSearch.vue
  204. |-- query
  205. | |-- clip.vue
  206. | |-- clipBoard.vue
  207. | |-- history.vue
  208. | |-- input.vue
  209. | |-- modal.vue
  210. | |-- query.vue
  211. | |-- table.vue
  212. | |-- tree.vue
  213. |-- record
  214. | |-- order.vue
  215. | |-- query.vue
  216. | |-- record.vue
  217. | |-- libs
  218. | |-- tips.vue
  219. |-- server
  220. |-- order
  221. | |-- list.vue
  222. |-- query
  223. |-- list.vue
  224. |-- querySearch.vue