service-flow-designer 0.0.2-tmp7 → 1.0.1

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 (252) hide show
  1. package/dist/es/designer/common/components/value-set-input/option.js +4 -4
  2. package/dist/es/designer/common/components/value-set-input/value-set-input.css +3 -3
  3. package/dist/es/designer/common/components/value-set-input/value-set-input.vue.d.ts +0 -8
  4. package/dist/es/designer/common/components/value-set-input/value-set-input.vue.js +1 -1
  5. package/dist/es/designer/common/components/value-set-input/value-set-input.vue2.js +15 -155
  6. package/dist/es/designer/service-components/base/custom-function/index.css +2 -4
  7. package/dist/es/designer/service-components/base/judge-condition/index.css +2 -4
  8. package/dist/es/designer/service-components/base/notification/config.vue2.js +0 -5
  9. package/dist/es/designer/service-components/base/notification/index.css +2 -4
  10. package/dist/es/designer/service-components/computation/clean/index.css +2 -4
  11. package/dist/es/designer/service-components/computation/connect/index.css +2 -4
  12. package/dist/es/designer/service-components/computation/sort/index.css +2 -4
  13. package/dist/es/designer/service-components/computation/split-joint/index.css +2 -4
  14. package/dist/es/designer/service-components/computation/statistics/index.css +2 -4
  15. package/dist/es/designer/service-components/database/aggregate-query/config.css +2 -2
  16. package/dist/es/designer/service-components/database/aggregate-query/config.vue.js +1 -1
  17. package/dist/es/designer/service-components/database/aggregate-query/config.vue2.js +93 -161
  18. package/dist/es/designer/service-components/database/aggregate-query/dimension-additional.vue.js +186 -0
  19. package/dist/es/designer/service-components/database/aggregate-query/dimension-additional.vue2.js +4 -0
  20. package/dist/es/designer/service-components/database/aggregate-query/dimension-statistical.vue.js +13 -37
  21. package/dist/es/designer/service-components/database/aggregate-query/filter-conditions.vue.js +55 -203
  22. package/dist/es/designer/service-components/database/aggregate-query/index.css +8 -10
  23. package/dist/es/designer/service-components/database/aggregate-query/index.vue.js +1 -1
  24. package/dist/es/designer/service-components/database/aggregate-query/index.vue2.js +3 -8
  25. package/dist/es/designer/service-components/database/aggregate-query/sort-conditions.vue.js +17 -21
  26. package/dist/es/designer/service-components/database/aggregate-query/statistical-formula.vue.d.ts +2 -6
  27. package/dist/es/designer/service-components/database/aggregate-query/statistical-formula.vue.js +16 -23
  28. package/dist/es/designer/service-components/database/dynamic-sql/index.css +2 -4
  29. package/dist/es/designer/service-components/database/regular-query/index.css +2 -4
  30. package/dist/es/designer/service-components/service/custom-bean/index.css +2 -4
  31. package/dist/es/designer/service-components/service/http-service/index.css +2 -4
  32. package/dist/es/designer/service-components/util/common-options.js +8 -10
  33. package/dist/es/designer/service-flow-view/service-node-config.css +1 -1
  34. package/dist/es/designer/service-flow-view/service-node-config.vue.js +1 -1
  35. package/dist/es/designer/service-flow-view/service-node-config.vue2.js +1 -1
  36. package/dist/es/designer/service-flow-view/service-params.vue.js +18 -44
  37. package/dist/es/designer/service-flow-view/service-result.vue.js +57 -89
  38. package/dist/lib/_virtual/_plugin-vue_export-helper.js +9 -0
  39. package/dist/lib/assets/icon/end.svg.js +3 -0
  40. package/dist/lib/assets/icon/start.png.js +3 -0
  41. package/dist/lib/assets/icon/vardef-v.png.js +3 -0
  42. package/dist/lib/designer/common/components/database-select.css +10 -0
  43. package/dist/lib/designer/common/components/database-select.vue.js +6 -0
  44. package/dist/lib/designer/common/components/database-select.vue2.js +217 -0
  45. package/dist/lib/designer/common/components/datatable-select.css +10 -0
  46. package/dist/lib/designer/common/components/datatable-select.vue.js +6 -0
  47. package/dist/lib/designer/common/components/datatable-select.vue2.js +307 -0
  48. package/dist/lib/designer/common/components/file-upload.css +7 -0
  49. package/dist/lib/designer/common/components/file-upload.vue.js +6 -0
  50. package/dist/lib/designer/common/components/file-upload.vue2.js +103 -0
  51. package/dist/lib/designer/common/components/json-view/json-view-dialog.vue.js +63 -0
  52. package/dist/lib/designer/common/components/json-view/json-view-dialog.vue2.js +3 -0
  53. package/dist/lib/designer/common/components/json-view/json-view.vue.js +141 -0
  54. package/dist/lib/designer/common/components/json-view/json-view.vue2.js +3 -0
  55. package/dist/lib/designer/common/components/node-base-config.vue.js +69 -0
  56. package/dist/lib/designer/common/components/node-base-config.vue2.js +3 -0
  57. package/dist/lib/designer/common/components/value-set-input/index.js +3 -0
  58. package/dist/lib/designer/common/components/value-set-input/option.js +62 -0
  59. package/dist/lib/designer/common/components/value-set-input/value-set-input.css +14 -0
  60. package/dist/lib/designer/common/components/value-set-input/value-set-input.vue.d.ts +0 -8
  61. package/dist/lib/designer/common/components/value-set-input/value-set-input.vue.js +6 -0
  62. package/dist/lib/designer/common/components/value-set-input/value-set-input.vue2.js +431 -0
  63. package/dist/lib/designer/common/util/node-util.js +56 -0
  64. package/dist/lib/designer/desginer-index.css +24 -0
  65. package/dist/lib/designer/desginer-index.vue.js +6 -0
  66. package/dist/lib/designer/desginer-index.vue2.js +113 -0
  67. package/dist/lib/designer/flow/base/AbLogicNode.js +28 -0
  68. package/dist/lib/designer/flow/base/AbLogicNodeModel.js +70 -0
  69. package/dist/lib/designer/flow/base/AbLogicResizeNode.js +28 -0
  70. package/dist/lib/designer/flow/base/AbLogicResizeNodeModel.js +44 -0
  71. package/dist/lib/designer/flow/edge/CustomLine.js +48 -0
  72. package/dist/lib/designer/service-components/base/custom-function/config.css +13 -0
  73. package/dist/lib/designer/service-components/base/custom-function/config.vue.js +6 -0
  74. package/dist/lib/designer/service-components/base/custom-function/config.vue2.js +320 -0
  75. package/dist/lib/designer/service-components/base/custom-function/index.css +49 -0
  76. package/dist/lib/designer/service-components/base/custom-function/index.js +38 -0
  77. package/dist/lib/designer/service-components/base/custom-function/index.vue.js +6 -0
  78. package/dist/lib/designer/service-components/base/custom-function/index.vue2.js +43 -0
  79. package/dist/lib/designer/service-components/base/end-node/index.css +20 -0
  80. package/dist/lib/designer/service-components/base/end-node/index.js +83 -0
  81. package/dist/lib/designer/service-components/base/end-node/index.vue.js +6 -0
  82. package/dist/lib/designer/service-components/base/end-node/index.vue2.js +30 -0
  83. package/dist/lib/designer/service-components/base/judge-condition/config.vue.js +3 -0
  84. package/dist/lib/designer/service-components/base/judge-condition/config.vue2.js +588 -0
  85. package/dist/lib/designer/service-components/base/judge-condition/index.css +50 -0
  86. package/dist/lib/designer/service-components/base/judge-condition/index.js +48 -0
  87. package/dist/lib/designer/service-components/base/judge-condition/index.vue.js +6 -0
  88. package/dist/lib/designer/service-components/base/judge-condition/index.vue2.js +66 -0
  89. package/dist/lib/designer/service-components/base/loop-node/config.css +4 -0
  90. package/dist/lib/designer/service-components/base/loop-node/config.vue.js +6 -0
  91. package/dist/lib/designer/service-components/base/loop-node/config.vue2.js +79 -0
  92. package/dist/lib/designer/service-components/base/loop-node/index.css +20 -0
  93. package/dist/lib/designer/service-components/base/loop-node/index.js +176 -0
  94. package/dist/lib/designer/service-components/base/notification/config.vue.js +3 -0
  95. package/dist/lib/designer/service-components/base/notification/config.vue2.js +333 -0
  96. package/dist/lib/designer/service-components/base/notification/index.css +49 -0
  97. package/dist/lib/designer/service-components/base/notification/index.js +38 -0
  98. package/dist/lib/designer/service-components/base/notification/index.vue.js +6 -0
  99. package/dist/lib/designer/service-components/base/notification/index.vue2.js +43 -0
  100. package/dist/lib/designer/service-components/base/notification/recipients-select.css +4 -0
  101. package/dist/lib/designer/service-components/base/notification/recipients-select.vue.js +6 -0
  102. package/dist/lib/designer/service-components/base/notification/recipients-select.vue2.js +152 -0
  103. package/dist/lib/designer/service-components/base/notification/select-mail-template.vue.js +109 -0
  104. package/dist/lib/designer/service-components/base/notification/select-mail-template.vue2.js +3 -0
  105. package/dist/lib/designer/service-components/base/start-node/index.css +20 -0
  106. package/dist/lib/designer/service-components/base/start-node/index.js +84 -0
  107. package/dist/lib/designer/service-components/base/start-node/index.vue.js +6 -0
  108. package/dist/lib/designer/service-components/base/start-node/index.vue2.js +30 -0
  109. package/dist/lib/designer/service-components/computation/clean/config.css +10 -0
  110. package/dist/lib/designer/service-components/computation/clean/config.vue.js +6 -0
  111. package/dist/lib/designer/service-components/computation/clean/config.vue2.js +433 -0
  112. package/dist/lib/designer/service-components/computation/clean/index.css +49 -0
  113. package/dist/lib/designer/service-components/computation/clean/index.js +38 -0
  114. package/dist/lib/designer/service-components/computation/clean/index.vue.js +6 -0
  115. package/dist/lib/designer/service-components/computation/clean/index.vue2.js +43 -0
  116. package/dist/lib/designer/service-components/computation/connect/config.css +7 -0
  117. package/dist/lib/designer/service-components/computation/connect/config.vue.js +6 -0
  118. package/dist/lib/designer/service-components/computation/connect/config.vue2.js +521 -0
  119. package/dist/lib/designer/service-components/computation/connect/index.css +49 -0
  120. package/dist/lib/designer/service-components/computation/connect/index.js +38 -0
  121. package/dist/lib/designer/service-components/computation/connect/index.vue.js +6 -0
  122. package/dist/lib/designer/service-components/computation/connect/index.vue2.js +43 -0
  123. package/dist/lib/designer/service-components/computation/sort/config.css +10 -0
  124. package/dist/lib/designer/service-components/computation/sort/config.vue.js +6 -0
  125. package/dist/lib/designer/service-components/computation/sort/config.vue2.js +312 -0
  126. package/dist/lib/designer/service-components/computation/sort/index.css +49 -0
  127. package/dist/lib/designer/service-components/computation/sort/index.js +38 -0
  128. package/dist/lib/designer/service-components/computation/sort/index.vue.js +6 -0
  129. package/dist/lib/designer/service-components/computation/sort/index.vue2.js +43 -0
  130. package/dist/lib/designer/service-components/computation/split-joint/config.css +7 -0
  131. package/dist/lib/designer/service-components/computation/split-joint/config.vue.js +6 -0
  132. package/dist/lib/designer/service-components/computation/split-joint/config.vue2.js +342 -0
  133. package/dist/lib/designer/service-components/computation/split-joint/index.css +49 -0
  134. package/dist/lib/designer/service-components/computation/split-joint/index.js +38 -0
  135. package/dist/lib/designer/service-components/computation/split-joint/index.vue.js +6 -0
  136. package/dist/lib/designer/service-components/computation/split-joint/index.vue2.js +43 -0
  137. package/dist/lib/designer/service-components/computation/statistics/config.css +7 -0
  138. package/dist/lib/designer/service-components/computation/statistics/config.vue.js +6 -0
  139. package/dist/lib/designer/service-components/computation/statistics/config.vue2.js +451 -0
  140. package/dist/lib/designer/service-components/computation/statistics/index.css +49 -0
  141. package/dist/lib/designer/service-components/computation/statistics/index.js +38 -0
  142. package/dist/lib/designer/service-components/computation/statistics/index.vue.js +6 -0
  143. package/dist/lib/designer/service-components/computation/statistics/index.vue2.js +43 -0
  144. package/dist/lib/designer/service-components/database/aggregate-query/config.css +7 -0
  145. package/dist/lib/designer/service-components/database/aggregate-query/config.vue.js +6 -0
  146. package/dist/lib/designer/service-components/database/aggregate-query/config.vue2.js +283 -0
  147. package/dist/lib/designer/service-components/database/aggregate-query/dimension-additional.vue.js +185 -0
  148. package/dist/lib/designer/service-components/database/aggregate-query/dimension-additional.vue2.js +3 -0
  149. package/dist/lib/designer/service-components/database/aggregate-query/dimension-statistical.vue.js +203 -0
  150. package/dist/lib/designer/service-components/database/aggregate-query/dimension-statistical.vue2.js +3 -0
  151. package/dist/lib/designer/service-components/database/aggregate-query/filter-conditions.vue.js +298 -0
  152. package/dist/lib/designer/service-components/database/aggregate-query/filter-conditions.vue2.js +3 -0
  153. package/dist/lib/designer/service-components/database/aggregate-query/index.css +50 -0
  154. package/dist/lib/designer/service-components/database/aggregate-query/index.js +48 -0
  155. package/dist/lib/designer/service-components/database/aggregate-query/index.vue.js +6 -0
  156. package/dist/lib/designer/service-components/database/aggregate-query/index.vue2.js +89 -0
  157. package/dist/lib/designer/service-components/database/aggregate-query/sort-conditions.vue.js +182 -0
  158. package/dist/lib/designer/service-components/database/aggregate-query/sort-conditions.vue2.js +3 -0
  159. package/dist/lib/designer/service-components/database/aggregate-query/statistical-formula.vue.d.ts +2 -6
  160. package/dist/lib/designer/service-components/database/aggregate-query/statistical-formula.vue.js +187 -0
  161. package/dist/lib/designer/service-components/database/aggregate-query/statistical-formula.vue2.js +3 -0
  162. package/dist/lib/designer/service-components/database/dynamic-sql/config.css +13 -0
  163. package/dist/lib/designer/service-components/database/dynamic-sql/config.vue.js +6 -0
  164. package/dist/lib/designer/service-components/database/dynamic-sql/config.vue2.js +504 -0
  165. package/dist/lib/designer/service-components/database/dynamic-sql/index.css +49 -0
  166. package/dist/lib/designer/service-components/database/dynamic-sql/index.js +38 -0
  167. package/dist/lib/designer/service-components/database/dynamic-sql/index.vue.js +6 -0
  168. package/dist/lib/designer/service-components/database/dynamic-sql/index.vue2.js +43 -0
  169. package/dist/lib/designer/service-components/database/regular-query/config.css +7 -0
  170. package/dist/lib/designer/service-components/database/regular-query/config.vue.js +6 -0
  171. package/dist/lib/designer/service-components/database/regular-query/config.vue2.js +674 -0
  172. package/dist/lib/designer/service-components/database/regular-query/index.css +50 -0
  173. package/dist/lib/designer/service-components/database/regular-query/index.js +48 -0
  174. package/dist/lib/designer/service-components/database/regular-query/index.vue.js +6 -0
  175. package/dist/lib/designer/service-components/database/regular-query/index.vue2.js +89 -0
  176. package/dist/lib/designer/service-components/index.js +230 -0
  177. package/dist/lib/designer/service-components/service/common/cookie-data.vue.js +131 -0
  178. package/dist/lib/designer/service-components/service/common/cookie-data.vue2.js +3 -0
  179. package/dist/lib/designer/service-components/service/common/form-data.vue.js +161 -0
  180. package/dist/lib/designer/service-components/service/common/form-data.vue2.js +3 -0
  181. package/dist/lib/designer/service-components/service/common/header-data.vue.js +132 -0
  182. package/dist/lib/designer/service-components/service/common/header-data.vue2.js +3 -0
  183. package/dist/lib/designer/service-components/service/common/json-data.css +4 -0
  184. package/dist/lib/designer/service-components/service/common/json-data.vue.js +6 -0
  185. package/dist/lib/designer/service-components/service/common/json-data.vue2.js +133 -0
  186. package/dist/lib/designer/service-components/service/common/param-config.css +7 -0
  187. package/dist/lib/designer/service-components/service/common/param-config.vue.js +6 -0
  188. package/dist/lib/designer/service-components/service/common/param-config.vue2.js +222 -0
  189. package/dist/lib/designer/service-components/service/common/query-params.vue.js +132 -0
  190. package/dist/lib/designer/service-components/service/common/query-params.vue2.js +3 -0
  191. package/dist/lib/designer/service-components/service/common/raw-data.vue.js +95 -0
  192. package/dist/lib/designer/service-components/service/common/raw-data.vue2.js +3 -0
  193. package/dist/lib/designer/service-components/service/custom-bean/config.vue.js +3 -0
  194. package/dist/lib/designer/service-components/service/custom-bean/config.vue2.js +70 -0
  195. package/dist/lib/designer/service-components/service/custom-bean/index.css +49 -0
  196. package/dist/lib/designer/service-components/service/custom-bean/index.js +38 -0
  197. package/dist/lib/designer/service-components/service/custom-bean/index.vue.js +6 -0
  198. package/dist/lib/designer/service-components/service/custom-bean/index.vue2.js +43 -0
  199. package/dist/lib/designer/service-components/service/http-service/config.css +7 -0
  200. package/dist/lib/designer/service-components/service/http-service/config.vue.js +6 -0
  201. package/dist/lib/designer/service-components/service/http-service/config.vue2.js +307 -0
  202. package/dist/lib/designer/service-components/service/http-service/index.css +49 -0
  203. package/dist/lib/designer/service-components/service/http-service/index.js +38 -0
  204. package/dist/lib/designer/service-components/service/http-service/index.vue.js +6 -0
  205. package/dist/lib/designer/service-components/service/http-service/index.vue2.js +43 -0
  206. package/dist/lib/designer/service-components/service/http-service/response-json-setting.vue.js +274 -0
  207. package/dist/lib/designer/service-components/service/http-service/response-json-setting.vue2.js +3 -0
  208. package/dist/lib/designer/service-components/service/http-service/response-text-setting.vue.js +67 -0
  209. package/dist/lib/designer/service-components/service/http-service/response-text-setting.vue2.js +3 -0
  210. package/dist/lib/designer/service-components/service/http-service/response-xml-setting.vue.js +274 -0
  211. package/dist/lib/designer/service-components/service/http-service/response-xml-setting.vue2.js +3 -0
  212. package/dist/lib/designer/service-components/util/common-options.js +131 -0
  213. package/dist/lib/designer/service-flow-view/flow-tool-util.js +44 -0
  214. package/dist/lib/designer/service-flow-view/flow-util.js +123 -0
  215. package/dist/lib/designer/service-flow-view/service-flow-tool.css +130 -0
  216. package/dist/lib/designer/service-flow-view/service-flow-tool.vue.js +6 -0
  217. package/dist/lib/designer/service-flow-view/service-flow-tool.vue2.js +193 -0
  218. package/dist/lib/designer/service-flow-view/service-node-config.css +10 -0
  219. package/dist/lib/designer/service-flow-view/service-node-config.vue.js +6 -0
  220. package/dist/lib/designer/service-flow-view/service-node-config.vue2.js +152 -0
  221. package/dist/lib/designer/service-flow-view/service-params.vue.js +402 -0
  222. package/dist/lib/designer/service-flow-view/service-params.vue2.js +3 -0
  223. package/dist/lib/designer/service-flow-view/service-result.vue.js +284 -0
  224. package/dist/lib/designer/service-flow-view/service-result.vue2.js +3 -0
  225. package/dist/lib/designer/service-flow-view/service-test/request-params.vue.js +321 -0
  226. package/dist/lib/designer/service-flow-view/service-test/request-params.vue2.js +3 -0
  227. package/dist/lib/designer/service-flow-view/service-test/service-test.vue.js +449 -0
  228. package/dist/lib/designer/service-flow-view/service-test/service-test.vue2.js +3 -0
  229. package/dist/lib/designer/service-flow-view/service-update-log.css +5 -0
  230. package/dist/lib/designer/service-flow-view/service-update-log.vue.js +6 -0
  231. package/dist/lib/designer/service-flow-view/service-update-log.vue2.js +214 -0
  232. package/dist/lib/designer/service-flow-view/view-index.css +102 -0
  233. package/dist/lib/designer/service-flow-view/view-index.vue.js +6 -0
  234. package/dist/lib/designer/service-flow-view/view-index.vue2.js +353 -0
  235. package/dist/lib/designer/service-panel/component-panel.css +66 -0
  236. package/dist/lib/designer/service-panel/component-panel.vue.js +6 -0
  237. package/dist/lib/designer/service-panel/component-panel.vue2.js +93 -0
  238. package/dist/lib/designer/service-panel/service-list.css +36 -0
  239. package/dist/lib/designer/service-panel/service-list.vue.js +6 -0
  240. package/dist/lib/designer/service-panel/service-list.vue2.js +351 -0
  241. package/dist/lib/designer/service-panel/service-panel.css +41 -0
  242. package/dist/lib/designer/service-panel/service-panel.vue.js +6 -0
  243. package/dist/lib/designer/service-panel/service-panel.vue2.js +80 -0
  244. package/dist/lib/favicon.ico +0 -0
  245. package/dist/lib/index.js +3 -0
  246. package/dist/lib/stores/page-store.js +79 -0
  247. package/package.json +14 -13
  248. package/dist/es/designer/service-components/base/notification/quill-example.vue.d.ts +0 -19
  249. package/dist/es/utils/common-util.d.ts +0 -21
  250. package/dist/es/utils/common-util.js +0 -235
  251. package/dist/lib/designer/service-components/base/notification/quill-example.vue.d.ts +0 -19
  252. package/dist/lib/utils/common-util.d.ts +0 -21
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ const _export_sfc = (sfc, props) => {
3
+ const target = sfc.__vccOpts || sfc;
4
+ for (const [key, val] of props) {
5
+ target[key] = val;
6
+ }
7
+ return target;
8
+ };
9
+ module.exports = _export_sfc;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ const _imports_0 = "data:image/svg+xml,%3c?xml%20version='1.0'%20standalone='no'?%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20class='icon'%20viewBox='0%200%201024%201024'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20width='16'%20height='16'%3e%3cpath%20d='M643.072%20368.64%20380.928%20368.64C368.64%20368.64%20360.448%20376.832%20360.448%20385.024l0%20262.144c0%2012.288%208.192%2020.48%2020.48%2020.48l262.144%200c12.288%200%2020.48-8.192%2020.48-20.48L663.552%20385.024C663.552%20376.832%20655.36%20368.64%20643.072%20368.64zM626.688%20630.784%20397.312%20630.784%20397.312%20405.504l225.28%200L622.592%20630.784z'%20%3e%3c/path%3e%3cpath%20d='M512%20102.4C282.624%20102.4%2098.304%20290.816%2098.304%20520.192s184.32%20413.696%20413.696%20413.696%20413.696-184.32%20413.696-413.696S741.376%20102.4%20512%20102.4zM512%20897.024c-208.896%200-376.832-167.936-376.832-376.832%200-208.896%20167.936-376.832%20376.832-376.832s376.832%20167.936%20376.832%20376.832C888.832%20724.992%20720.896%20897.024%20512%20897.024z'%3e%3c/path%3e%3c/svg%3e";
3
+ module.exports = _imports_0;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ const _imports_0 = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAA4CAYAAACohjseAAAAAXNSR0IArs4c6QAAAqBJREFUaEPtWzFv00AU/l5Y4glMWJoFMFs6gEi3RAKJdGsQQ1om6ARiop0QTHUnBFP6D+AfdKcSVCpjgf4Cyh77zEQX8tBZSRQSQW3Hdz5bvi3xvXff975392znhTAzhBDXfg/hEuEWQDdnrxv4OQD4Jxj7lQr6tm2fTmOk6Q+eJ1wQ7RhIIjok5r1azd4eG0wIDnzxiUB3onsydyaDD69ctu9KhCFBzxN9EG2ZCzkBMubdWs12Se65IdP3BC6MN6kQX6dCqjcKPTO/J88XpwBdNV6ORAD5hDw/EAAuJbLPgZEkyDnAmRhiSTBx6AwxLBU0RIjEMEoFE4fOEMNSQUOESAyjVDBu6D4fHeHg4APq9Tp66xuwbTuui1Tnp67grruDs7NfIchq1UKns4pWu50q6DjOUif46uWLufUd50ZmamohKBlbloVebwON5eU4Aiw8VxvBMdJWqx2mbdWyFgYfxYF2ghKUPHh66w/hOE4UjAvNyYTgtJpr3fsLETjPOFOCEtzSUh2PHm8qKyeZE1RdTowgOE4zefjc66yel3WxrhtFUKbr863JW/dYRP412SiC8sCRZSTNYQRBWTYkuUYj/ZuAzAk2myvhvlN1U54ZQXkj3u12cbu5kmZGzvnKhKDq2jfNUjtBFaXgfymgjaDcY0+ePlO21zItE7pVU5qib9+8hhDyByu9Tw3aFPxyfBy+k5GPQiqP/6hHb+p7MOrCuuaVBHVFWtU6pYKqIqvLb6mgrkirWqdUUFVkdfktuoIB+X7wlSGbX4s4+AcNPPGOiDaLSA/Me8Vvp5TKFaKVeTYFR63Nk5ZmXwQfmRG2Aed9zLU0jwkNPNGnvLc2j1qZx5z+6rqXX4YtzkNsg/AAoIv56CXlE2Z8u1CBO/u3gj+mLVc7l1EArgAAAABJRU5ErkJggg==";
3
+ module.exports = _imports_0;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ const _imports_0 = "data:image/png;base64,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";
3
+ module.exports = _imports_0;
@@ -0,0 +1,10 @@
1
+
2
+ .el-select + .el-input[data-v-92a1d6cc] {
3
+ margin-left: 10px;
4
+ }
5
+ .el-input + .el-input[data-v-92a1d6cc] {
6
+ margin-left: 10px;
7
+ }
8
+ .el-input + .el-button[data-v-92a1d6cc] {
9
+ margin-left: 10px;
10
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ const databaseSelect_vue_vue_type_script_setup_true_lang = require("./database-select.vue2.js");
3
+ ;/* empty css */
4
+ const _pluginVue_exportHelper = require("../../../_virtual/_plugin-vue_export-helper.js");
5
+ const DatabaseSelect = /* @__PURE__ */ _pluginVue_exportHelper(databaseSelect_vue_vue_type_script_setup_true_lang, [["__scopeId", "data-v-92a1d6cc"]]);
6
+ module.exports = DatabaseSelect;
@@ -0,0 +1,217 @@
1
+ "use strict";
2
+ const es = require("element-plus/es");
3
+ require("element-plus/es/components/base/style/css");
4
+ require("element-plus/es/components/dialog/style/css");
5
+ require("element-plus/es/components/container/style/css");
6
+ require("element-plus/es/components/pagination/style/css");
7
+ require("element-plus/es/components/table/style/css");
8
+ require("element-plus/es/components/table-column/style/css");
9
+ require("element-plus/es/components/header/style/css");
10
+ require("element-plus/es/components/button/style/css");
11
+ require("element-plus/es/components/input/style/css");
12
+ const vue = require("vue");
13
+ const iconsVue = require("@element-plus/icons-vue");
14
+ const http = require("agilebuilder-ui/src/utils/request");
15
+ const elementPlus = require("element-plus");
16
+ const _hoisted_1 = { class: "dialog-footer" };
17
+ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
18
+ ...{
19
+ name: "DatatableSelect",
20
+ inheritAttrs: false
21
+ },
22
+ __name: "database-select",
23
+ props: {
24
+ visible: {
25
+ type: Boolean,
26
+ default: false
27
+ }
28
+ },
29
+ emits: ["update:visible", "select"],
30
+ setup(__props, { emit: __emit }) {
31
+ const emits = __emit;
32
+ const props = __props;
33
+ const dialogVisible = vue.ref(false);
34
+ const tableListData = vue.ref([]);
35
+ const searchForm = vue.ref({ searchName: "" });
36
+ const selectRow = vue.ref({ name: "" });
37
+ const pagination = vue.ref({
38
+ currentPage: 1,
39
+ pageSize: 20,
40
+ showTotal: true,
41
+ total: 0
42
+ });
43
+ const tableRef = vue.ref();
44
+ vue.watch(
45
+ () => props.visible,
46
+ (val) => {
47
+ dialogVisible.value = val;
48
+ if (val) {
49
+ initData();
50
+ }
51
+ }
52
+ );
53
+ function initData() {
54
+ loadPageList();
55
+ }
56
+ function loadPageList() {
57
+ selectRow.value = { name: "" };
58
+ const param = {
59
+ code: "MMS_MODULE_PAGE",
60
+ pagination: { currentPage: pagination.value.currentPage, pageSize: pagination.value.pageSize, showTotal: true },
61
+ searchForm: [],
62
+ dynamicColumnInfo: []
63
+ };
64
+ if (searchForm.value.searchName) {
65
+ param.searchForm.push({
66
+ leftBracket: "",
67
+ rightBracket: "",
68
+ joinSign: "and",
69
+ propName: "code",
70
+ operator: "CONTAIN",
71
+ dataType: "TEXT",
72
+ propValue: searchForm.value.searchName
73
+ });
74
+ }
75
+ http.post("/mms/data-tables/list/", param).then((res) => {
76
+ tableListData.value = res.data;
77
+ pagination.value.pageSize = res.size;
78
+ pagination.value.total = res.total;
79
+ });
80
+ }
81
+ function rowClick(row) {
82
+ selectRow.value = row;
83
+ }
84
+ function confirmSelect() {
85
+ if (selectRow.value.name) {
86
+ emits("select", { dataTable: selectRow.value });
87
+ emits("update:visible", false);
88
+ } else {
89
+ elementPlus.ElMessage.warning("请选择一条记录!");
90
+ }
91
+ }
92
+ function handleClose() {
93
+ emits("update:visible", false);
94
+ }
95
+ return (_ctx, _cache) => {
96
+ const _component_el_input = es.ElInput;
97
+ const _component_el_button = es.ElButton;
98
+ const _component_el_header = es.ElHeader;
99
+ const _component_el_table_column = es.ElTableColumn;
100
+ const _component_el_table = es.ElTable;
101
+ const _component_el_pagination = es.ElPagination;
102
+ const _component_el_container = es.ElContainer;
103
+ const _component_el_dialog = es.ElDialog;
104
+ return vue.openBlock(), vue.createBlock(_component_el_dialog, {
105
+ "destroy-on-close": "",
106
+ modelValue: dialogVisible.value,
107
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => dialogVisible.value = $event),
108
+ title: "选择数据库",
109
+ width: "60%",
110
+ "before-close": handleClose
111
+ }, {
112
+ footer: vue.withCtx(() => [
113
+ vue.createElementVNode("div", _hoisted_1, [
114
+ vue.createVNode(_component_el_button, {
115
+ size: "small",
116
+ onClick: _cache[3] || (_cache[3] = ($event) => dialogVisible.value = false)
117
+ }, {
118
+ default: vue.withCtx(() => [
119
+ vue.createTextVNode("返回")
120
+ ]),
121
+ _: 1
122
+ }),
123
+ vue.createVNode(_component_el_button, {
124
+ size: "small",
125
+ type: "primary",
126
+ onClick: confirmSelect
127
+ }, {
128
+ default: vue.withCtx(() => [
129
+ vue.createTextVNode(" 确定 ")
130
+ ]),
131
+ _: 1
132
+ })
133
+ ])
134
+ ]),
135
+ default: vue.withCtx(() => [
136
+ vue.createVNode(_component_el_container, { style: { "height": "400px" } }, {
137
+ default: vue.withCtx(() => [
138
+ vue.createVNode(_component_el_header, { style: { "padding": "0", "height": "50px" } }, {
139
+ default: vue.withCtx(() => [
140
+ vue.createVNode(_component_el_input, {
141
+ size: "small",
142
+ modelValue: searchForm.value.searchName,
143
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => searchForm.value.searchName = $event),
144
+ placeholder: "数据库名称",
145
+ style: { "width": "100px" }
146
+ }, null, 8, ["modelValue"]),
147
+ vue.createVNode(_component_el_button, {
148
+ size: "small",
149
+ icon: vue.unref(iconsVue.Search),
150
+ onClick: loadPageList
151
+ }, {
152
+ default: vue.withCtx(() => [
153
+ vue.createTextVNode("查询")
154
+ ]),
155
+ _: 1
156
+ }, 8, ["icon"])
157
+ ]),
158
+ _: 1
159
+ }),
160
+ vue.createVNode(_component_el_table, {
161
+ ref_key: "tableRef",
162
+ ref: tableRef,
163
+ "current-row-key": "code",
164
+ "row-key": "code",
165
+ onRowClick: rowClick,
166
+ data: tableListData.value,
167
+ "highlight-current-row": "",
168
+ style: { "width": "100%" },
169
+ height: "350"
170
+ }, {
171
+ default: vue.withCtx(() => [
172
+ vue.createVNode(_component_el_table_column, {
173
+ type: "index",
174
+ width: "50"
175
+ }),
176
+ vue.createVNode(_component_el_table_column, {
177
+ prop: "name",
178
+ label: "编码"
179
+ }),
180
+ vue.createVNode(_component_el_table_column, {
181
+ prop: "alias",
182
+ label: "名称"
183
+ }),
184
+ vue.createVNode(_component_el_table_column, {
185
+ prop: "modifierName",
186
+ label: "修改人"
187
+ }),
188
+ vue.createVNode(_component_el_table_column, {
189
+ prop: "modifiedTime",
190
+ label: "修改时间"
191
+ })
192
+ ]),
193
+ _: 1
194
+ }, 8, ["data"]),
195
+ vue.createVNode(_component_el_pagination, {
196
+ "current-page": pagination.value.currentPage,
197
+ "onUpdate:currentPage": _cache[1] || (_cache[1] = ($event) => pagination.value.currentPage = $event),
198
+ "page-size": pagination.value.pageSize,
199
+ "onUpdate:pageSize": _cache[2] || (_cache[2] = ($event) => pagination.value.pageSize = $event),
200
+ "page-sizes": [20, 30, 50, 100],
201
+ small: "",
202
+ background: "",
203
+ layout: "total, sizes, prev, pager, next, jumper",
204
+ total: pagination.value.total,
205
+ onSizeChange: loadPageList,
206
+ onCurrentChange: loadPageList
207
+ }, null, 8, ["current-page", "page-size", "total"])
208
+ ]),
209
+ _: 1
210
+ })
211
+ ]),
212
+ _: 1
213
+ }, 8, ["modelValue"]);
214
+ };
215
+ }
216
+ });
217
+ module.exports = _sfc_main;
@@ -0,0 +1,10 @@
1
+
2
+ .el-select + .el-input[data-v-dbffbd8f] {
3
+ margin-left: 10px;
4
+ }
5
+ .el-input + .el-input[data-v-dbffbd8f] {
6
+ margin-left: 10px;
7
+ }
8
+ .el-input + .el-button[data-v-dbffbd8f] {
9
+ margin-left: 10px;
10
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ const datatableSelect_vue_vue_type_script_setup_true_lang = require("./datatable-select.vue2.js");
3
+ ;/* empty css */
4
+ const _pluginVue_exportHelper = require("../../../_virtual/_plugin-vue_export-helper.js");
5
+ const DatatableSelect = /* @__PURE__ */ _pluginVue_exportHelper(datatableSelect_vue_vue_type_script_setup_true_lang, [["__scopeId", "data-v-dbffbd8f"]]);
6
+ module.exports = DatatableSelect;
@@ -0,0 +1,307 @@
1
+ "use strict";
2
+ const es = require("element-plus/es");
3
+ require("element-plus/es/components/base/style/css");
4
+ require("element-plus/es/components/dialog/style/css");
5
+ require("element-plus/es/components/container/style/css");
6
+ require("element-plus/es/components/pagination/style/css");
7
+ require("element-plus/es/components/table/style/css");
8
+ require("element-plus/es/components/table-column/style/css");
9
+ require("element-plus/es/components/header/style/css");
10
+ require("element-plus/es/components/button/style/css");
11
+ require("element-plus/es/components/input/style/css");
12
+ require("element-plus/es/components/select/style/css");
13
+ require("element-plus/es/components/option/style/css");
14
+ const vue = require("vue");
15
+ const iconsVue = require("@element-plus/icons-vue");
16
+ const http = require("agilebuilder-ui/src/utils/request");
17
+ const elementPlus = require("element-plus");
18
+ const _hoisted_1 = { class: "dialog-footer" };
19
+ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
20
+ ...{
21
+ name: "DatatableSelect",
22
+ inheritAttrs: false
23
+ },
24
+ __name: "datatable-select",
25
+ props: {
26
+ visible: {
27
+ type: Boolean,
28
+ default: false
29
+ },
30
+ systemCode: {
31
+ type: String,
32
+ default: ""
33
+ },
34
+ systemVersion: {
35
+ type: Number,
36
+ default: -1
37
+ }
38
+ },
39
+ emits: ["update:visible", "select"],
40
+ setup(__props, { emit: __emit }) {
41
+ const emits = __emit;
42
+ const props = __props;
43
+ const dialogVisible = vue.ref(false);
44
+ const systemOptions = vue.ref([]);
45
+ const selectedSystemCode = vue.ref("");
46
+ const tableListData = vue.ref([]);
47
+ const searchForm = vue.ref({ searchCode: "", searchName: "" });
48
+ const selectRow = vue.ref({ name: "" });
49
+ const pagination = vue.ref({
50
+ currentPage: 1,
51
+ pageSize: 20,
52
+ showTotal: true,
53
+ total: 0
54
+ });
55
+ const tableRef = vue.ref();
56
+ vue.watch(
57
+ () => props.visible,
58
+ (val) => {
59
+ dialogVisible.value = val;
60
+ if (val) {
61
+ initData();
62
+ }
63
+ }
64
+ );
65
+ function initData() {
66
+ http.get("/component/super-charts/findAllSystem").then((res) => {
67
+ if (res) {
68
+ res.forEach((item) => {
69
+ item.name = item.name + "(" + item.publishVersion + ")";
70
+ });
71
+ }
72
+ const index = res.findIndex((item) => item.code === props.systemCode);
73
+ if (index === -1) {
74
+ selectedSystemCode.value = res[0].code;
75
+ } else {
76
+ selectedSystemCode.value = res[index].code;
77
+ if (index !== -1 && index !== 0) {
78
+ [res[0], res[index]] = [res[index], res[0]];
79
+ }
80
+ }
81
+ systemOptions.value = res;
82
+ loadDataTableList(null);
83
+ });
84
+ }
85
+ function selectedSystemChange(value) {
86
+ tableListData.value = [];
87
+ pagination.value.currentPage = 1;
88
+ pagination.value.total = 0;
89
+ loadDataTableList(value);
90
+ }
91
+ function loadDataTableList(systemCode) {
92
+ selectRow.value = { name: "" };
93
+ const param = {
94
+ code: "MMS_MODULE_PAGE",
95
+ pagination: { currentPage: pagination.value.currentPage, pageSize: pagination.value.pageSize, showTotal: true },
96
+ searchForm: [],
97
+ dynamicColumnInfo: []
98
+ };
99
+ if (searchForm.value.searchCode) {
100
+ param.searchForm.push({
101
+ leftBracket: "",
102
+ rightBracket: "",
103
+ joinSign: "and",
104
+ propName: "code",
105
+ operator: "CONTAIN",
106
+ dataType: "TEXT",
107
+ propValue: searchForm.value.searchCode
108
+ });
109
+ }
110
+ if (searchForm.value.searchName) {
111
+ param.searchForm.push({
112
+ leftBracket: "",
113
+ rightBracket: "",
114
+ joinSign: "and",
115
+ propName: "name",
116
+ operator: "CONTAIN",
117
+ dataType: "TEXT",
118
+ propValue: searchForm.value.searchName
119
+ });
120
+ }
121
+ const querySystemCode = systemCode || props.systemCode;
122
+ http.post("/mms/data-tables/list/" + querySystemCode + "/0/" + props.systemVersion, param).then((res) => {
123
+ tableListData.value = res.data;
124
+ pagination.value.pageSize = res.size;
125
+ pagination.value.total = res.total;
126
+ });
127
+ }
128
+ function rowClick(row) {
129
+ selectRow.value = row;
130
+ }
131
+ function confirmSelect() {
132
+ if (selectRow.value.name) {
133
+ const currentSelectSystem = getSystemInfoByCode(selectedSystemCode.value);
134
+ emits("select", { dataTable: selectRow.value, system: currentSelectSystem[0] });
135
+ emits("update:visible", false);
136
+ } else {
137
+ elementPlus.ElMessage.warning("请选择一条记录!");
138
+ }
139
+ }
140
+ function getSystemInfoByCode(systemCode) {
141
+ return systemOptions.value.filter((item) => item.code === systemCode);
142
+ }
143
+ function handleClose() {
144
+ emits("update:visible", false);
145
+ }
146
+ const formatDate = (timestamp) => {
147
+ let date = new Date(timestamp);
148
+ let year = date.getFullYear();
149
+ let month = ("0" + (date.getMonth() + 1)).slice(-2);
150
+ let day = ("0" + date.getDate()).slice(-2);
151
+ let hour = ("0" + date.getHours()).slice(-2);
152
+ let minute = ("0" + date.getMinutes()).slice(-2);
153
+ let second = ("0" + date.getSeconds()).slice(-2);
154
+ return `${year}-${month}-${day} ${hour}:${minute}:${second}`;
155
+ };
156
+ return (_ctx, _cache) => {
157
+ const _component_el_option = es.ElOption;
158
+ const _component_el_select = es.ElSelect;
159
+ const _component_el_input = es.ElInput;
160
+ const _component_el_button = es.ElButton;
161
+ const _component_el_header = es.ElHeader;
162
+ const _component_el_table_column = es.ElTableColumn;
163
+ const _component_el_table = es.ElTable;
164
+ const _component_el_pagination = es.ElPagination;
165
+ const _component_el_container = es.ElContainer;
166
+ const _component_el_dialog = es.ElDialog;
167
+ return vue.openBlock(), vue.createBlock(_component_el_dialog, {
168
+ "destroy-on-close": "",
169
+ modelValue: dialogVisible.value,
170
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => dialogVisible.value = $event),
171
+ title: "选择数据表",
172
+ width: "60%",
173
+ "before-close": handleClose
174
+ }, {
175
+ footer: vue.withCtx(() => [
176
+ vue.createElementVNode("div", _hoisted_1, [
177
+ vue.createVNode(_component_el_button, {
178
+ size: "small",
179
+ onClick: _cache[5] || (_cache[5] = ($event) => dialogVisible.value = false)
180
+ }, {
181
+ default: vue.withCtx(() => [
182
+ vue.createTextVNode("返回")
183
+ ]),
184
+ _: 1
185
+ }),
186
+ vue.createVNode(_component_el_button, {
187
+ size: "small",
188
+ type: "primary",
189
+ onClick: confirmSelect
190
+ }, {
191
+ default: vue.withCtx(() => [
192
+ vue.createTextVNode(" 确定 ")
193
+ ]),
194
+ _: 1
195
+ })
196
+ ])
197
+ ]),
198
+ default: vue.withCtx(() => [
199
+ vue.createVNode(_component_el_container, { style: { "height": "400px" } }, {
200
+ default: vue.withCtx(() => [
201
+ vue.createVNode(_component_el_header, { style: { "padding": "0", "height": "50px" } }, {
202
+ default: vue.withCtx(() => [
203
+ vue.createVNode(_component_el_select, {
204
+ modelValue: selectedSystemCode.value,
205
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectedSystemCode.value = $event),
206
+ onChange: selectedSystemChange,
207
+ "value-key": "code",
208
+ size: "small",
209
+ style: { "width": "240px" }
210
+ }, {
211
+ default: vue.withCtx(() => [
212
+ (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(systemOptions.value, (item) => {
213
+ return vue.openBlock(), vue.createBlock(_component_el_option, {
214
+ key: item.code,
215
+ label: item.name,
216
+ value: item.code
217
+ }, null, 8, ["label", "value"]);
218
+ }), 128))
219
+ ]),
220
+ _: 1
221
+ }, 8, ["modelValue"]),
222
+ vue.createVNode(_component_el_input, {
223
+ size: "small",
224
+ modelValue: searchForm.value.searchCode,
225
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => searchForm.value.searchCode = $event),
226
+ placeholder: "编码",
227
+ style: { "width": "100px" }
228
+ }, null, 8, ["modelValue"]),
229
+ vue.createVNode(_component_el_input, {
230
+ size: "small",
231
+ modelValue: searchForm.value.searchName,
232
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => searchForm.value.searchName = $event),
233
+ placeholder: "名称",
234
+ style: { "width": "100px" }
235
+ }, null, 8, ["modelValue"]),
236
+ vue.createVNode(_component_el_button, {
237
+ size: "small",
238
+ icon: vue.unref(iconsVue.Search),
239
+ onClick: loadDataTableList
240
+ }, {
241
+ default: vue.withCtx(() => [
242
+ vue.createTextVNode("查询")
243
+ ]),
244
+ _: 1
245
+ }, 8, ["icon"])
246
+ ]),
247
+ _: 1
248
+ }),
249
+ vue.createVNode(_component_el_table, {
250
+ ref_key: "tableRef",
251
+ ref: tableRef,
252
+ "current-row-key": "code",
253
+ "row-key": "code",
254
+ onRowClick: rowClick,
255
+ data: tableListData.value,
256
+ "highlight-current-row": "",
257
+ style: { "width": "100%" },
258
+ height: "350"
259
+ }, {
260
+ default: vue.withCtx(() => [
261
+ vue.createVNode(_component_el_table_column, {
262
+ type: "index",
263
+ width: "50"
264
+ }),
265
+ vue.createVNode(_component_el_table_column, {
266
+ prop: "name",
267
+ label: "编码"
268
+ }),
269
+ vue.createVNode(_component_el_table_column, {
270
+ prop: "alias",
271
+ label: "名称"
272
+ }),
273
+ vue.createVNode(_component_el_table_column, {
274
+ prop: "modifierName",
275
+ label: "修改人"
276
+ }),
277
+ vue.createVNode(_component_el_table_column, {
278
+ prop: "modifiedTime",
279
+ formatter: (row) => formatDate(row.modifiedTime),
280
+ label: "修改时间"
281
+ }, null, 8, ["formatter"])
282
+ ]),
283
+ _: 1
284
+ }, 8, ["data"]),
285
+ vue.createVNode(_component_el_pagination, {
286
+ "current-page": pagination.value.currentPage,
287
+ "onUpdate:currentPage": _cache[3] || (_cache[3] = ($event) => pagination.value.currentPage = $event),
288
+ "page-size": pagination.value.pageSize,
289
+ "onUpdate:pageSize": _cache[4] || (_cache[4] = ($event) => pagination.value.pageSize = $event),
290
+ "page-sizes": [20, 30, 50, 100],
291
+ small: "",
292
+ background: "",
293
+ layout: "total, sizes, prev, pager, next, jumper",
294
+ total: pagination.value.total,
295
+ onSizeChange: loadDataTableList,
296
+ onCurrentChange: loadDataTableList
297
+ }, null, 8, ["current-page", "page-size", "total"])
298
+ ]),
299
+ _: 1
300
+ })
301
+ ]),
302
+ _: 1
303
+ }, 8, ["modelValue"]);
304
+ };
305
+ }
306
+ });
307
+ module.exports = _sfc_main;
@@ -0,0 +1,7 @@
1
+
2
+ [data-v-2d06523b] .el-upload {
3
+ width: 100%;
4
+ }
5
+ [data-v-2d06523b] .el-button {
6
+ width: 100%;
7
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ const fileUpload_vue_vue_type_script_setup_true_lang = require("./file-upload.vue2.js");
3
+ ;/* empty css */
4
+ const _pluginVue_exportHelper = require("../../../_virtual/_plugin-vue_export-helper.js");
5
+ const fileUpload = /* @__PURE__ */ _pluginVue_exportHelper(fileUpload_vue_vue_type_script_setup_true_lang, [["__scopeId", "data-v-2d06523b"]]);
6
+ module.exports = fileUpload;