super-page-runtime 2.3.37 → 2.3.38-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 (646) hide show
  1. package/dist/es/_virtual/_plugin-vue_export-helper.mjs +8 -0
  2. package/dist/es/components/runtime/index.d.ts +2 -1
  3. package/dist/es/components/runtime/utils/ai-chat-util.mjs +16 -0
  4. package/dist/es/components/runtime/utils/anchor-util.mjs +83 -0
  5. package/dist/es/components/runtime/utils/api/api-util.d.ts +1 -1
  6. package/dist/es/components/runtime/utils/api/api-util.mjs +9 -0
  7. package/dist/es/components/runtime/utils/api/page-expose-util.mjs +184 -0
  8. package/dist/es/components/runtime/utils/assemblys-config.mjs +19 -0
  9. package/dist/es/components/runtime/utils/barcode-util.mjs +12 -0
  10. package/dist/es/components/runtime/utils/charts/chart-columnline-util.mjs +169 -0
  11. package/dist/es/components/runtime/utils/charts/chart-gauge-util.mjs +38 -0
  12. package/dist/es/components/runtime/utils/charts/chart-pie-util.mjs +83 -0
  13. package/dist/es/components/runtime/utils/charts/chart-radar-util.mjs +56 -0
  14. package/dist/es/components/runtime/utils/charts/chart-scatter-util.mjs +47 -0
  15. package/dist/es/components/runtime/utils/charts/chart-util.mjs +285 -0
  16. package/dist/es/components/runtime/utils/common-util.mjs +116 -0
  17. package/dist/es/components/runtime/utils/eventBus.mjs +5 -0
  18. package/dist/es/components/runtime/utils/events/data-backfill-util.mjs +38 -0
  19. package/dist/es/components/runtime/utils/events/event-util.mjs +411 -0
  20. package/dist/es/components/runtime/utils/events/print-label.mjs +100 -0
  21. package/dist/es/components/runtime/utils/events/standard-event.d.ts +1 -1
  22. package/dist/es/components/runtime/utils/events/standard-event.mjs +1164 -0
  23. package/dist/es/components/runtime/utils/events/validator-util.mjs +349 -0
  24. package/dist/es/components/runtime/utils/form/date-shortcuts.mjs +36 -0
  25. package/dist/es/components/runtime/utils/form/scan-util.mjs +88 -0
  26. package/dist/es/components/runtime/utils/global-refs.mjs +56 -0
  27. package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
  28. package/dist/es/components/runtime/utils/interfaces/page-design-types.mjs +4 -0
  29. package/dist/es/components/runtime/utils/page-helper-util.mjs +377 -0
  30. package/dist/es/components/runtime/utils/page-init-util.mjs +260 -0
  31. package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +20 -21
  32. package/dist/es/components/runtime/utils/page-store.mjs +53 -0
  33. package/dist/es/components/runtime/utils/store-util.mjs +13 -0
  34. package/dist/es/components/runtime/utils/table-utils.mjs +84 -0
  35. package/dist/es/components/runtime/utils/tree-utils.mjs +58 -0
  36. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +4 -0
  37. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime2.vue.mjs +29 -0
  38. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.mjs +7 -0
  39. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime2.vue.mjs +21 -0
  40. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
  41. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime2.vue.mjs +41 -0
  42. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
  43. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime2.vue.mjs +6 -0
  44. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
  45. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime2.vue.mjs +20 -0
  46. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +7 -0
  47. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime2.vue.mjs +53 -0
  48. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.mjs +14 -0
  49. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb2.vue.mjs +4 -0
  50. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs +13 -0
  51. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group2.vue.mjs +4 -0
  52. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.mjs +59 -0
  53. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header2.vue.mjs +4 -0
  54. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
  55. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search2.vue.mjs +52 -0
  56. package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.d.ts +36 -0
  57. package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.mjs +93 -0
  58. package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render2.vue.mjs +4 -0
  59. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.mjs +7 -0
  60. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime2.vue.mjs +35 -0
  61. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.mjs +7 -0
  62. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime2.vue.mjs +46 -0
  63. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.mjs +7 -0
  64. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime2.vue.mjs +35 -0
  65. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.mjs +7 -0
  66. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime2.vue.mjs +35 -0
  67. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.mjs +410 -0
  68. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.mjs +6 -0
  69. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item2.vue.mjs +4 -0
  70. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.mjs +10 -0
  71. package/dist/es/components/runtime/views/assemblys/chart/table/group-column2.vue.mjs +4 -0
  72. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.mjs +33 -0
  73. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column2.vue.mjs +4 -0
  74. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.mjs +15 -0
  75. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination2.vue.mjs +4 -0
  76. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
  77. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime2.vue.mjs +252 -0
  78. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.mjs +20 -0
  79. package/dist/es/components/runtime/views/assemblys/common/event-call-component2.vue.mjs +4 -0
  80. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.mjs +35 -0
  81. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog2.vue.mjs +4 -0
  82. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.mjs +33 -0
  83. package/dist/es/components/runtime/views/assemblys/common/file-task-notice2.vue.mjs +4 -0
  84. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +18 -0
  85. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message2.vue.mjs +4 -0
  86. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.mjs +18 -0
  87. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog2.vue.mjs +4 -0
  88. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.mjs +22 -0
  89. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table2.vue.mjs +4 -0
  90. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.mjs +19 -0
  91. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog2.vue.mjs +4 -0
  92. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.mjs +35 -0
  93. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog2.vue.mjs +4 -0
  94. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.mjs +19 -0
  95. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog2.vue.mjs +4 -0
  96. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.mjs +7 -0
  97. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime2.vue.mjs +29 -0
  98. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
  99. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime2.vue.mjs +20 -0
  100. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
  101. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime2.vue.mjs +17 -0
  102. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.mjs +7 -0
  103. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox2.vue.mjs +29 -0
  104. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs +7 -0
  105. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix2.vue.mjs +81 -0
  106. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
  107. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime2.vue.mjs +25 -0
  108. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
  109. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime2.vue.mjs +25 -0
  110. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
  111. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime2.vue.mjs +43 -0
  112. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.mjs +7 -0
  113. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime2.vue.mjs +96 -0
  114. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.mjs +7 -0
  115. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime2.vue.mjs +46 -0
  116. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
  117. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime2.vue.mjs +69 -0
  118. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.mjs +361 -0
  119. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime2.vue.mjs +4 -0
  120. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.mjs +323 -0
  121. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime2.vue.mjs +4 -0
  122. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
  123. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime2.vue.mjs +86 -0
  124. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
  125. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime2.vue.mjs +132 -0
  126. package/dist/es/components/runtime/views/assemblys/error-render.vue.mjs +5 -0
  127. package/dist/es/components/runtime/views/assemblys/error-render2.vue.mjs +4 -0
  128. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
  129. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime2.vue.mjs +63 -0
  130. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.mjs +36 -0
  131. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element2.vue.mjs +4 -0
  132. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
  133. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime2.vue.mjs +69 -0
  134. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
  135. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime2.vue.mjs +102 -0
  136. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
  137. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime2.vue.mjs +55 -0
  138. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
  139. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime2.vue.mjs +24 -0
  140. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
  141. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime2.vue.mjs +91 -0
  142. package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue.mjs +4 -0
  143. package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime2.vue.mjs +88 -0
  144. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
  145. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime2.vue.mjs +28 -0
  146. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
  147. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime2.vue.mjs +79 -0
  148. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.mjs +7 -0
  149. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime2.vue.mjs +37 -0
  150. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
  151. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime2.vue.mjs +42 -0
  152. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.mjs +7 -0
  153. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime2.vue.mjs +16 -0
  154. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
  155. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime2.vue.mjs +82 -0
  156. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
  157. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime2.vue.mjs +195 -0
  158. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +7 -0
  159. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime2.vue.mjs +150 -0
  160. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
  161. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime2.vue.mjs +16 -0
  162. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
  163. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime2.vue.mjs +36 -0
  164. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
  165. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime2.vue.mjs +43 -0
  166. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +7 -0
  167. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime2.vue.mjs +28 -0
  168. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.mjs +72 -0
  169. package/dist/es/components/runtime/views/assemblys/home-chart-render2.vue.mjs +4 -0
  170. package/dist/es/components/runtime/views/assemblys/object-render.vue.mjs +153 -0
  171. package/dist/es/components/runtime/views/assemblys/object-render2.vue.mjs +4 -0
  172. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +9 -0
  173. package/dist/es/components/runtime/views/assemblys/page-bottom2.vue.mjs +4 -0
  174. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +6 -1
  175. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.mjs +7 -0
  176. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box2.vue.mjs +55 -0
  177. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.mjs +7 -0
  178. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog2.vue.mjs +28 -0
  179. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.mjs +7 -0
  180. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime2.vue.mjs +45 -0
  181. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
  182. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime2.vue.mjs +20 -0
  183. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
  184. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime2.vue.mjs +23 -0
  185. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.mjs +7 -0
  186. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime2.vue.mjs +30 -0
  187. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
  188. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime2.vue.mjs +27 -0
  189. package/dist/es/components/runtime/views/home-chart.vue.mjs +46 -0
  190. package/dist/es/components/runtime/views/home-chart2.vue.mjs +4 -0
  191. package/dist/es/components/runtime/views/super-page-dialog.vue.mjs +26 -0
  192. package/dist/es/components/runtime/views/super-page-dialog3.vue.mjs +5 -0
  193. package/dist/es/components/runtime/views/super-page.vue.d.ts +2 -2
  194. package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
  195. package/dist/es/components/runtime/views/super-page2.vue.mjs +307 -0
  196. package/dist/es/index.d.ts +2 -2
  197. package/dist/es/index.mjs +32 -0
  198. package/dist/es/style.css +1 -1033
  199. package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +1 -0
  200. package/dist/lib/assets/chart-themes/bar-theme.cjs +1 -0
  201. package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
  202. package/dist/lib/assets/chart-themes/gauge-theme.cjs +1 -0
  203. package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
  204. package/dist/lib/assets/chart-themes/pie-theme.cjs +1 -0
  205. package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
  206. package/dist/lib/assets/chart-themes/radar-theme.cjs +1 -0
  207. package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
  208. package/dist/lib/assets/chart-themes/scatter-theme.cjs +1 -0
  209. package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
  210. package/dist/lib/assets/file.png.cjs +1 -0
  211. package/dist/lib/assets/folder.png.cjs +1 -0
  212. package/dist/lib/components/runtime/index.d.ts +6 -0
  213. package/dist/lib/components/runtime/utils/ai-chat-util.cjs +1 -0
  214. package/dist/lib/components/runtime/utils/anchor-util.cjs +1 -0
  215. package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
  216. package/dist/lib/components/runtime/utils/api/api-util.cjs +1 -0
  217. package/dist/lib/components/runtime/utils/api/api-util.d.ts +1 -0
  218. package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +1 -0
  219. package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
  220. package/dist/lib/components/runtime/utils/assemblys-config.cjs +1 -0
  221. package/dist/lib/components/runtime/utils/barcode-util.cjs +1 -0
  222. package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
  223. package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +2 -0
  224. package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +1 -0
  225. package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +2 -0
  226. package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +1 -0
  227. package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +1 -0
  228. package/dist/lib/components/runtime/utils/charts/chart-util.cjs +1 -0
  229. package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
  230. package/dist/lib/components/runtime/utils/common-util.cjs +1 -0
  231. package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
  232. package/dist/lib/components/runtime/utils/eventBus.cjs +1 -0
  233. package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
  234. package/dist/lib/components/runtime/utils/events/data-backfill-util.cjs +1 -0
  235. package/dist/lib/components/runtime/utils/events/data-backfill-util.d.ts +27 -0
  236. package/dist/lib/components/runtime/utils/events/event-util.cjs +1 -0
  237. package/dist/lib/components/runtime/utils/events/event-util.d.ts +93 -0
  238. package/dist/lib/components/runtime/utils/events/print-label.cjs +1 -0
  239. package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
  240. package/dist/lib/components/runtime/utils/events/standard-event.cjs +1 -0
  241. package/dist/lib/components/runtime/utils/events/standard-event.d.ts +99 -0
  242. package/dist/lib/components/runtime/utils/events/validator-util.cjs +1 -0
  243. package/dist/lib/components/runtime/utils/events/validator-util.d.ts +24 -0
  244. package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +1 -0
  245. package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
  246. package/dist/lib/components/runtime/utils/form/scan-util.cjs +1 -0
  247. package/dist/lib/components/runtime/utils/global-refs.cjs +1 -0
  248. package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
  249. package/dist/lib/components/runtime/utils/i18n-util.cjs +1 -0
  250. package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
  251. package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +1 -0
  252. package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +259 -0
  253. package/dist/lib/components/runtime/utils/page-helper-util.cjs +1 -0
  254. package/dist/lib/components/runtime/utils/page-helper-util.d.ts +174 -0
  255. package/dist/lib/components/runtime/utils/page-init-util.cjs +1 -0
  256. package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
  257. package/dist/lib/components/runtime/utils/page-permission-util.cjs +1 -0
  258. package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
  259. package/dist/lib/components/runtime/utils/page-store.cjs +1 -0
  260. package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
  261. package/dist/lib/components/runtime/utils/store-util.cjs +1 -0
  262. package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
  263. package/dist/lib/components/runtime/utils/store.cjs +1 -0
  264. package/dist/lib/components/runtime/utils/store.d.ts +2 -0
  265. package/dist/lib/components/runtime/utils/table-utils.cjs +1 -0
  266. package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
  267. package/dist/lib/components/runtime/utils/tree-utils.cjs +1 -0
  268. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +1 -0
  269. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime2.vue.cjs +1 -0
  270. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +1 -0
  271. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime2.vue.cjs +1 -0
  272. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +1 -0
  273. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime2.vue.cjs +1 -0
  274. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +1 -0
  275. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime2.vue.cjs +1 -0
  276. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +1 -0
  277. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime2.vue.cjs +1 -0
  278. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +1 -0
  279. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime2.vue.cjs +1 -0
  280. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +1 -0
  281. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb2.vue.cjs +1 -0
  282. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +1 -0
  283. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group2.vue.cjs +1 -0
  284. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +1 -0
  285. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header2.vue.cjs +1 -0
  286. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +1 -0
  287. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search2.vue.cjs +1 -0
  288. package/dist/lib/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.cjs +1 -0
  289. package/dist/lib/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.d.ts +36 -0
  290. package/dist/lib/components/runtime/views/assemblys/chart/common/home-chart-condition-render2.vue.cjs +1 -0
  291. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +1 -0
  292. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime2.vue.cjs +1 -0
  293. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +1 -0
  294. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime2.vue.cjs +1 -0
  295. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +1 -0
  296. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime2.vue.cjs +1 -0
  297. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +1 -0
  298. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime2.vue.cjs +1 -0
  299. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +1 -0
  300. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
  301. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +1 -0
  302. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item2.vue.cjs +1 -0
  303. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +1 -0
  304. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column2.vue.cjs +1 -0
  305. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +1 -0
  306. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column2.vue.cjs +1 -0
  307. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +1 -0
  308. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination2.vue.cjs +1 -0
  309. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +1 -0
  310. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime2.vue.cjs +1 -0
  311. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +1 -0
  312. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
  313. package/dist/lib/components/runtime/views/assemblys/common/event-call-component2.vue.cjs +1 -0
  314. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +1 -0
  315. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
  316. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog2.vue.cjs +1 -0
  317. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +1 -0
  318. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
  319. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice2.vue.cjs +1 -0
  320. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +1 -0
  321. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
  322. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message2.vue.cjs +1 -0
  323. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +1 -0
  324. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
  325. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog2.vue.cjs +1 -0
  326. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +1 -0
  327. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
  328. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table2.vue.cjs +1 -0
  329. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +1 -0
  330. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
  331. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog2.vue.cjs +1 -0
  332. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +1 -0
  333. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
  334. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog2.vue.cjs +1 -0
  335. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +1 -0
  336. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
  337. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog2.vue.cjs +1 -0
  338. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +1 -0
  339. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime2.vue.cjs +1 -0
  340. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +1 -0
  341. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime2.vue.cjs +1 -0
  342. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +1 -0
  343. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime2.vue.cjs +1 -0
  344. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +1 -0
  345. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox2.vue.cjs +1 -0
  346. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +1 -0
  347. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
  348. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix2.vue.cjs +1 -0
  349. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +1 -0
  350. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime2.vue.cjs +1 -0
  351. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +1 -0
  352. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime2.vue.cjs +1 -0
  353. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +1 -0
  354. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime2.vue.cjs +1 -0
  355. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +1 -0
  356. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime2.vue.cjs +1 -0
  357. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +1 -0
  358. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime2.vue.cjs +1 -0
  359. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +1 -0
  360. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime2.vue.cjs +1 -0
  361. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +1 -0
  362. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime2.vue.cjs +1 -0
  363. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +1 -0
  364. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime2.vue.cjs +1 -0
  365. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +1 -0
  366. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime2.vue.cjs +1 -0
  367. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +1 -0
  368. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime2.vue.cjs +1 -0
  369. package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +1 -0
  370. package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
  371. package/dist/lib/components/runtime/views/assemblys/error-render2.vue.cjs +1 -0
  372. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +1 -0
  373. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime2.vue.cjs +1 -0
  374. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +1 -0
  375. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element2.vue.cjs +1 -0
  376. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +1 -0
  377. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime2.vue.cjs +1 -0
  378. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +1 -0
  379. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime2.vue.cjs +1 -0
  380. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +1 -0
  381. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime2.vue.cjs +1 -0
  382. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +1 -0
  383. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime2.vue.cjs +1 -0
  384. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +1 -0
  385. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime2.vue.cjs +1 -0
  386. package/dist/lib/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue.cjs +1 -0
  387. package/dist/lib/components/runtime/views/assemblys/form/image-upload/imageupload-runtime2.vue.cjs +1 -0
  388. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +1 -0
  389. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime2.vue.cjs +1 -0
  390. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +1 -0
  391. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime2.vue.cjs +1 -0
  392. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +1 -0
  393. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime2.vue.cjs +1 -0
  394. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +1 -0
  395. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime2.vue.cjs +1 -0
  396. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +1 -0
  397. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime2.vue.cjs +1 -0
  398. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +1 -0
  399. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime2.vue.cjs +1 -0
  400. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +1 -0
  401. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime2.vue.cjs +1 -0
  402. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +1 -0
  403. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime2.vue.cjs +1 -0
  404. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +1 -0
  405. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime2.vue.cjs +1 -0
  406. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +1 -0
  407. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime2.vue.cjs +1 -0
  408. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +1 -0
  409. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime2.vue.cjs +1 -0
  410. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +1 -0
  411. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime2.vue.cjs +1 -0
  412. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +1 -0
  413. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
  414. package/dist/lib/components/runtime/views/assemblys/home-chart-render2.vue.cjs +1 -0
  415. package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +1 -0
  416. package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  417. package/dist/lib/components/runtime/views/assemblys/object-render2.vue.cjs +1 -0
  418. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +1 -0
  419. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
  420. package/dist/lib/components/runtime/views/assemblys/page-bottom2.vue.cjs +1 -0
  421. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +1 -0
  422. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +19 -0
  423. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box2.vue.cjs +1 -0
  424. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +1 -0
  425. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog2.vue.cjs +1 -0
  426. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +1 -0
  427. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime2.vue.cjs +1 -0
  428. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +1 -0
  429. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime2.vue.cjs +1 -0
  430. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +1 -0
  431. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime2.vue.cjs +1 -0
  432. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +1 -0
  433. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime2.vue.cjs +1 -0
  434. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +1 -0
  435. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime2.vue.cjs +1 -0
  436. package/dist/lib/components/runtime/views/home-chart.vue.cjs +1 -0
  437. package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
  438. package/dist/lib/components/runtime/views/home-chart2.vue.cjs +1 -0
  439. package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +1 -0
  440. package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
  441. package/dist/lib/components/runtime/views/super-page-dialog3.vue.cjs +1 -0
  442. package/dist/lib/components/runtime/views/super-page.vue.cjs +1 -0
  443. package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
  444. package/dist/lib/components/runtime/views/super-page2.vue.cjs +1 -0
  445. package/dist/lib/favicon.ico +0 -0
  446. package/dist/lib/i18n/langs/cn.cjs +1 -0
  447. package/dist/lib/i18n/langs/en.cjs +1 -0
  448. package/dist/lib/index.cjs +1 -0
  449. package/dist/lib/index.d.ts +16 -0
  450. package/dist/lib/style.css +1 -0
  451. package/package.json +13 -11
  452. package/dist/es/_virtual/_plugin-vue_export-helper.js +0 -8
  453. package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
  454. package/dist/es/components/runtime/utils/anchor-util.js +0 -84
  455. package/dist/es/components/runtime/utils/api/api-util.js +0 -4
  456. package/dist/es/components/runtime/utils/api/page-expose-util.js +0 -190
  457. package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
  458. package/dist/es/components/runtime/utils/barcode-util.js +0 -12
  459. package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +0 -168
  460. package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +0 -38
  461. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +0 -82
  462. package/dist/es/components/runtime/utils/charts/chart-radar-util.js +0 -56
  463. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +0 -47
  464. package/dist/es/components/runtime/utils/charts/chart-util.js +0 -288
  465. package/dist/es/components/runtime/utils/common-util.js +0 -120
  466. package/dist/es/components/runtime/utils/eventBus.js +0 -5
  467. package/dist/es/components/runtime/utils/events/data-backfill-util.js +0 -39
  468. package/dist/es/components/runtime/utils/events/event-util.js +0 -427
  469. package/dist/es/components/runtime/utils/events/print-label.js +0 -100
  470. package/dist/es/components/runtime/utils/events/standard-event.js +0 -1221
  471. package/dist/es/components/runtime/utils/events/validator-util.js +0 -367
  472. package/dist/es/components/runtime/utils/form/date-shortcuts.js +0 -36
  473. package/dist/es/components/runtime/utils/form/scan-util.js +0 -93
  474. package/dist/es/components/runtime/utils/global-refs.js +0 -57
  475. package/dist/es/components/runtime/utils/i18n-util.js +0 -14
  476. package/dist/es/components/runtime/utils/interfaces/page-design-types.js +0 -4
  477. package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
  478. package/dist/es/components/runtime/utils/page-init-util.js +0 -280
  479. package/dist/es/components/runtime/utils/page-store.js +0 -53
  480. package/dist/es/components/runtime/utils/store-util.js +0 -13
  481. package/dist/es/components/runtime/utils/table-utils.js +0 -89
  482. package/dist/es/components/runtime/utils/tree-utils.js +0 -73
  483. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -4
  484. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -29
  485. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -7
  486. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -21
  487. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -4
  488. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -41
  489. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +0 -4
  490. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +0 -6
  491. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +0 -4
  492. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +0 -21
  493. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -7
  494. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
  495. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +0 -14
  496. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +0 -4
  497. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +0 -13
  498. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
  499. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +0 -60
  500. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
  501. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +0 -7
  502. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +0 -64
  503. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -7
  504. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -35
  505. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -7
  506. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -46
  507. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -7
  508. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -35
  509. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -7
  510. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -35
  511. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +0 -421
  512. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +0 -6
  513. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +0 -4
  514. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +0 -10
  515. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +0 -4
  516. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +0 -46
  517. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +0 -4
  518. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +0 -15
  519. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +0 -4
  520. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +0 -4
  521. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +0 -259
  522. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.js +0 -20
  523. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +0 -4
  524. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -36
  525. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -4
  526. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.js +0 -35
  527. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +0 -4
  528. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +0 -32
  529. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +0 -4
  530. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -17
  531. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -4
  532. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.js +0 -23
  533. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +0 -4
  534. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.js +0 -18
  535. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +0 -4
  536. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +0 -35
  537. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +0 -4
  538. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -19
  539. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -4
  540. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -7
  541. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -29
  542. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
  543. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -21
  544. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
  545. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -18
  546. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +0 -7
  547. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +0 -29
  548. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +0 -7
  549. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +0 -81
  550. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
  551. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -25
  552. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
  553. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -25
  554. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -4
  555. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -46
  556. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -7
  557. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -96
  558. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -7
  559. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -47
  560. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
  561. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +0 -69
  562. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -382
  563. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -4
  564. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -330
  565. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -4
  566. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -4
  567. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -88
  568. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +0 -7
  569. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +0 -134
  570. package/dist/es/components/runtime/views/assemblys/error-render.vue.js +0 -5
  571. package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +0 -4
  572. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -4
  573. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -64
  574. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +0 -38
  575. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +0 -4
  576. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +0 -4
  577. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +0 -69
  578. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -4
  579. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -102
  580. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
  581. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -55
  582. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
  583. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -24
  584. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
  585. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -94
  586. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -4
  587. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -28
  588. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -4
  589. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -82
  590. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -7
  591. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -38
  592. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
  593. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -43
  594. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -7
  595. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -16
  596. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
  597. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -82
  598. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
  599. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -199
  600. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -7
  601. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -156
  602. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
  603. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +0 -16
  604. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
  605. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -36
  606. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
  607. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -44
  608. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -7
  609. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -28
  610. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +0 -83
  611. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
  612. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +0 -165
  613. package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
  614. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -9
  615. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
  616. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +0 -7
  617. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.js +0 -47
  618. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js +0 -7
  619. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.js +0 -28
  620. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js +0 -7
  621. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.js +0 -45
  622. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
  623. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +0 -20
  624. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
  625. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +0 -23
  626. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -7
  627. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -32
  628. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +0 -4
  629. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +0 -27
  630. package/dist/es/components/runtime/views/home-chart.vue.js +0 -47
  631. package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
  632. package/dist/es/components/runtime/views/super-page-dialog.vue.js +0 -26
  633. package/dist/es/components/runtime/views/super-page-dialog.vue3.js +0 -5
  634. package/dist/es/components/runtime/views/super-page.vue.js +0 -7
  635. package/dist/es/components/runtime/views/super-page.vue2.js +0 -302
  636. package/dist/es/index.js +0 -30
  637. /package/dist/es/assets/chart-themes/{bar-theme.js → bar-theme.mjs} +0 -0
  638. /package/dist/es/assets/chart-themes/{gauge-theme.js → gauge-theme.mjs} +0 -0
  639. /package/dist/es/assets/chart-themes/{pie-theme.js → pie-theme.mjs} +0 -0
  640. /package/dist/es/assets/chart-themes/{radar-theme.js → radar-theme.mjs} +0 -0
  641. /package/dist/es/assets/chart-themes/{scatter-theme.js → scatter-theme.mjs} +0 -0
  642. /package/dist/es/assets/{file.png.js → file.png.mjs} +0 -0
  643. /package/dist/es/assets/{folder.png.js → folder.png.mjs} +0 -0
  644. /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
  645. /package/dist/es/i18n/langs/{cn.js → cn.mjs} +0 -0
  646. /package/dist/es/i18n/langs/{en.js → en.mjs} +0 -0
