super-page-runtime 1.0.16 → 1.3.13

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 (632) hide show
  1. package/dist/es/_virtual/_plugin-vue_export-helper.js +8 -0
  2. package/dist/es/assets/chart-themes/theme1.d.ts +4 -0
  3. package/dist/es/assets/chart-themes/theme1.js +4 -0
  4. package/dist/es/assets/chart-themes/theme2.d.ts +4 -0
  5. package/dist/es/assets/chart-themes/theme2.js +4 -0
  6. package/dist/es/assets/chart-themes/theme3.d.ts +4 -0
  7. package/dist/es/assets/chart-themes/theme3.js +4 -0
  8. package/dist/es/assets/file.png.js +4 -0
  9. package/dist/es/assets/folder.png.js +4 -0
  10. package/dist/es/components/runtime/index.d.ts +5 -0
  11. package/dist/es/components/runtime/utils/api/api-util.d.ts +1 -0
  12. package/dist/es/components/runtime/utils/api/api-util.js +4 -0
  13. package/dist/es/components/runtime/utils/api/page-expose-util.d.ts +1 -0
  14. package/dist/es/components/runtime/utils/api/page-expose-util.js +159 -0
  15. package/dist/es/components/runtime/utils/assemblys-config.js +20 -0
  16. package/dist/es/components/runtime/utils/barcode-util.d.ts +8 -0
  17. package/dist/es/components/runtime/utils/barcode-util.js +12 -0
  18. package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +140 -0
  19. package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +37 -0
  20. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +81 -0
  21. package/dist/es/components/runtime/utils/charts/chart-radar-util.js +55 -0
  22. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +46 -0
  23. package/dist/es/components/runtime/utils/charts/chart-util.d.ts +113 -0
  24. package/dist/es/components/runtime/utils/charts/chart-util.js +274 -0
  25. package/dist/es/components/runtime/utils/common-util.d.ts +33 -0
  26. package/dist/es/components/runtime/utils/common-util.js +120 -0
  27. package/dist/es/components/runtime/utils/eventBus.d.ts +7 -0
  28. package/dist/es/components/runtime/utils/eventBus.js +5 -0
  29. package/{lib/src → dist/es/components/runtime}/utils/events/event-util.d.ts +45 -1
  30. package/dist/es/components/runtime/utils/events/event-util.js +403 -0
  31. package/dist/es/components/runtime/utils/events/print-label.d.ts +5 -0
  32. package/dist/es/components/runtime/utils/events/print-label.js +100 -0
  33. package/{lib/src → dist/es/components/runtime}/utils/events/standard-event.d.ts +29 -3
  34. package/dist/es/components/runtime/utils/events/standard-event.js +971 -0
  35. package/dist/es/components/runtime/utils/events/validator-util.d.ts +25 -0
  36. package/dist/es/components/runtime/utils/events/validator-util.js +309 -0
  37. package/dist/es/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
  38. package/dist/es/components/runtime/utils/form/date-shortcuts.js +36 -0
  39. package/dist/es/components/runtime/utils/form/scan-util.js +93 -0
  40. package/{lib/src → dist/es/components/runtime}/utils/global-refs.d.ts +6 -0
  41. package/dist/es/components/runtime/utils/global-refs.js +57 -0
  42. package/dist/es/components/runtime/utils/i18n-util.d.ts +1 -0
  43. package/dist/es/components/runtime/utils/i18n-util.js +14 -0
  44. package/{lib/src → dist/es/components/runtime}/utils/interfaces/page-design-types.d.ts +32 -6
  45. package/dist/es/components/runtime/utils/interfaces/page-design-types.js +4 -0
  46. package/dist/es/components/runtime/utils/page-helper-util.d.ts +174 -0
  47. package/dist/es/components/runtime/utils/page-helper-util.js +386 -0
  48. package/{lib/src → dist/es/components/runtime}/utils/page-init-util.d.ts +12 -2
  49. package/dist/es/components/runtime/utils/page-init-util.js +203 -0
  50. package/dist/es/components/runtime/utils/page-permission-util.d.ts +26 -0
  51. package/dist/es/components/runtime/utils/page-permission-util.js +30 -0
  52. package/dist/es/components/runtime/utils/page-store.d.ts +46 -0
  53. package/dist/es/components/runtime/utils/page-store.js +26 -0
  54. package/dist/es/components/runtime/utils/store-util.js +13 -0
  55. package/dist/es/components/runtime/utils/store.js +4 -0
  56. package/dist/es/components/runtime/utils/table-utils.d.ts +34 -0
  57. package/dist/es/components/runtime/utils/table-utils.js +80 -0
  58. package/dist/es/components/runtime/utils/tree-utils.js +73 -0
  59. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +4 -0
  60. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +27 -0
  61. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +7 -0
  62. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +21 -0
  63. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +4 -0
  64. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +41 -0
  65. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +4 -0
  66. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +6 -0
  67. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +4 -0
  68. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +21 -0
  69. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +7 -0
  70. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +53 -0
  71. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +14 -0
  72. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +4 -0
  73. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +13 -0
  74. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +4 -0
  75. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +60 -0
  76. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +4 -0
  77. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +7 -0
  78. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +63 -0
  79. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +7 -0
  80. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +35 -0
  81. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +7 -0
  82. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +46 -0
  83. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +7 -0
  84. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +35 -0
  85. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +7 -0
  86. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +35 -0
  87. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
  88. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +419 -0
  89. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +6 -0
  90. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +4 -0
  91. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +10 -0
  92. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +4 -0
  93. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +45 -0
  94. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +4 -0
  95. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +15 -0
  96. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +4 -0
  97. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +4 -0
  98. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +255 -0
  99. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
  100. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +36 -0
  101. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +4 -0
  102. package/{lib → dist/es}/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +5 -5
  103. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +24 -0
  104. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +4 -0
  105. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
  106. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +35 -0
  107. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +4 -0
  108. package/{lib → dist/es}/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +5 -5
  109. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +19 -0
  110. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +4 -0
  111. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +7 -0
  112. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +29 -0
  113. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +4 -0
  114. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +21 -0
  115. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +4 -0
  116. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +18 -0
  117. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +7 -0
  118. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +29 -0
  119. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
  120. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +7 -0
  121. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +81 -0
  122. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +4 -0
  123. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +25 -0
  124. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +4 -0
  125. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +20 -0
  126. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +4 -0
  127. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +14 -0
  128. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +7 -0
  129. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +96 -0
  130. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +7 -0
  131. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +35 -0
  132. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +4 -0
  133. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +69 -0
  134. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +378 -0
  135. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +4 -0
  136. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +300 -0
  137. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +4 -0
  138. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +4 -0
  139. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +82 -0
  140. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +7 -0
  141. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +134 -0
  142. package/{lib → dist/es}/components/runtime/views/assemblys/error-render.vue.d.ts +4 -4
  143. package/dist/es/components/runtime/views/assemblys/error-render.vue.js +5 -0
  144. package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +4 -0
  145. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +4 -0
  146. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +50 -0
  147. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +38 -0
  148. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +4 -0
  149. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +4 -0
  150. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +69 -0
  151. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +4 -0
  152. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +90 -0
  153. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +4 -0
  154. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +55 -0
  155. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +4 -0
  156. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +24 -0
  157. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +4 -0
  158. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +75 -0
  159. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +4 -0
  160. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +28 -0
  161. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +4 -0
  162. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +82 -0
  163. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +4 -0
  164. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +37 -0
  165. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +4 -0
  166. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +32 -0
  167. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +7 -0
  168. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +16 -0
  169. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +4 -0
  170. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +73 -0
  171. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +4 -0
  172. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +102 -0
  173. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +4 -0
  174. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +97 -0
  175. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +4 -0
  176. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +16 -0
  177. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +4 -0
  178. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +36 -0
  179. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +4 -0
  180. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +44 -0
  181. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +4 -0
  182. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +28 -0
  183. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
  184. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +83 -0
  185. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +4 -0
  186. package/dist/es/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  187. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +129 -0
  188. package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +4 -0
  189. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +4 -0
  190. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +20 -0
  191. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +4 -0
  192. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +23 -0
  193. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +7 -0
  194. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +24 -0
  195. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +4 -0
  196. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +18 -0
  197. package/dist/es/components/runtime/views/home-chart.vue.d.ts +23 -0
  198. package/dist/es/components/runtime/views/home-chart.vue.js +47 -0
  199. package/dist/es/components/runtime/views/home-chart.vue2.js +4 -0
  200. package/{lib/components/super-page-dialog → dist/es/components/runtime/views}/super-page-dialog.vue.d.ts +7 -3
  201. package/dist/es/components/runtime/views/super-page-dialog.vue.js +26 -0
  202. package/dist/es/components/runtime/views/super-page-dialog.vue3.js +5 -0
  203. package/{lib → dist/es}/components/runtime/views/super-page.vue.d.ts +43 -10
  204. package/dist/es/components/runtime/views/super-page.vue.js +7 -0
  205. package/dist/es/components/runtime/views/super-page.vue2.js +262 -0
  206. package/dist/es/i18n/langs/cn.js +4 -0
  207. package/dist/es/i18n/langs/en.js +4 -0
  208. package/dist/es/index.d.ts +16 -0
  209. package/dist/es/index.js +30 -0
  210. package/dist/es/style.css +633 -0
  211. package/package.json +74 -67
  212. package/.eslintrc.cjs +0 -26
  213. package/.prettierrc.json +0 -8
  214. package/App.vue +0 -9
  215. package/components/index.ts +0 -17
  216. package/components/runtime/index.ts +0 -2
  217. package/components/runtime/utils/assemblys-config.js +0 -294
  218. package/components/runtime/views/assemblys/button/button/button-runtime.vue +0 -49
  219. package/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue +0 -26
  220. package/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue +0 -93
  221. package/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue +0 -59
  222. package/components/runtime/views/assemblys/chart/common/common-attr-assistant.vue +0 -32
  223. package/components/runtime/views/assemblys/chart/common/common-attr-base.vue +0 -60
  224. package/components/runtime/views/assemblys/chart/common/common-attr-drill.vue +0 -39
  225. package/components/runtime/views/assemblys/chart/common/common-attr-groupby.vue +0 -104
  226. package/components/runtime/views/assemblys/chart/common/common-attr-serieslist.vue +0 -145
  227. package/components/runtime/views/assemblys/chart/common/common-attr-sortby.vue +0 -119
  228. package/components/runtime/views/assemblys/chart/common/common-style-custom.vue +0 -28
  229. package/components/runtime/views/assemblys/chart/common/common-style-datazoom.vue +0 -45
  230. package/components/runtime/views/assemblys/chart/common/common-style-font-subtitle.vue +0 -78
  231. package/components/runtime/views/assemblys/chart/common/common-style-font-title.vue +0 -56
  232. package/components/runtime/views/assemblys/chart/common/common-style-grid.vue +0 -70
  233. package/components/runtime/views/assemblys/chart/common/common-style-legend.vue +0 -70
  234. package/components/runtime/views/assemblys/chart/common/common-style-tooltip.vue +0 -140
  235. package/components/runtime/views/assemblys/chart/common/common-style-xaxis.vue +0 -58
  236. package/components/runtime/views/assemblys/chart/common/common-style-yaxis.vue +0 -125
  237. package/components/runtime/views/assemblys/chart/common-series/common-attr-dataset.vue +0 -67
  238. package/components/runtime/views/assemblys/chart/common-series/common-attr-dynamic.vue +0 -57
  239. package/components/runtime/views/assemblys/chart/common-series/common-attr-testdatas.vue +0 -23
  240. package/components/runtime/views/assemblys/chart/common-series/common-style-label.vue +0 -209
  241. package/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue +0 -46
  242. package/components/runtime/views/assemblys/chart/pie/pie-runtime.vue +0 -56
  243. package/components/runtime/views/assemblys/chart/radar/radar-runtime.vue +0 -55
  244. package/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue +0 -57
  245. package/components/runtime/views/assemblys/common/common-attr-cursor.vue +0 -23
  246. package/components/runtime/views/assemblys/common/common-attr-size.vue +0 -54
  247. package/components/runtime/views/assemblys/common/common-select-table.vue +0 -287
  248. package/components/runtime/views/assemblys/common/common-style-background.vue +0 -46
  249. package/components/runtime/views/assemblys/common/common-style-border.vue +0 -37
  250. package/components/runtime/views/assemblys/common/common-style-custom.vue +0 -35
  251. package/components/runtime/views/assemblys/common/common-style-font-head.vue +0 -53
  252. package/components/runtime/views/assemblys/common/common-style-font.vue +0 -53
  253. package/components/runtime/views/assemblys/common/common-style-margin.vue +0 -34
  254. package/components/runtime/views/assemblys/common/common-style-padding.vue +0 -34
  255. package/components/runtime/views/assemblys/common/common-style-position.vue +0 -39
  256. package/components/runtime/views/assemblys/common/common-style-shadow.vue +0 -37
  257. package/components/runtime/views/assemblys/common/export-form-report-dialog.vue +0 -108
  258. package/components/runtime/views/assemblys/common/remove-signer-dialog.vue +0 -99
  259. package/components/runtime/views/assemblys/common/task-informition-dialog.vue +0 -69
  260. package/components/runtime/views/assemblys/common-attr-events.vue +0 -46
  261. package/components/runtime/views/assemblys/container/card/card-runtime.vue +0 -59
  262. package/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue +0 -59
  263. package/components/runtime/views/assemblys/container/container/container-runtime.vue +0 -41
  264. package/components/runtime/views/assemblys/container/flex/flex-runtime.vue +0 -35
  265. package/components/runtime/views/assemblys/container/form/form-runtime.vue +0 -37
  266. package/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue +0 -32
  267. package/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue +0 -54
  268. package/components/runtime/views/assemblys/container/tools/tools-runtime.vue +0 -99
  269. package/components/runtime/views/assemblys/data/bar-code/barcode-attr-base.vue +0 -117
  270. package/components/runtime/views/assemblys/data/bar-code/barcode-attr-event.vue +0 -14
  271. package/components/runtime/views/assemblys/data/bar-code/barcode-attr-style.vue +0 -25
  272. package/components/runtime/views/assemblys/data/bar-code/barcode-attr.vue +0 -28
  273. package/components/runtime/views/assemblys/data/bar-code/barcode-design.vue +0 -103
  274. package/components/runtime/views/assemblys/data/component/attr-header.vue +0 -69
  275. package/components/runtime/views/assemblys/data/component/attr-style.vue +0 -64
  276. package/components/runtime/views/assemblys/data/component/column-config.vue +0 -171
  277. package/components/runtime/views/assemblys/data/component/combinedHeader.vue +0 -96
  278. package/components/runtime/views/assemblys/data/component/composite-header.vue +0 -257
  279. package/components/runtime/views/assemblys/data/component/configuration-value.vue +0 -206
  280. package/components/runtime/views/assemblys/data/component/data-origin-tree.vue +0 -117
  281. package/components/runtime/views/assemblys/data/component/data-origin.vue +0 -260
  282. package/components/runtime/views/assemblys/data/component/formatting.vue +0 -200
  283. package/components/runtime/views/assemblys/data/component/in-parameter.vue +0 -56
  284. package/components/runtime/views/assemblys/data/component/querySetting.vue +0 -52
  285. package/components/runtime/views/assemblys/data/component/return-set-table.vue +0 -91
  286. package/components/runtime/views/assemblys/data/component/row-backgroud-color.vue +0 -58
  287. package/components/runtime/views/assemblys/data/component/select-data-table.vue +0 -86
  288. package/components/runtime/views/assemblys/data/table/main-table-runtime.vue +0 -858
  289. package/components/runtime/views/assemblys/data/table/sub-table-runtime.vue +0 -625
  290. package/components/runtime/views/assemblys/data/table/table-runtime.vue +0 -93
  291. package/components/runtime/views/assemblys/data/tree/tree-attr-base.vue +0 -137
  292. package/components/runtime/views/assemblys/data/tree/tree-attr-event.vue +0 -14
  293. package/components/runtime/views/assemblys/data/tree/tree-attr-style.vue +0 -55
  294. package/components/runtime/views/assemblys/data/tree/tree-attr.vue +0 -28
  295. package/components/runtime/views/assemblys/data/tree/tree-design.vue +0 -125
  296. package/components/runtime/views/assemblys/error-attr.vue +0 -15
  297. package/components/runtime/views/assemblys/error-render.vue +0 -17
  298. package/components/runtime/views/assemblys/form/cascader/cascader-design.vue +0 -288
  299. package/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue +0 -198
  300. package/components/runtime/views/assemblys/form/colors/colors-design.vue +0 -16
  301. package/components/runtime/views/assemblys/form/common/analytic-rule.vue +0 -148
  302. package/components/runtime/views/assemblys/form/common/attr-event.vue +0 -82
  303. package/components/runtime/views/assemblys/form/common/attr-header.vue +0 -54
  304. package/components/runtime/views/assemblys/form/common/attr-style.vue +0 -44
  305. package/components/runtime/views/assemblys/form/common/bar-code-rule.vue +0 -104
  306. package/components/runtime/views/assemblys/form/common/condition.vue +0 -147
  307. package/components/runtime/views/assemblys/form/common/data-origin.vue +0 -81
  308. package/components/runtime/views/assemblys/form/common/data-orign-in-parameter.vue +0 -64
  309. package/components/runtime/views/assemblys/form/common/dataorigin-input-table.vue +0 -106
  310. package/components/runtime/views/assemblys/form/common/default-value-setting.vue +0 -362
  311. package/components/runtime/views/assemblys/form/common/dimension-input.vue +0 -68
  312. package/components/runtime/views/assemblys/form/common/dynamic-data-source-setting.vue +0 -115
  313. package/components/runtime/views/assemblys/form/common/formatting-label.vue +0 -81
  314. package/components/runtime/views/assemblys/form/common/grid-num-select.vue +0 -43
  315. package/components/runtime/views/assemblys/form/common/icon-set-dialog.vue +0 -144
  316. package/components/runtime/views/assemblys/form/common/linkage.vue +0 -21
  317. package/components/runtime/views/assemblys/form/common/overall-height.vue +0 -20
  318. package/components/runtime/views/assemblys/form/common/overall-width.vue +0 -48
  319. package/components/runtime/views/assemblys/form/common/pre-suffix.vue +0 -33
  320. package/components/runtime/views/assemblys/form/common/rich-text.vue +0 -100
  321. package/components/runtime/views/assemblys/form/common/row-ul-li.vue +0 -55
  322. package/components/runtime/views/assemblys/form/common/setoption-table.vue +0 -86
  323. package/components/runtime/views/assemblys/form/common/size-input.vue +0 -65
  324. package/components/runtime/views/assemblys/form/common/suffixmodule.vue +0 -82
  325. package/components/runtime/views/assemblys/form/common/title.vue +0 -20
  326. package/components/runtime/views/assemblys/form/common/uploading.vue +0 -34
  327. package/components/runtime/views/assemblys/form/common/verification.vue +0 -79
  328. package/components/runtime/views/assemblys/form/common/voluntarily.vue +0 -27
  329. package/components/runtime/views/assemblys/form/custom/custom-attr-base.vue +0 -81
  330. package/components/runtime/views/assemblys/form/custom/custom-attr-event.vue +0 -14
  331. package/components/runtime/views/assemblys/form/custom/custom-attr-style.vue +0 -14
  332. package/components/runtime/views/assemblys/form/custom/custom-attr.vue +0 -28
  333. package/components/runtime/views/assemblys/form/custom/custom-design.vue +0 -57
  334. package/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue +0 -80
  335. package/components/runtime/views/assemblys/form/datetime/datetime-design.vue +0 -19
  336. package/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue +0 -60
  337. package/components/runtime/views/assemblys/form/divider/divider-runtime.vue +0 -44
  338. package/components/runtime/views/assemblys/form/file-picture/picture-design.vue +0 -80
  339. package/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue +0 -79
  340. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-base.vue +0 -142
  341. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-event.vue +0 -14
  342. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-style.vue +0 -14
  343. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr.vue +0 -28
  344. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-design.vue +0 -104
  345. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-base.vue +0 -75
  346. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-event.vue +0 -13
  347. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-style.vue +0 -14
  348. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr.vue +0 -28
  349. package/components/runtime/views/assemblys/form/image-upload/imageupload-design.vue +0 -76
  350. package/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue +0 -62
  351. package/components/runtime/views/assemblys/form/input-show/input-show-attr-base.vue +0 -68
  352. package/components/runtime/views/assemblys/form/input-show/input-show-attr-event.vue +0 -14
  353. package/components/runtime/views/assemblys/form/input-show/input-show-attr-style.vue +0 -70
  354. package/components/runtime/views/assemblys/form/input-show/input-show-attr.vue +0 -28
  355. package/components/runtime/views/assemblys/form/input-show/input-show-design.vue +0 -155
  356. package/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue +0 -142
  357. package/components/runtime/views/assemblys/form/label/label-runtime.vue +0 -143
  358. package/components/runtime/views/assemblys/form/link/link-runtime.vue +0 -70
  359. package/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue +0 -24
  360. package/components/runtime/views/assemblys/form/radio/radio-runtime.vue +0 -203
  361. package/components/runtime/views/assemblys/form/rate/rate-design.vue +0 -16
  362. package/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue +0 -169
  363. package/components/runtime/views/assemblys/form/select/select-runtime.vue +0 -247
  364. package/components/runtime/views/assemblys/form/slider/slider-design.vue +0 -16
  365. package/components/runtime/views/assemblys/form/switch/switch-runtime.vue +0 -63
  366. package/components/runtime/views/assemblys/form/tag/tag-runtime.vue +0 -65
  367. package/components/runtime/views/assemblys/form/text/text-design.vue +0 -19
  368. package/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue +0 -63
  369. package/components/runtime/views/assemblys/form/transfer/transfer-design.vue +0 -32
  370. package/components/runtime/views/assemblys/object-render.vue +0 -176
  371. package/components/runtime/views/assemblys/page/page-attr-base-20240429-1.vue +0 -179
  372. package/components/runtime/views/assemblys/page/page-attr-base.vue +0 -259
  373. package/components/runtime/views/assemblys/page/page-attr-events.vue +0 -50
  374. package/components/runtime/views/assemblys/page/page-attr-style.vue +0 -25
  375. package/components/runtime/views/assemblys/page/page-attr.vue +0 -84
  376. package/components/runtime/views/assemblys/page/variable-dialog.vue +0 -242
  377. package/components/runtime/views/assemblys/workflow/component/combination.vue +0 -206
  378. package/components/runtime/views/assemblys/workflow/component/condition-dialog.vue +0 -99
  379. package/components/runtime/views/assemblys/workflow/component/event-dialog.vue +0 -278
  380. package/components/runtime/views/assemblys/workflow/component/journal-set-dialog.vue +0 -174
  381. package/components/runtime/views/assemblys/workflow/component/logical-setup-dialog.vue +0 -155
  382. package/components/runtime/views/assemblys/workflow/component/rule-dialog.vue +0 -47
  383. package/components/runtime/views/assemblys/workflow/component/set-dialog.vue +0 -130
  384. package/components/runtime/views/assemblys/workflow/component/task-trigger-dialog.vue +0 -96
  385. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-base.vue +0 -43
  386. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-event.vue +0 -14
  387. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-style.vue +0 -27
  388. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr.vue +0 -28
  389. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-design.vue +0 -17
  390. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-base.vue +0 -60
  391. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-event.vue +0 -14
  392. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-style.vue +0 -27
  393. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr.vue +0 -28
  394. package/components/runtime/views/assemblys/workflow/text-history/texthistory-design.vue +0 -17
  395. package/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue +0 -64
  396. package/components/runtime/views/render/page-view.vue +0 -80
  397. package/components/runtime/views/super-page copy.vue +0 -61
  398. package/components/runtime/views/super-page.vue +0 -667
  399. package/components/super-page-dialog/index.ts +0 -2
  400. package/components/super-page-dialog/super-page-dialog.vue +0 -267
  401. package/components/wf-editor/index.ts +0 -2
  402. package/components/wf-editor/wf-editor.vue +0 -15
  403. package/cypress/e2e/example.cy.ts +0 -8
  404. package/cypress/e2e/tsconfig.json +0 -10
  405. package/cypress/fixtures/example.json +0 -5
  406. package/cypress/support/commands.ts +0 -39
  407. package/cypress/support/e2e.ts +0 -20
  408. package/cypress.config.ts +0 -8
  409. package/env.d.ts +0 -1
  410. package/index.html +0 -13
  411. package/lib/_virtual/_plugin-vue_export-helper.js +0 -9
  412. package/lib/components/index.d.ts +0 -5
  413. package/lib/components/runtime/index.d.ts +0 -3
  414. package/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +0 -24
  415. package/lib/components/runtime/views/assemblys/object-render.vue.d.ts +0 -17
  416. package/lib/components/super-page-dialog/index.d.ts +0 -3
  417. package/lib/components/wf-editor/index.d.ts +0 -3
  418. package/lib/components/wf-editor/wf-editor.vue.d.ts +0 -2
  419. package/lib/index.js +0 -8
  420. package/lib/runtime/index.js +0 -3
  421. package/lib/runtime/utils/assemblys-config.js +0 -258
  422. package/lib/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -3
  423. package/lib/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -54
  424. package/lib/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -3
  425. package/lib/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -35
  426. package/lib/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -3
  427. package/lib/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -110
  428. package/lib/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -3
  429. package/lib/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
  430. package/lib/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -3
  431. package/lib/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -42
  432. package/lib/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -3
  433. package/lib/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -50
  434. package/lib/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -3
  435. package/lib/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -50
  436. package/lib/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -3
  437. package/lib/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -51
  438. package/lib/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -141
  439. package/lib/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -3
  440. package/lib/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -127
  441. package/lib/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -3
  442. package/lib/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -104
  443. package/lib/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -3
  444. package/lib/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -3
  445. package/lib/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -72
  446. package/lib/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -3
  447. package/lib/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -73
  448. package/lib/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -3
  449. package/lib/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -78
  450. package/lib/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -3
  451. package/lib/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -42
  452. package/lib/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -3
  453. package/lib/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -43
  454. package/lib/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -3
  455. package/lib/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -29
  456. package/lib/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -3
  457. package/lib/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -68
  458. package/lib/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -3
  459. package/lib/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -74
  460. package/lib/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -640
  461. package/lib/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -3
  462. package/lib/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -452
  463. package/lib/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -3
  464. package/lib/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -3
  465. package/lib/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -82
  466. package/lib/runtime/views/assemblys/error-render.vue.js +0 -22
  467. package/lib/runtime/views/assemblys/error-render.vue2.js +0 -3
  468. package/lib/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -3
  469. package/lib/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -156
  470. package/lib/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -3
  471. package/lib/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -82
  472. package/lib/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -3
  473. package/lib/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -59
  474. package/lib/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -3
  475. package/lib/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -40
  476. package/lib/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -3
  477. package/lib/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -74
  478. package/lib/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -3
  479. package/lib/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -63
  480. package/lib/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -3
  481. package/lib/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -127
  482. package/lib/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -3
  483. package/lib/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -133
  484. package/lib/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -3
  485. package/lib/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -77
  486. package/lib/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -3
  487. package/lib/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -29
  488. package/lib/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -3
  489. package/lib/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -157
  490. package/lib/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -3
  491. package/lib/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -174
  492. package/lib/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -3
  493. package/lib/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -201
  494. package/lib/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -3
  495. package/lib/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -63
  496. package/lib/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -3
  497. package/lib/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -63
  498. package/lib/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -3
  499. package/lib/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -65
  500. package/lib/runtime/views/assemblys/object-render.vue.js +0 -142
  501. package/lib/runtime/views/assemblys/object-render.vue2.js +0 -3
  502. package/lib/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -3
  503. package/lib/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -61
  504. package/lib/runtime/views/super-page.vue.js +0 -479
  505. package/lib/runtime/views/super-page.vue2.js +0 -3
  506. package/lib/src/assets/chart-themes/theme1.js +0 -7
  507. package/lib/src/assets/chart-themes/theme2.js +0 -7
  508. package/lib/src/assets/chart-themes/theme3.js +0 -7
  509. package/lib/src/utils/api/api-util.d.ts +0 -11
  510. package/lib/src/utils/api/api-util.js +0 -128
  511. package/lib/src/utils/charts/chart-util.js +0 -15
  512. package/lib/src/utils/common-util.d.ts +0 -11
  513. package/lib/src/utils/common-util.js +0 -81
  514. package/lib/src/utils/events/event-util.js +0 -525
  515. package/lib/src/utils/events/standard-event.js +0 -1623
  516. package/lib/src/utils/events/validator-util.d.ts +0 -4
  517. package/lib/src/utils/events/validator-util.js +0 -389
  518. package/lib/src/utils/global-refs.js +0 -65
  519. package/lib/src/utils/interfaces/page-design-types.js +0 -9
  520. package/lib/src/utils/page-helper-util.d.ts +0 -87
  521. package/lib/src/utils/page-helper-util.js +0 -503
  522. package/lib/src/utils/page-init-util.js +0 -200
  523. package/lib/src/utils/store-util.js +0 -17
  524. package/lib/src/utils/store.js +0 -3
  525. package/lib/src/utils/table-utils.js +0 -23
  526. package/lib/super-page-dialog/index.js +0 -3
  527. package/lib/super-page-dialog/super-page-dialog.vue.js +0 -73
  528. package/lib/super-page-dialog/super-page-dialog.vue2.js +0 -3
  529. package/lib/wf-editor/index.js +0 -3
  530. package/lib/wf-editor/wf-editor.css +0 -4
  531. package/lib/wf-editor/wf-editor.vue.js +0 -15
  532. package/main.ts +0 -11
  533. package/package-ws.json +0 -70
  534. package/public/favicon.ico +0 -0
  535. package/src/assets/base.css +0 -86
  536. package/src/assets/chart-themes/theme1.ts +0 -6
  537. package/src/assets/chart-themes/theme2.ts +0 -6
  538. package/src/assets/chart-themes/theme3.ts +0 -6
  539. package/src/assets/images/button/button-group.png +0 -0
  540. package/src/assets/images/button/button.png +0 -0
  541. package/src/assets/images/chart/chart-column.png +0 -0
  542. package/src/assets/images/chart/chart-gauge.png +0 -0
  543. package/src/assets/images/chart/chart-pie.png +0 -0
  544. package/src/assets/images/chart/chart-radar.png +0 -0
  545. package/src/assets/images/chart/chart-scatter.png +0 -0
  546. package/src/assets/images/container/container-card.png +0 -0
  547. package/src/assets/images/container/container-collapse.png +0 -0
  548. package/src/assets/images/container/container-container.png +0 -0
  549. package/src/assets/images/container/container-flex.png +0 -0
  550. package/src/assets/images/container/container-form.png +0 -0
  551. package/src/assets/images/container/container-iframe.png +0 -0
  552. package/src/assets/images/container/container-normal.png +0 -0
  553. package/src/assets/images/container/container-tabs.png +0 -0
  554. package/src/assets/images/container/container-tools.png +0 -0
  555. package/src/assets/images/data/data-process.png +0 -0
  556. package/src/assets/images/data/data-step.png +0 -0
  557. package/src/assets/images/data/data-table-column.png +0 -0
  558. package/src/assets/images/data/data-table.png +0 -0
  559. package/src/assets/images/data/data-timeline.png +0 -0
  560. package/src/assets/images/data/data-tree.png +0 -0
  561. package/src/assets/images/form/form-cascader.png +0 -0
  562. package/src/assets/images/form/form-check.png +0 -0
  563. package/src/assets/images/form/form-color.png +0 -0
  564. package/src/assets/images/form/form-count.png +0 -0
  565. package/src/assets/images/form/form-custom.png +0 -0
  566. package/src/assets/images/form/form-date.png +0 -0
  567. package/src/assets/images/form/form-dept.png +0 -0
  568. package/src/assets/images/form/form-divider.png +0 -0
  569. package/src/assets/images/form/form-file.png +0 -0
  570. package/src/assets/images/form/form-image-upload.png +0 -0
  571. package/src/assets/images/form/form-img.png +0 -0
  572. package/src/assets/images/form/form-input.png +0 -0
  573. package/src/assets/images/form/form-label.png +0 -0
  574. package/src/assets/images/form/form-link.png +0 -0
  575. package/src/assets/images/form/form-radio.png +0 -0
  576. package/src/assets/images/form/form-scan.png +0 -0
  577. package/src/assets/images/form/form-score.png +0 -0
  578. package/src/assets/images/form/form-select.png +0 -0
  579. package/src/assets/images/form/form-slider.png +0 -0
  580. package/src/assets/images/form/form-space.png +0 -0
  581. package/src/assets/images/form/form-switch.png +0 -0
  582. package/src/assets/images/form/form-text.png +0 -0
  583. package/src/assets/images/form/form-textarea.png +0 -0
  584. package/src/assets/images/form/form-transfer.png +0 -0
  585. package/src/assets/images/form/form-zoom.png +0 -0
  586. package/src/assets/images/group-button.png +0 -0
  587. package/src/assets/images/group-chart.png +0 -0
  588. package/src/assets/images/group-container.png +0 -0
  589. package/src/assets/images/group-data.png +0 -0
  590. package/src/assets/images/group-form.png +0 -0
  591. package/src/assets/images/group-workflow.png +0 -0
  592. package/src/assets/images/workflow/workflow-button.png +0 -0
  593. package/src/assets/images/workflow/workflow-history-texts.png +0 -0
  594. package/src/assets/images/workflow/workflow-history.png +0 -0
  595. package/src/assets/images/workflow/workflow-imagehistory.png +0 -0
  596. package/src/assets/images/workflow/workflow-texthistory .png +0 -0
  597. package/src/assets/logo.svg +0 -1
  598. package/src/assets/main.css +0 -1
  599. package/src/i18n/langs/cn.js +0 -52
  600. package/src/i18n/langs/en.js +0 -52
  601. package/src/stores/counter.ts +0 -12
  602. package/src/utils/api/api-util.ts +0 -176
  603. package/src/utils/charts/chart-util.ts +0 -41
  604. package/src/utils/common-util.ts +0 -96
  605. package/src/utils/container-style-util.ts +0 -237
  606. package/src/utils/eventBus.ts +0 -14
  607. package/src/utils/events/event-util.ts +0 -790
  608. package/src/utils/events/jump-page-util.ts +0 -0
  609. package/src/utils/events/standard-event.ts +0 -2075
  610. package/src/utils/events/validator-util.ts +0 -474
  611. package/src/utils/global-refs.ts +0 -160
  612. package/src/utils/interfaces/page-design-types.ts +0 -259
  613. package/src/utils/page-helper-util.ts +0 -850
  614. package/src/utils/page-init-util.ts +0 -291
  615. package/src/utils/page-permission-util.ts +0 -521
  616. package/src/utils/store-util.ts +0 -41
  617. package/src/utils/store.ts +0 -3
  618. package/src/utils/table-utils.ts +0 -31
  619. package/tsconfig copy.json +0 -17
  620. package/tsconfig.app copy.json +0 -14
  621. package/tsconfig.app.json +0 -14
  622. package/tsconfig.json +0 -17
  623. package/tsconfig.node copy.json +0 -19
  624. package/tsconfig.node.json +0 -19
  625. package/tsconfig.vitest copy.json +0 -11
  626. package/tsconfig.vitest.json +0 -11
  627. package/vite.config copy.ts +0 -109
  628. package/vite.config.ts +0 -86
  629. package/vitest.config.ts +0 -14
  630. /package/{lib/src → dist/es/components/runtime}/utils/store-util.d.ts +0 -0
  631. /package/{lib/src → dist/es/components/runtime}/utils/store.d.ts +0 -0
  632. /package/{lib → dist/es}/favicon.ico +0 -0
