super-page-runtime 2.3.34 → 2.3.35-cdnTmp1

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 (628) hide show
  1. package/dist/es/_virtual/_plugin-vue_export-helper.mjs +8 -0
  2. package/dist/es/components/runtime/utils/ai-chat-util.mjs +16 -0
  3. package/dist/es/components/runtime/utils/anchor-util.mjs +83 -0
  4. package/dist/es/components/runtime/utils/api/page-expose-util.mjs +184 -0
  5. package/dist/es/components/runtime/utils/assemblys-config.mjs +19 -0
  6. package/dist/es/components/runtime/utils/barcode-util.mjs +12 -0
  7. package/dist/es/components/runtime/utils/charts/chart-columnline-util.mjs +169 -0
  8. package/dist/es/components/runtime/utils/charts/chart-gauge-util.mjs +38 -0
  9. package/dist/es/components/runtime/utils/charts/chart-pie-util.mjs +83 -0
  10. package/dist/es/components/runtime/utils/charts/chart-radar-util.mjs +56 -0
  11. package/dist/es/components/runtime/utils/charts/chart-scatter-util.mjs +47 -0
  12. package/dist/es/components/runtime/utils/charts/chart-util.mjs +285 -0
  13. package/dist/es/components/runtime/utils/common-util.mjs +116 -0
  14. package/dist/es/components/runtime/utils/eventBus.mjs +5 -0
  15. package/dist/es/components/runtime/utils/events/data-backfill-util.mjs +38 -0
  16. package/dist/es/components/runtime/utils/events/event-util.mjs +411 -0
  17. package/dist/es/components/runtime/utils/events/print-label.mjs +100 -0
  18. package/dist/es/components/runtime/utils/events/standard-event.mjs +1164 -0
  19. package/dist/es/components/runtime/utils/events/validator-util.mjs +308 -0
  20. package/dist/es/components/runtime/utils/form/date-shortcuts.mjs +36 -0
  21. package/dist/es/components/runtime/utils/form/scan-util.mjs +88 -0
  22. package/dist/es/components/runtime/utils/global-refs.mjs +56 -0
  23. package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
  24. package/dist/es/components/runtime/utils/interfaces/page-design-types.mjs +4 -0
  25. package/dist/es/components/runtime/utils/page-helper-util.mjs +377 -0
  26. package/dist/es/components/runtime/utils/page-init-util.mjs +260 -0
  27. package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +20 -21
  28. package/dist/es/components/runtime/utils/page-store.mjs +53 -0
  29. package/dist/es/components/runtime/utils/store-util.mjs +13 -0
  30. package/dist/es/components/runtime/utils/table-utils.mjs +84 -0
  31. package/dist/es/components/runtime/utils/tree-utils.mjs +58 -0
  32. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +4 -0
  33. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.mjs +29 -0
  34. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.mjs +7 -0
  35. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.mjs +21 -0
  36. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
  37. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.mjs +41 -0
  38. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
  39. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.mjs +6 -0
  40. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
  41. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.mjs +20 -0
  42. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +7 -0
  43. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.mjs +53 -0
  44. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.mjs +14 -0
  45. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.mjs +4 -0
  46. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs +13 -0
  47. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.mjs +4 -0
  48. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.mjs +59 -0
  49. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.mjs +4 -0
  50. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
  51. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.mjs +52 -0
  52. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.mjs +7 -0
  53. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.mjs +35 -0
  54. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.mjs +7 -0
  55. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.mjs +46 -0
  56. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.mjs +7 -0
  57. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.mjs +35 -0
  58. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.mjs +7 -0
  59. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.mjs +35 -0
  60. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.mjs +408 -0
  61. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.mjs +6 -0
  62. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.mjs +4 -0
  63. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.mjs +10 -0
  64. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.mjs +4 -0
  65. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.mjs +33 -0
  66. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.mjs +4 -0
  67. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.mjs +15 -0
  68. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.mjs +4 -0
  69. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
  70. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.mjs +252 -0
  71. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.mjs +20 -0
  72. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.mjs +4 -0
  73. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.mjs +35 -0
  74. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.mjs +4 -0
  75. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.mjs +33 -0
  76. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.mjs +4 -0
  77. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +18 -0
  78. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.mjs +4 -0
  79. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.mjs +18 -0
  80. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.mjs +4 -0
  81. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.mjs +22 -0
  82. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.mjs +4 -0
  83. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.mjs +19 -0
  84. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.mjs +4 -0
  85. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.mjs +35 -0
  86. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.mjs +4 -0
  87. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.mjs +19 -0
  88. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.mjs +4 -0
  89. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.mjs +7 -0
  90. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.mjs +29 -0
  91. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
  92. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.mjs +20 -0
  93. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
  94. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.mjs +17 -0
  95. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.mjs +7 -0
  96. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.mjs +29 -0
  97. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs +7 -0
  98. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.mjs +81 -0
  99. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
  100. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.mjs +25 -0
  101. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
  102. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.mjs +20 -0
  103. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
  104. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.mjs +43 -0
  105. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.mjs +7 -0
  106. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.mjs +96 -0
  107. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.mjs +7 -0
  108. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.mjs +46 -0
  109. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
  110. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.mjs +69 -0
  111. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.mjs +361 -0
  112. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.mjs +4 -0
  113. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.mjs +320 -0
  114. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.mjs +4 -0
  115. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
  116. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.mjs +83 -0
  117. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
  118. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.mjs +132 -0
  119. package/dist/es/components/runtime/views/assemblys/error-render.vue.mjs +5 -0
  120. package/dist/es/components/runtime/views/assemblys/error-render.vue2.mjs +4 -0
  121. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
  122. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.mjs +63 -0
  123. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.mjs +36 -0
  124. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.mjs +4 -0
  125. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
  126. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.mjs +69 -0
  127. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
  128. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.mjs +102 -0
  129. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
  130. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.mjs +55 -0
  131. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
  132. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.mjs +24 -0
  133. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
  134. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.mjs +91 -0
  135. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
  136. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.mjs +28 -0
  137. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
  138. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.mjs +80 -0
  139. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.mjs +7 -0
  140. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.mjs +37 -0
  141. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
  142. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.mjs +43 -0
  143. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.mjs +7 -0
  144. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.mjs +16 -0
  145. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
  146. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.mjs +82 -0
  147. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
  148. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.mjs +195 -0
  149. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +7 -0
  150. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.mjs +150 -0
  151. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
  152. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.mjs +16 -0
  153. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
  154. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.mjs +36 -0
  155. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
  156. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.mjs +43 -0
  157. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +4 -0
  158. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.mjs +28 -0
  159. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.mjs +72 -0
  160. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.mjs +4 -0
  161. package/dist/es/components/runtime/views/assemblys/object-render.vue.mjs +141 -0
  162. package/dist/es/components/runtime/views/assemblys/object-render.vue2.mjs +4 -0
  163. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +6 -0
  164. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.mjs +4 -0
  165. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.mjs +7 -0
  166. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.mjs +26 -0
  167. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.mjs +7 -0
  168. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.mjs +28 -0
  169. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.mjs +7 -0
  170. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.mjs +45 -0
  171. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
  172. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.mjs +20 -0
  173. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
  174. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.mjs +23 -0
  175. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.mjs +7 -0
  176. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.mjs +23 -0
  177. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
  178. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.mjs +27 -0
  179. package/dist/es/components/runtime/views/home-chart.vue.mjs +46 -0
  180. package/dist/es/components/runtime/views/home-chart.vue2.mjs +4 -0
  181. package/dist/es/components/runtime/views/super-page-dialog.vue.mjs +26 -0
  182. package/dist/es/components/runtime/views/super-page-dialog.vue3.mjs +5 -0
  183. package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
  184. package/dist/es/components/runtime/views/super-page.vue2.mjs +289 -0
  185. package/dist/es/i18n/langs/{cn.js → cn.mjs} +1 -1
  186. package/dist/es/i18n/langs/{en.js → en.mjs} +1 -1
  187. package/dist/es/index.mjs +30 -0
  188. package/dist/es/style.css +1 -1019
  189. package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +1 -0
  190. package/dist/lib/assets/chart-themes/bar-theme.cjs +1 -0
  191. package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
  192. package/dist/lib/assets/chart-themes/gauge-theme.cjs +1 -0
  193. package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
  194. package/dist/lib/assets/chart-themes/pie-theme.cjs +1 -0
  195. package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
  196. package/dist/lib/assets/chart-themes/radar-theme.cjs +1 -0
  197. package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
  198. package/dist/lib/assets/chart-themes/scatter-theme.cjs +1 -0
  199. package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
  200. package/dist/lib/assets/file.png.cjs +1 -0
  201. package/dist/lib/assets/folder.png.cjs +1 -0
  202. package/dist/lib/components/runtime/index.d.ts +5 -0
  203. package/dist/lib/components/runtime/utils/ai-chat-util.cjs +1 -0
  204. package/dist/lib/components/runtime/utils/anchor-util.cjs +1 -0
  205. package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
  206. package/dist/lib/components/runtime/utils/api/api-util.d.ts +1 -0
  207. package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +1 -0
  208. package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
  209. package/dist/lib/components/runtime/utils/assemblys-config.cjs +1 -0
  210. package/dist/lib/components/runtime/utils/barcode-util.cjs +1 -0
  211. package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
  212. package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +2 -0
  213. package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +1 -0
  214. package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +2 -0
  215. package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +1 -0
  216. package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +1 -0
  217. package/dist/lib/components/runtime/utils/charts/chart-util.cjs +1 -0
  218. package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
  219. package/dist/lib/components/runtime/utils/common-util.cjs +1 -0
  220. package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
  221. package/dist/lib/components/runtime/utils/eventBus.cjs +1 -0
  222. package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
  223. package/dist/lib/components/runtime/utils/events/data-backfill-util.cjs +1 -0
  224. package/dist/lib/components/runtime/utils/events/data-backfill-util.d.ts +27 -0
  225. package/dist/lib/components/runtime/utils/events/event-util.cjs +1 -0
  226. package/dist/lib/components/runtime/utils/events/event-util.d.ts +93 -0
  227. package/dist/lib/components/runtime/utils/events/print-label.cjs +1 -0
  228. package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
  229. package/dist/lib/components/runtime/utils/events/standard-event.cjs +1 -0
  230. package/dist/lib/components/runtime/utils/events/standard-event.d.ts +99 -0
  231. package/dist/lib/components/runtime/utils/events/validator-util.cjs +1 -0
  232. package/dist/lib/components/runtime/utils/events/validator-util.d.ts +24 -0
  233. package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +1 -0
  234. package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
  235. package/dist/lib/components/runtime/utils/form/scan-util.cjs +1 -0
  236. package/dist/lib/components/runtime/utils/global-refs.cjs +1 -0
  237. package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
  238. package/dist/lib/components/runtime/utils/i18n-util.cjs +1 -0
  239. package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
  240. package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +1 -0
  241. package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +259 -0
  242. package/dist/lib/components/runtime/utils/page-helper-util.cjs +1 -0
  243. package/dist/lib/components/runtime/utils/page-helper-util.d.ts +174 -0
  244. package/dist/lib/components/runtime/utils/page-init-util.cjs +1 -0
  245. package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
  246. package/dist/lib/components/runtime/utils/page-permission-util.cjs +1 -0
  247. package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
  248. package/dist/lib/components/runtime/utils/page-store.cjs +1 -0
  249. package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
  250. package/dist/lib/components/runtime/utils/store-util.cjs +1 -0
  251. package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
  252. package/dist/lib/components/runtime/utils/store.cjs +1 -0
  253. package/dist/lib/components/runtime/utils/store.d.ts +2 -0
  254. package/dist/lib/components/runtime/utils/table-utils.cjs +1 -0
  255. package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
  256. package/dist/lib/components/runtime/utils/tree-utils.cjs +1 -0
  257. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +1 -0
  258. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.cjs +1 -0
  259. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +1 -0
  260. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.cjs +1 -0
  261. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +1 -0
  262. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.cjs +1 -0
  263. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +1 -0
  264. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.cjs +1 -0
  265. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +1 -0
  266. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.cjs +1 -0
  267. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +1 -0
  268. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.cjs +1 -0
  269. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +1 -0
  270. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.cjs +1 -0
  271. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +1 -0
  272. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.cjs +1 -0
  273. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +1 -0
  274. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.cjs +1 -0
  275. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +1 -0
  276. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.cjs +1 -0
  277. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +1 -0
  278. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.cjs +1 -0
  279. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +1 -0
  280. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.cjs +1 -0
  281. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +1 -0
  282. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.cjs +1 -0
  283. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +1 -0
  284. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.cjs +1 -0
  285. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +1 -0
  286. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
  287. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +1 -0
  288. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue2.cjs +1 -0
  289. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +1 -0
  290. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue2.cjs +1 -0
  291. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +1 -0
  292. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue2.cjs +1 -0
  293. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +1 -0
  294. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue2.cjs +1 -0
  295. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +1 -0
  296. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue2.cjs +1 -0
  297. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +1 -0
  298. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
  299. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue2.cjs +1 -0
  300. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +1 -0
  301. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
  302. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.cjs +1 -0
  303. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +1 -0
  304. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
  305. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue2.cjs +1 -0
  306. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +1 -0
  307. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
  308. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.cjs +1 -0
  309. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +1 -0
  310. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
  311. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.cjs +1 -0
  312. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +1 -0
  313. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
  314. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue2.cjs +1 -0
  315. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +1 -0
  316. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
  317. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.cjs +1 -0
  318. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +1 -0
  319. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
  320. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.cjs +1 -0
  321. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +1 -0
  322. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
  323. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.cjs +1 -0
  324. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +1 -0
  325. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.cjs +1 -0
  326. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +1 -0
  327. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.cjs +1 -0
  328. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +1 -0
  329. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.cjs +1 -0
  330. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +1 -0
  331. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.cjs +1 -0
  332. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +1 -0
  333. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
  334. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.cjs +1 -0
  335. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +1 -0
  336. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.cjs +1 -0
  337. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +1 -0
  338. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.cjs +1 -0
  339. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +1 -0
  340. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.cjs +1 -0
  341. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +1 -0
  342. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.cjs +1 -0
  343. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +1 -0
  344. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.cjs +1 -0
  345. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +1 -0
  346. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.cjs +1 -0
  347. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +1 -0
  348. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.cjs +1 -0
  349. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +1 -0
  350. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.cjs +1 -0
  351. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +1 -0
  352. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.cjs +1 -0
  353. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +1 -0
  354. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.cjs +1 -0
  355. package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +1 -0
  356. package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
  357. package/dist/lib/components/runtime/views/assemblys/error-render.vue2.cjs +1 -0
  358. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +1 -0
  359. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.cjs +1 -0
  360. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +1 -0
  361. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.cjs +1 -0
  362. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +1 -0
  363. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.cjs +1 -0
  364. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +1 -0
  365. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.cjs +1 -0
  366. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +1 -0
  367. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.cjs +1 -0
  368. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +1 -0
  369. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.cjs +1 -0
  370. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +1 -0
  371. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.cjs +1 -0
  372. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +1 -0
  373. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.cjs +1 -0
  374. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +1 -0
  375. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.cjs +1 -0
  376. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +1 -0
  377. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.cjs +1 -0
  378. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +1 -0
  379. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.cjs +1 -0
  380. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +1 -0
  381. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.cjs +1 -0
  382. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +1 -0
  383. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.cjs +1 -0
  384. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +1 -0
  385. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.cjs +1 -0
  386. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +1 -0
  387. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.cjs +1 -0
  388. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +1 -0
  389. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.cjs +1 -0
  390. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +1 -0
  391. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.cjs +1 -0
  392. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +1 -0
  393. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.cjs +1 -0
  394. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +1 -0
  395. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.cjs +1 -0
  396. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +1 -0
  397. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
  398. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue2.cjs +1 -0
  399. package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +1 -0
  400. package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  401. package/dist/lib/components/runtime/views/assemblys/object-render.vue2.cjs +1 -0
  402. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +1 -0
  403. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
  404. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue2.cjs +1 -0
  405. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +1 -0
  406. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +14 -0
  407. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.cjs +1 -0
  408. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +1 -0
  409. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.cjs +1 -0
  410. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +1 -0
  411. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.cjs +1 -0
  412. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +1 -0
  413. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.cjs +1 -0
  414. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +1 -0
  415. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.cjs +1 -0
  416. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +1 -0
  417. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.cjs +1 -0
  418. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +1 -0
  419. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.cjs +1 -0
  420. package/dist/lib/components/runtime/views/home-chart.vue.cjs +1 -0
  421. package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
  422. package/dist/lib/components/runtime/views/home-chart.vue2.cjs +1 -0
  423. package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +1 -0
  424. package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
  425. package/dist/lib/components/runtime/views/super-page-dialog.vue3.cjs +1 -0
  426. package/dist/lib/components/runtime/views/super-page.vue.cjs +1 -0
  427. package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
  428. package/dist/lib/components/runtime/views/super-page.vue2.cjs +1 -0
  429. package/dist/lib/favicon.ico +0 -0
  430. package/dist/lib/i18n/langs/cn.cjs +1 -0
  431. package/dist/lib/i18n/langs/en.cjs +1 -0
  432. package/dist/lib/index.cjs +1 -0
  433. package/dist/lib/index.d.ts +16 -0
  434. package/dist/lib/style.css +1 -0
  435. package/package.json +77 -75
  436. package/dist/es/_virtual/_plugin-vue_export-helper.js +0 -8
  437. package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
  438. package/dist/es/components/runtime/utils/anchor-util.js +0 -92
  439. package/dist/es/components/runtime/utils/api/api-util.js +0 -4
  440. package/dist/es/components/runtime/utils/api/page-expose-util.js +0 -190
  441. package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
  442. package/dist/es/components/runtime/utils/barcode-util.js +0 -12
  443. package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +0 -166
  444. package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +0 -38
  445. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +0 -82
  446. package/dist/es/components/runtime/utils/charts/chart-radar-util.js +0 -56
  447. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +0 -47
  448. package/dist/es/components/runtime/utils/charts/chart-util.js +0 -288
  449. package/dist/es/components/runtime/utils/common-util.js +0 -120
  450. package/dist/es/components/runtime/utils/eventBus.js +0 -5
  451. package/dist/es/components/runtime/utils/events/data-backfill-util.js +0 -39
  452. package/dist/es/components/runtime/utils/events/event-util.js +0 -415
  453. package/dist/es/components/runtime/utils/events/print-label.js +0 -100
  454. package/dist/es/components/runtime/utils/events/standard-event.js +0 -1190
  455. package/dist/es/components/runtime/utils/events/validator-util.js +0 -326
  456. package/dist/es/components/runtime/utils/form/date-shortcuts.js +0 -36
  457. package/dist/es/components/runtime/utils/form/scan-util.js +0 -93
  458. package/dist/es/components/runtime/utils/global-refs.js +0 -57
  459. package/dist/es/components/runtime/utils/i18n-util.js +0 -14
  460. package/dist/es/components/runtime/utils/interfaces/page-design-types.js +0 -4
  461. package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
  462. package/dist/es/components/runtime/utils/page-init-util.js +0 -280
  463. package/dist/es/components/runtime/utils/page-store.js +0 -53
  464. package/dist/es/components/runtime/utils/store-util.js +0 -13
  465. package/dist/es/components/runtime/utils/table-utils.js +0 -89
  466. package/dist/es/components/runtime/utils/tree-utils.js +0 -73
  467. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -4
  468. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -29
  469. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -7
  470. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -21
  471. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -4
  472. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -41
  473. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +0 -4
  474. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +0 -6
  475. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +0 -4
  476. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +0 -21
  477. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -7
  478. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
  479. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +0 -14
  480. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +0 -4
  481. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +0 -13
  482. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
  483. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +0 -60
  484. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
  485. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +0 -7
  486. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +0 -64
  487. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -7
  488. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -35
  489. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -7
  490. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -46
  491. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -7
  492. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -35
  493. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -7
  494. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -35
  495. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +0 -419
  496. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +0 -6
  497. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +0 -4
  498. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +0 -10
  499. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +0 -4
  500. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +0 -46
  501. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +0 -4
  502. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +0 -15
  503. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +0 -4
  504. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +0 -4
  505. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +0 -259
  506. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.js +0 -20
  507. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +0 -4
  508. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -36
  509. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -4
  510. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.js +0 -35
  511. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +0 -4
  512. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +0 -32
  513. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +0 -4
  514. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -17
  515. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -4
  516. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.js +0 -23
  517. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +0 -4
  518. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.js +0 -18
  519. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +0 -4
  520. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +0 -35
  521. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +0 -4
  522. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -19
  523. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -4
  524. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -7
  525. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -29
  526. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
  527. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -21
  528. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
  529. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -18
  530. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +0 -7
  531. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +0 -29
  532. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +0 -7
  533. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +0 -81
  534. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
  535. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -25
  536. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
  537. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -20
  538. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -4
  539. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -46
  540. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -7
  541. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -96
  542. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -7
  543. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -47
  544. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
  545. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +0 -69
  546. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -382
  547. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -4
  548. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -327
  549. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -4
  550. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -4
  551. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -85
  552. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +0 -7
  553. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +0 -134
  554. package/dist/es/components/runtime/views/assemblys/error-render.vue.js +0 -5
  555. package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +0 -4
  556. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -4
  557. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -64
  558. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +0 -38
  559. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +0 -4
  560. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +0 -4
  561. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +0 -69
  562. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -4
  563. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -102
  564. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
  565. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -55
  566. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
  567. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -24
  568. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
  569. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -78
  570. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -4
  571. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -28
  572. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -4
  573. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -82
  574. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -7
  575. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -38
  576. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
  577. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -32
  578. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -7
  579. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -16
  580. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
  581. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -82
  582. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
  583. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -199
  584. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -7
  585. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -156
  586. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
  587. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +0 -16
  588. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
  589. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -36
  590. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
  591. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -44
  592. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -4
  593. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -28
  594. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +0 -83
  595. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
  596. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +0 -153
  597. package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
  598. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -6
  599. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
  600. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +0 -7
  601. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.js +0 -26
  602. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js +0 -7
  603. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.js +0 -28
  604. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js +0 -7
  605. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.js +0 -45
  606. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
  607. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +0 -20
  608. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
  609. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +0 -23
  610. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -7
  611. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -24
  612. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +0 -4
  613. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +0 -27
  614. package/dist/es/components/runtime/views/home-chart.vue.js +0 -47
  615. package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
  616. package/dist/es/components/runtime/views/super-page-dialog.vue.js +0 -26
  617. package/dist/es/components/runtime/views/super-page-dialog.vue3.js +0 -5
  618. package/dist/es/components/runtime/views/super-page.vue.js +0 -7
  619. package/dist/es/components/runtime/views/super-page.vue2.js +0 -296
  620. package/dist/es/index.js +0 -30
  621. /package/dist/es/assets/chart-themes/{bar-theme.js → bar-theme.mjs} +0 -0
  622. /package/dist/es/assets/chart-themes/{gauge-theme.js → gauge-theme.mjs} +0 -0
  623. /package/dist/es/assets/chart-themes/{pie-theme.js → pie-theme.mjs} +0 -0
  624. /package/dist/es/assets/chart-themes/{radar-theme.js → radar-theme.mjs} +0 -0
  625. /package/dist/es/assets/chart-themes/{scatter-theme.js → scatter-theme.mjs} +0 -0
  626. /package/dist/es/assets/{file.png.js → file.png.mjs} +0 -0
  627. /package/dist/es/assets/{folder.png.js → folder.png.mjs} +0 -0
  628. /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