@@ -0,0 +1,1164 @@
1
+ import { getBaseUrl as R, getRealRestApiPath as j, deepCopy as le, isArrayFn as ne, isWorkflowPage as re, packageTemplateFiles as $e, upperFirstCase as qe, getListCode as Ie } from "../common-util.mjs";
2
+ import { http as O, getI18n as b, isMobileBrowser as V, getSessionCache as se, getToken as Te, getCurrentUser as Re, getRunCurrentRole as He, setSessionCache as Ge } from "agilebuilder-ui";
3
+ import { ElMessage as k, ElMessageBox as ue, ElNotification as Je } from "element-plus";
4
+ import { getComponentRef as z } from "../global-refs.mjs";
5
+ import _ from "../eventBus.mjs";
6
+ import ae from "axios";
7
+ import { doAfterClickEvent as $, handleEvent as oe, getTableUuid as Ae } from "./event-util.mjs";
8
+ import { setStoreInfo as ve } from "../store-util.mjs";
9
+ import { getPermissionCodes as K, getModelFields as Ye, getDefaultValue as ze } from "../page-init-util.mjs";
10
+ import { caculateShowCondition as ie, getVariableValue as Ke, setVariableValue as Xe, updateChartDatasources as Qe } from "../page-helper-util.mjs";
11
+ import Ze from "./print-label.mjs";
12
+ import { getTableNameByTableUuid as ke, getCurrentUserFileTasks as et, setFileTaskRead as tt } from "../table-utils.mjs";
13
+ import { getWorkflowRules as st, packageCustomRules as ot } from "./validator-util.mjs";
14
+ import { functions as nt } from "../api/page-expose-util.mjs";
15
+ import { usePageContextStore as Se } from "../page-store.mjs";
16
+ import { h as at } from "vue";
17
+ import it from "../../views/assemblys/common/file-task-notice.vue.mjs";
18
+ import { hasBackfillData as xe, cacheBackfillData as Z, removeCacheFillData as G, getRealFillData as rt, removeCacheFillDataById as ct } from "./data-backfill-util.mjs";
19
+ const At = { save: function(e) {
20
+ return Ne(e, !1);
21
+ }, saveList: function(e) {
22
+ return Ne(e, !0);
23
+ }, exportForm: function(e) {
24
+ const t = e.pageContext.code + "_";
25
+ _.$emit(t + "export-form-report", e);
26
+ }, exportPDF: function(e) {
27
+ const t = e.pageContext.code + "_";
28
+ _.$emit(t + "export-pdf-report", e);
29
+ }, submit: function(e) {
30
+ return Q(e, !1, "submit", "/dsc/commons/submits");
31
+ }, submitList: function(e) {
32
+ return Q(e, !0, "submit", "/dsc/commons/batch-submits");
33
+ }, agree: function(e) {
34
+ return Q(e, !1, "agree", "/dsc/commons/approves");
35
+ }, agreeList: function(e) {
36
+ return Q(e, !0, "agree", "/dsc/commons/batch-approves");
37
+ }, disagree: function(e) {
38
+ return Q(e, !1, "disagree", "/dsc/commons/refuses");
39
+ }, disagreeList: function(e) {
40
+ return Q(e, !0, "disagree", "/dsc/commons/batch-refuses");
41
+ }, back: function(e) {
42
+ const t = e.pageContext, s = t.entity ? t.entity.data : {}, a = !(!e.configureObj.props || !e.configureObj.props.base) && e.configureObj.props.base.isNeedValueMapping;
43
+ he(t, e.configureObj, s, a);
44
+ }, delete: function(e) {
45
+ return function(t) {
46
+ return new Promise((s, a) => {
47
+ const o = t.ids;
48
+ if (!o || o.length === 0) return k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.pleaseSelectRecord") }), void s(!0);
49
+ ue.confirm(b().t("superPageRuntimeMessage.whetherToConfirmDeletion"), b().t("superPageRuntimeMessage.tips"), { confirmButtonText: b().t("superPageRuntimeMessage.sure"), cancelButtonText: b().t("superPageRuntimeMessage.cancel"), type: "warning" }).then(() => {
50
+ var P, I, N;
51
+ const n = t.pageContext, r = t.configureObj, l = r.props.base, c = n.systemCode, m = n.backendUrl, u = r.props.base.tableUuid ? r.props.base.tableUuid : t.tableUuid, p = ke(n, u);
52
+ let d = R(m, n.isTest) + "/dsc/commons/" + p;
53
+ d = j(d, c, m, n.isTest);
54
+ const C = l.isPermission === void 0 || l.isPermission === "true" || l.isPermission, w = re(n), i = K(r, n), f = { ids: o, functionCode: i, isPermission: C + "", systemCode: c, isWorkflowEntity: w, listCodesMap: n.listCodesMap, pageCode: n.code, pageVersion: n.version };
55
+ n.beanName && (f.beanName = n.beanName);
56
+ const g = r.props.deleteLogicSetting;
57
+ g && (typeof g == "object" ? f.deleteLogicSetting = JSON.stringify(g) : typeof g == "string" && (f.deleteLogicSetting = g));
58
+ const T = (P = r.props.base) == null ? void 0 : P.logSetting;
59
+ T && (f.logSettingText = T.join(""));
60
+ const h = r.props.base.isSafeDelete;
61
+ h && (f.isSafeDelete = h);
62
+ const y = (N = (I = r.runtime) == null ? void 0 : I.props) == null ? void 0 : N.title;
63
+ y && (f.currentOperation = y), f.isMobile = V(), O.delete(d, { data: f }).then((x) => {
64
+ const v = z(n, u);
65
+ v && (v.isDeleteChange(!0), v.clearSelections()), H(n, r, x, "superPageRuntimeMessage.successfulDelete", !0), s(!0);
66
+ }).catch((x) => {
67
+ a(x);
68
+ });
69
+ }).catch(() => {
70
+ a();
71
+ });
72
+ });
73
+ }(e);
74
+ }, downloadTemplate: function(e) {
75
+ (function(t) {
76
+ var y, P, I;
77
+ const s = t.pageContext, a = t.configureObj, o = a.props.base, n = $e(o.templateFiles, s, a);
78
+ let r, l;
79
+ n && n.length > 0 && (r = n[0].templateUuid, l = n[0].templateName);
80
+ const c = s.systemCode, m = s.backendUrl, u = l;
81
+ let p = "?1=1";
82
+ r && u && r !== "undefined" && u !== "undefined" && r !== "null" && u !== "null" ? p += "&fileName=" + encodeURI(r) + "&showName=" + encodeURI(u) : u ? p += "&showName=" + encodeURI(u) : s.label && (p += "&showName=" + encodeURI(s.label) + ".xlsx");
83
+ const d = (y = a.props.base) == null ? void 0 : y.logSetting;
84
+ d && (p += "&logSettingText=" + d.join("")), c && (p += "&systemCode=" + c);
85
+ const C = t.listCode;
86
+ C && (p += "&listCode=" + C), s.beanName && (p += "&beanName=" + s.beanName);
87
+ const w = K(a, s);
88
+ w && (p += "&functionCode=" + w), s.tableName && (p += "&tableName=" + s.tableName), s.code && (p += "&pageCode=" + s.code), s.version && (p += "&pageVersion=" + s.version);
89
+ const i = Te();
90
+ i && (p += "&JWT=" + i);
91
+ const f = (I = (P = a.runtime) == null ? void 0 : P.props) == null ? void 0 : I.title;
92
+ f && (p += "&currentOperation=" + encodeURI(f)), p += "&isMobile=" + V();
93
+ const g = "_RUN_CURRENT_ROLE", T = se(g);
94
+ T && (p += "&" + g + "=" + T), o && (p += "&isPermission=" + (o.isPermission === void 0 || o.isPermission === "true" || o.isPermission));
95
+ const h = R(m, s.isTest);
96
+ window.open(h + "/dsc/commons/download-files" + p);
97
+ })(e);
98
+ }, import: function(e) {
99
+ const t = e.pageContext.code + "_";
100
+ _.$emit(t + "import-file", e);
101
+ }, export: function(e) {
102
+ return function(t) {
103
+ return new Promise((s, a) => {
104
+ var g, T, h, y, P, I, N, x, v, U, M, S;
105
+ const o = t.pageContext, n = t.configureObj, r = n.props.base, l = t.listCode, c = t.selections, m = {};
106
+ c && c.length > 0 && (m.data = c);
107
+ let u = o.label;
108
+ u || (u = o.code);
109
+ let p = !1;
110
+ p = r.isAsync !== void 0 && r.isAsync !== null && r.isAsync;
111
+ const d = r.isPermission === void 0 || r.isPermission === "true" || r.isPermission, C = K(n, o), w = u, i = { backendUrl: o.backendUrl, pageContext: o }, f = (T = (g = n.runtime) == null ? void 0 : g.props) == null ? void 0 : T.title;
112
+ f && (i.currentOperation = f), i.isShowWatermark = ((y = (h = n.props) == null ? void 0 : h.watermark) == null ? void 0 : y.isShowWatermark) === void 0 ? "true" : ((I = (P = n.props) == null ? void 0 : P.watermark) == null ? void 0 : I.isShowWatermark) + "", i.watermarkContent = (x = (N = n.props) == null ? void 0 : N.watermark) != null && x.content && ((U = (v = n.props) == null ? void 0 : v.watermark) == null ? void 0 : U.content.length) > 0 ? (S = (M = n.props) == null ? void 0 : M.watermark) == null ? void 0 : S.content.join("-~") : "", window.$vueApp.config.globalProperties.$exportDataNew(m, w, l, C, null, i, p, o.code, d), p && setTimeout(() => {
113
+ Fe(o);
114
+ }, 100);
115
+ });
116
+ }(e);
117
+ }, search: function(e) {
118
+ const t = e.pageContext, s = e.tableUuid;
119
+ z(t, s).refresh();
120
+ }, showSearch: function(e) {
121
+ const t = e.pageContext, s = e.tableUuid;
122
+ z(t, s).showMobileSearch();
123
+ }, workflowSave: function(e) {
124
+ return _.$emit("clearTableAllStartEditing"), async function(t) {
125
+ return new Promise((s, a) => {
126
+ const o = t.pageContext, n = o.entity.data, r = o.systemCode, l = o.backendUrl;
127
+ let c = R(l, o.isTest) + "/dsc/workflow-commons";
128
+ if (c = j(c, r, l, o.isTest), !c) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
129
+ const m = D(t);
130
+ let u;
131
+ u = n.id || n.ID ? O.put(c, m) : O.post(c, m), Z(o.code, n), u.then((p) => {
132
+ let d = !0;
133
+ p && (G(o.code, n), d = X(p, !1, o, t, null)), d === !0 && k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.successfulSave") }), _.$emit("clearTableAllEndEditing"), s(!0);
134
+ }).catch((p) => {
135
+ a(p);
136
+ });
137
+ });
138
+ }(e);
139
+ }, workflowStart: function(e) {
140
+ return _.$emit("clearTableAllStartEditing"), async function(t) {
141
+ return new Promise((s, a) => {
142
+ const o = t.pageContext, n = o.entity.data, r = o.systemCode, l = o.backendUrl;
143
+ if (o.fileuploadInfo && o.fileuploadInfo.length > 0) {
144
+ const c = o.fileuploadInfo[0];
145
+ let m;
146
+ c.isTable && c.tableTitle && c.rowIndex !== void 0 ? (c.rowIndex, c.rowIndex, m = b().t("superPageRuntimeMessage.fileUploadUnCompleteTable", { label: c.label, tableTitle: c.tableTitle, rowIndex: c.rowIndex + 1 })) : m = b().t("superPageRuntimeMessage.fileUploadUnComplete", { label: c.label }), k({ message: m, type: "warning", showClose: !0 }), s(!1);
147
+ } else {
148
+ let c = R(l, o.isTest) + "/dsc/workflow-commons/start";
149
+ if (c = j(c, r, l, o.isTest), !c) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
150
+ const m = D(t);
151
+ let u;
152
+ n.workflow_id || n.WORKFLOW_ID ? (c = R(l, o.isTest) + "/dsc/workflow-commons", c = j(c, r, l, o.isTest), u = O.put(c, m)) : u = O.post(c, m), Z(o.code, n), u.then((p) => {
153
+ let d = !0;
154
+ p && (G(o.code, n), d = X(p, !1, o, t, null)), d === !0 && k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.successfulStart") }), _.$emit("clearTableAllEndEditing"), s(!0);
155
+ }).catch((p) => {
156
+ a(p);
157
+ });
158
+ }
159
+ });
160
+ }(e);
161
+ }, submitProcess: function(e) {
162
+ return _.$emit("clearTableAllStartEditing"), function(t) {
163
+ return new Promise((s, a) => {
164
+ const o = t.pageContext;
165
+ if (o.fileuploadInfo && o.fileuploadInfo.length > 0) {
166
+ const n = o.fileuploadInfo[0];
167
+ let r;
168
+ n.isTable && n.tableTitle && n.rowIndex !== void 0 ? (n.rowIndex, n.rowIndex, r = b().t("superPageRuntimeMessage.fileUploadUnCompleteTable", { label: n.label, tableTitle: n.tableTitle, rowIndex: n.rowIndex + 1 })) : r = b().t("superPageRuntimeMessage.fileUploadUnComplete", { label: n.label }), k({ message: r, type: "warning", showClose: !0 }), s(!1);
169
+ } else {
170
+ const n = o.systemCode, r = o.backendUrl;
171
+ let l = R(r, o.isTest) + "/dsc/workflow-commons/submit";
172
+ if (l = j(l, n, r, o.isTest), !l) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
173
+ const c = D(t);
174
+ Z(o.code, o.entity.data);
175
+ const m = O.post(l, c);
176
+ m ? m.then((u) => {
177
+ let p = !0;
178
+ u && (G(o.code, o.entity.data), p = X(u, !1, o, t, null)), p === !0 && k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.successfulSubmit") }), _.$emit("clearTableAllEndEditing"), s(!0);
179
+ }).catch((u) => {
180
+ a(u);
181
+ }) : G(o.code, o.entity.data);
182
+ }
183
+ });
184
+ }(e);
185
+ }, submitTask: function(e) {
186
+ return Y(e, "SUBMIT");
187
+ }, approve: function(e) {
188
+ return Y(e, "APPROVE");
189
+ }, refuse: function(e) {
190
+ return Y(e, "REFUSE");
191
+ }, readed: function(e) {
192
+ return Y(e, "READED");
193
+ }, agreement: function(e) {
194
+ return Y(e, "AGREEMENT");
195
+ }, oppose: function(e) {
196
+ return Y(e, "OPPOSE");
197
+ }, kiken: function(e) {
198
+ return Y(e, "KIKEN");
199
+ }, assign: function(e) {
200
+ return function(t) {
201
+ const s = t.pageContext, a = s.code + "_";
202
+ _.$emit(a + "assign-task", t);
203
+ }(e);
204
+ }, copyTask: function(e) {
205
+ return function(t) {
206
+ const s = t.pageContext, a = s.code + "_";
207
+ _.$emit(a + "copy-task", t);
208
+ }(e);
209
+ }, addSigner: function(e) {
210
+ return function(t) {
211
+ const s = t.pageContext, a = s.code + "_";
212
+ _.$emit(a + "add-signer", t);
213
+ }(e);
214
+ }, drawTask: function(e) {
215
+ return function(t) {
216
+ const s = t.pageContext, a = s.backendUrl, o = R(a, s.isTest) + "/dsc/workflow-commons/draw-tasks", n = D(t);
217
+ return L(t, n, o, "superPageRuntimeMessage.successfulDrawTask");
218
+ }(e);
219
+ }, abandonReceive: function(e) {
220
+ return function(t) {
221
+ const s = t.pageContext, a = s.backendUrl, o = R(a, s.isTest) + "/dsc/workflow-commons/abandon-receives", n = D(t);
222
+ return L(t, n, o, "superPageRuntimeMessage.successfulAbandonReceive");
223
+ }(e);
224
+ }, returnToPreviousTask: function(e) {
225
+ return function(t) {
226
+ const s = t.pageContext, a = s.backendUrl, o = R(a, s.isTest) + "/dsc/workflow-commons/return-to-previous-tasks", n = D(t);
227
+ return L(t, n, o, "superPageRuntimeMessage.successfulReturnToPreviousTask");
228
+ }(e);
229
+ }, endInstance: function(e) {
230
+ return function(t) {
231
+ const s = t.pageContext, a = s.backendUrl, o = R(a, s.isTest) + "/dsc/workflow-commons/end-instance", n = D(t);
232
+ return L(t, n, o, "superPageRuntimeMessage.successfulEndInstance");
233
+ }(e);
234
+ }, returnTaskTo: function(e) {
235
+ return function(t) {
236
+ const s = t.pageContext, a = s.code + "_";
237
+ _.$emit(a + "choose-return-node", t);
238
+ }(e);
239
+ }, removeSigner: function(e) {
240
+ return function(t) {
241
+ const s = t.pageContext, a = s.code + "_";
242
+ _.$emit(a + "remove-signer", t);
243
+ }(e);
244
+ }, retrieveTask: function(e) {
245
+ return function(t) {
246
+ const s = t.pageContext, a = s.backendUrl, o = R(a, s.isTest) + "/dsc/workflow-commons/retrieves", n = D(t);
247
+ return L(t, n, o, "superPageRuntimeMessage.successfulRetrieve");
248
+ }(e);
249
+ }, extractWorkflow: function(e) {
250
+ return dt(e);
251
+ }, extractWorkflowEvent: function(e) {
252
+ return function(t) {
253
+ const s = t.pageContext;
254
+ _.$emit(s.code + "_event-call-component", { componentName: "extract-workflow-dialog", componentProps: { pageContext: t.pageContext, configure: t.configureObj } });
255
+ }(e);
256
+ }, cancelExtractWorkflow: function(e) {
257
+ return function(t) {
258
+ const s = t.pageContext, a = s.backendUrl, o = R(a, s.isTest) + "/dsc/workflow-commons/cancel-extract", n = D(t);
259
+ return L(t, n, o, "superPageRuntimeMessage.successfulCancelExtract");
260
+ }(e);
261
+ }, approveExtractWorkflow: function(e) {
262
+ return function(t) {
263
+ const s = t.pageContext, a = s.backendUrl, o = R(a, s.isTest) + "/dsc/workflow-commons/approve-extract", n = D(t);
264
+ return L(t, n, o, "superPageRuntimeMessage.successfulOperation");
265
+ }(e);
266
+ }, refuseExtractWorkflow: function(e) {
267
+ return function(t) {
268
+ const s = t.pageContext, a = s.backendUrl, o = R(a, s.isTest) + "/dsc/workflow-commons/refuse-extract", n = D(t);
269
+ return L(t, n, o, "superPageRuntimeMessage.successfulOperation");
270
+ }(e);
271
+ }, viewDetail: function(e) {
272
+ }, lineEditCreate: function(e) {
273
+ return function(t) {
274
+ const s = t.pageContext, a = t.tableUuid, o = z(s, a);
275
+ o && (t.getDefaultValueFunc = ze, o.createRow(t.listCode, {}, t));
276
+ }(e);
277
+ }, printLabel: function(e) {
278
+ return function(t) {
279
+ let s = null;
280
+ try {
281
+ if (s = t.menuItem ? t.menuItem.templateUuid : t.configureObj.props.base.template[0].templateUuid, !s) throw new Error("未找到模板");
282
+ } catch (a) {
283
+ console.error("打印标签失败,未在配置中找到找到模板", a, t);
284
+ }
285
+ Ze.printLabel(t, s);
286
+ }(e);
287
+ }, queryCharts: function(e) {
288
+ Me(e);
289
+ }, resetCharts: function(e) {
290
+ var s, a;
291
+ const t = e.pageContext;
292
+ Object.assign(t.entity.data, le((s = t.initChartData) == null ? void 0 : s.data)), Object.assign(t.entity.page, le((a = t.initChartData) == null ? void 0 : a.page)), e.isInitChart = !0, Me(e);
293
+ }, exportCharts: function(e) {
294
+ (function(t) {
295
+ var i, f, g, T, h, y, P, I, N, x, v, U;
296
+ const s = t.pageContext, a = s.allChartUuids;
297
+ if (!a || a.length == 0) return;
298
+ const o = t.configureObj;
299
+ let n = null;
300
+ o && o.runtime && (n = o.runtime.props);
301
+ const r = n ? n.state : void 0;
302
+ n && (n.state = "disabled");
303
+ const l = [];
304
+ for (let M = 0; M < a.length; M++) {
305
+ const S = a[M], A = z(s, S);
306
+ if (A) {
307
+ const E = A.getConfigure();
308
+ E && E.exportable && E._dynamicShowFlag && A.exportChart && l.push(A.exportChart());
309
+ }
310
+ }
311
+ if (!l || l.length == 0) return;
312
+ let c, m = s.label;
313
+ m || (m = s.code), c = m;
314
+ const u = { reportDataList: l, beanName: s.beanName, systemCode: s.systemCode, pageCode: s.code }, p = q(s);
315
+ u.additionalParamMap = p;
316
+ const d = (f = (i = o.runtime) == null ? void 0 : i.props) == null ? void 0 : f.title;
317
+ d && (u.currentOperation = d), u.isMobile = V(), u.isShowWatermark = ((T = (g = o.props) == null ? void 0 : g.watermark) == null ? void 0 : T.isShowWatermark) === void 0 ? "true" : ((y = (h = o.props) == null ? void 0 : h.watermark) == null ? void 0 : y.isShowWatermark) + "", u.watermark = (I = (P = o.props) == null ? void 0 : P.watermark) != null && I.content && ((x = (N = o.props) == null ? void 0 : N.watermark) == null ? void 0 : x.content.length) > 0 ? (U = (v = o.props) == null ? void 0 : v.watermark) == null ? void 0 : U.content.join("-~") : "";
318
+ const C = s.backendUrl, w = R(C, s.isTest) + "/dsc/commons/exportChart";
319
+ we(), ae.post(w, u, { responseType: "blob" }).then((M) => {
320
+ const S = document.createElement("a");
321
+ S.style.display = "none", S.href = URL.createObjectURL(M.data), S.setAttribute("download", c + ".xlsx"), document.body.appendChild(S), S.click(), document.body.removeChild(S);
322
+ }).finally(() => {
323
+ n && (n.state = r);
324
+ });
325
+ })(e);
326
+ }, saveQueryCharts: function(e) {
327
+ (function(t) {
328
+ const s = t.pageContext, a = t.configureObj, o = s.code + "_";
329
+ _.$emit(o + "save-chart-condition", { pageContext: s, configureObj: a });
330
+ })(e);
331
+ }, addTransactor: function(e) {
332
+ return function(t) {
333
+ const s = t.pageContext, a = s.code + "_";
334
+ _.$emit(a + "add-transactor", t);
335
+ }(e);
336
+ }, removeTransactor: function(e) {
337
+ return function(t) {
338
+ const s = t.pageContext, a = s.code + "_";
339
+ _.$emit(a + "remove-transactor", t);
340
+ }(e);
341
+ } };
342
+ function Me(e) {
343
+ const t = e.pageContext, s = t.initChartServiceConfigs;
344
+ if (!s || s.length == 0) return;
345
+ const a = e.configureObj;
346
+ let o = null;
347
+ a && a.runtime && (o = a.runtime.props);
348
+ const n = o ? o.state : void 0;
349
+ o && (o.state = "disabled"), Qe(t, s, void 0, e.isInitChart).then(() => {
350
+ o && (o.state = n);
351
+ }).catch(() => {
352
+ o && (o.state = n);
353
+ });
354
+ }
355
+ function Et(e, t, s, a) {
356
+ var h, y, P, I, N, x, v, U, M, S, A, E, F;
357
+ e.clickUuid = t.uuid, e.canClick = !1;
358
+ const o = s.templateUuid, n = s.templateName, r = e.systemCode, l = (h = t.props.base) == null ? void 0 : h.logSetting, c = re(e), m = e.beanName, u = t.props.base, p = t.tableName ? t.tableName : e.tableName, d = e.backendUrl, C = nt.getFormViewData(e), w = u.isPermission === void 0 || u.isPermission === "true" || u.isPermission, i = { entity: C, fileName: o, showName: n, beanName: m, isWorkflowForm: c, functionCode: K(t, e), tableName: p, isPermission: w + "", systemCode: r, listCodesMap: e.listCodesMap, pageCode: e.code, pageVersion: e.version, listCodesInitSearchForm: e.listCodesInitSearchForm };
359
+ l && (i.logSettingText = l.join(""));
360
+ const f = (P = (y = t.runtime) == null ? void 0 : y.props) == null ? void 0 : P.title;
361
+ f && (i.currentOperation = f), i.isMobile = V();
362
+ const g = q(e);
363
+ let T;
364
+ i.additionalParamMap = g, i.isShowWatermark = ((N = (I = t.props) == null ? void 0 : I.watermark) == null ? void 0 : N.isShowWatermark) === void 0 ? "true" : ((v = (x = t.props) == null ? void 0 : x.watermark) == null ? void 0 : v.isShowWatermark) + "", i.watermark = (M = (U = t.props) == null ? void 0 : U.watermark) != null && M.content && ((A = (S = t.props) == null ? void 0 : S.watermark) == null ? void 0 : A.content.length) > 0 ? (F = (E = t.props) == null ? void 0 : E.watermark) == null ? void 0 : F.content.join("-~") : "", T = a ? function(B, J, pe, de) {
365
+ return new Promise((me, fe) => {
366
+ const ge = R(J, de) + "/dsc/commons/export-pdf";
367
+ we();
368
+ const ee = ae.post(ge, pe, { headers: { "content-type": "application/json" }, responseType: "blob" });
369
+ window.$message.info("正在导出中..."), ee.then((te) => {
370
+ const ce = new Blob([te.data]), W = document.createElement("a");
371
+ W.download = B.substring(0, B.lastIndexOf(".")) + ".pdf", W.style.display = "none", W.target = "_blank", W.href = URL.createObjectURL(ce), document.body.appendChild(W), W.click(), URL.revokeObjectURL(W.href), document.body.removeChild(W), me(!0);
372
+ }).catch((te) => {
373
+ fe(te);
374
+ });
375
+ });
376
+ }(n, d, i, e.isTest) : function(B, J, pe, de) {
377
+ return new Promise((me, fe) => {
378
+ const ge = R(J, de) + "/dsc/commons/export-reports";
379
+ we(), ae.post(ge, pe, { responseType: "blob" }).then((ee) => {
380
+ const te = new Blob([ee.data]);
381
+ let ce = "报告.xlsx";
382
+ B && (ce = B);
383
+ const W = document.createElement("a");
384
+ W.download = ce, W.style.display = "none", W.target = "_blank", W.href = URL.createObjectURL(te), document.body.appendChild(W), W.click(), URL.revokeObjectURL(W.href), document.body.removeChild(W), me(!0);
385
+ }).catch((ee) => {
386
+ fe(ee);
387
+ });
388
+ });
389
+ }(n, d, i, e.isTest), T && T.then(() => {
390
+ $(e, t);
391
+ }).catch((B) => {
392
+ window.$message.error("导出失败..."), $(e, t);
393
+ });
394
+ }
395
+ function we() {
396
+ ae.defaults.headers.common.Authorization = Te();
397
+ const e = He();
398
+ if (e) {
399
+ const t = "_RUN_CURRENT_ROLE";
400
+ ae.defaults.headers.common[t] = e;
401
+ }
402
+ }
403
+ function Ne(e, t) {
404
+ return new Promise((s, a) => {
405
+ const o = e.pageContext, n = e.configureObj, r = e.mainDefaultValueColumns, l = e.dynamicColumnInfo, c = n.props.base.successOperation;
406
+ let m = !1;
407
+ if (c && c === "noOperation" && (m = !0), o.fileuploadInfo && o.fileuploadInfo.length > 0) {
408
+ const u = o.fileuploadInfo[0];
409
+ let p;
410
+ p = u.isTable && u.tableTitle && u.rowIndex !== void 0 ? b().t("superPageRuntimeMessage.fileUploadUnCompleteTable", { label: u.label, tableTitle: u.tableTitle, rowIndex: u.rowIndex + 1 }) : b().t("superPageRuntimeMessage.fileUploadUnComplete", { label: u.label }), k({ message: p, type: "warning", showClose: !0 }), s(!1);
411
+ } else {
412
+ Z(o.code, o.entity.data);
413
+ const u = ut(o, n, "/dsc/commons", m, r, l);
414
+ u ? u.then((p) => {
415
+ p && G(o.code, o.entity.data), H(o, n, p, "superPageRuntimeMessage.successfulSave", t), s(p);
416
+ }).catch((p) => {
417
+ a(p);
418
+ }) : (G(o.code, o.entity.data), a("保存时request不存在"));
419
+ }
420
+ });
421
+ }
422
+ function Ee(e, t, s, a, o, n, r) {
423
+ var h, y, P;
424
+ const l = re(e), c = e.systemCode, m = t.props.base.isPermission === void 0 || t.props.base.isPermission === "true" || t.props.base.isPermission, u = K(t, e);
425
+ let p = r;
426
+ p || (p = e.entity.data);
427
+ const d = { entity: p, tableName: e.tableName, formNoRuleCode: e.formNoRuleCode, isWorkflowEntity: l, functionCode: u, isPermission: m + "", listCodesMap: e.listCodesMap, pageCode: e.code, pageVersion: e.version, listCodesInitSearchForm: e.listCodesInitSearchForm };
428
+ n && (d.ids = n), e.judgeHeavyList && (ne(e.judgeHeavyList) ? d.judgeHeavyList = JSON.stringify(e.judgeHeavyList) : d.judgeHeavyList = e.judgeHeavyList);
429
+ const C = t.props.base.conversionCodes;
430
+ C && (ne(C) ? d.dataConversionRule = C.join(",") : typeof C == "string" && (d.dataConversionRule = C));
431
+ const w = Pe(t);
432
+ w && (d.autoSetValueData = w);
433
+ const i = (h = t.props.base) == null ? void 0 : h.logSetting;
434
+ i && (d.logSettingText = i.join("")), d.systemCode || (d.systemCode = c);
435
+ const f = e.beanName;
436
+ f && (d.beanName = f), o && (d.dynamicColumnInfo = o), a && (d.mainDefaultValueColumns = a);
437
+ const g = q(e);
438
+ d.additionalParamMap = g, s !== void 0 && (d.unControlVersion = s);
439
+ const T = (P = (y = t.runtime) == null ? void 0 : y.props) == null ? void 0 : P.title;
440
+ return T && (d.currentOperation = T), d.isMobile = V(), d;
441
+ }
442
+ function lt(e, t, s, a, o, n, r, l, c) {
443
+ const m = e.systemCode, u = e.backendUrl, p = Ee(e, t, a, o, n, null, r);
444
+ return l && l.tableName && (p.tableName = l.tableName), c && (p.isWorkflowEntity = !1), function(d, C, w, i, f, g) {
445
+ const T = R(C, g);
446
+ let h, y = T + i;
447
+ return y = j(y, d, C, g), h = f && (f.id || f.ID) ? O.put(y, w) : O.post(y, w), h;
448
+ }(m, u, p, s, r, e.isTest);
449
+ }
450
+ function ut(e, t, s, a, o, n) {
451
+ return lt(e, t, s, a, o, n, null, null);
452
+ }
453
+ function H(e, t, s, a, o) {
454
+ const n = _e(e, t, o);
455
+ if (n && n === "list") (function(r, l, c, m) {
456
+ let u = l.props.base.successOperation;
457
+ const p = l.props.base.isNeedValueMapping, d = Ae(r, l);
458
+ if (u || pt.includes(l.name) || (u = "refresh"), u === "refresh") d ? z(r, d).refresh() : console.error("tableUuid is empty");
459
+ else if (u === "closeWindow" || u === "closeWindowAndRefresh") {
460
+ const C = le(r.entity.page);
461
+ let w = c;
462
+ w || (w = {}), Object.assign(C, w), he(r, l, C, p);
463
+ }
464
+ m && k({ message: b().t(m), type: "success", showClose: !0 });
465
+ })(e, t, s, a), e.canClick = !0;
466
+ else if (n && n === "form") (function(r, l, c, m) {
467
+ if (c) {
468
+ const u = c;
469
+ let p;
470
+ p = u.entity ? u.entity : u, u.formNo && (r.initFormNo = u.formNo), Ce(r, l, { ...p, ...r.entity.page });
471
+ } else {
472
+ const u = l.props.base.successOperation;
473
+ u && u !== null ? Ce(r, l, { ...r.entity.page }) : r.canClick = !0;
474
+ }
475
+ m && k({ message: b().t(m), type: "success", showClose: !0 });
476
+ })(e, t, s, a);
477
+ else {
478
+ const r = t.props.base.successOperation;
479
+ r && r !== null ? Ce(e, t, null) : e.canClick = !0;
480
+ }
481
+ }
482
+ function _e(e, t, s) {
483
+ let a;
484
+ return s === void 0 ? a = t.props.base.tableUuid ? "list" : null : s === !1 && (a = "form"), a || (a = e.pageType), a;
485
+ }
486
+ function Ce(e, t, s) {
487
+ const a = t.props.base.successOperation;
488
+ if (!a || a === null) return;
489
+ const o = t.props.base.isNeedValueMapping;
490
+ a === "noOperation" ? e.canClick = !0 : a === "refresh" ? s && (s.id || s.ID) ? We(e, s.ID ? s.ID : s.id) : e.canClick = !0 : a !== "closeWindow" && a !== "closeWindowAndRefresh" || (he(e, t, s, o), e.canClick = !0);
491
+ }
492
+ function he(e, t, s, a) {
493
+ const o = e.entity && e.entity.request ? e.entity.request.jumpMode : null;
494
+ if (o === "openWindow" || o === "newTab") window.parent ? window.parent.close() : window.close();
495
+ else {
496
+ const n = e.tableName, r = a !== void 0 && a === !0 && s && s !== void 0, l = (e.entity && e.entity.request ? e.entity.request.parentPageCode : null) + "_";
497
+ _.$emit(l + "close-dialog", { isNeedValueMapping: r, dataModel: s, sourceConfigureObj: t, sourceTableName: n, jumpMode: o });
498
+ }
499
+ }
500
+ function _t(e, t, s, a, o) {
501
+ var r;
502
+ o || (o = t.runtime && t.runtime.linkPage && t.runtime.linkPage.valueMappings ? t.runtime.linkPage.valueMappings : null) || (o = (r = t.props.linkPage) == null ? void 0 : r.valueMappings);
503
+ const n = e.tableName;
504
+ (function(l, c, m) {
505
+ if (l && l !== null && c) {
506
+ let u = l;
507
+ Array.isArray(l) && l.length > 0 && (u = l[0]), c.forEach((p) => {
508
+ const d = p.source;
509
+ if (!d) return;
510
+ const C = d.split("."), w = Ke(u, C), i = p.target, f = Ye(null, i);
511
+ Xe(m.entity, f, w);
512
+ });
513
+ }
514
+ })(s, o, e), oe(null, e, t, "setValue", { sourceModel: s, sourceTableName: a, entity: e.entity.data, targetTableName: n });
515
+ }
516
+ const pt = ["dropdown"];
517
+ function Dt(e, t, s, a) {
518
+ var r;
519
+ t && !t.props.base && (t.props.base = {});
520
+ let o = a;
521
+ o || (o = s ? "refresh" : (r = t.props.base) == null ? void 0 : r.successOperation);
522
+ const n = _e(e, t);
523
+ if (n && n === "list" && !o && (o = "refresh"), o === "refresh") {
524
+ if (n && n === "list") {
525
+ const l = Ae(e, t);
526
+ l ? z(e, l).refresh() : console.error("tableUuid is empty");
527
+ } else if (n && n === "form") {
528
+ const l = e.entity.data;
529
+ We(e, l.ID ? l.ID : l.id);
530
+ }
531
+ }
532
+ }
533
+ function Q(e, t, s, a) {
534
+ return new Promise((o, n) => {
535
+ const r = e.pageContext, l = e.configureObj;
536
+ if (r.fileuploadInfo && r.fileuploadInfo.length > 0) {
537
+ const c = r.fileuploadInfo[0];
538
+ let m;
539
+ c.isTable && c.tableTitle && c.rowIndex !== void 0 ? (c.rowIndex, c.rowIndex, m = b().t("superPageRuntimeMessage.fileUploadUnCompleteTable", { label: c.label, tableTitle: c.tableTitle, rowIndex: c.rowIndex + 1 })) : m = b().t("superPageRuntimeMessage.fileUploadUnComplete", { label: c.label }), k({ message: m, type: "warning", showClose: !0 }), o(!1);
540
+ } else {
541
+ const c = e.mainDefaultValueColumns, m = e.dynamicColumnInfo, u = e.ids, p = l.props.base.successOperation;
542
+ let d = !1;
543
+ p && p === "noOperation" && (d = !0);
544
+ let C = r.tableName;
545
+ if (t) {
546
+ const i = l.props.base.tableUuid ? l.props.base.tableUuid : e.tableUuid;
547
+ C = ke(r, i);
548
+ } else Z(r.code, r.entity.data);
549
+ const w = function(i, f, g, T, h, y, P, I, N) {
550
+ return new Promise((x, v) => {
551
+ const U = f.props.base.title, M = "superPageRuntimeMessage.whetherToConfirm" + qe(P);
552
+ ue.confirm(b().t(M, { name: U }), b().t("superPageRuntimeMessage.tips"), { confirmButtonText: b().t("superPageRuntimeMessage.sure"), cancelButtonText: b().t("superPageRuntimeMessage.cancel"), type: "warning" }).then(() => {
553
+ const S = i.systemCode, A = i.backendUrl, E = Ee(i, f, T, h, y, I, null);
554
+ E.tableName = N;
555
+ let F = R(A, i.isTest) + g;
556
+ F = j(F, S, A, i.isTest), O.post(F, E).then((B) => {
557
+ x(B);
558
+ }).catch((B) => {
559
+ v(B);
560
+ });
561
+ }).catch(() => {
562
+ v("点击了取消按钮");
563
+ });
564
+ });
565
+ }(r, l, a, d, c, m, s, u, C);
566
+ w ? w.then((i) => {
567
+ !t && i && G(r.code, r.entity.data), H(r, l, i, "superPageRuntimeMessage.successfulSave", t), o(i);
568
+ }).catch((i) => {
569
+ n(i);
570
+ }) : (t || G(r.code, r.entity.data), n("request不存在"));
571
+ }
572
+ });
573
+ }
574
+ function jt(e, t) {
575
+ var N, x, v;
576
+ const s = e.pageContext, a = e.configureObj, o = e.tableConfigure, n = a.props.base, r = a.props.base.tableUuid ? a.props.base.tableUuid : e.tableUuid, l = ke(s, r), c = new FormData();
577
+ c.append("multipartFile", t), l && c.append("tableName", l);
578
+ const m = (x = (N = a.runtime) == null ? void 0 : N.props) == null ? void 0 : x.title;
579
+ m && c.append("currentOperation", m), c.append("isMobile", V()), s.importBeanName && c.append("importBeanName", s.importBeanName), s.beanName && c.append("beanName", s.beanName);
580
+ const u = (v = o.props.importSetting) == null ? void 0 : v.listViewImportDuplicate;
581
+ u && c.append("importDuplicateRule", u);
582
+ const p = s.judgeHeavyList;
583
+ p && c.append("judgeHeavyList", JSON.stringify(p));
584
+ const d = Pe(a);
585
+ d && c.append("autoSetValueData", d);
586
+ const C = s.formNoRuleCode;
587
+ C && c.append("formNoRuleCode", C);
588
+ const w = e.listCode;
589
+ w && c.append("listCode", w);
590
+ let i = !1;
591
+ i = n.isAsync !== void 0 && n.isAsync !== null && n.isAsync, c.append("isAsync", i + ""), c.append("pageCode", s.code);
592
+ const f = re(s);
593
+ f != null && c.append("isWorkflowEntity", f + "");
594
+ const g = K(a, s);
595
+ g && c.append("functionCode", g);
596
+ const T = q(s);
597
+ c.append("additionalParamMapStr", JSON.stringify(T));
598
+ const h = n.isPermission === void 0 || n.isPermission === "true" || n.isPermission;
599
+ c.append("isPermission", h + "");
600
+ const y = s.systemCode;
601
+ y && c.append("systemCode", y);
602
+ const P = s.backendUrl;
603
+ let I = R(P, s.isTest) + "/dsc/commons/import-data";
604
+ I = j(I, y, P, s.isTest), O.post(I, c).then((U) => {
605
+ if (i) k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.asyncImport") }), Fe(s);
606
+ else {
607
+ let M = !1;
608
+ U ? (M = !1, k({ dangerouslyUseHTMLString: !0, showClose: !0, type: "warning", message: U })) : (k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.successfulImport") }), M = !0), H(s, a, U, null, !0), s.result = M, $(s, a);
609
+ }
610
+ }).catch((U) => {
611
+ });
612
+ }
613
+ function Wt(e, t) {
614
+ const s = e.props.base;
615
+ if (s.conditionsForExecution && s.conditionsForExecution !== "") {
616
+ if (s.conditionsForExecution === "one") {
617
+ if (!t || t.length !== 1) return k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.thePreconditionOfTheButtonTo", { message: b().t("superPageRuntimeMessage.onlyOneRecordCanBeselected") }) }), !1;
618
+ } else if (s.conditionsForExecution === "more" && (!t || t.length <= 0)) return k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.thePreconditionOfTheButtonTo", { message: b().t("superPageRuntimeMessage.selectAtLeastOneRecord") }) }), !1;
619
+ }
620
+ return !0;
621
+ }
622
+ function D(e) {
623
+ var w, i, f;
624
+ const t = e.pageContext, s = e.configureObj, a = t.entity.data, o = t.systemCode, n = t.code;
625
+ let r = K(s, t);
626
+ r || (r = n + ".xxx"), a.id || a.ID || (a.PAGE_CODE = t.code, a.PAGE_VERSION = t.version);
627
+ const l = { entity: a, pageMoel: t.entity.page, formNoRuleCode: t.formNoRuleCode, tableName: t.tableName, emailTemplateCode: t.emailTemplateCode, definitionId: t.definitionId, functionCode: r, systemCode: o, listCodesMap: t.listCodesMap, pageCode: t.code, pageVersion: t.version, listCodesInitSearchForm: t.listCodesInitSearchForm };
628
+ t.completeTaskParam && (l.completeTaskParam = { taskId: t.completeTaskParam.taskId, opinion: t.completeTaskParam.opinion }), t.judgeHeavyList && (ne(t.judgeHeavyList) ? l.judgeHeavyList = JSON.stringify(t.judgeHeavyList) : l.judgeHeavyList = t.judgeHeavyList);
629
+ const c = s.props.base.conversionCodes;
630
+ c && (ne(c) ? l.dataConversionRule = c.join(",") : typeof c == "string" && (l.dataConversionRule = c));
631
+ const m = Pe(s);
632
+ m && (l.autoSetValueData = m), t.beanName && (l.beanName = t.beanName);
633
+ const u = (w = s.props.base) == null ? void 0 : w.logSetting;
634
+ u && (l.logSettingText = u.join("")), l.systemCode || (l.systemCode = o);
635
+ const p = q(t);
636
+ l.additionalParamMap = p, p.ids && p.ids.length > 0 && (typeof p.ids == "string" ? l.ids = p.ids.split(",") : Array.isArray(p.ids) ? l.ids = p.ids : typeof ids == "number" ? l.ids = [p.ids] : console.error("ids参数类型错误"));
637
+ const d = s.props.base.successOperation;
638
+ d && d === "noOperation" && (l.unControlVersion = !0), l.isWorkflowEntity = !0;
639
+ const C = (f = (i = s.runtime) == null ? void 0 : i.props) == null ? void 0 : f.title;
640
+ return C && (l.currentOperation = C), l.isMobile = V(), l;
641
+ }
642
+ function X(e, t, s, a, o) {
643
+ const n = s.code, r = s.version;
644
+ let l;
645
+ if (e) {
646
+ t && (s.initFormNo = e.formNo, s.emailTemplateCode = e.emailTemplateCode), e.entity && (s.entity.data = e.entity, function(m, u) {
647
+ const p = q(u);
648
+ m && p && Ge(p._t_ + "_id", m);
649
+ }(e.entity.id || e.entity.ID, s));
650
+ const c = e.completeTaskResult;
651
+ if (c) {
652
+ const m = c.completeTaskTipType;
653
+ if (m && m === "MESSAGE") {
654
+ const u = c.content;
655
+ return k({ showClose: !0, type: "warning", message: u }), !1;
656
+ }
657
+ }
658
+ if (e.completeTaskParam) {
659
+ const m = e.completeTaskParam;
660
+ l = m.taskId, a && (a.taskId = l), ve(n, r, "_completeTaskParam", m), s.fieldPermissions = m.fieldPermissions, s.actionPermissions = m.actionPermissions, s.workflowButtonComponent = m.buttonComponent, s.completeTaskParam = m, s.completeTaskParam.opinion = null;
661
+ }
662
+ s.entity || (s.entity = {}), s.entity.task = e.taskParamMap, ve(n, r, "_currentActivityName", e.taskName);
663
+ }
664
+ return a && (a.operationResult = o), t || H(s, a.configureObj, e, null, !1), !0;
665
+ }
666
+ async function Y(e, t) {
667
+ const s = await De(e);
668
+ return new Promise((a, o) => {
669
+ var r;
670
+ const n = e.pageContext;
671
+ if (n.fileuploadInfo && n.fileuploadInfo.length > 0) {
672
+ const l = n.fileuploadInfo[0];
673
+ let c;
674
+ l.isTable && l.tableTitle && l.rowIndex !== void 0 ? (l.rowIndex, l.rowIndex, c = b().t("superPageRuntimeMessage.fileUploadUnCompleteTable", { label: l.label, tableTitle: l.tableTitle, rowIndex: l.rowIndex + 1 })) : c = b().t("superPageRuntimeMessage.fileUploadUnComplete", { label: l.label }), k({ message: c, type: "warning", showClose: !0 }), a(!1);
675
+ } else if (s) {
676
+ const l = n.systemCode, c = n.backendUrl, m = s === !0 ? (r = n.completeTaskParam) == null ? void 0 : r.opinion : s;
677
+ let u = R(c, n.isTest) + "/dsc/workflow-commons/complete-tasks";
678
+ if (u = j(u, l, c, n.isTest), !u) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
679
+ const p = D(e);
680
+ p.completeTaskParam = { operationResult: t, taskId: n.completeTaskParam ? n.completeTaskParam.taskId : null, opinion: m || null };
681
+ const d = O.post(u, p);
682
+ Z(n.code, n.entity.data), d.then((C) => {
683
+ let w = !0;
684
+ C && (G(n.code, n.entity.data), w = X(C, !1, n, e, t)), w === !0 && k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.successfulCompleteTask") }), a(!0);
685
+ }).catch((C) => {
686
+ o(C);
687
+ });
688
+ } else a(!0);
689
+ });
690
+ }
691
+ function De(e) {
692
+ return new Promise((t, s) => {
693
+ var o, n, r, l, c;
694
+ const a = e.configureObj;
695
+ if (a) {
696
+ if ((o = e.pageContext.workflowOpinion) != null && o.opinion) return void t(e.pageContext.workflowOpinion.opinion);
697
+ let m = !1;
698
+ if ((r = (n = a.props) == null ? void 0 : n.base) != null && r.isMustOpinion && (m = !0), m === !0) {
699
+ const u = e.pageContext, p = (c = (l = a.props) == null ? void 0 : l.base) == null ? void 0 : c.mustOpinionConditions;
700
+ m = ie(u, p);
701
+ }
702
+ m === !0 ? (k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.pleaseInputOpinion") }), e.pageContext.workflowOpinion.focusOpinionInput = !0, t(!1)) : t(!0);
703
+ } else t(!0);
704
+ });
705
+ }
706
+ function Ft(e, t) {
707
+ if (t) {
708
+ const s = e.pageContext, a = e.configureObj, o = s.backendUrl, n = R(o, s.isTest) + "/dsc/workflow-commons/assigns", r = t.id ? t.id : t.ID ? t.ID : null, l = D(e);
709
+ l.assigneeId = r, L(e, l, n, "superPageRuntimeMessage.successfulAssign").then((c) => {
710
+ $(s, a);
711
+ });
712
+ }
713
+ }
714
+ function ye(e) {
715
+ var u, p;
716
+ const t = e.pageContext, s = t.entity.data, a = t.systemCode, o = t.code, n = e.configureObj, r = q(t), l = s.ID !== void 0 && s.ID !== null ? s.ID : s.id, c = { beanName: t.beanName, id: l, entity: s, additionalParamMap: r, tableName: t.tableName, functionCode: o + ".xxx", isWorkflowEntity: !0, listCodesMap: t.listCodesMap, pageCode: t.code, pageVersion: t.version, listCodesInitSearchForm: t.listCodesInitSearchForm };
717
+ c.completeTaskParam = { taskId: t.completeTaskParam.taskId, systemCode: a }, c.completeTaskParam.customTaskTitle = je(e);
718
+ const m = (p = (u = n == null ? void 0 : n.runtime) == null ? void 0 : u.props) == null ? void 0 : p.title;
719
+ return m && (c.currentOperation = m), c.isMobile = V(), c;
720
+ }
721
+ function je(e) {
722
+ var s, a, o;
723
+ let t = null;
724
+ if (((a = (s = e.configureObj.props.task) == null ? void 0 : s.title) == null ? void 0 : a.length) > 0) for (let n = 0; n < e.configureObj.props.task.title.length; n++) {
725
+ const r = e.configureObj.props.task.title[n];
726
+ if (r.config) {
727
+ if (!(((o = r.conditions) == null ? void 0 : o.length) > 0)) {
728
+ t = r.config;
729
+ break;
730
+ }
731
+ if (ie(e.pageContext, r.conditions)) {
732
+ t = r.config;
733
+ break;
734
+ }
735
+ }
736
+ }
737
+ return t;
738
+ }
739
+ function q(e) {
740
+ if (e.entity) {
741
+ let t = le(e.entity.page);
742
+ t || (t = {});
743
+ const s = e.entity.request;
744
+ return s && Object.assign(t, s), t;
745
+ }
746
+ }
747
+ function Bt(e, t) {
748
+ if (t) {
749
+ const s = e.pageContext, a = e.configureObj, o = s.systemCode, n = s.backendUrl;
750
+ let r = R(n, s.isTest) + "/dsc/workflow-commons/add-signers";
751
+ if (r = j(r, o, n, s.isTest), !r) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
752
+ const l = ye(e);
753
+ l.completeTaskParam.transactors = t.loginNames.join(",").split(",");
754
+ const c = O.post(r, l);
755
+ c && c.then((m) => {
756
+ k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.successfulOperation") }), m.entity && H(s, a, m, null, !1), $(s, a);
757
+ });
758
+ }
759
+ }
760
+ function Lt(e, t) {
761
+ if (t) {
762
+ const s = e.pageContext, a = e.configureObj, o = s.systemCode, n = s.backendUrl;
763
+ let r = R(n, s.isTest) + "/dsc/workflow-commons/add-transactors";
764
+ if (r = j(r, o, n, s.isTest), !r) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
765
+ const l = ye(e);
766
+ l.completeTaskParam.transactors = t.loginNames.join(",").split(",");
767
+ const c = O.post(r, l);
768
+ c && c.then((m) => {
769
+ k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.successfulOperation") }), m.entity && H(s, a, m, null, !1), $(s, a);
770
+ });
771
+ }
772
+ }
773
+ async function Vt(e, t) {
774
+ if (t) {
775
+ const s = await function(a) {
776
+ return new Promise((o, n) => {
777
+ var l, c, m, u;
778
+ const r = a.configureObj;
779
+ if (r) {
780
+ let p = (c = (l = r.props) == null ? void 0 : l.base) == null ? void 0 : c.isMustRemark;
781
+ if (p === void 0 || p === !0) {
782
+ p = !0;
783
+ const d = a.pageContext, C = (u = (m = r.props) == null ? void 0 : m.base) == null ? void 0 : u.mustRemarkConditions;
784
+ p = ie(d, C);
785
+ }
786
+ p === !0 ? ue.prompt(b().t("superPageRuntimeMessage.pleaseInputRemark"), b().t("superPageRuntimeMessage.remark"), { confirmButtonText: b().t("superPageRuntimeMessage.sure"), cancelButtonText: b().t("superPageRuntimeMessage.cancel"), inputType: "textarea", inputValue: null, closeOnClickModal: !1, inputValidator: (d) => !(!d || !d.trim()) || b().t("superPageRuntimeMessage.pleaseInputRemark") }).then(({ value: d }) => {
787
+ o(d);
788
+ }).catch(() => {
789
+ o(!1);
790
+ }) : o(!0);
791
+ } else o(!0);
792
+ });
793
+ }(e);
794
+ if (s) {
795
+ const a = e.pageContext, o = e.configureObj, n = a.systemCode, r = a.backendUrl;
796
+ let l = R(r, a.isTest) + "/dsc/workflow-commons/copies";
797
+ if (l = j(l, n, r, a.isTest), !l) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
798
+ const c = ye(e);
799
+ c.completeTaskParam.transactors = t.loginNames.join(",").split(","), s !== !0 && (c.completeTaskParam.remark = s);
800
+ const m = O.post(l, c);
801
+ m && m.then((u) => {
802
+ var p;
803
+ k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.successfulOperation") }), H(a, o, { entity: (p = a.entity) == null ? void 0 : p.data }, null), $(a, o);
804
+ });
805
+ }
806
+ }
807
+ }
808
+ async function L(e, t, s, a) {
809
+ const o = await De(e);
810
+ return new Promise((n, r) => {
811
+ var l;
812
+ if (o) {
813
+ const c = e.pageContext, m = c.systemCode, u = c.backendUrl;
814
+ if (c.completeTaskParam) {
815
+ const d = o === !0 ? (l = c.completeTaskParam) == null ? void 0 : l.opinion : o;
816
+ t.completeTaskParam = { taskId: c.completeTaskParam.taskId, opinion: d };
817
+ }
818
+ if (!(s = j(s, m, u, c.isTest))) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
819
+ const p = O.post(s, t);
820
+ p && p.then((d) => {
821
+ let C = !0;
822
+ d && (C = X(d, !1, c, e, null)), C === !0 && k({ showClose: !0, type: "success", message: b().t(a) }), n(!0);
823
+ }).catch((d) => {
824
+ r(d);
825
+ });
826
+ } else n(!0);
827
+ });
828
+ }
829
+ function $t(e) {
830
+ const t = e.pageContext, s = t.systemCode, a = t.backendUrl, o = t.completeTaskParam;
831
+ let n = R(a, t.isTest) + "/dsc/workflow-commons/returnable-task/" + o.taskId;
832
+ if (n = j(n, s, a, t.isTest), !n) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
833
+ const r = t.code, l = q(t), c = { beanName: t.beanName, additionalParamMap: l, tableName: t.tableName, functionCode: r + ".xxx", pageCode: t.code };
834
+ return O.post(n, c);
835
+ }
836
+ function qt(e, t) {
837
+ const s = e.pageContext, a = e.configureObj, o = s.backendUrl, n = R(o, s.isTest) + "/dsc/workflow-commons/returnTaskTo", r = D(e);
838
+ t.nodeName && (r.returnToNodeName = t.nodeName), t.nodeId && (r.returnToNodeId = t.nodeId), L(e, r, n, "superPageRuntimeMessage.successfulReturnTaskTo").then((l) => {
839
+ $(s, a);
840
+ });
841
+ }
842
+ function Ht(e) {
843
+ const t = e.pageContext, s = t.systemCode, a = t.backendUrl;
844
+ let o = R(a, t.isTest) + "/dsc/workflow-commons/get-remove-signers";
845
+ const n = D(e);
846
+ if (o = j(o, s, a, t.isTest), o) return O.post(o, n);
847
+ k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
848
+ }
849
+ function Gt(e, t) {
850
+ if (t) {
851
+ const s = e.pageContext, a = e.configureObj, o = s.systemCode, n = s.backendUrl;
852
+ let r = R(n, s.isTest) + "/dsc/workflow-commons/remove-signers";
853
+ if (r = j(r, o, n, s.isTest), !r) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
854
+ const l = t.map((u) => u.id ? u.id : u.ID ? u.ID : null), c = D(e);
855
+ c.ids = l;
856
+ const m = O.post(r, c);
857
+ m && m.then((u) => {
858
+ H(s, a, u, "superPageRuntimeMessage.successfulOperation", !1), $(s, a);
859
+ });
860
+ }
861
+ }
862
+ function Jt(e) {
863
+ const t = e.pageContext, s = t.systemCode, a = t.backendUrl;
864
+ let o = R(a, t.isTest) + "/dsc/workflow-commons/get-remove-transactors";
865
+ const n = D(e);
866
+ if (o = j(o, s, a, t.isTest), o) return O.post(o, n);
867
+ k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
868
+ }
869
+ function Yt(e, t) {
870
+ if (t) {
871
+ const s = e.pageContext, a = e.configureObj, o = s.systemCode, n = s.backendUrl;
872
+ let r = R(n, s.isTest) + "/dsc/workflow-commons/remove-transactors";
873
+ if (r = j(r, o, n, s.isTest), !r) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
874
+ const l = t.map((u) => u.taskId), c = D(e);
875
+ c.ids = l;
876
+ const m = O.post(r, c);
877
+ m && m.then((u) => {
878
+ H(s, a, u, "superPageRuntimeMessage.successfulOperation", !1), $(s, a);
879
+ });
880
+ }
881
+ }
882
+ function dt(e) {
883
+ const t = e.pageContext, s = t.backendUrl;
884
+ let a = R(s, t.isTest) + "/dsc/workflow-commons/initiate-extract";
885
+ const o = D(e);
886
+ if (t.completeTaskParam) {
887
+ const n = [];
888
+ e._value.loginName && n.push(e._value.loginName), o.completeTaskParam = { taskId: t.completeTaskParam.taskId, opinion: e._value.opinion, transactors: n, customTaskTitle: je(e) };
889
+ }
890
+ return new Promise((n, r) => {
891
+ const l = e.pageContext, c = l.systemCode, m = l.backendUrl;
892
+ if (a = j(a, c, m, l.isTest), !a) return void k({ showClose: !0, type: "warning", message: b().t("superPageRuntimeMessage.requestPathEmpty") });
893
+ const u = O.post(a, o);
894
+ u && u.then((p) => {
895
+ let d = !0;
896
+ p && (d = X(p, !1, l, e, null)), d === !0 && k({ showClose: !0, type: "success", message: b().t("superPageRuntimeMessage.successfulInitiateExtract") }), n(!0);
897
+ }).catch((p) => {
898
+ r(p);
899
+ });
900
+ });
901
+ }
902
+ function zt(e, t, s, a, o, n) {
903
+ var l, c, m, u, p, d, C, w;
904
+ let r = !1;
905
+ if (a && a.archival) return r;
906
+ if (t && s && (t === "workflowSave" ? r = function(i) {
907
+ return !!((i.processState === void 0 || i.processState === null || i.processState === "UNSUBMIT" && i.active === "WAIT_TRANSACT" && i.theTransactor === !0) && (i.processState === void 0 || i.showButtonSave === !0) || i.processState && i.processState === "SUBMIT" && i.theTransactor === !0 && i.processingMode !== "TYPE_READ" && i.showButtonSave && (i.active === "WAIT_TRANSACT" || i.active === "WAIT_DESIGNATE_TRANSACTOR" || i.active === "WAIT_CHOICE_TACHE" || i.active === "DRAW_WAIT"));
908
+ }(s) : t === "workflowStart" ? r = function(i, f) {
909
+ return !!(i.processState === void 0 || i.processState === null || f && !f.workflow_id && !f.WORKFLOW_ID);
910
+ }(s, n) : t === "submitProcess" ? r = function(i) {
911
+ return (i.processState === void 0 || i.processState === null || i.processState === "UNSUBMIT" && i.active === "WAIT_TRANSACT" && i.theTransactor === !0) && (i.processState === void 0 || i.showButtonSave === !0);
912
+ }(s) : t === "submitTask" ? r = function(i) {
913
+ return !!(i.processState && i.processState === "SUBMIT" && i.theTransactor === !0 && i.active === "WAIT_TRANSACT" && i.processingMode === "EDIT");
914
+ }(s) : t === "drawTask" ? r = function(i) {
915
+ return !!(i.processState && i.processState === "SUBMIT" && i.active && (i.active === "DRAW_WAIT" || i.active === "DEPT_DRAW_WAIT") && i.showButtonDraw);
916
+ }(s) : t === "abandonReceive" ? r = function(i) {
917
+ return !!(i.processState && i.processState === "SUBMIT" && (i.drawTask && i.active === "WAIT_TRANSACT" || i.canAbandonDeptTask && i.active === "WAIT_TRANSACT") && i.showButtonAbandon);
918
+ }(s) : t === "approve" || t === "refuse" ? r = function(i) {
919
+ return !!(i.processState && i.processState === "SUBMIT" && i.active === "WAIT_TRANSACT" && (i.processingMode === "APPROVE" || i.processingMode === "COUNTERSIGN"));
920
+ }(s) : t === "readed" ? r = function(i) {
921
+ return i.active === "WAIT_TRANSACT" && i.processingMode === "TYPE_READ";
922
+ }(s) : t === "assign" ? r = function(i) {
923
+ return !!(i.processState && i.processState === "SUBMIT" && i.processingMode !== "TYPE_READ" && (i.active === "WAIT_TRANSACT" || i.active === "DRAW_WAIT"));
924
+ }(s) : t === "copyTask" ? r = function(i, f) {
925
+ let g = !1;
926
+ return i.processState && i.processState === "SUBMIT" && i.active === "WAIT_TRANSACT" && i.processingMode !== "TYPE_READ" && i.showButtonCopy && (g = !0), f && (f.props.base.state = g ? "" : "hidden"), !0;
927
+ }(s, o) : t === "addSigner" ? r = function(i) {
928
+ return !!(i.processState && i.processState === "SUBMIT" && i.active === "WAIT_TRANSACT" && i.processingMode === "COUNTERSIGN" && i.showButtonAddCounter);
929
+ }(s) : t === "removeSigner" ? r = function(i) {
930
+ return !!(i.processState && i.processState === "SUBMIT" && i.active === "WAIT_TRANSACT" && i.processingMode === "COUNTERSIGN" && i.showButtonDelCounter);
931
+ }(s) : t === "retrieveTask" ? r = function(i) {
932
+ return !!(i.processState && i.processState !== "END" && i.processState === "SUBMIT" && i.showButtonGetBack === !0 && function(f) {
933
+ return !(f.active !== "COMPLETED" || f.processingMode === "TYPE_READ" || !f.showButtonGetBack);
934
+ }(i));
935
+ }(s) : t === "agreement" || t === "oppose" ? r = function(i) {
936
+ return !!(i.processState && i.processState === "SUBMIT" && i.active === "WAIT_TRANSACT" && i.processingMode === "VOTE");
937
+ }(s) : t === "kiken" ? r = function(i) {
938
+ return !!(i.processState && i.processState === "SUBMIT" && i.active === "WAIT_TRANSACT" && i.processingMode === "VOTE" && i.showButtonKiken);
939
+ }(s) : t === "extractWorkflow" ? r = function(i, f, g) {
940
+ var y;
941
+ const T = Re(), h = T ? T.loginName : null;
942
+ if (i != null && i.processState) {
943
+ if (((y = f == null ? void 0 : f.firstNodeInfo) == null ? void 0 : y.nodeId) === (g == null ? void 0 : g.CURRENT_ACTIVITY_ID)) return !1;
944
+ if ((i == null ? void 0 : i.processState) !== "END" && (i == null ? void 0 : i.processState) !== "EXTRACT" && (i == null ? void 0 : i.processState) !== "MANUAL_END" && g && (g.creator === h || g.CREATOR === h)) return !0;
945
+ }
946
+ return !1;
947
+ }(s, a, n) : t === "cancelExtractWorkflow" ? r = function(i, f, g) {
948
+ const T = Re(), h = T ? T.loginName : null;
949
+ return !!((i == null ? void 0 : i.processState) === "EXTRACT" && g && (g.creator === h || g.CREATOR === h));
950
+ }(s, 0, n) : t === "approveExtractWorkflow" || t === "refuseExtractWorkflow" ? r = mt(s) : t === "addTransactor" || t === "removeTransactor" ? r = function(i) {
951
+ return !!(i.processState && i.processState === "SUBMIT" && (i.active === "WAIT_TRANSACT" || i.active === "DRAW_WAIT") && i.processingMode !== "COUNTERSIGN");
952
+ }(s) : function(i, f) {
953
+ return i.processState && i.processState === "SUBMIT" && i.processingMode !== "TYPE_READ" && !function(g) {
954
+ const T = g;
955
+ let h = !0;
956
+ return T && (h = T.taskComplete), h;
957
+ }(f);
958
+ }(s, a) && (r = t !== "returnToPreviousTask" || function(i) {
959
+ return !!i.rebuttable;
960
+ }(s))), o != null && o.check && ["submitTask", "approve", "refuse", "agreement", "oppose", "kiken", "extractWorkflow", "cancelExtractWorkflow", "approveExtractWorkflow", "refuseExtractWorkflow", "returnToPreviousTask", "returnTaskTo"].indexOf(t) !== -1 && r) {
961
+ if (e.workflowOpinion || (e.workflowOpinion = { showOpinionBox: !1 }), (c = (l = o.props) == null ? void 0 : l.base) == null ? void 0 : c.showOpinionBox) {
962
+ e.workflowOpinion.showOpinionBox = !0;
963
+ const f = (u = (m = o.props) == null ? void 0 : m.base) == null ? void 0 : u.showOpinionBoxConditions;
964
+ f && f.length > 0 && (e.workflowOpinion.showOpinionBox = ie(e, f));
965
+ }
966
+ let i = !1;
967
+ if ((d = (p = o.props) == null ? void 0 : p.base) != null && d.isMustOpinion) {
968
+ if (i = !0, i === !0) {
969
+ const f = (w = (C = o.props) == null ? void 0 : C.base) == null ? void 0 : w.mustOpinionConditions;
970
+ f && f.length > 0 && (i = ie(e, f));
971
+ }
972
+ e.workflowOpinion.isRequired = i, i && (e.workflowOpinion.showOpinionBox = !0);
973
+ }
974
+ }
975
+ return e.workflowOpinion, r;
976
+ }
977
+ function mt(e, t, s) {
978
+ return !(!e.processState || e.processState !== "EXTRACT" || e.active !== "WAIT_TRANSACT");
979
+ }
980
+ function We(e, t) {
981
+ e.entity.page || (e.entity.page = {}), e.entity.page._isRefresh = !0, ft(e, t).then((s) => {
982
+ e.isRefresh = !0;
983
+ });
984
+ }
985
+ function ft(e, t, s) {
986
+ const a = e.pageType;
987
+ return a && a === "form" ? (e.canClick = !1, re(e) ? function(o, n, r) {
988
+ return new Promise((l, c) => {
989
+ const m = o.systemCode, u = o.code, p = o.version, d = q(o);
990
+ let C = n || null, w = n ? [n] : null;
991
+ r === void 0 || r ? (C || (C = d && d.id ? d.id : null), w || (w = d ? d.ids : null)) : (C = null, w = null, d._id = d.id, d.id = null);
992
+ const i = d ? d.taskId : null, f = u, g = { pageCode: u, pageVersion: p, tableName: o.tableName, formNoRuleCode: o.formNoRuleCode, isWorkflowEntity: !0, systemCode: m, functionCode: f + ".workflowGets", listCodesMap: o.listCodesMap, listCodesInitSearchForm: o.listCodesInitSearchForm };
993
+ if (o.listCodesMap, (!o.listCodesMap || Object.keys(o.listCodesMap).length === 0) && o.tableUuids) {
994
+ const P = {};
995
+ o.tableUuids.forEach((I) => {
996
+ const N = Ie(u, p, I);
997
+ P[N] = N;
998
+ }), g.listCodesMap = P;
999
+ }
1000
+ w && (g.ids = Ue(w)), i ? g.taskId = i : C ? g.id = C : (d && d._t_ && se(d._t_ + "_id") && (g.id = se(d._t_ + "_id")), o.notIdInitializationList && (g.noIdAndTaskIdInitSetting = JSON.stringify(o.notIdInitializationList))), d && (g.additionalParamMap = d), o.beanName && (g.beanName = o.beanName), o.refercePropMap && (g.refercePropMap = o.refercePropMap), g.isMobile = V();
1001
+ const T = R(o.backendUrl, o.isTest) + "/dsc/workflow-commons/gets", h = Se();
1002
+ h.restorePageLoadState(), oe(null, o, o, "beforeFormLoadData");
1003
+ const y = xe(o.code, g.id);
1004
+ O.post(T, g).then(async (P) => {
1005
+ y && await Oe(o, g.id, P), o.workflowOpinion = { showOpinionBox: !1 }, o.definitionId = P.definitionId, o.entity.task = P.taskParamMap, o.dataTypeMaps = P.dataTypeMap, X(P, !0, o), o.workflowRules = st(o);
1006
+ const I = o.pageType;
1007
+ I && I === "form" && function(N) {
1008
+ (function(x) {
1009
+ const v = /* @__PURE__ */ new Map(), U = x.fieldPermissions;
1010
+ if (U !== void 0) for (let M = 0; M < U.length; M++) {
1011
+ const S = U[M].name;
1012
+ if (S) if (S.indexOf("$") === 0 && S.indexOf(".") > 0) {
1013
+ const A = U[M], E = JSON.parse(JSON.stringify(A)), F = S.substring(1, S.indexOf(".")), B = S.substring(S.indexOf(".") + 1);
1014
+ if (E.name = B, E && E.name === "all_fields") E.canEdit === !1 ? E.rowIndexes ? v.set(F, [{ name: "all_fields", canEdit: !1, rowIndexes: E.rowIndexes }]) : v.set(F, [{ name: "all_fields", canEdit: !1 }]) : E.rowIndexes ? v.set(F, [{ name: "all_fields", canEdit: !0, rowIndexes: E.rowIndexes }]) : v.set(F, [{ name: "all_fields", canEdit: !0 }]);
1015
+ else {
1016
+ let J = v.get(F);
1017
+ J || (J = []), J.push(E), v.set(F, J);
1018
+ }
1019
+ } else v.set(S, U[M]);
1020
+ }
1021
+ x.fieldPermissionMap = v;
1022
+ })(N), function(x) {
1023
+ const v = x.fieldPermissionMap, U = /* @__PURE__ */ new Map(), M = x.actionPermissions;
1024
+ M != null && Object.keys(M).forEach((S) => {
1025
+ const A = M[S], E = v.get(S);
1026
+ if (E && E.length > 0 && E[0].name === "all_fields" && E[0].canEdit === !1) A.canUpdate = !1, A.canAdd = !1;
1027
+ else {
1028
+ A && Object.keys(A.deleteCondition).length !== 0 || (A.deleteCondition = null), A && Object.keys(A.updateCondition).length !== 0 || (A.updateCondition = null);
1029
+ const F = A.canUpdate, B = A.updateRowIndexes;
1030
+ F !== void 0 && F === !1 && B != null && B.length > 0 && v.set(S, [{ name: "all_fields", canEdit: !1, rowIndexes: B }]);
1031
+ }
1032
+ U.set(S, A);
1033
+ }), x.actionPermissionMap = U;
1034
+ }(N);
1035
+ }(o), o.canClick = !0, oe(null, o, o, "afterFormLoadData"), h.setFormPageDataLoadState(!0), l(P);
1036
+ }).catch((P) => {
1037
+ o.canClick = !0, c(P);
1038
+ });
1039
+ });
1040
+ }(e, t, s) : function(o, n, r) {
1041
+ return new Promise((l, c) => {
1042
+ const m = o.systemCode, u = o.code, p = o.version, d = q(o);
1043
+ let C = n || null, w = n ? [n] : null;
1044
+ r === void 0 || r ? (C || (C = d && d.id ? d.id : null), w || (w = d ? d.ids : null)) : (C = null, w = null, d._id = d.id, d.id = null);
1045
+ const i = d ? d.taskId : null, f = u, g = R(o.backendUrl, o.isTest), T = { pageCode: u, pageVersion: p, tableName: o.tableName, formNoRuleCode: o.formNoRuleCode, id: C, systemCode: m, functionCode: f + ".gets", listCodesMap: o.listCodesMap, listCodesInitSearchForm: o.listCodesInitSearchForm };
1046
+ if (!T.id && d && d._t_ && se(d._t_ + "_id") && (T.id = se(d._t_ + "_id")), w && (T.ids = Ue(w)), o.notIdInitializationList && (T.noIdAndTaskIdInitSetting = JSON.stringify(o.notIdInitializationList)), d && (T.additionalParamMap = d), o.beanName && (T.beanName = o.beanName), i && (T.taskId = i), o.listCodesMap, (!o.listCodesMap || Object.keys(o.listCodesMap).length === 0) && o.tableUuids) {
1047
+ const I = {};
1048
+ o.tableUuids.forEach((N) => {
1049
+ const x = Ie(u, p, N);
1050
+ I[x] = x;
1051
+ }), T.listCodesMap = I;
1052
+ }
1053
+ o.refercePropMap && (T.refercePropMap = o.refercePropMap), T.isMobile = V();
1054
+ const h = g + "/dsc/commons/gets", y = Se();
1055
+ y.restorePageLoadState(), oe(null, o, o, "beforeFormLoadData");
1056
+ const P = xe(o.code, T.id);
1057
+ O.post(h, T).then(async (I) => {
1058
+ I && (P && await Oe(o, T.id, I), o.entity.data = I.entity, o.initFormNo = I.formNo);
1059
+ const N = o.customRules, x = o.rules, v = ot(o, N, x);
1060
+ o.rules = v, o.canClick = !0, oe(null, o, o, "afterFormLoadData"), y.setFormPageDataLoadState(!0), l(I);
1061
+ }).catch((I) => {
1062
+ o.canClick = !0, c(I);
1063
+ });
1064
+ });
1065
+ }(e, t, s)) : new Promise((o, n) => {
1066
+ o(!0);
1067
+ });
1068
+ }
1069
+ async function Oe(e, t, s) {
1070
+ try {
1071
+ await ue.confirm("检测到您有未保存的数据,是否继续填写上次未保存的数据?", "提示", { confirmButtonText: "是", cancelButtonText: "否", type: "warning" }), s.entity = rt(e.code, t, s.entity);
1072
+ } catch {
1073
+ }
1074
+ ct(e.code, t);
1075
+ }
1076
+ function Ue(e) {
1077
+ return e && (typeof e == "string" ? e = e.split(",") : typeof e == "number" && (e = [e])), e;
1078
+ }
1079
+ function Pe(e) {
1080
+ const t = e.props.setValueList;
1081
+ if (t) {
1082
+ if (ne(t) && t.length > 0) return JSON.stringify(t);
1083
+ if (typeof t == "string" && t !== "[]") return t;
1084
+ }
1085
+ return null;
1086
+ }
1087
+ function Kt(e, t) {
1088
+ const s = e.entity ? e.entity : {}, a = { data: s.data, page: s.page }, o = { pageCode: e.code, queryCondition: JSON.stringify(a), name: t }, n = window.$vueApp.config.globalProperties.baseAPI + "/component/chart-search-condition";
1089
+ return O.post(n, o);
1090
+ }
1091
+ function Xt(e) {
1092
+ const t = e.code, s = window.$vueApp.config.globalProperties.baseAPI + "/component/chart-search-condition/list/" + t;
1093
+ return O.get(s);
1094
+ }
1095
+ function Qt(e) {
1096
+ const t = window.$vueApp.config.globalProperties.baseAPI + "/component/chart-search-condition/" + e;
1097
+ return O.delete(t);
1098
+ }
1099
+ function Fe(e) {
1100
+ e.exportNoticeInfo && (e.exportNoticeInfo.noticeInterval && clearInterval(e.exportNoticeInfo.noticeInterval), e.exportNoticeInfo.noticeComponent = null, e.exportNoticeInfo.noticeInterval = null), e.exportNoticeInfo = {}, Le(e.exportNoticeInfo, e.backendUrl, e.code);
1101
+ }
1102
+ function Be(e, t, s) {
1103
+ e.lastFileTask && !e.noticeComponent ? e.noticeComponent = Je({ title: b().t("superPageRuntimeMessage.logTip"), duration: 0, position: "top-right", type: "success", onClose() {
1104
+ e.lastFileTask.taskState === "Success" || e.lastFileTask.taskState === "Fail" || e.lastFileTask.taskState === "PartSuccess" ? be(t, s, e.lastFileTask.id, e) : (e.noticeComponent = null, e.noticeInterval == null && Le(e, t, s));
1105
+ }, message: () => at(it, { isShow: !0, backendUrl: t, lastFileTask: e.lastFileTask, onClickMsg(a) {
1106
+ a.serverPath ? function(o, n, r, l, c, m) {
1107
+ be(c, m, r, l);
1108
+ const u = Te(), p = R(c), d = p + "/common/super-form/downloads?jwt=" + u + "&showName=" + encodeURI(o) + "&serverPath=" + n;
1109
+ window.open(d);
1110
+ }(a.fileName, a.serverPath, a.id, e, t, s) : be(t, s, a.id, e), e.noticeComponent.close(), e.noticeComponent = null;
1111
+ } }) }) : (e.noticeComponent != null && (e.noticeComponent.close(), e.noticeComponent = null), e.noticeInterval && (clearInterval(e.noticeInterval), e.noticeInterval = null));
1112
+ }
1113
+ function Le(e, t, s) {
1114
+ e.noticeInterval || (e.noticeInterval = setInterval(() => {
1115
+ e.noticeComponent || function(a, o, n) {
1116
+ Ve(o, n).then((r) => {
1117
+ a.lastFileTask = r, Be(a, o, n);
1118
+ });
1119
+ }(e, t, s);
1120
+ }, 3e3));
1121
+ }
1122
+ function Ve(e, t) {
1123
+ return et(e, t);
1124
+ }
1125
+ function be(e, t, s, a) {
1126
+ tt(e, s).then(() => {
1127
+ (function(o, n, r) {
1128
+ Ve(n, r).then((l) => {
1129
+ o.lastFileTask = l, Be(o, n, r);
1130
+ });
1131
+ })(a, e, t);
1132
+ });
1133
+ }
1134
+ export {
1135
+ H as dealAfterOperate,
1136
+ X as dealCompleteTaskParam,
1137
+ Qt as deleteChartCondition,
1138
+ Bt as doAddSigner,
1139
+ Lt as doAddTransactor,
1140
+ Ft as doAssign,
1141
+ Vt as doCreateCopyTask,
1142
+ Fe as doFileTaskFunc,
1143
+ jt as doImportFinally,
1144
+ Gt as doRemoveSigners,
1145
+ Yt as doRemoveTransactors,
1146
+ qt as doReturnTaskTo,
1147
+ Et as exportFormReport,
1148
+ dt as extractWorkflowFunc,
1149
+ q as getAdditionalParamMap,
1150
+ ft as getFormData,
1151
+ Ht as getRemoveSigner,
1152
+ Jt as getRemoveTransactor,
1153
+ ut as getSaveFormRequest,
1154
+ lt as getSaveFormRequestWithRow,
1155
+ $t as getTaskInformitions,
1156
+ zt as isVisibleWorkflowButton,
1157
+ Wt as judgeDataNumber,
1158
+ Xt as listChartConditions,
1159
+ Dt as refreshFormOrListPage,
1160
+ We as refreshPage,
1161
+ Kt as saveChartConditionBase,
1162
+ At as standardEvents,
1163
+ _t as updateValuesWhenCloseDialog
1164
+ };