@@ -1,850 +0,0 @@
1
- /**
2
- * 页面设计时的帮助类
3
- */
4
- import type { PageContext, Component } from './interfaces/page-design-types'
5
-
6
- import http from 'agilebuilder-ui/src/utils/request'
7
- import dayjs from 'dayjs'
8
- import { executeExpression } from 'agilebuilder-ui/src/utils/calculator/calculator-util'
9
- import { getComponentRef } from './global-refs'
10
-
11
- /**
12
- * 获取选项组类需要查询的配置信息
13
- * @param component
14
- * @param pageContext
15
- * @returns
16
- */
17
- export function getComponentOptionConfigs(component: Component, pageContext: PageContext) {
18
- if (!component.props || !component.props.dataOrigin) {
19
- return
20
- }
21
- //获取数据源配置
22
- const dataOriginInfo = component.props.dataOrigin
23
- const infoObj: any = {
24
- uuid: component.uuid
25
- }
26
- if (dataOriginInfo.optionValueSetType == 'optionGroup') {
27
- infoObj.type = 'optionGroup'
28
- infoObj.props = {
29
- code: dataOriginInfo.optionGroup
30
- }
31
- } else if (dataOriginInfo.optionValueSetType == 'dynamicData') {
32
- //默认都查询一次
33
- infoObj.type = 'dynamicData'
34
- infoObj.filterType = dataOriginInfo.filterType //是否远程查询
35
- infoObj.props = {
36
- code: dataOriginInfo.dynamicDataSourceCode
37
- }
38
- } else if (dataOriginInfo.optionValueSetType == 'dataTable') {
39
- infoObj.filterType = dataOriginInfo.filterType //是否远程查询
40
- //默认都查询一次
41
- const tempObj = getTableQueryInfo(dataOriginInfo, pageContext)
42
- Object.assign(infoObj, tempObj)
43
- } else if (dataOriginInfo.optionValueSetType == 'service') {
44
- infoObj.filterType = dataOriginInfo.filterType //是否远程查询
45
- //获取查询所有配置信息
46
- const tempObj = getServiceQueryInfo(dataOriginInfo, pageContext)
47
- Object.assign(infoObj, tempObj)
48
- }
49
- //有符合条件的对象时,才设置
50
- if (infoObj.type) {
51
- return infoObj
52
- } else {
53
- return undefined
54
- }
55
- }
56
-
57
- /**
58
- * 初始化需要查询数据的信息
59
- * @param component
60
- * @param pageDesign
61
- * @returns
62
- */
63
- export function initComponentDataSources(component: Component, pageContext: PageContext) {
64
- if (!component.props || !component.props.dataOrigin) {
65
- return
66
- }
67
- //获取数据源配置
68
- const dataOriginInfo = component.props.dataOrigin
69
- const infoObj: any = {
70
- uuid: component.uuid
71
- }
72
- if (dataOriginInfo.optionValueSetType == 'optionGroup') {
73
- infoObj.type = 'optionGroup'
74
- infoObj.props = {
75
- code: dataOriginInfo.optionGroup
76
- }
77
- } else if (dataOriginInfo.optionValueSetType == 'dynamicData') {
78
- //默认都查询一次
79
- infoObj.type = 'dynamicData'
80
- infoObj.props = {
81
- code: dataOriginInfo.dynamicDataSourceCode
82
- }
83
- } else if (dataOriginInfo.optionValueSetType == 'dataTable') {
84
- //默认都查询一次
85
- const tempObj = getTableQueryInfo(dataOriginInfo, pageContext)
86
- Object.assign(infoObj, tempObj)
87
- }
88
- //设置到初始化对象中
89
- if (infoObj.type) {
90
- //无对象时初始化
91
- if (!pageContext.initDataSources) {
92
- pageContext.initDataSources = []
93
- }
94
- pageContext.initDataSources.push(infoObj)
95
- }
96
- }
97
-
98
- /**
99
- * 获取数据表的查询信息
100
- * @param dataOriginInfo
101
- */
102
- function getTableQueryInfo(dataOriginInfo: any, pageContext: PageContext) {
103
- //默认都查询一次
104
- const infoObj: any = {}
105
- infoObj.type = 'dataTable'
106
- infoObj.props = {
107
- tableName: dataOriginInfo.tableName,
108
- systemCode: dataOriginInfo.tableSysCode ? dataOriginInfo.tableSysCode : pageContext.systemCode,
109
- systemVersion: dataOriginInfo.tableSysCode
110
- ? dataOriginInfo.tableSysVersion
111
- : pageContext.systemVersion
112
- }
113
- if (dataOriginInfo.sortFields) {
114
- const sortFields: any = []
115
- for (const field of dataOriginInfo.sortFields) {
116
- if (field.name) {
117
- sortFields.push({
118
- prop: field.name,
119
- order: field.type ? field.type : 'asc'
120
- })
121
- }
122
- }
123
- infoObj.props.sorts = sortFields
124
- }
125
- //过滤条件
126
- //识别出监控的字段
127
- const autoMonitorFields: any = []
128
- if (dataOriginInfo.filterList) {
129
- const searchForm: any = []
130
- for (const f of dataOriginInfo.filterList) {
131
- if (!f.propName) {
132
- continue
133
- }
134
- if (!f.propDbName) {
135
- f.propDbName = f.propName
136
- }
137
- const tempObj: any = {}
138
- Object.assign(tempObj, f)
139
- //检查是否有以数据模型、TASK和Page的对象,有时纳入自动监控
140
- const paramsNames: any = getParamNames(f.propValue)
141
- for (const p of paramsNames) {
142
- if (p && (p.startsWith('${data.') || p.startsWith('${task.') || p.startsWith('${page.'))) {
143
- if (!autoMonitorFields.includes(p)) {
144
- autoMonitorFields.push(p)
145
- }
146
- }
147
- }
148
- if (f.propValue) {
149
- formatVariableValue
150
- }
151
- //设置tempObj的值
152
- // if (tempObj.propValue) {
153
- // //系统参数和默认参数在后端解析
154
- // if (
155
- // !tempObj.propValue.startsWith('${system.') &&
156
- // !tempObj.propValue.startsWith('${context.')
157
- // ) {
158
- // //前端格式化
159
- // tempObj.propValue = formatVariableValue(pageContext, tempObj.propValue)
160
- // }
161
- // }
162
- searchForm.push(tempObj)
163
- }
164
- infoObj.props.searchForm = searchForm
165
- }
166
- infoObj.props.monitorFields = autoMonitorFields
167
- //获取需要查询的字段
168
- const queryFields: any = []
169
- //选项值字段
170
- if (dataOriginInfo.tableValueField) {
171
- //queryFields.push(dataOriginInfo.tableValueField)
172
-
173
- infoObj.props.valueField = dataOriginInfo.tableValueField
174
- }
175
- //选项名字段
176
- if (dataOriginInfo.tableLableField && queryFields.indexOf(dataOriginInfo.tableLableField) == -1) {
177
- //queryFields.push(dataOriginInfo.tableLableField)
178
-
179
- infoObj.props.lableField = dataOriginInfo.tableLableField
180
- }
181
- //自动设置的字段
182
- if (dataOriginInfo.autoSets) {
183
- for (const field of dataOriginInfo.autoSets) {
184
- if (field.source && queryFields.indexOf(field.source) == -1) {
185
- queryFields.push(field.source)
186
- }
187
- }
188
- }
189
- infoObj.props.queryFields = queryFields
190
- //分页数
191
- infoObj.props.pageSize = dataOriginInfo.displayQuantity
192
- //获取需要监控的字段
193
-
194
- return infoObj
195
- }
196
-
197
- /**
198
- * 获取服务类的配置信息
199
- * @param dataOriginInfo
200
- * @param pageContext
201
- * @returns
202
- */
203
- function getServiceQueryInfo(dataOriginInfo: any, pageContext: PageContext) {
204
- //默认都查询一次
205
- const infoObj: any = {}
206
- infoObj.type = 'service'
207
- infoObj.props = {
208
- serivceCode: dataOriginInfo.serviceCode,
209
- systemCode: dataOriginInfo.tableSysCode ? dataOriginInfo.tableSysCode : pageContext.systemCode,
210
- systemVersion: dataOriginInfo.tableSysCode
211
- ? dataOriginInfo.tableSysCode
212
- : pageContext.systemCode
213
- }
214
- //入参条件
215
- if (dataOriginInfo.serviceInputs) {
216
- const searchForm: any = []
217
- for (const f of dataOriginInfo.serviceInputs) {
218
- if (!f.name || f.value) {
219
- continue
220
- }
221
- const tempObj: any = {}
222
- Object.assign(tempObj, f)
223
- //设置tempObj的值
224
- // if (tempObj.propValue) {
225
- // //系统参数和默认参数在后端解析
226
- // if (
227
- // !tempObj.propValue.startsWith('${system.') &&
228
- // !tempObj.propValue.startsWith('${context.')
229
- // ) {
230
- // //前端格式化
231
- // tempObj.propValue = formatVariableValue(pageContext, tempObj.propValue)
232
- // }
233
- // }
234
- searchForm.push(tempObj)
235
- }
236
- infoObj.props.inputs = searchForm
237
- }
238
- //数据源字段
239
- infoObj.props.dataSetField = dataOriginInfo.serviceDataSetField
240
- //数据值字段
241
- infoObj.props.valueField = dataOriginInfo.serviceValueField
242
- //数据值字段
243
- infoObj.props.labelField = dataOriginInfo.serviceLabelField
244
- return infoObj
245
- }
246
-
247
- /**
248
- * 初始化数据源
249
- * @param pageContext 页面上下文
250
- * @param dataSourceConfs 初始化数据配置参数
251
- */
252
- export function updateOptionDatasources(
253
- pageContext: PageContext,
254
- dataSourceConfs: Array<any>,
255
- query: any
256
- ): Promise<any> {
257
- return new Promise((resolve, reject) => {
258
- if (!dataSourceConfs || dataSourceConfs.length == 0) {
259
- reject(new Error('无需查询的配置!'))
260
- return
261
- }
262
- const entityData: any = pageContext.entity ? pageContext.entity : {}
263
- //扩展参数
264
- const additionalParamMap: any = {}
265
- if (entityData.request) {
266
- Object.assign(additionalParamMap, entityData.request)
267
- }
268
- if (entityData.page) {
269
- Object.assign(additionalParamMap, entityData.page)
270
- }
271
- //查询条件
272
- additionalParamMap.query = query
273
-
274
- const param: any = {
275
- entityMap: entityData.data,
276
- additionalParamMap: additionalParamMap,
277
- dataSourceList: dataSourceConfs,
278
- systemCode: pageContext.systemCode,
279
- query: query
280
- }
281
- const url = window['$vueApp'].config.globalProperties.baseAPI + 'common/common-data/find-datas'
282
- //const url = window['$vueApp'].config.globalProperties.baseAPI + '/common/common-data/xxxx'
283
- http
284
- .post(url, param)
285
- .then((result: any) => {
286
- if (!pageContext.optionSourceMap) {
287
- pageContext.optionSourceMap = {}
288
- }
289
- for (const uuid in result) {
290
- //缓存到页面
291
- pageContext.optionSourceMap[uuid] = result[uuid]
292
- //更新对象
293
- const componentObj = getComponentRef(pageContext, uuid)
294
- if (componentObj && componentObj.updateOptions) {
295
- componentObj.updateOptions(result[uuid])
296
- }
297
- }
298
- console.log('查询选项数据完成', result)
299
- resolve(result)
300
- })
301
- .catch((error: any) => {
302
- console.log('查询选项数据失败', error)
303
- //失败时
304
- reject(error)
305
- })
306
- })
307
- }
308
-
309
- /**
310
- * 从页面缓存中获取查询到的选项组数据
311
- * @param pageContext
312
- * @param configure
313
- */
314
- export function getOptionDatasFromPage(pageContext: PageContext, configure: Component) {
315
- if (!pageContext || !pageContext.optionSourceMap || !configure) {
316
- return []
317
- }
318
- const cacheOptions = pageContext.optionSourceMap[configure.uuid]
319
- return cacheOptions ? cacheOptions : []
320
- }
321
-
322
- /**
323
- * 初始化数据源
324
- * @param pageContext 页面上下文
325
- * @param dataSourceConfs 初始化数据配置参数
326
- * @param query 查询条件
327
- */
328
- export function queryOptionDatasources(
329
- pageContext: PageContext,
330
- dataSourceConf: any,
331
- query: any
332
- ): Promise<any> {
333
- return updateOptionDatasources(pageContext, dataSourceConf ? [dataSourceConf] : [], query)
334
- }
335
-
336
- /**
337
- * 根据查询条件远程查询
338
- * @param component
339
- * @param query 模糊查询内容
340
- */
341
- export function queryOptions(
342
- component: Component,
343
- pageContext: PageContext,
344
- query: string
345
- ): Promise<any> {
346
- if (!component.props || !component.props.dataOrigin) {
347
- //返回空的数据
348
- return new Promise(function (resolve, reject) {
349
- resolve([])
350
- })
351
- }
352
- //获取数据源配置
353
- const dataOriginInfo = component.props.dataOrigin
354
- if (dataOriginInfo.optionValueSetType == 'dynamicData') {
355
- if (!dataOriginInfo.dynamicDataSourceCode) {
356
- //返回错误
357
- return new Promise(function (resolve, reject) {
358
- throw new Error('未指定动态数据源!')
359
- })
360
- }
361
- return queryByDynamicCode(dataOriginInfo.dynamicDataSourceCode, query)
362
- } else if (dataOriginInfo.optionValueSetType == 'dataTable') {
363
- if (!dataOriginInfo.tableName) {
364
- //返回错误
365
- return new Promise(function (resolve, reject) {
366
- throw new Error('未指定查询的数据表!')
367
- })
368
- }
369
- const tempObj = getTableQueryInfo(dataOriginInfo, pageContext)
370
- return queryByTable(tempObj)
371
- } else {
372
- //返回空的数据
373
- return new Promise(function (resolve, reject) {
374
- throw new Error('无有效的查询设置!')
375
- })
376
- }
377
- }
378
-
379
- /**
380
- * 根据动态数据源编码查询数据
381
- * @param dynamicCode
382
- */
383
- function queryByDynamicCode(dynamicCode: string, query: string): Promise<any> {
384
- const param = {
385
- code: dynamicCode,
386
- query: query
387
- }
388
- return http.post('', param)
389
- }
390
-
391
- /**
392
- * 根据数据库配置信息查询数据
393
- * @param dynamicCode
394
- */
395
- function queryByTable(tableQueryInfo: any): Promise<any> {
396
- const param: any = tableQueryInfo.props
397
- return http.post('', param)
398
- }
399
-
400
- /**
401
- * 根据查询条件远程查询
402
- * @param component
403
- * @param query 模糊查询内容
404
- */
405
- export function autoSetAfterSelect(
406
- component: Component,
407
- pageContext: PageContext,
408
- autoSets: any[],
409
- selItems: any[]
410
- ) {
411
- if (!autoSets || autoSets.length == 0) {
412
- return
413
- }
414
- const entity: any = pageContext.entity ? pageContext.entity : {}
415
- for (const as of autoSets) {
416
- if (!as.source || !as.target) {
417
- continue
418
- }
419
- const values = getValuesByField(selItems, as.source)
420
-
421
- let targetField: string = as.target
422
- if (!targetField || !targetField.startsWith('${')) {
423
- continue
424
- }
425
- targetField = targetField.substring(2, targetField.length - 1)
426
- const fields = targetField.split('.')
427
- //TODO:可检查目标字段是否有绑定组件,且该组件是否多选
428
- //默认为逗号连接
429
- setVariableValue(entity, fields, values.join(','))
430
- }
431
- }
432
- /**
433
- * 根据字段名获取值
434
- * @param items
435
- * @param fieldName
436
- */
437
- function getValuesByField(items: any, fieldName: string): any[] {
438
- if (!items) {
439
- return ['']
440
- } else {
441
- const values = []
442
- for (const i of items) {
443
- let val: any = i[fieldName]
444
- if (val == undefined || val == null) {
445
- val = ''
446
- }
447
- values.push(val)
448
- }
449
- return values
450
- }
451
- }
452
-
453
- /**
454
- *
455
- * @param entity
456
- * @param fields
457
- * @returns
458
- */
459
- export function getVariableValue(entity: any, fields: string[]): any {
460
- if (!entity || !fields || fields.length == 0) {
461
- return
462
- }
463
- let tempObj = entity
464
- for (let i = 0; i < fields.length; i++) {
465
- if (tempObj == undefined) {
466
- return tempObj
467
- }
468
- const fieldName = fields[i]
469
- tempObj = tempObj[fieldName]
470
- }
471
- return tempObj
472
- }
473
-
474
- /**
475
- * 设置参数值
476
- * @param entity
477
- * @param fields
478
- * @param newValue 新的值
479
- */
480
- export function setVariableValue(entity: any, fields: string[], newValue: any) {
481
- if (!entity || !fields || fields.length == 0) {
482
- return
483
- }
484
- let tempObj = entity
485
- for (let i = 0; i < fields.length; i++) {
486
- const fieldName = fields[i]
487
- if (i + 1 == fields.length) {
488
- tempObj[fieldName] = newValue
489
- } else {
490
- tempObj = tempObj[fieldName]
491
- //无值时设置默认值
492
- if (tempObj == undefined) {
493
- tempObj[fieldName] = {}
494
- tempObj = tempObj[fieldName]
495
- }
496
- }
497
- }
498
- }
499
-
500
- /**
501
- * 格式化变量值
502
- * @param pageContext
503
- * @param variable
504
- */
505
- export function formatVariableValue(pageContext: PageContext, variable: string): any {
506
- if (!pageContext || variable == '' || variable == null || variable == undefined) {
507
- return variable
508
- }
509
- const entity: any = pageContext.entity ? pageContext.entity : {}
510
-
511
- const t: any = getParamNames(variable)
512
- for (const c in t) {
513
- const param = t[c]
514
- const paramValue = getValueFromVariable(entity, param)
515
- //替换
516
- variable = variable.replace(
517
- param,
518
- paramValue == undefined || paramValue == null ? '' : paramValue
519
- )
520
- }
521
- return variable
522
- }
523
-
524
- /**
525
- * 获取参数名
526
- * @param variable
527
- * @returns
528
- */
529
- function getParamNames(variable: string) {
530
- if (!variable) {
531
- return []
532
- }
533
- const reg = /\$\{[^\{|\}]+\}/g //匹配如:${obj.ID}aasdfd${obj.name}
534
- return variable.match(reg)
535
- }
536
-
537
- /**
538
- * 根据类型格式化对象
539
- * @param value
540
- * @param formatInfo
541
- * @returns
542
- */
543
- export function formatValueByType(value: any, formatType: string, formatInfo: any): any {
544
- if (!formatType || value == '' || value == null || value == undefined) {
545
- return value
546
- }
547
- console.log('aaa', value, formatType, formatInfo)
548
- formatInfo = formatInfo ? formatInfo : {}
549
- if (formatType == 'number' || formatType == 'percent') {
550
- if (isNaN(value)) {
551
- return value
552
- }
553
- //默认为2
554
- let precision: any = parseInt(formatInfo.decimalDigit)
555
- //默认2位小数
556
- if (precision == null || isNaN(precision)) {
557
- precision = -1
558
- }
559
- value = parseFloat(value)
560
- //百分比时乘以100
561
- if (formatType == 'percent') {
562
- value = value * 100
563
- }
564
- //有小数位时才处理
565
- if (precision > -1) {
566
- value = parseFloat(value.toFixed(precision))
567
- }
568
- if (formatType == 'percent') {
569
- value = value + '%'
570
- } else {
571
- //千分位
572
- if (formatInfo.thousandsSeparator) {
573
- const parts = value.toString().split('.')
574
- parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ',')
575
- value = parts.length > 1 ? parts.join('.') : parts[0]
576
- }
577
- if (formatInfo.symbol) {
578
- value = formatInfo.symbol + '' + value
579
- }
580
- }
581
- return value
582
- } else if (formatType == 'date' || formatType == 'time') {
583
- let formatStr: string = ''
584
- if (formatType == 'date') {
585
- formatStr = formatInfo.dateFormat
586
- if (!formatStr) {
587
- formatStr = 'YYYY-MM-DD'
588
- }
589
- } else {
590
- formatStr = formatInfo.timeFormat
591
- if (!formatStr) {
592
- formatStr = 'HH:mm:ss'
593
- }
594
- }
595
- //非日期类型时转换为日期类型
596
- /**if(!(value instanceof Date)){
597
- const valueStr = (value+'').trim();
598
- value = dayjs(valueStr).format(formatStr);
599
- }else{
600
- value = dayjs(valueStr).format(formatStr);
601
- }*/
602
- return dayjs(value).format(formatStr)
603
- } else if (formatType == 'custom' && formatInfo.formatEventUuid) {
604
- console.log('自定义方法', formatInfo)
605
- }
606
- return value
607
- }
608
-
609
- /**
610
- * 根据变量获取值
611
- * @param entity
612
- * @param variable
613
- */
614
- function getValueFromVariable(entity: any, variable: string) {
615
- if (variable == null || variable == undefined) {
616
- return variable
617
- }
618
- //仅处理变量类型
619
- if (variable.startsWith('${') && variable.endsWith('}')) {
620
- let paramName: string = variable.substring(2, variable.length - 1)
621
- let paramType: any = null
622
- let valueSource: any = null
623
- if (paramName.startsWith('data.')) {
624
- paramName = paramName.substring(5)
625
- valueSource = entity.data
626
- paramType = 'data'
627
- } else if (paramName.startsWith('page.')) {
628
- paramName = paramName.substring(5)
629
- paramType = 'page'
630
- valueSource = entity.page
631
- } else if (paramName.startsWith('task.')) {
632
- paramName = paramName.substring(5)
633
- paramType = 'task'
634
- valueSource = entity.task
635
- } else if (paramName.startsWith('request.')) {
636
- paramName = paramName.substring(8)
637
- paramType = 'request'
638
- valueSource = entity.request
639
- } else if (paramName.startsWith('context.')) {
640
- paramName = paramName.substring(8)
641
- paramType = 'context'
642
- valueSource = entity.context
643
- } else if (paramName.startsWith('system.')) {
644
- paramName = paramName.substring(7)
645
- paramType = 'system'
646
- valueSource = entity.system
647
- } else if (paramName.startsWith('fixed.')) {
648
- //固定值
649
- return paramName.substring(6)
650
- }
651
- if (!paramName || !paramName) {
652
- console.log('获取变量失败', variable, entity)
653
- return ''
654
- }
655
- return getValueFromSource(valueSource, paramName, paramType)
656
- } else {
657
- return variable
658
- }
659
- }
660
-
661
- /**
662
- * 从对象中获取值
663
- * @param valueSource 源对象
664
- * @param paramName 变量值
665
- * @param paramType 类型
666
- */
667
- function getValueFromSource(valueSource: any, paramName: string, paramType: string): any {
668
- if (!valueSource || !paramName) {
669
- return undefined
670
- }
671
- const firstIndex = paramName.indexOf('.')
672
- //多级变量名时
673
- if (firstIndex > -1) {
674
- const tempParamName = paramName.substring(0, firstIndex)
675
- const newParamName = paramName.substring(firstIndex + 1)
676
- return getValueFromSource(valueSource[tempParamName], newParamName, paramType)
677
- } else {
678
- if (paramType == 'context') {
679
- //当前日期和时间
680
- if (paramName == 'currentDate' || paramName == 'currentTime') {
681
- return new Date()
682
- }
683
- }
684
- return valueSource[paramName]
685
- }
686
- }
687
-
688
- /**
689
- * 打开链接
690
- * @param component
691
- * @param pageContext
692
- */
693
- export function openLink(component: Component, pageContext: PageContext) {
694
- //链接信息
695
- const linkPage: any =
696
- component && component.props && component.props.linkPage ? component.props.linkPage : {}
697
- if (!linkPage.linkType) {
698
- alert('未指定打开方式!')
699
- return
700
- }
701
- let linkUrl = ''
702
- if (linkPage.linkType == 'url') {
703
- linkUrl = linkPage.jumpPageUrl
704
- if (!linkUrl) {
705
- alert('未设置链接地址!')
706
- return
707
- }
708
- } else {
709
- if (!linkPage.jumpPageCode) {
710
- alert('未选择页面!')
711
- return
712
- }
713
- linkUrl = 'page:' + linkPage.jumpPageCode
714
- }
715
-
716
- //添加附加参数
717
- let appendParams = ''
718
- if (linkPage.isNeedId) {
719
- const entity: any = pageContext.entity ? pageContext.entity : {}
720
- const data = entity.data ? entity.data : {}
721
- appendParams = 'id=' + (data.id ? data.id : '')
722
- }
723
- if (linkPage.appendParams) {
724
- for (const p of linkPage.appendParams) {
725
- if (!p.name) {
726
- continue
727
- }
728
- if (appendParams.length > 0) {
729
- appendParams += '&'
730
- }
731
- appendParams += p.name + '='
732
- appendParams += formatVariableValue(pageContext, p.value)
733
- }
734
- }
735
- if (appendParams) {
736
- if (linkUrl.indexOf('?') == -1) {
737
- linkUrl += '?'
738
- } else {
739
- linkUrl += '&'
740
- }
741
- linkUrl += appendParams
742
- }
743
- alert('链接到:' + linkUrl)
744
- }
745
-
746
- /**
747
- * 计算组件是否显示
748
- * @param pageContext 页面对象
749
- * @param configure 组件配置参数
750
- * @param showConditions 显示条件
751
- */
752
- export function caculateShowCondition(
753
- pageContext: PageContext,
754
- configure: Component,
755
- showConditions: Array<any>
756
- ) {
757
- if (!showConditions || showConditions.length == 0 || !pageContext || !pageContext.entity) {
758
- return true
759
- }
760
- const entityData = pageContext.entity
761
- // 条件封装的表达式
762
- let conditions = ''
763
- const maxLen = showConditions.length
764
- for (let i = 0; i < maxLen; i++) {
765
- const condition: any = showConditions[i]
766
- const propName = condition.propName
767
- let operator = condition.operator
768
- if (!propName || propName === '') {
769
- // 没有属性和字段名表示是无效的条件或判断
770
- continue
771
- }
772
- //默认为等于
773
- if (!operator) {
774
- operator = 'EQ'
775
- }
776
-
777
- const leftValue = getValueFromVariable(entityData, propName)
778
- let propValue = getValueFromVariable(entityData, condition.propValue)
779
-
780
- const dataType = condition.dataType
781
- //判断是否有包含和不包含
782
- if (operator == 'CONTAIN' || operator == 'NOT_CONTAIN') {
783
- //判断是否有此方法,无时替换为等于或不等于
784
- //用于多选值时
785
- if (leftValue && !leftValue.includes) {
786
- operator = operator == 'CONTAIN' ? 'EQ' : 'NET'
787
- }
788
- }
789
-
790
- let variableIsNullStr = condition.variableIsNull
791
- if (!variableIsNullStr) {
792
- variableIsNullStr = 'null'
793
- }
794
-
795
- let conditionResult = undefined
796
- //为空时
797
- if (propValue === undefined || propValue === '') {
798
- propValue = null
799
- if (variableIsNullStr === 'null') {
800
- operator = 'IS_NULL'
801
- } else if (variableIsNullStr === 'notequal') {
802
- operator = 'IS_NOT_NULL'
803
- } else {
804
- conditionResult = true
805
- }
806
- }
807
-
808
- //未计算时,调用方法计算
809
- if (conditionResult == undefined) {
810
- try {
811
- conditionResult = executeExpression(leftValue, operator, propValue, dataType)
812
- } catch (e) {
813
- console.log('executeExpression error', e)
814
- //计算出错时,识别为false
815
- conditionResult = false
816
- }
817
- }
818
- const leftBracket = condition.leftBracket
819
- const rightBracket = condition.rightBracket
820
- let joinSign = condition.joinSign
821
- if (leftBracket && leftBracket !== null && leftBracket !== '') {
822
- conditions = conditions + leftBracket
823
- conditions = conditions + ' '
824
- }
825
-
826
- conditions += conditionResult + ' '
827
- if (rightBracket && rightBracket !== null && rightBracket !== '') {
828
- conditions = conditions + rightBracket
829
- conditions = conditions + ' '
830
- // conditions.append(rightBracket).append(' ')
831
- }
832
- if (i < maxLen - 1) {
833
- // 最后一个不拼接“连接符”
834
- if (joinSign && joinSign !== null && joinSign !== '') {
835
- const joinSignIgnoreCase = joinSign.toLowerCase()
836
- if (joinSignIgnoreCase === 'and') {
837
- joinSign = joinSignIgnoreCase.replace('and', '&&')
838
- } else if (joinSignIgnoreCase === 'or') {
839
- joinSign = joinSignIgnoreCase.replace('or', '||')
840
- }
841
- conditions += joinSign + ' '
842
- }
843
- }
844
- }
845
- if (conditions) {
846
- return eval('(' + conditions + ')')
847
- } else {
848
- return true
849
- }
850
- }