@@ -1,38 +0,0 @@
1
- import { defineComponent as e, computed as l, resolveComponent as r, createElementBlock as t, openBlock as p, Fragment as o, createBlock as u, createCommentVNode as a, unref as i, isRef as n } from "vue";
2
- import { formatVariableValue as s, setVariableValue as y, getVariableValue as f } from "../../../../utils/page-helper-util.js";
3
- const x = e({ __name: "title-suffix-element", props: { pageContext: {}, property: {} }, setup(e2) {
4
- const x2 = e2, c = x2.pageContext.entity;
5
- let d = [];
6
- if (x2.property.prefixPro && x2.property.prefixPro.startsWith("${")) {
7
- let e3 = x2.property.prefixPro;
8
- e3 = e3.substring(2, e3.length - 1), d = e3.split(".");
9
- } else d = [];
10
- if (d.length > 0 && x2.property.prefixDefault) {
11
- const e3 = x2.property.prefixDefault;
12
- let l2 = s(x2.pageContext, e3);
13
- if (null != l2 && null != l2) {
14
- "checkbox" === x2.property.prefixType && (l2 = (l2 + "").split(",")), y(c, d, l2);
15
- }
16
- }
17
- const m = x2.property.prefixType;
18
- let h = x2.property.prefixValue;
19
- h = null == h || null == h ? "" : h;
20
- let b = null;
21
- return d.length > 0 && (b = l({ get() {
22
- const e3 = f(c, d);
23
- return "checkbox" === m ? null != e3 && (Array.isArray(e3) ? e3.includes(h) : e3 === h) : e3;
24
- }, set(e3) {
25
- if ("checkbox" === m) {
26
- let l2 = f(c, d);
27
- l2 || (l2 = []), Array.isArray(l2) || (l2 = [l2]);
28
- const r2 = l2.indexOf(h);
29
- e3 ? -1 == r2 && l2.push(h) : r2 > -1 && l2.splice(r2, 1), y(c, d, l2);
30
- } else y(c, d, e3);
31
- } })), (l2, s2) => {
32
- const y2 = r("el-radio"), f2 = r("el-checkbox");
33
- return p(), t(o, null, ["radio" === e2.property.prefixType ? (p(), u(y2, { key: 0, value: e2.property.prefixValue, label: e2.property.title, modelValue: i(b), "onUpdate:modelValue": s2[0] || (s2[0] = (e3) => n(b) ? b.value = e3 : b = e3) }, null, 8, ["value", "label", "modelValue"])) : a("", true), "checkbox" === e2.property.prefixType ? (p(), u(f2, { key: 1, label: e2.property.title, value: e2.property.prefixValue, modelValue: i(b), "onUpdate:modelValue": s2[1] || (s2[1] = (e3) => n(b) ? b.value = e3 : b = e3) }, null, 8, ["label", "value", "modelValue"])) : a("", true)], 64);
34
- };
35
- } });
36
- export {
37
- x as default
38
- };
@@ -1,4 +0,0 @@
1
- import e from "./title-suffix-element.vue.js";
2
- export {
3
- e as default
4
- };
@@ -1,4 +0,0 @@
1
- import t from "./custom-runtime.vue2.js";
2
- export {
3
- t as default
4
- };
@@ -1,69 +0,0 @@
1
- import { defineComponent as e, computed as t, ref as o, onMounted as n, nextTick as a, onUnmounted as i, resolveComponent as u, createBlock as l, createElementBlock as r, createCommentVNode as s, openBlock as p, normalizeStyle as c, normalizeClass as f, unref as d, withCtx as m, resolveDynamicComponent as g, toDisplayString as v } from "vue";
2
- import { getFormModelFields as C } from "../../../../utils/page-init-util.js";
3
- import { setVariableValue as x, getVariableValue as y, formatVariableValue as b, getFormPropName as h, setVariableValueWithProp as j } from "../../../../utils/page-helper-util.js";
4
- import { handleAfterInitEvent as R, handleEvent as k } from "../../../../utils/events/event-util.js";
5
- import { updateFormItemEditState as V } from "../../../../utils/events/validator-util.js";
6
- import { getListCode as _ } from "../../../../utils/common-util.js";
7
- import { getComponentRef as D } from "../../../../utils/global-refs.js";
8
- import { getAdditionalParamMap as w } from "../../../../utils/events/standard-event.js";
9
- import { $t as E } from "../../../../utils/i18n-util.js";
10
- import F from "../../../../utils/eventBus.js";
11
- import { functions as S } from "../../../../utils/api/page-expose-util.js";
12
- const U = { key: 0, style: { width: "100%", height: "100%" } }, q = { key: 1, style: { width: "100%", height: "100%" }, class: "amb-widget-richtext-single" }, $ = e({ __name: "custom-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: $2 }) {
13
- const O = e2, z = O.pageContext.entity ? O.pageContext.entity : {}, G = C(O.pageContext, O.configure), H = t({ get: () => y(z, G), set(e3) {
14
- x(z, G, e3);
15
- } }), P = O.configure.runtime ? O.configure.runtime : {}, I = P.style, A = P.class, B = P.headerStyle, W = o(P.props ? P.props : {}), J = function(e3) {
16
- let t2 = {};
17
- if (e3) for (let o2 in e3) {
18
- const n2 = e3[o2];
19
- t2[o2] = b(O.pageContext, n2);
20
- }
21
- return t2;
22
- }(P.customParams ? P.customParams : {}), K = w(O.pageContext), L = o(O.configure.props && O.configure.props.base ? O.configure.props.base.name : null);
23
- function M(e3, t2) {
24
- j(z, e3, t2);
25
- }
26
- function N(e3) {
27
- S.isHasFieldAuthPermission(O.configure) ? V(O.pageContext, e3) : console.error("没有该字段的权限,dynamicFields=", G ? G.join(".") : "");
28
- }
29
- function Q() {
30
- const e3 = O.pageContext.tableUuids;
31
- e3 && e3.forEach((e4) => {
32
- const t2 = _(O.pageContext.code, O.pageContext.version, O.configure.uuid), o2 = D(O.pageContext, e4);
33
- o2 && o2.restoreGridEdit(t2);
34
- });
35
- }
36
- O.configure.props.verification.custom && O.configure.props.verification.custom.enabled && (O.pageContext.customValidatorUuids || (O.pageContext.customValidatorUuids = []), O.pageContext.customValidatorUuids.push(O.configure.uuid));
37
- const T = O.pageContext.code, X = o(G && G.length > 0 ? T + "__" + G.join("__") : null), Y = o(null), Z = o(null), ee = o(null);
38
- function te(e3) {
39
- k(H.value, O.pageContext, O.configure, e3);
40
- }
41
- return n(() => {
42
- F.$on(X.value + "-scanDone", (e3) => {
43
- const t2 = e3.result;
44
- x(z, G, t2);
45
- }), F.$on(X.value + "-pickFileDone", (e3) => {
46
- X.value, Y.value.pickFileDone(e3);
47
- }), a(() => {
48
- const e3 = H.value;
49
- R(e3, O.pageContext, O.configure, { formItemRef: Z.value, componentRef: Y.value, titleRef: ee.value, value: e3, entity: O.pageContext.entity.data, pageData: O.pageContext.entity.page });
50
- });
51
- }), i(() => {
52
- F.$off(X.value + "-scanDone"), F.$off(X.value + "-pickFileDone");
53
- }), $2({ getCustomRef: function() {
54
- return Y.value;
55
- }, invokeCustomFunction: function(e3, ...t2) {
56
- if (Y.value && "function" == typeof Y.value[e3]) return Y.value[e3](...t2);
57
- throw new Error(`执行失败:Function '${e3}' not found in custom component`);
58
- }, hasCustomFunction: function(e3) {
59
- return Y.value && "function" == typeof Y.value[e3];
60
- }, addRequiredClass: function() {
61
- requiredClass.value = addRequiredClassUtil();
62
- } }), (t2, o2) => {
63
- const n2 = u("el-form-item");
64
- return W.value.tittleShow ? (p(), l(n2, { key: 0, ref_key: "formItemRef", ref: Z, required: W.value.required, class: f(d(A)), "label-width": W.value.labelWidth, style: c(d(I)) }, { label: m(() => [W.value.tittleShow ? (p(), r("div", { key: 0, ref_key: "titleRef", ref: ee, style: c({ ...d(B) }) }, v(d(E)(W.value.title)), 5)) : s("", true)]), default: m(() => [L.value ? (p(), r("div", U, [(p(), l(g(L.value), { ref_key: "customRef", ref: Y, size: W.value.size, entity: e2.pageContext.entity.data, pageData: e2.pageContext.entity.page, pageContext: e2.pageContext, configureObj: e2.configure, prop: d(h)(e2.configure.props && e2.configure.props.base ? e2.configure.props.base.prop : null), "custom-params": d(J), modelValue: H.value, "onUpdate:modelValue": o2[0] || (o2[0] = (e3) => H.value = e3), disabled: "disabled" === W.value.state, "additional-param-map": d(K), "component-id": X.value, onSetEntityValue: M, onSetCustomRules: N, onRestoreGridEdit: Q, onHandleEvent: te, onChange: o2[1] || (o2[1] = (t3) => d(k)(H.value, e2.pageContext, e2.configure, "change")) }, null, 40, ["size", "entity", "pageData", "pageContext", "configureObj", "prop", "custom-params", "modelValue", "disabled", "additional-param-map", "component-id"]))])) : s("", true)]), _: 1 }, 8, ["required", "class", "label-width", "style"])) : L.value ? (p(), r("div", q, [(p(), l(g(L.value), { ref_key: "customRef", ref: Y, entity: e2.pageContext.entity.data, pageData: e2.pageContext.entity.page, pageContext: e2.pageContext, configureObj: e2.configure, prop: d(h)(e2.configure.props && e2.configure.props.base ? e2.configure.props.base.prop : null), "custom-params": d(J), modelValue: H.value, "onUpdate:modelValue": o2[2] || (o2[2] = (e3) => H.value = e3), disabled: "disabled" === W.value.state, "additional-param-map": d(K), "component-id": X.value, onSetEntityValue: M, onSetCustomRules: N, onRestoreGridEdit: Q, onHandleEvent: te, onChange: o2[3] || (o2[3] = (t3) => d(k)(H.value, e2.pageContext, e2.configure, "change")) }, null, 40, ["entity", "pageData", "pageContext", "configureObj", "prop", "custom-params", "modelValue", "disabled", "additional-param-map", "component-id"]))])) : s("", true);
65
- };
66
- } });
67
- export {
68
- $ as default
69
- };
@@ -1,4 +0,0 @@
1
- import e from "./datepicker-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,102 +0,0 @@
1
- import { defineComponent as e, ref as a, onMounted as l, nextTick as t, computed as o, resolveComponent as r, createBlock as u, openBlock as n, normalizeStyle as i, normalizeClass as c, unref as p, withCtx as s, createElementBlock as d, createCommentVNode as v, Fragment as f, createTextVNode as g, toDisplayString as m } from "vue";
2
- import { getFormModelFields as h } from "../../../../utils/page-init-util.js";
3
- import { getDateShortCuts as y } from "../../../../utils/form/date-shortcuts.js";
4
- import { getModelFieldFromPageContext as C, getValueFromVariable as x, setVariableValue as b, getVariableValue as F, isDateDataType as k } from "../../../../utils/page-helper-util.js";
5
- import { handleAfterInitEvent as T, getCustomFunc as V, handleFormEvent as P } from "../../../../utils/events/event-util.js";
6
- import j from "../common/title-suffix-element.vue.js";
7
- import z from "dayjs";
8
- import { $t as R } from "../../../../utils/i18n-util.js";
9
- import { addRequiredClassUtil as Y } from "../../../../utils/common-util.js";
10
- import { DatePickerRange as _ } from "agilebuilder-ui";
11
- const D = e({ __name: "datepicker-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: D2 }) {
12
- var _a;
13
- const S = e2, w = a(null), q = S.pageContext.entity ? S.pageContext.entity : {}, A = S.configure.runtime ? S.configure.runtime : {}, M = A.style, $ = A.class, B = A.headerStyle, I = A.titleExceedStyle, U = a(A.props ? A.props : {});
14
- let N = h(S.pageContext, S.configure, U.value.prop);
15
- if (S.pageContext.modelFieldsMap && N && N.length > 0 && "data" === N[0]) {
16
- const e3 = C(N, S.pageContext);
17
- e3 && function(e4) {
18
- const a2 = e4.dataType;
19
- k(a2) && ("year" === U.value.dateType && "YYYY" === U.value.valueFormat || "month" === U.value.dateType && "YYYY-MM" === U.value.valueFormat) && (U.value.valueFormat = "x");
20
- }(e3);
21
- }
22
- let W = null, E = false;
23
- if (U.value.dateType && U.value.dateType.includes("range")) {
24
- E = true;
25
- let e3 = U.value.prop2;
26
- e3 && e3.startsWith("${") || (e3 = "${page." + S.configure.uuid + "-2}");
27
- const a2 = x(q, e3, null);
28
- if (e3 = e3.substring(2, e3.length - 1), W = e3.split("."), !(a2 || q.data && (q.data.id || q.data.ID)) && U.value.defaultValue2) {
29
- const e4 = x(q, U.value.defaultValue2);
30
- if (null != e4 && "" !== e4) b(q, W, e4);
31
- else if (((_a = U.value.moreDefaultValue2) == null ? void 0 : _a.length) > 0) {
32
- const e5 = U.value.moreDefaultValue2;
33
- for (let a3 = 0; a3 < e5.length; a3++) {
34
- const l2 = x(q, e5[a3]);
35
- if (null != l2 && "" !== l2) {
36
- b(q, W, l2);
37
- break;
38
- }
39
- }
40
- }
41
- }
42
- }
43
- const O = a(null), G = a(null), H = a(null);
44
- function J(e3, a2) {
45
- if (!e3) return e3;
46
- if (a2) {
47
- "number" != typeof e3 || isNaN(e3) || 4 !== e3.toString().length || (e3 = e3.toString());
48
- try {
49
- const l2 = z(e3);
50
- let t2 = null;
51
- return t2 = "x" === a2 ? l2.toDate().getTime() : z(e3).format(a2), t2;
52
- } catch (a3) {
53
- return console.error("日期值格式化错误", a3), console.error(`value: ${e3} ,valueFormat: ${U.value.valueFormat}`), e3;
54
- }
55
- }
56
- return e3;
57
- }
58
- if (l(() => {
59
- t(() => {
60
- const e3 = K.value;
61
- T(e3, S.pageContext, S.configure, { formItemRef: O.value, componentRef: G.value, titleRef: H.value, value: e3, entity: S.pageContext.entity.data, pageData: S.pageContext.entity.page });
62
- });
63
- }), N) {
64
- const e3 = F(q, N), a2 = J(e3, U.value.valueFormat);
65
- e3 !== a2 && b(q, N, a2);
66
- }
67
- if (W) {
68
- const e3 = F(q, W), a2 = J(e3, U.value.valueFormat);
69
- e3 !== a2 && b(q, W, a2);
70
- }
71
- const K = o({ get() {
72
- if (E) {
73
- const e3 = [];
74
- let a2 = F(q, N);
75
- e3.push(J(a2, U.value.valueFormat));
76
- let l2 = F(q, W);
77
- return e3.push(J(l2, U.value.valueFormat)), e3;
78
- }
79
- return J(F(q, N), U.value.valueFormat);
80
- }, set(e3) {
81
- E ? Array.isArray(e3) ? (b(q, N, e3[0]), b(q, W, e3[1]), w.value = "") : null === e3 && (b(q, N, null), b(q, W, null)) : (b(q, N, e3), null != e3 && (w.value = ""));
82
- } }), L = a(y(U.value.dateScopeDetails, U.value.sourceType, U.value.dateType));
83
- if (U.value.shortcutsFunc) {
84
- const e3 = V(S.pageContext, U.value.shortcutsFunc);
85
- if (e3) {
86
- let a2 = e3.apply(e3, [{ pageContext: S.pageContext, configureObj: S.configure }]);
87
- if (a2) {
88
- Array.isArray(a2) || (a2 = [a2]), L.value || (L.value = []);
89
- for (let e4 of a2) e4.text && e4.value && L.value.push(e4);
90
- }
91
- }
92
- }
93
- return D2({ addRequiredClass: function() {
94
- w.value = Y();
95
- } }), (a2, l2) => {
96
- const t2 = r("el-time-picker"), o2 = r("el-date-picker"), h2 = r("el-form-item");
97
- return n(), u(h2, { ref_key: "formItemRef", ref: O, required: U.value.required, class: c(p($) + (w.value ? " " + w.value : "")), "label-width": U.value.labelWidth, style: i(p(M)) }, { label: s(() => [U.value.tittleShow ? (n(), d("div", { key: 0, ref_key: "titleRef", ref: H, style: i({ ...p(B), ...p(I) }) }, [U.value.prefixType ? (n(), u(j, { key: 0, pageContext: e2.pageContext, property: U.value }, null, 8, ["pageContext", "property"])) : (n(), d(f, { key: 1 }, [g(m(p(R)(U.value.title)), 1)], 64))], 4)) : v("", true)]), default: s(() => ["time" == U.value.dateType || "timerange" == U.value.dateType ? (n(), u(t2, { key: 0, ref_key: "componentRef", ref: G, "is-range": "timerange" == U.value.dateType, style: { width: "100%" }, "range-separator": "-", clearable: U.value.clearable, disabled: "disabled" === U.value.state, readonly: "readonly" === U.value.state, size: U.value.size, placeholder: U.value.placeholder, "start-placeholder": U.value.placeholder, "end-placeholder": U.value.endPlaceholder ? U.value.endPlaceholder : U.value.placeholder, "unlink-panels": true, format: U.value.format, "value-format": U.value.valueFormat, modelValue: K.value, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => K.value = e3), shortcuts: L.value, type: U.value.dateType, onChange: l2[1] || (l2[1] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "change")), onBlur: l2[2] || (l2[2] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "blur")), onFocus: l2[3] || (l2[3] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "focus")), onVisibleChange: l2[4] || (l2[4] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "visible-change")), onPanelChange: l2[5] || (l2[5] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "panel-change")), onClear: l2[6] || (l2[6] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "clear")) }, null, 8, ["is-range", "clearable", "disabled", "readonly", "size", "placeholder", "start-placeholder", "end-placeholder", "format", "value-format", "modelValue", "shortcuts", "type"])) : "combined" !== U.value.dateRangePickerMode && ["daterange", "datetimerange", "monthrange", "yearrange"].includes(U.value.dateType) ? (n(), u(p(_), { key: 1, modelValue: K.value, "onUpdate:modelValue": l2[7] || (l2[7] = (e3) => K.value = e3), type: U.value.dateType, disabled: "disabled" === U.value.state, readonly: "readonly" === U.value.state, clearable: U.value.clearable, format: U.value.format, "value-format": U.value.valueFormat, placeholder: U.value.placeholder, "start-placeholder": U.value.placeholder, "end-placeholder": U.value.endPlaceholder ? U.value.endPlaceholder : U.value.placeholder, size: U.value.size, shortcuts: L.value, onChange: l2[8] || (l2[8] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "change")), onBlur: l2[9] || (l2[9] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "blur")), onFocus: l2[10] || (l2[10] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "focus")), onVisibleChange: l2[11] || (l2[11] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "visible-change")), onPanelChange: l2[12] || (l2[12] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "panel-change")), onClear: l2[13] || (l2[13] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "clear")) }, null, 8, ["modelValue", "type", "disabled", "readonly", "clearable", "format", "value-format", "placeholder", "start-placeholder", "end-placeholder", "size", "shortcuts"])) : (n(), u(o2, { key: 2, ref_key: "componentRef", ref: G, clearable: U.value.clearable, style: { width: "100%" }, "unlink-panels": true, disabled: "disabled" === U.value.state, readonly: "readonly" === U.value.state, size: U.value.size, placeholder: U.value.placeholder, "start-placeholder": U.value.placeholder, "end-placeholder": U.value.endPlaceholder ? U.value.endPlaceholder : U.value.placeholder, format: U.value.format, "value-format": U.value.valueFormat, modelValue: K.value, "onUpdate:modelValue": l2[14] || (l2[14] = (e3) => K.value = e3), shortcuts: L.value, type: U.value.dateType, onChange: l2[15] || (l2[15] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "change")), onBlur: l2[16] || (l2[16] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "blur")), onFocus: l2[17] || (l2[17] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "focus")), onVisibleChange: l2[18] || (l2[18] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "visible-change")), onPanelChange: l2[19] || (l2[19] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "panel-change")), onClear: l2[20] || (l2[20] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "clear")) }, null, 8, ["clearable", "disabled", "readonly", "size", "placeholder", "start-placeholder", "end-placeholder", "format", "value-format", "modelValue", "shortcuts", "type"]))]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
98
- };
99
- } });
100
- export {
101
- D as default
102
- };
@@ -1,4 +0,0 @@
1
- import e from "./depttree-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,55 +0,0 @@
1
- import { defineComponent as e, ref as t, onMounted as l, nextTick as o, computed as n, watch as i, resolveComponent as a, createBlock as u, openBlock as p, normalizeStyle as r, normalizeClass as s, unref as d, withCtx as f, createVNode as c, createElementBlock as m, createCommentVNode as g, Fragment as v, createTextVNode as y, toDisplayString as x } from "vue";
2
- import { getFormModelFields as h } from "../../../../utils/page-init-util.js";
3
- import { handleAfterInitEvent as C, handleFormEvent as S } from "../../../../utils/events/event-util.js";
4
- import F from "../common/title-suffix-element.vue.js";
5
- import { $t as b } from "../../../../utils/i18n-util.js";
6
- import { setVariableValue as k, getVariableValue as w, getFormPropName as z, getValueFromVariable as R } from "../../../../utils/page-helper-util.js";
7
- import { addRequiredClassUtil as j } from "../../../../utils/common-util.js";
8
- const _ = e({ __name: "depttree-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: _2 }) {
9
- const I = e2, T = t(null), q = t([]), W = I.pageContext.entity ? I.pageContext.entity : {};
10
- W.data || (W.data = {});
11
- const M = W.data, O = W.page;
12
- let $ = h(I.pageContext, I.configure);
13
- const D = $.length > 0 ? $[$.length - 1] : I.configure.uuid, E = I.configure.runtime ? I.configure.runtime : {}, V = t(E.props ? E.props : {}), A = E.style, B = E.class, G = E.headerStyle, H = E.titleExceedStyle;
14
- E.props.deptScope && ("field" == E.props.deptScope && E.props.deptScopeField ? (Y(), function(e3, t2) {
15
- if (0 === e3.indexOf("${fixed.")) return;
16
- const l2 = e3.match(/\${(.*?)}/);
17
- if (!l2) return;
18
- const o2 = l2 ? l2[1].split(".") : [];
19
- o2 && o2.length > 0 && i(() => o2.reduce((e4, t3) => e4[t3], I.pageContext.entity), (e4, l3) => {
20
- t2(e4, l3);
21
- });
22
- }(E.props.deptScopeField, (e3, t2) => {
23
- Y();
24
- })) : "depts" == E.props.deptScope && E.props.deptScopeCodes && (q.value = E.props.deptScopeCodes.split(",")));
25
- const J = t(null), K = t(null), L = t(null);
26
- l(() => {
27
- o(() => {
28
- const e3 = M ? M[D] : null;
29
- C(e3, I.pageContext, I.configure, { formItemRef: J.value, componentRef: K.value, titleRef: L.value, value: e3, entity: I.pageContext.entity.data, pageData: I.pageContext.entity.page });
30
- });
31
- });
32
- const N = n({ get: () => w(W, $), set(e3) {
33
- k(W, $, e3), null != e3 && (T.value = "");
34
- } }), P = V.value.autoSetFields ? V.value.autoSetFields : [];
35
- let Q = null;
36
- function U(e3, t2) {
37
- Q ? Q === e3 && ($.length > 0 ? S(w(W, $), I.pageContext, I.configure, "change") : S(t2, I.pageContext, I.configure, "change")) : e3 === D && S(t2, I.pageContext, I.configure, "change");
38
- }
39
- function X() {
40
- S(null, I.pageContext, I.configure, "click");
41
- }
42
- function Y() {
43
- const e3 = R(I.pageContext.entity, E.props.deptScopeField);
44
- q.value = e3 ? e3.split(",") : [];
45
- }
46
- return P.length - 1 > 0 && P[P.length - 1] && P[P.length - 1].model && (Q = z(P[P.length - 1].model)), _2({ addRequiredClass: function() {
47
- T.value = j();
48
- } }), (t2, l2) => {
49
- const o2 = a("OrganizationInput"), n2 = a("el-form-item");
50
- return p(), u(n2, { ref_key: "formItemRef", ref: J, required: V.value.required, class: s(d(B) + (T.value ? " " + T.value : "")), "label-width": V.value.labelWidth, style: r(d(A)) }, { label: f(() => [V.value.tittleShow ? (p(), m("div", { key: 0, ref_key: "titleRef", ref: L, style: r({ ...d(G), ...d(H) }) }, [V.value.prefixType ? (p(), u(F, { key: 0, pageContext: e2.pageContext, property: V.value }, null, 8, ["pageContext", "property"])) : (p(), m(v, { key: 1 }, [y(x(d(b)(V.value.title)), 1)], 64))], 4)) : g("", true)]), default: f(() => [c(o2, { ref_key: "componentRef", ref: K, disabled: "disabled" == V.value.state, multiple: V.value.multiple, treeType: V.value.treeType, value: N.value, models: d(M), departmentInfo: q.value, limitFilterColumn: V.value.limitFilterColumn, pageModels: d(O), fields: d(P), inputShowWay: V.value.inputShowWay, autosize: V.value.autosize, size: V.value.size, separator: V.value.separator, onSetValue: U, onShowTree: X }, null, 8, ["disabled", "multiple", "treeType", "value", "models", "departmentInfo", "limitFilterColumn", "pageModels", "fields", "inputShowWay", "autosize", "size", "separator"])]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
51
- };
52
- } });
53
- export {
54
- _ as default
55
- };
@@ -1,4 +0,0 @@
1
- import e from "./divider-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,24 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as n, onMounted as o, nextTick as r, resolveComponent as i, createBlock as u, openBlock as l, unref as a, withCtx as p, createElementVNode as s, normalizeStyle as c, toDisplayString as d } from "vue";
2
- import { formatVariableValue as f } from "../../../../utils/page-helper-util.js";
3
- import { handleAfterInitEvent as v, handleFormEvent as g } from "../../../../utils/events/event-util.js";
4
- const m = e({ __name: "divider-runtime", props: { pageContext: {}, configure: {} }, setup(e2) {
5
- const m2 = e2, y = m2.configure.runtime ? m2.configure.runtime : {}, x = y.headerStyle, C = t(y.props ? y.props : {});
6
- let _ = C.value.value;
7
- const b = n(() => {
8
- if (!_) return "";
9
- const e3 = f(m2.pageContext, _);
10
- return null == e3 || null == e3 ? "" : e3;
11
- }), k = t(null);
12
- return o(() => {
13
- r(() => {
14
- const e3 = b.value;
15
- v(e3, m2.pageContext, m2.configure, { componentRef: k.value, value: e3, entity: m2.pageContext.entity.data, pageData: m2.pageContext.entity.page });
16
- });
17
- }), (t2, n2) => {
18
- const o2 = i("el-divider");
19
- return l(), u(o2, { ref_key: "componentRef", ref: k, direction: C.value.direction, "border-style": C.value.borderType, "content-position": C.value.titlePosition, onClick: n2[0] || (n2[0] = (t3) => a(g)(t3, e2.pageContext, e2.configure, "click")) }, { default: p(() => [s("div", { style: c(a(x)) }, d(b.value), 5)]), _: 1 }, 8, ["direction", "border-style", "content-position"]);
20
- };
21
- } });
22
- export {
23
- m as default
24
- };
@@ -1,4 +0,0 @@
1
- import e from "./fileupload-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,78 +0,0 @@
1
- import { defineComponent as e, ref as l, watch as t, onMounted as o, nextTick as a, onUnmounted as i, resolveComponent as s, createBlock as r, createCommentVNode as u, openBlock as n, normalizeStyle as p, normalizeClass as d, unref as m, withCtx as v, createElementBlock as f, toDisplayString as c } from "vue";
2
- import { getVariableValue as h, setVariableValue as y } from "../../../../utils/page-helper-util.js";
3
- import { handleAfterInitEvent as g, fileUploadBeforeUpload as w } from "../../../../utils/events/event-util.js";
4
- import C from "agilebuilder-ui/src/utils/request";
5
- import { FsUploadNew as b } from "agilebuilder-ui";
6
- import k from "../../../../utils/eventBus.js";
7
- import { $t as x } from "../../../../utils/i18n-util.js";
8
- import { addRequiredClassUtil as P } from "../../../../utils/common-util.js";
9
- import { getRelativeBaseUrl as S } from "agilebuilder-ui/src/utils/common-util";
10
- const N = e({ __name: "fileupload-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: N2 }) {
11
- var _a, _b, _c, _d, _e, _f, _g;
12
- const T = e2, _ = l(null), j = T.configure.runtime ? T.configure.runtime : {}, z = l(j.props ? j.props : {}), R = j.style, I = j.class, D = j.headerStyle, O = j.titleExceedStyle, q = T.pageContext.entity ? T.pageContext.entity : {}, F = T.configure.props.base ? T.configure.props.base : {}, W = M(F.prop), $ = M(F.propName);
13
- let A = l({});
14
- A.value.isShowWatermark = void 0 === ((_b = (_a = T.configure.props) == null ? void 0 : _a.watermark) == null ? void 0 : _b.isShowWatermark) ? "true" : ((_c = T.configure.props) == null ? void 0 : _c.watermark.isShowWatermark) + "", A.value.content = ((_e = (_d = T.configure.props) == null ? void 0 : _d.watermark) == null ? void 0 : _e.content) ? (_g = (_f = T.configure.props) == null ? void 0 : _f.watermark) == null ? void 0 : _g.content : "", W && W.length > 1 && t(() => T.pageContext.entity[W[0]][W[1]], (e3) => {
15
- L(h(q, W));
16
- });
17
- const E = T.pageContext.code, U = l(W ? E + "__" + W.join("__") : null), B = h(q, W), G = l(null), H = l(false), J = l([]), K = l({});
18
- function L(e3) {
19
- if (e3) {
20
- const l2 = e3.split(",");
21
- if (l2.length > 0) {
22
- const e4 = S(window.$vueApp.config.globalProperties.baseAPI) + "/component/fs-upload/search-file-metadata";
23
- C.post(e4, l2).then((e5) => {
24
- J.value = [];
25
- const t2 = [], o2 = {};
26
- e5.forEach((e6) => {
27
- o2[e6.uuid] = e6;
28
- });
29
- for (let e6 = 0; e6 < l2.length; e6++) {
30
- const a2 = l2[e6];
31
- t2.push(o2[a2].fileName), J.value.push({ showName: o2[a2].fileName, serverPath: a2, fileSize: o2[a2].fileSize });
32
- }
33
- "input" === z.value.displayType && (K.value.showName = t2.join(","), K.value.serverPath = l2.join(","));
34
- }).finally(() => {
35
- H.value = true;
36
- });
37
- } else H.value = true;
38
- } else J.value = [], K.value = {}, H.value = true;
39
- }
40
- function M(e3) {
41
- return e3 ? (e3.startsWith("${") && (e3 = e3.substring(2, e3.length - 1)), e3.split(".")) : [];
42
- }
43
- function Q(e3) {
44
- return w(e3);
45
- }
46
- L(B);
47
- const V = (e3, l2, t2) => {
48
- Y();
49
- }, X = (e3) => {
50
- Y();
51
- }, Y = () => {
52
- const e3 = [], l2 = [];
53
- if (z.value.limit && J.value.length > z.value.limit) {
54
- const e4 = J.value.length - z.value.limit;
55
- for (let l3 = 0; l3 < e4; l3++) J.value.shift();
56
- }
57
- for (let t2 = 0; t2 < J.value.length; t2++) e3.push(J.value[t2].showName), l2.push(J.value[t2].serverPath);
58
- y(T.pageContext.entity, W, l2.join(",")), y(T.pageContext.entity, $, e3.join(",")), l2.length > 0 && (_.value = "");
59
- }, Z = l(null), ee = l(null);
60
- return o(() => {
61
- k.$on(U.value + "-pickFileDone", (e3) => {
62
- U.value, G.value.pickFileDone(e3);
63
- }), a(() => {
64
- const e3 = h(q, W), l2 = { showName: h(q, $), serverPath: e3 };
65
- g(l2, T.pageContext, T.configure, { formItemRef: Z.value, componentRef: G.value, titleRef: ee.value, value: l2, entity: T.pageContext.entity.data, pageData: T.pageContext.entity.page });
66
- });
67
- }), i(() => {
68
- k.$off(U.value + "-pickFileDone");
69
- }), N2({ addRequiredClass: function() {
70
- _.value = P();
71
- } }), (l2, t2) => {
72
- const o2 = s("el-form-item");
73
- return z.value.tittleShow ? (n(), r(o2, { key: 0, ref_key: "formItemRef", ref: Z, required: z.value.required, class: d(m(I) + (_.value ? " " + _.value : "")), "label-width": z.value.labelWidth, style: p(m(R)) }, { label: v(() => [z.value.tittleShow ? (n(), f("div", { key: 0, ref_key: "titleRef", ref: ee, style: p({ ...m(D), ...m(O) }) }, c(m(x)(z.value.title)), 5)) : u("", true)]), default: v(() => [H.value ? (n(), r(m(b), { key: 0, ref_key: "fileUploadRef", ref: G, style: { width: "100%" }, disabled: "disabled" === z.value.state, displayType: z.value.displayType, accept: z.value.accept, multiple: z.value.multiple, placeholder: z.value.placeholder, limit: z.value.limit, "limit-file-size": z.value.limitFileSize, "disabled-no-preview": z.value.disabledNoPreview, "disabled-no-download": z.value.disabledNoDownload, openCameraOrChoosePhoto: z.value.openCameraOrChoosePhoto, "sort-type": z.value.sortType, "file-info": K.value, "file-list": J.value, "system-code": e2.pageContext.systemCode, componentId: U.value, watermark: m(A), "on-success": V, "on-remove": X, "before-upload": Q, pageContext: e2.pageContext, "file-show-type": z.value.fileShowType }, null, 8, ["disabled", "displayType", "accept", "multiple", "placeholder", "limit", "limit-file-size", "disabled-no-preview", "disabled-no-download", "openCameraOrChoosePhoto", "sort-type", "file-info", "file-list", "system-code", "componentId", "watermark", "pageContext", "file-show-type"])) : u("", true)]), _: 1 }, 8, ["required", "class", "label-width", "style"])) : H.value ? (n(), r(m(b), { key: 1, ref_key: "fileUploadRef", ref: G, style: { width: "100%" }, disabled: "disabled" === z.value.state, displayType: z.value.displayType, accept: z.value.accept, multiple: z.value.multiple, placeholder: z.value.placeholder, limit: z.value.limit, "limit-file-size": z.value.limitFileSize, "disabled-no-preview": z.value.disabledNoPreview, "disabled-no-download": z.value.disabledNoDownload, openCameraOrChoosePhoto: z.value.openCameraOrChoosePhoto, "sort-type": z.value.sortType, "file-info": K.value, "file-list": J.value, "system-code": e2.pageContext.systemCode, componentId: U.value, watermark: m(A), "on-success": V, "on-remove": X, "before-upload": Q, pageContext: e2.pageContext, "file-show-type": z.value.fileShowType }, null, 8, ["disabled", "displayType", "accept", "multiple", "placeholder", "limit", "limit-file-size", "disabled-no-preview", "disabled-no-download", "openCameraOrChoosePhoto", "sort-type", "file-info", "file-list", "system-code", "componentId", "watermark", "pageContext", "file-show-type"])) : u("", true);
74
- };
75
- } });
76
- export {
77
- N as default
78
- };
@@ -1,4 +0,0 @@
1
- import e from "./input-number-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,28 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as l, onMounted as o, nextTick as a, resolveComponent as n, createBlock as u, openBlock as i, normalizeStyle as r, normalizeClass as s, unref as p, withCtx as m, createVNode as f, createElementBlock as c, createCommentVNode as d, Fragment as v, createTextVNode as g, toDisplayString as y } from "vue";
2
- import { getFormModelFields as x } from "../../../../utils/page-init-util.js";
3
- import { setVariableValue as C, getVariableValue as h } from "../../../../utils/page-helper-util.js";
4
- import { handleAfterInitEvent as b, handleFormEvent as R } from "../../../../utils/events/event-util.js";
5
- import j from "../common/title-suffix-element.vue.js";
6
- import { $t as k } from "../../../../utils/i18n-util.js";
7
- import { addRequiredClassUtil as _ } from "../../../../utils/common-util.js";
8
- const q = e({ __name: "input-number-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: q2 }) {
9
- const w = e2, z = t(null), S = w.pageContext.entity ? w.pageContext.entity : {};
10
- let V = x(w.pageContext, w.configure);
11
- const B = l({ get: () => h(S, V), set(e3) {
12
- C(S, V, e3), null != e3 && (z.value = "");
13
- } }), I = w.configure.runtime ? w.configure.runtime : {}, D = I.style, E = I.class, F = I.headerStyle, T = I.titleExceedStyle, U = t(I.props ? I.props : {}), W = t(null), A = t(null), G = t(null);
14
- return o(() => {
15
- a(() => {
16
- const e3 = B.value;
17
- b(e3, w.pageContext, w.configure, { formItemRef: W.value, componentRef: A.value, titleRef: G.value, value: e3, entity: w.pageContext.entity.data, pageData: w.pageContext.entity.page });
18
- });
19
- }), q2({ addRequiredClass: function() {
20
- z.value = _();
21
- } }), (t2, l2) => {
22
- const o2 = n("el-input-number"), a2 = n("el-form-item");
23
- return i(), u(a2, { ref_key: "formItemRef", ref: W, required: U.value.required, class: s(p(E) + (z.value ? " " + z.value : "")), "label-width": U.value.labelWidth, style: r(p(D)) }, { label: m(() => [U.value.tittleShow ? (i(), c("div", { key: 0, ref_key: "titleRef", ref: G, style: r({ ...p(F), ...p(T) }) }, [U.value.prefixType ? (i(), u(j, { key: 0, pageContext: e2.pageContext, property: U.value }, null, 8, ["pageContext", "property"])) : (i(), c(v, { key: 1 }, [g(y(p(k)(U.value.title)), 1)], 64))], 4)) : d("", true)]), default: m(() => [f(o2, { ref_key: "componentRef", ref: A, disabled: "disabled" === U.value.state, readonly: "readonly" === U.value.state, controls: U.value.showButton, size: U.value.size, placeholder: U.value.placeholder, modelValue: B.value, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => B.value = e3), precision: U.value.precision, step: U.value.step, min: U.value.min, max: U.value.max, onChange: l2[1] || (l2[1] = (t3) => p(R)(t3, e2.pageContext, e2.configure, "change")), onBlur: l2[2] || (l2[2] = (t3) => p(R)(t3, e2.pageContext, e2.configure, "blur")), onFocus: l2[3] || (l2[3] = (t3) => p(R)(t3, e2.pageContext, e2.configure, "focus")) }, null, 8, ["disabled", "readonly", "controls", "size", "placeholder", "modelValue", "precision", "step", "min", "max"])]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
24
- };
25
- } });
26
- export {
27
- q as default
28
- };
@@ -1,4 +0,0 @@
1
- import t from "./inputtext-runtime.vue2.js";
2
- export {
3
- t as default
4
- };
@@ -1,82 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as l, onMounted as n, nextTick as o, onUnmounted as a, watch as u, resolveComponent as i, createBlock as r, openBlock as s, normalizeStyle as p, normalizeClass as c, unref as v, withCtx as f, createVNode as y, createCommentVNode as g, createSlots as m, createTextVNode as d, toDisplayString as x, createElementBlock as C, Fragment as I } from "vue";
2
- import { SuperIcon as T } from "agilebuilder-ui";
3
- import { getFormModelFields as k } from "../../../../utils/page-init-util.js";
4
- import { getModelFieldFromPageContext as w, isNumberDataType as V, setVariableValue as h, getVariableValue as b } from "../../../../utils/page-helper-util.js";
5
- import { handleFormEvent as _, handleAfterInitEvent as S, doSuffixOrPrefixClickEvent as j } from "../../../../utils/events/event-util.js";
6
- import { formatScanRuleSets as R, analysisScanValue as O, setScanAnalysisValue as N } from "../../../../utils/form/scan-util.js";
7
- import P from "../common/title-suffix-element.vue.js";
8
- import { isMobileBrowser as q } from "agilebuilder-ui/src/utils/common-util";
9
- import D from "../../../../utils/eventBus.js";
10
- import { $t as J } from "../../../../utils/i18n-util.js";
11
- import { addRequiredClassUtil as M } from "../../../../utils/common-util.js";
12
- const z = e({ __name: "inputtext-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: z2 }) {
13
- var _a, _b, _c;
14
- const L = e2, B = L.pageContext.entity ? L.pageContext.entity : {}, F = t("text");
15
- let $ = k(L.pageContext, L.configure);
16
- if (L.pageContext.modelFieldsMap) {
17
- const e3 = w($, L.pageContext);
18
- e3 && (F.value = V(e3.dataType) ? "number" : "text");
19
- }
20
- const A = t(q()), E = L.pageContext.code, H = t($ && $.length > 0 ? E + "__" + $.join("__") : null), U = t(null), W = l({ get: () => b(B, $), set(e3) {
21
- h(B, $, e3), null != e3 && "" !== e3 && (U.value = "");
22
- } }), G = t(null), K = t(null), Q = t(null), X = L.configure.runtime ? L.configure.runtime : {}, Y = t(X.props ? X.props : {}), Z = t(!!((_a = Y.value.scan) == null ? void 0 : _a.enable));
23
- let ee = false;
24
- const te = window.localStorage.getItem("auth_source");
25
- te && "dingtalk" === te && (ee = true);
26
- let le = "";
27
- const ne = navigator.userAgent;
28
- le = ne.indexOf("Html5Plus") > 0 ? "app" : "browser";
29
- const oe = !(!A.value || !le || "app" !== le), ae = t(!!((oe || ee) && Z.value || A.value && Z.value && "https:" === window.location.protocol));
30
- let ue = {};
31
- ((_b = Y.value.scan) == null ? void 0 : _b.enable) && ((_c = Y.value.scan.ruleList) == null ? void 0 : _c.length) > 0 && (R(Y.value.scan.ruleList).then((e3) => {
32
- ue = e3;
33
- }), u(() => W.value, (e3) => {
34
- e3 = e3.trim();
35
- const t2 = O(e3, ue);
36
- t2 && N(L.pageContext, t2.scanSet, t2.params);
37
- }));
38
- const ie = X.style, re = X.class, se = X.headerStyle, pe = X.titleExceedStyle;
39
- function ce(e3) {
40
- return h(B, $, e3);
41
- }
42
- n(() => {
43
- D.$on(H.value + "-scanDone", (e3) => {
44
- H.value, JSON.stringify(e3), ce(e3.result), _(e3.result, L.pageContext, L.configure, "afterScanDone");
45
- }), o(() => {
46
- var _a2;
47
- const e3 = W.value;
48
- S(e3, L.pageContext, L.configure, { formItemRef: G.value, componentRef: K.value, titleRef: Q.value, value: e3, entity: L.pageContext.entity.data, pageData: L.pageContext.entity.page }), ae.value && ((_a2 = Y.value.scan) == null ? void 0 : _a2.autoOpen) && fe();
49
- });
50
- }), a(() => {
51
- D.$off(H.value + "-scanDone");
52
- });
53
- const ve = t(false);
54
- function fe() {
55
- if (oe || ee) {
56
- const e3 = { type: "scan", componentId: H.value, systemCode: L.pageContext.systemCode };
57
- ee && (e3.type = "dingTalkScan"), window.parent.parent ? (window.parent.parent, window.parent.parent.postMessage(JSON.stringify(e3), "*")) : window.parent && (window.parent, window.parent.postMessage(JSON.stringify(e3), "*"));
58
- } else if (A.value) if ("https:" === window.location.protocol) ve.value = true;
59
- else {
60
- const e3 = { type: "scan", componentId: H.value, systemCode: L.pageContext.systemCode };
61
- window.parent.postMessage(JSON.stringify(e3), "*");
62
- }
63
- else ve.value = true;
64
- }
65
- function ye(e3) {
66
- ve.value = false, ce(e3);
67
- }
68
- return z2({ getValue: function() {
69
- return b(B, $);
70
- }, setValue: ce, scanClick: fe, addRequiredClass: function() {
71
- U.value = M();
72
- } }), (t2, l2) => {
73
- const n2 = i("el-input"), o2 = i("scan-code-input-browser"), a2 = i("el-form-item");
74
- return s(), r(a2, { ref_key: "formItemRef", ref: G, required: !!Y.value.required, class: c(v(re) + (U.value ? " " + U.value : "")), "label-width": Y.value.labelWidth, style: p(v(ie)) }, { label: f(() => [Y.value.tittleShow ? (s(), C("div", { key: 0, ref_key: "titleRef", ref: Q, style: p({ ...v(se), ...v(pe) }) }, [Y.value.prefixType ? (s(), r(P, { key: 0, pageContext: e2.pageContext, property: Y.value }, null, 8, ["pageContext", "property"])) : (s(), C(I, { key: 1 }, [d(x(v(J)(Y.value.title)), 1)], 64))], 4)) : g("", true)]), default: f(() => [y(n2, { ref_key: "componentRef", ref: K, disabled: "disabled" === Y.value.state, readonly: "readonly" === Y.value.state, size: Y.value.size, clearable: Y.value.clearable, placeholder: Y.value.placeholder, maxlength: Y.value.maxLength, "show-word-limit": Y.value.showInputNum, type: F.value, modelValue: W.value, "onUpdate:modelValue": l2[5] || (l2[5] = (e3) => W.value = e3), onInput: l2[6] || (l2[6] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "input")), onChange: l2[7] || (l2[7] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "change")), onBlur: l2[8] || (l2[8] = (e3) => function(e4) {
75
- let t3 = b(B, $);
76
- null != t3 && (t3 = t3.trim()), h(B, $, t3), _(e4, L.pageContext, L.configure, "blur");
77
- }(e3)), onFocus: l2[9] || (l2[9] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "focus")), onClick: l2[10] || (l2[10] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "click")), onClear: l2[11] || (l2[11] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "clear")) }, m({ _: 2 }, ["outer" != Y.value.iconPosition && (Y.value.preIconType && Y.value.preIconValue || Y.value.preText) ? { name: "prefix", fn: f(() => [Y.value.preIconType && Y.value.preIconValue ? (s(), r(v(T), { key: 0, style: { cursor: "pointer" }, iconType: Y.value.preIconType, iconValue: Y.value.preIconValue, onClick: l2[0] || (l2[0] = (t3) => v(j)(W.value, e2.pageContext, e2.configure, "prefixClick")) }, null, 8, ["iconType", "iconValue"])) : g("", true), d(" " + x(v(J)(Y.value.preText)), 1)]), key: "0" } : void 0, "outer" == Y.value.iconPosition && (Y.value.preIconType && Y.value.preIconValue || Y.value.preText) ? { name: "prepend", fn: f(() => [Y.value.preIconType && Y.value.preIconValue ? (s(), r(v(T), { key: 0, style: { cursor: "pointer" }, iconType: Y.value.preIconType, iconValue: Y.value.preIconValue, onClick: l2[1] || (l2[1] = (t3) => v(j)(W.value, e2.pageContext, e2.configure, "prefixClick")) }, null, 8, ["iconType", "iconValue"])) : g("", true), d(" " + x(v(J)(Y.value.preText)), 1)]), key: "1" } : void 0, "outer" != Y.value.iconPosition && (Y.value.sufIconType && Y.value.sufIconValue || Y.value.sufText) ? { name: "suffix", fn: f(() => [Y.value.sufIconType && Y.value.sufIconValue ? (s(), r(v(T), { key: 0, style: { cursor: "pointer" }, iconType: Y.value.sufIconType, iconValue: Y.value.sufIconValue, onClick: l2[2] || (l2[2] = (t3) => v(j)(W.value, e2.pageContext, e2.configure, "suffixClick")) }, null, 8, ["iconType", "iconValue"])) : g("", true), d(" " + x(v(J)(Y.value.sufText)), 1)]), key: "2" } : void 0, ae.value || "outer" == Y.value.iconPosition && (Y.value.sufIconType && Y.value.sufIconValue || Y.value.sufText) ? { name: "append", fn: f(() => [ae.value ? (s(), r(v(T), { key: 0, style: { cursor: "pointer" }, iconValue: "fa-barcode", onClick: l2[3] || (l2[3] = (e3) => fe()) })) : g("", true), Y.value.sufIconType && Y.value.sufIconValue ? (s(), r(v(T), { key: 1, style: { cursor: "pointer" }, iconType: Y.value.sufIconType, iconValue: Y.value.sufIconValue, onClick: l2[4] || (l2[4] = (t3) => v(j)(W.value, e2.pageContext, e2.configure, "suffixClick")) }, null, 8, ["iconType", "iconValue"])) : g("", true), d(" " + x(v(J)(Y.value.sufText)), 1)]), key: "3" } : void 0]), 1032, ["disabled", "readonly", "size", "clearable", "placeholder", "maxlength", "show-word-limit", "type", "modelValue"]), ve.value ? (s(), r(o2, { key: 0, onClose: ye })) : g("", true)]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
78
- };
79
- } });
80
- export {
81
- z as default
82
- };
@@ -1,7 +0,0 @@
1
- import e from "./label-runtime.vue2.js";
2
- /* empty css */
3
- import r from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
- const t = r(e, [["__scopeId", "data-v-2ffad4a6"]]);
5
- export {
6
- t as default
7
- };
@@ -1,38 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as l, onMounted as n, nextTick as a, resolveComponent as u, createElementBlock as o, createBlock as i, openBlock as s, normalizeStyle as p, normalizeClass as r, unref as f, createElementVNode as c, toDisplayString as v, withCtx as y, createCommentVNode as g, createTextVNode as m } from "vue";
2
- import { getFormModelFields as x } from "../../../../utils/page-init-util.js";
3
- import { getVariableValue as d, formatValueByType as h } from "../../../../utils/page-helper-util.js";
4
- import { SuperIcon as k } from "agilebuilder-ui";
5
- import { getCustomFunc as w, handleAfterInitEvent as T, handleFormEvent as C } from "../../../../utils/events/event-util.js";
6
- import { $t as _ } from "../../../../utils/i18n-util.js";
7
- const I = { style: { width: "100%", "text-align": "center", "font-weight": "700", "font-size": "24px" } }, b = { style: { overflow: "hidden", "white-space": "nowrap" } }, V = ["title"], j = e({ __name: "label-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: j2 }) {
8
- const R = e2, S = R.pageContext.entity ? R.pageContext.entity : {};
9
- let P = x(R.pageContext, R.configure);
10
- const q = R.configure.runtime ? R.configure.runtime : {}, O = q.style, A = q.class, z = q.headerStyle, D = q.appendClass, E = q.appendStyle, F = q.titleExceedStyle, N = t(q.props ? q.props : {});
11
- const W = t(N.value.options ? N.value.options : []), B = N.value.formatType;
12
- N.value;
13
- const G = l(() => {
14
- let e3 = d(S, P);
15
- if (B) if (N.value.hasOptions) {
16
- let t2 = null;
17
- W.value && (t2 = W.value.filter((t3) => t3.value == e3)), t2 && t2.length > 0 && (e3 = t2[0].label);
18
- } else if ("custom" === B) {
19
- const t2 = w(R.pageContext, N.value.formatFunc);
20
- t2 && (e3 = t2.apply(t2, [{ pageContext: R.pageContext, configureObj: R.configure, value: e3 }]));
21
- } else e3 = h(e3, B, N.value);
22
- return e3 = null == e3 ? "" : e3, e3;
23
- }), H = t(null), J = t(null), K = t(null);
24
- return n(() => {
25
- a(() => {
26
- const e3 = G.value;
27
- T(e3, R.pageContext, R.configure, { formItemRef: H.value, componentRef: J.value, titleRef: K.value, value: e3, entity: R.pageContext.entity.data, pageData: R.pageContext.entity.page });
28
- });
29
- }), j2({ updateOptions: function(e3) {
30
- W.value = e3 || [];
31
- } }), (t2, l2) => {
32
- const n2 = u("el-form-item");
33
- return N.value.whetherTittle ? (s(), o("div", { key: 0, ref_key: "titleRef", ref: K, class: r(f(A)), style: p(f(O)) }, [c("div", I, v(N.value.title), 1)], 6)) : N.value.tittleShow ? (s(), i(n2, { key: 1, ref_key: "formItemRef", ref: H, required: !!N.value.required, class: r([f(A), N.value.contentAlign ? "form-item-align-" + N.value.contentAlign : "formNo" === N.value.showType ? "form-item-align-flex-end" : ""]), "label-width": N.value.labelWidth, style: p(f(O)) }, { label: y(() => [N.value.tittleShow ? (s(), o("div", { key: 0, ref_key: "titleRef", ref: K, style: p({ ...f(z), ...f(F) }) }, v(f(_)(N.value.title)), 5)) : g("", true)]), default: y(() => [c("div", { style: { display: "flex", width: "100%", "justify-content": "space-between" }, ref_key: "componentRef", ref: J, onClick: l2[0] || (l2[0] = (t3) => f(C)(t3, e2.pageContext, e2.configure, "click")) }, [c("span", b, [N.value.preIconValue || N.value.preText ? (s(), o("span", { key: 0, class: r({ "el-input__suffix": "outer" != N.value.iconPosition, "el-input-group__append": "outer" == N.value.iconPosition }), style: p(f(E)) }, [N.value.preIconType && N.value.preIconValue ? (s(), i(f(k), { key: 0, iconType: N.value.preIconType, iconValue: N.value.preIconValue }, null, 8, ["iconType", "iconValue"])) : g("", true), m(" " + v(f(_)(N.value.preText)), 1)], 6)) : g("", true), m("  " + v(G.value), 1)]), N.value.sufIconValue || N.value.sufText ? (s(), o("span", { key: 0, class: r({ "el-input__suffix": "outer" != N.value.iconPosition, "el-input-group__append": "outer" == N.value.iconPosition }) }, [N.value.sufIconType && N.value.sufIconValue ? (s(), i(f(k), { key: 0, style: {}, iconType: N.value.sufIconType, iconValue: N.value.sufIconValue }, null, 8, ["iconType", "iconValue"])) : g("", true), c("span", null, " " + v(f(_)(N.value.sufText)), 1)], 2)) : g("", true)], 512)]), _: 1 }, 8, ["required", "class", "label-width", "style"])) : (s(), o("span", { key: 2, style: { display: "flex", "justify-content": "space-between" }, onClick: l2[1] || (l2[1] = (t3) => f(C)(t3, e2.pageContext, e2.configure, "click")) }, [c("span", { style: { overflow: "hidden", "white-space": "nowrap" }, title: G.value }, v(N.value.prefixIcon) + " " + v(G.value), 9, V), N.value.suffixTxt ? (s(), o("span", { key: 0, class: r(f(D)), style: p(f(E)) }, v(N.value.suffixTxt), 7)) : g("", true)]));
34
- };
35
- } });
36
- export {
37
- j as default
38
- };
@@ -1,4 +0,0 @@
1
- import e from "./link-runtime.vue2.js";
2
- export {
3
- e as default
4
- };