workflow-editor 0.0.87-up → 0.0.87-up-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 (292) hide show
  1. package/es/_virtual/_plugin-vue_export-helper.mjs +9 -0
  2. package/es/index.mjs +18 -0
  3. package/es/plugins/formValidatorUtil.mjs +212 -0
  4. package/es/plugins/index.mjs +7 -0
  5. package/es/src/i18n/i18n.mjs +7 -0
  6. package/es/src/i18n/langs/cn.mjs +4 -0
  7. package/es/src/i18n/langs/en.mjs +4 -0
  8. package/es/style.css +1 -0
  9. package/es/workflow-editor/index.mjs +10 -0
  10. package/es/workflow-editor/src/api.mjs +6 -0
  11. package/es/workflow-editor/src/assets/wf-editor-icons.mjs +43 -0
  12. package/es/workflow-editor/src/json-object-templates/auto-task.mjs +7 -0
  13. package/es/workflow-editor/src/json-object-templates/copy-task.mjs +7 -0
  14. package/es/workflow-editor/src/json-object-templates/decision.mjs +7 -0
  15. package/es/workflow-editor/src/json-object-templates/end.mjs +7 -0
  16. package/es/workflow-editor/src/json-object-templates/fork.mjs +7 -0
  17. package/es/workflow-editor/src/json-object-templates/human-decision.mjs +7 -0
  18. package/es/workflow-editor/src/json-object-templates/human-task.mjs +7 -0
  19. package/es/workflow-editor/src/json-object-templates/join.mjs +7 -0
  20. package/es/workflow-editor/src/json-object-templates/process.mjs +9 -0
  21. package/es/workflow-editor/src/json-object-templates/start.mjs +7 -0
  22. package/es/workflow-editor/src/json-object-templates/subprocess.mjs +7 -0
  23. package/es/workflow-editor/src/json-object-templates/transition.mjs +6 -0
  24. package/es/workflow-editor/src/main/admin-save-dialog.vue.mjs +13 -0
  25. package/es/workflow-editor/src/main/canvas.vue.mjs +130 -0
  26. package/es/workflow-editor/src/main/canvas.vue2.mjs +4 -0
  27. package/es/workflow-editor/src/main/context-menu.vue.mjs +33 -0
  28. package/es/workflow-editor/src/main/context-menu.vue2.mjs +4 -0
  29. package/es/workflow-editor/src/main/icon-svg.vue.mjs +12 -0
  30. package/es/workflow-editor/src/main/icon-svg.vue2.mjs +4 -0
  31. package/es/workflow-editor/src/main/selection-region.vue.mjs +17 -0
  32. package/es/workflow-editor/src/main/selection-region.vue2.mjs +4 -0
  33. package/es/workflow-editor/src/main/tache-history-tooltip.vue.mjs +10 -0
  34. package/es/workflow-editor/src/main/tache-history-tooltip.vue2.mjs +4 -0
  35. package/es/workflow-editor/src/main/tache-subprocess-history-dialog.vue.mjs +11 -0
  36. package/es/workflow-editor/src/main/tache-subprocess-history-dialog.vue2.mjs +4 -0
  37. package/es/workflow-editor/src/main/toolbox.vue.mjs +16 -0
  38. package/es/workflow-editor/src/main/toolbox.vue2.mjs +4 -0
  39. package/es/workflow-editor/src/main/wf-history-canvas.vue.mjs +86 -0
  40. package/es/workflow-editor/src/main/wf-history-canvas.vue2.mjs +4 -0
  41. package/es/workflow-editor/src/process-service.mjs +20 -0
  42. package/es/workflow-editor/src/properties-editors/auto-task/basic-properties.vue.mjs +25 -0
  43. package/es/workflow-editor/src/properties-editors/auto-task/basic-properties.vue2.mjs +4 -0
  44. package/es/workflow-editor/src/properties-editors/auto-task.vue.mjs +22 -0
  45. package/es/workflow-editor/src/properties-editors/auto-task.vue2.mjs +4 -0
  46. package/es/workflow-editor/src/properties-editors/common/additional-condition-utils.mjs +125 -0
  47. package/es/workflow-editor/src/properties-editors/common/additional-condition.vue.mjs +60 -0
  48. package/es/workflow-editor/src/properties-editors/common/auto-filled-fields-utils.mjs +5 -0
  49. package/es/workflow-editor/src/properties-editors/common/auto-filled-fields.vue.mjs +72 -0
  50. package/es/workflow-editor/src/properties-editors/common/common-notice-tool.vue.mjs +18 -0
  51. package/es/workflow-editor/src/properties-editors/common/common-user-condition.vue.mjs +55 -0
  52. package/es/workflow-editor/src/properties-editors/common/form-fields-utils.mjs +14 -0
  53. package/es/workflow-editor/src/properties-editors/common/form-fields.vue.mjs +20 -0
  54. package/es/workflow-editor/src/properties-editors/common/form-fields.vue2.mjs +4 -0
  55. package/es/workflow-editor/src/properties-editors/common/i18n-input.vue.mjs +27 -0
  56. package/es/workflow-editor/src/properties-editors/common/i18n-set-dialog.vue.mjs +36 -0
  57. package/es/workflow-editor/src/properties-editors/common/notice-reminder.vue.mjs +27 -0
  58. package/es/workflow-editor/src/properties-editors/common/notice-reminder.vue2.mjs +4 -0
  59. package/es/workflow-editor/src/properties-editors/common/notice.vue.mjs +31 -0
  60. package/es/workflow-editor/src/properties-editors/common/reminder.vue.mjs +46 -0
  61. package/es/workflow-editor/src/properties-editors/common/reminder.vue2.mjs +4 -0
  62. package/es/workflow-editor/src/properties-editors/common/select-mail-template.vue.mjs +20 -0
  63. package/es/workflow-editor/src/properties-editors/common/system-role-tree-inline.vue.mjs +95 -0
  64. package/es/workflow-editor/src/properties-editors/common/system-role-tree-inline.vue2.mjs +4 -0
  65. package/es/workflow-editor/src/properties-editors/common/system-role-tree.vue.mjs +16 -0
  66. package/es/workflow-editor/src/properties-editors/common/system-role-tree.vue2.mjs +4 -0
  67. package/es/workflow-editor/src/properties-editors/common/task-title.vue.mjs +61 -0
  68. package/es/workflow-editor/src/properties-editors/common/task-title.vue2.mjs +4 -0
  69. package/es/workflow-editor/src/properties-editors/common/task-title.vue3.mjs +4 -0
  70. package/es/workflow-editor/src/properties-editors/common/transactor-settings.vue.mjs +43 -0
  71. package/es/workflow-editor/src/properties-editors/common/user-selection.vue.mjs +116 -0
  72. package/es/workflow-editor/src/properties-editors/common/value-selection-dialog.vue.mjs +60 -0
  73. package/es/workflow-editor/src/properties-editors/common/value-selection-dialog.vue2.mjs +4 -0
  74. package/es/workflow-editor/src/properties-editors/common/variables.vue.mjs +41 -0
  75. package/es/workflow-editor/src/properties-editors/copy-task/basic-properties.vue.mjs +25 -0
  76. package/es/workflow-editor/src/properties-editors/copy-task/basic-properties.vue2.mjs +4 -0
  77. package/es/workflow-editor/src/properties-editors/copy-task/permission-settings.vue.mjs +30 -0
  78. package/es/workflow-editor/src/properties-editors/copy-task/permission-settings.vue2.mjs +4 -0
  79. package/es/workflow-editor/src/properties-editors/copy-task.vue.mjs +26 -0
  80. package/es/workflow-editor/src/properties-editors/copy-task.vue2.mjs +4 -0
  81. package/es/workflow-editor/src/properties-editors/decision.vue.mjs +24 -0
  82. package/es/workflow-editor/src/properties-editors/fork.vue.mjs +21 -0
  83. package/es/workflow-editor/src/properties-editors/human-decision.vue.mjs +15 -0
  84. package/es/workflow-editor/src/properties-editors/human-task/additional-condition-dialog.vue.mjs +16 -0
  85. package/es/workflow-editor/src/properties-editors/human-task/basic-properties.vue.mjs +38 -0
  86. package/es/workflow-editor/src/properties-editors/human-task/basic-properties.vue2.mjs +4 -0
  87. package/es/workflow-editor/src/properties-editors/human-task/componentsConfigUtil.mjs +84 -0
  88. package/es/workflow-editor/src/properties-editors/human-task/custom-actions.vue.mjs +62 -0
  89. package/es/workflow-editor/src/properties-editors/human-task/editable-child-field-setting.vue.mjs +80 -0
  90. package/es/workflow-editor/src/properties-editors/human-task/editable-child-fields.vue.mjs +86 -0
  91. package/es/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue.mjs +43 -0
  92. package/es/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue2.mjs +4 -0
  93. package/es/workflow-editor/src/properties-editors/human-task/editable-fields.vue.mjs +67 -0
  94. package/es/workflow-editor/src/properties-editors/human-task/events.vue.mjs +18 -0
  95. package/es/workflow-editor/src/properties-editors/human-task/permission-settings.vue.mjs +33 -0
  96. package/es/workflow-editor/src/properties-editors/human-task/permission-settings.vue2.mjs +4 -0
  97. package/es/workflow-editor/src/properties-editors/human-task/selection-conditions.vue.mjs +56 -0
  98. package/es/workflow-editor/src/properties-editors/human-task.vue.mjs +28 -0
  99. package/es/workflow-editor/src/properties-editors/human-task.vue2.mjs +4 -0
  100. package/es/workflow-editor/src/properties-editors/join.vue.mjs +15 -0
  101. package/es/workflow-editor/src/properties-editors/process/basic-properties.vue.mjs +88 -0
  102. package/es/workflow-editor/src/properties-editors/process/events.vue.mjs +21 -0
  103. package/es/workflow-editor/src/properties-editors/process/notice-settings.vue.mjs +25 -0
  104. package/es/workflow-editor/src/properties-editors/process/parameter-settings.vue.mjs +17 -0
  105. package/es/workflow-editor/src/properties-editors/process/permission-settings.vue.mjs +10 -0
  106. package/es/workflow-editor/src/properties-editors/process/selectPage.vue.mjs +28 -0
  107. package/es/workflow-editor/src/properties-editors/process.vue.mjs +34 -0
  108. package/es/workflow-editor/src/properties-editors/subprocess/basic-properties.vue.mjs +64 -0
  109. package/es/workflow-editor/src/properties-editors/subprocess/events.vue.mjs +9 -0
  110. package/es/workflow-editor/src/properties-editors/subprocess/field-mappings.vue.mjs +55 -0
  111. package/es/workflow-editor/src/properties-editors/subprocess/transactor-settings.vue.mjs +20 -0
  112. package/es/workflow-editor/src/properties-editors/subprocess.vue.mjs +22 -0
  113. package/es/workflow-editor/src/properties-editors/subprocess.vue2.mjs +4 -0
  114. package/es/workflow-editor/src/properties-editors/transition/basic-properties.vue.mjs +14 -0
  115. package/es/workflow-editor/src/properties-editors/transition.vue.mjs +17 -0
  116. package/es/workflow-editor/src/properties-editors/transition.vue2.mjs +4 -0
  117. package/es/workflow-editor/src/properties-editors/user-condition.mjs +49 -0
  118. package/es/workflow-editor/src/store/getters.mjs +4 -0
  119. package/es/workflow-editor/src/store/workflow-editor.mjs +73 -0
  120. package/es/workflow-editor/src/taches/auto-task.vue.mjs +25 -0
  121. package/es/workflow-editor/src/taches/common-methods.mjs +13 -0
  122. package/es/workflow-editor/src/taches/copy-task.vue.mjs +25 -0
  123. package/es/workflow-editor/src/taches/custom-task.vue.mjs +16 -0
  124. package/es/workflow-editor/src/taches/decision.vue.mjs +25 -0
  125. package/es/workflow-editor/src/taches/decision.vue2.mjs +4 -0
  126. package/es/workflow-editor/src/taches/end.vue.mjs +14 -0
  127. package/es/workflow-editor/src/taches/end.vue2.mjs +4 -0
  128. package/es/workflow-editor/src/taches/fork.vue.mjs +25 -0
  129. package/es/workflow-editor/src/taches/fork.vue2.mjs +4 -0
  130. package/es/workflow-editor/src/taches/human-decision.vue.mjs +25 -0
  131. package/es/workflow-editor/src/taches/human-decision.vue2.mjs +4 -0
  132. package/es/workflow-editor/src/taches/human-task.vue.mjs +25 -0
  133. package/es/workflow-editor/src/taches/join.vue.mjs +16 -0
  134. package/es/workflow-editor/src/taches/join.vue2.mjs +4 -0
  135. package/es/workflow-editor/src/taches/joint.vue.mjs +54 -0
  136. package/es/workflow-editor/src/taches/joint.vue2.mjs +4 -0
  137. package/es/workflow-editor/src/taches/start.vue.mjs +14 -0
  138. package/es/workflow-editor/src/taches/start.vue2.mjs +4 -0
  139. package/es/workflow-editor/src/taches/subprocess.vue.mjs +25 -0
  140. package/es/workflow-editor/src/taches/tache-resizer.vue.mjs +30 -0
  141. package/es/workflow-editor/src/taches/tache-resizer.vue2.mjs +4 -0
  142. package/es/workflow-editor/src/transitions/broken-line.vue.mjs +32 -0
  143. package/es/workflow-editor/src/transitions/broken-line.vue2.mjs +4 -0
  144. package/es/workflow-editor/src/transitions/curve-line.vue.mjs +33 -0
  145. package/es/workflow-editor/src/transitions/curve-line.vue2.mjs +4 -0
  146. package/es/workflow-editor/src/transitions/straight-line.vue.mjs +13 -0
  147. package/es/workflow-editor/src/transitions/transition.vue.mjs +77 -0
  148. package/es/workflow-editor/src/transitions/transition.vue2.mjs +4 -0
  149. package/es/workflow-editor/src/transitions/virtual-transition.vue.mjs +17 -0
  150. package/es/workflow-editor/src/transitions/virtual-transition.vue2.mjs +4 -0
  151. package/es/workflow-editor/src/util.mjs +180 -0
  152. package/es/workflow-editor/src/workflow-editor.vue.mjs +212 -0
  153. package/es/workflow-editor/src/workflow-editor.vue2.mjs +4 -0
  154. package/es/workflow-editor/src/workflow-history.vue.mjs +35 -0
  155. package/es/workflow-editor/src/workflow-history.vue2.mjs +4 -0
  156. package/package.json +16 -8
  157. package/.prettierrc.json +0 -9
  158. package/index.html +0 -13
  159. package/lib/401-6d407e37.js +0 -101
  160. package/lib/404-44e0676c.js +0 -26
  161. package/lib/authredirect-ae6e75b4.js +0 -10
  162. package/lib/iframe-page-adb4ea50.js +0 -33
  163. package/lib/index-1963da8a.js +0 -32637
  164. package/lib/index-369eae4a.js +0 -13
  165. package/lib/tab-content-iframe-index-1468478a.js +0 -33
  166. package/lib/tab-content-index-3bd25899.js +0 -1253
  167. package/lib/tache-subprocess-history-e1b89bed.js +0 -56
  168. package/lib/workflow-editor.css +0 -1
  169. package/lib/workflow-editor.js +0 -5
  170. package/lib/workflow-editor.umd.cjs +0 -90
  171. package/packages/index.js +0 -34
  172. package/packages/plugins/formValidatorUtil.js +0 -745
  173. package/packages/plugins/index.js +0 -8
  174. package/packages/workflow-editor/index.js +0 -14
  175. package/packages/workflow-editor/src/api.js +0 -7
  176. package/packages/workflow-editor/src/assets/tab-select.png +0 -0
  177. package/packages/workflow-editor/src/assets/tab-selectWhite.png +0 -0
  178. package/packages/workflow-editor/src/assets/wf-editor-icons.js +0 -2
  179. package/packages/workflow-editor/src/constant.js +0 -8
  180. package/packages/workflow-editor/src/json-object-templates/auto-task.js +0 -70
  181. package/packages/workflow-editor/src/json-object-templates/copy-task.js +0 -72
  182. package/packages/workflow-editor/src/json-object-templates/decision.js +0 -11
  183. package/packages/workflow-editor/src/json-object-templates/end.js +0 -14
  184. package/packages/workflow-editor/src/json-object-templates/fork.js +0 -10
  185. package/packages/workflow-editor/src/json-object-templates/human-decision.js +0 -9
  186. package/packages/workflow-editor/src/json-object-templates/human-task.js +0 -208
  187. package/packages/workflow-editor/src/json-object-templates/join.js +0 -10
  188. package/packages/workflow-editor/src/json-object-templates/process.js +0 -99
  189. package/packages/workflow-editor/src/json-object-templates/start.js +0 -13
  190. package/packages/workflow-editor/src/json-object-templates/subprocess.js +0 -31
  191. package/packages/workflow-editor/src/json-object-templates/transition.js +0 -26
  192. package/packages/workflow-editor/src/main/admin-save-dialog.vue +0 -67
  193. package/packages/workflow-editor/src/main/canvas.vue +0 -493
  194. package/packages/workflow-editor/src/main/context-menu.vue +0 -147
  195. package/packages/workflow-editor/src/main/icon-svg.vue +0 -32
  196. package/packages/workflow-editor/src/main/selection-region.vue +0 -66
  197. package/packages/workflow-editor/src/main/tache-history-tooltip.vue +0 -38
  198. package/packages/workflow-editor/src/main/tache-name-input.vue +0 -19
  199. package/packages/workflow-editor/src/main/tache-subprocess-history-dialog.vue +0 -40
  200. package/packages/workflow-editor/src/main/toolbox.vue +0 -60
  201. package/packages/workflow-editor/src/main/wf-history-canvas.vue +0 -309
  202. package/packages/workflow-editor/src/process-json.js +0 -624
  203. package/packages/workflow-editor/src/process-service.js +0 -69
  204. package/packages/workflow-editor/src/properties-editors/auto-task/basic-properties.vue +0 -81
  205. package/packages/workflow-editor/src/properties-editors/auto-task/permission-settings.vue +0 -155
  206. package/packages/workflow-editor/src/properties-editors/auto-task.vue +0 -74
  207. package/packages/workflow-editor/src/properties-editors/common/additional-condition-utils.js +0 -636
  208. package/packages/workflow-editor/src/properties-editors/common/additional-condition.vue +0 -300
  209. package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields-utils.js +0 -34
  210. package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields.vue +0 -268
  211. package/packages/workflow-editor/src/properties-editors/common/common-notice-tool.vue +0 -81
  212. package/packages/workflow-editor/src/properties-editors/common/common-user-condition.vue +0 -242
  213. package/packages/workflow-editor/src/properties-editors/common/form-fields-utils.js +0 -23
  214. package/packages/workflow-editor/src/properties-editors/common/form-fields.vue +0 -114
  215. package/packages/workflow-editor/src/properties-editors/common/i18n-input.vue +0 -90
  216. package/packages/workflow-editor/src/properties-editors/common/i18n-set-dialog.vue +0 -143
  217. package/packages/workflow-editor/src/properties-editors/common/notice-reminder.vue +0 -144
  218. package/packages/workflow-editor/src/properties-editors/common/notice.vue +0 -108
  219. package/packages/workflow-editor/src/properties-editors/common/reminder.vue +0 -307
  220. package/packages/workflow-editor/src/properties-editors/common/select-mail-template.vue +0 -92
  221. package/packages/workflow-editor/src/properties-editors/common/standard-fields.vue +0 -66
  222. package/packages/workflow-editor/src/properties-editors/common/system-role-tree-inline.vue +0 -354
  223. package/packages/workflow-editor/src/properties-editors/common/system-role-tree.vue +0 -68
  224. package/packages/workflow-editor/src/properties-editors/common/task-title.vue +0 -221
  225. package/packages/workflow-editor/src/properties-editors/common/transactor-settings.vue +0 -275
  226. package/packages/workflow-editor/src/properties-editors/common/user-selection.vue +0 -426
  227. package/packages/workflow-editor/src/properties-editors/common/value-selection-dialog.vue +0 -272
  228. package/packages/workflow-editor/src/properties-editors/common/variables.vue +0 -139
  229. package/packages/workflow-editor/src/properties-editors/copy-task/basic-properties.vue +0 -90
  230. package/packages/workflow-editor/src/properties-editors/copy-task/permission-settings.vue +0 -155
  231. package/packages/workflow-editor/src/properties-editors/copy-task.vue +0 -95
  232. package/packages/workflow-editor/src/properties-editors/decision.vue +0 -88
  233. package/packages/workflow-editor/src/properties-editors/fork.vue +0 -77
  234. package/packages/workflow-editor/src/properties-editors/human-decision.vue +0 -49
  235. package/packages/workflow-editor/src/properties-editors/human-task/additional-condition-dialog.vue +0 -62
  236. package/packages/workflow-editor/src/properties-editors/human-task/basic-properties.vue +0 -184
  237. package/packages/workflow-editor/src/properties-editors/human-task/componentsConfigUtil.js +0 -359
  238. package/packages/workflow-editor/src/properties-editors/human-task/custom-actions.vue +0 -256
  239. package/packages/workflow-editor/src/properties-editors/human-task/editable-child-field-setting.vue +0 -405
  240. package/packages/workflow-editor/src/properties-editors/human-task/editable-child-fields.vue +0 -257
  241. package/packages/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue +0 -430
  242. package/packages/workflow-editor/src/properties-editors/human-task/editable-fields.vue +0 -206
  243. package/packages/workflow-editor/src/properties-editors/human-task/events.vue +0 -60
  244. package/packages/workflow-editor/src/properties-editors/human-task/permission-settings.vue +0 -231
  245. package/packages/workflow-editor/src/properties-editors/human-task/selection-conditions.vue +0 -499
  246. package/packages/workflow-editor/src/properties-editors/human-task.vue +0 -107
  247. package/packages/workflow-editor/src/properties-editors/join.vue +0 -49
  248. package/packages/workflow-editor/src/properties-editors/process/basic-properties.vue +0 -336
  249. package/packages/workflow-editor/src/properties-editors/process/events.vue +0 -79
  250. package/packages/workflow-editor/src/properties-editors/process/notice-settings.vue +0 -68
  251. package/packages/workflow-editor/src/properties-editors/process/parameter-settings.vue +0 -106
  252. package/packages/workflow-editor/src/properties-editors/process/permission-settings.vue +0 -28
  253. package/packages/workflow-editor/src/properties-editors/process/selectPage.vue +0 -88
  254. package/packages/workflow-editor/src/properties-editors/process.vue +0 -118
  255. package/packages/workflow-editor/src/properties-editors/subprocess/basic-properties.vue +0 -201
  256. package/packages/workflow-editor/src/properties-editors/subprocess/events.vue +0 -26
  257. package/packages/workflow-editor/src/properties-editors/subprocess/field-mappings.vue +0 -216
  258. package/packages/workflow-editor/src/properties-editors/subprocess/transactor-settings.vue +0 -66
  259. package/packages/workflow-editor/src/properties-editors/subprocess.vue +0 -80
  260. package/packages/workflow-editor/src/properties-editors/transition/basic-properties.vue +0 -53
  261. package/packages/workflow-editor/src/properties-editors/transition.vue +0 -75
  262. package/packages/workflow-editor/src/properties-editors/user-condition.js +0 -183
  263. package/packages/workflow-editor/src/store/getters.js +0 -33
  264. package/packages/workflow-editor/src/store/workflow-editor.js +0 -153
  265. package/packages/workflow-editor/src/taches/auto-task.vue +0 -99
  266. package/packages/workflow-editor/src/taches/common-methods.js +0 -21
  267. package/packages/workflow-editor/src/taches/copy-task.vue +0 -99
  268. package/packages/workflow-editor/src/taches/custom-task.vue +0 -88
  269. package/packages/workflow-editor/src/taches/decision.vue +0 -102
  270. package/packages/workflow-editor/src/taches/end.vue +0 -76
  271. package/packages/workflow-editor/src/taches/fork.vue +0 -102
  272. package/packages/workflow-editor/src/taches/human-decision.vue +0 -102
  273. package/packages/workflow-editor/src/taches/human-task.vue +0 -113
  274. package/packages/workflow-editor/src/taches/join.vue +0 -91
  275. package/packages/workflow-editor/src/taches/joint.vue +0 -177
  276. package/packages/workflow-editor/src/taches/start.vue +0 -76
  277. package/packages/workflow-editor/src/taches/subprocess.vue +0 -99
  278. package/packages/workflow-editor/src/taches/tache-resizer.vue +0 -80
  279. package/packages/workflow-editor/src/transitions/broken-line.vue +0 -91
  280. package/packages/workflow-editor/src/transitions/curve-line.vue +0 -91
  281. package/packages/workflow-editor/src/transitions/straight-line.vue +0 -26
  282. package/packages/workflow-editor/src/transitions/transition.vue +0 -229
  283. package/packages/workflow-editor/src/transitions/virtual-transition.vue +0 -43
  284. package/packages/workflow-editor/src/util.js +0 -499
  285. package/packages/workflow-editor/src/workflow-editor.vue +0 -869
  286. package/packages/workflow-editor/src/workflow-history.vue +0 -153
  287. package/public/vite.svg +0 -1
  288. package/src/i18n/i18n.js +0 -16
  289. package/src/i18n/langs/cn.js +0 -526
  290. package/src/i18n/langs/en.js +0 -534
  291. package/vite.config.js +0 -36
  292. /package/{lib → es}/vite.svg +0 -0
@@ -0,0 +1,9 @@
1
+ const t = (t2, o) => {
2
+ const c = t2.__vccOpts || t2;
3
+ for (const [t3, s] of o)
4
+ c[t3] = s;
5
+ return c;
6
+ };
7
+ export {
8
+ t as default
9
+ };
package/es/index.mjs ADDED
@@ -0,0 +1,18 @@
1
+ import o from "./workflow-editor/index.mjs";
2
+ import r from "./plugins/index.mjs";
3
+ import { default as default2 } from "./src/i18n/langs/cn.mjs";
4
+ import { default as default3 } from "./src/i18n/langs/en.mjs";
5
+ const t = o.WorkflowEditor, n = o.WorkflowHistory, f = o.wfEditorStore, i = [t, n], s = function(o2) {
6
+ s.installed || (i.forEach((r2) => {
7
+ o2.component(r2.name, r2);
8
+ }), o2.use(r));
9
+ }, e = { wfEditorInstall: s, WorkflowEditor: t, wfEditorStore: f };
10
+ export {
11
+ t as WorkflowEditor,
12
+ n as WorkflowHistory,
13
+ e as default,
14
+ default2 as wfEditorCn,
15
+ default3 as wfEditorEn,
16
+ s as wfEditorInstall,
17
+ f as wfEditorStore
18
+ };
@@ -0,0 +1,212 @@
1
+ import e from "async-validator";
2
+ import { getI18n as t } from "../workflow-editor/src/util.mjs";
3
+ import { parseSubTablePermissionCondition as n } from "agilebuilder-ui";
4
+ function i(e2, n2) {
5
+ const i2 = {}, l2 = e2.dataType;
6
+ return "DATE" === l2 || "TIME" === l2 ? (i2.type = "date", o(i2), i2.message = e2.label + " " + t().t("workflowEditorMessage.requiredAndMustBeADate")) : "INTEGER" === l2 || "LONG" === l2 ? (i2.pattern = /^-?\d+$/, i2.message = e2.label + " " + t().t("workflowEditorMessage.requiredAndMustBeAnInteger")) : "FLOAT" === l2 || "DOUBLE" === l2 ? (i2.pattern = new RegExp("^(-?\\d+)(\\.\\d+)?$"), i2.message = e2.label + " " + t().t("workflowEditorMessage.requiredAndMustBeDecimal")) : "BOOLEAN" === l2 ? (i2.type = "boolean", i2.message = e2.label + " " + t().t("workflowEditorMessage.mustFill"), o(i2)) : i2.message = e2.label + " " + t().t("workflowEditorMessage.mustFill"), e2.canEdit && (i2.required = true, i2.trigger = "blur"), e2.rowIndexes && (i2.rowIndexes = e2.rowIndexes), e2.condition && (i2.condition = e2.condition), n2[e2.name] = e2.dataType, i2;
7
+ }
8
+ function o(e2) {
9
+ e2 && e2.type && "boolean" === e2.type ? e2.validator = function(e3, t2, n2) {
10
+ return null == t2 ? !e3.required : "number" == typeof t2 && (1 === t2 || 0 === t2) || "boolean" == typeof t2 && (true === t2 || false === t2);
11
+ } : e2 && e2.type && "date" === e2.type && (e2.validator = function(e3, t2, n2) {
12
+ if (null == t2)
13
+ return !e3.required;
14
+ {
15
+ const e4 = new Date(t2);
16
+ return !isNaN(e4.getTime());
17
+ }
18
+ });
19
+ }
20
+ function l(e2, t2, n2) {
21
+ let i2;
22
+ for (let o2 = 0; o2 < t2.length; o2++) {
23
+ const l2 = t2[o2];
24
+ if (i2 = 0 === o2 ? e2[l2] : i2.fields[t2[o2]], l2 === n2)
25
+ break;
26
+ }
27
+ return i2;
28
+ }
29
+ function r(e2, t2, n2) {
30
+ let i2;
31
+ for (let o2 = 0; o2 < t2.length; o2++)
32
+ if (i2 = 0 === o2 ? e2[t2[o2]] : i2.fields[t2[o2]], o2 !== t2.length - 1) {
33
+ if (t2[o2 + 1] === n2)
34
+ break;
35
+ }
36
+ return i2;
37
+ }
38
+ function s(e2, t2, n2, o2, s2) {
39
+ let u2 = e2.name;
40
+ const f2 = u2.substring(0, u2.indexOf("."));
41
+ if (n2) {
42
+ n2[f2] || (n2[f2] = {});
43
+ const o3 = n2[f2];
44
+ (function(e3, t3) {
45
+ if (e3.indexOf(".") > 0) {
46
+ let n3 = t3;
47
+ const i2 = e3.split(".");
48
+ for (let e4 = 0; e4 < i2.length - 1; e4++) {
49
+ const t4 = i2[e4];
50
+ if (!n3 || !n3[t4])
51
+ return false;
52
+ n3 = n3[t4];
53
+ }
54
+ return true;
55
+ }
56
+ return true;
57
+ })(u2.substring(u2.indexOf(".") + 1), o3) && function(e3, t3, n3, o4) {
58
+ const s3 = {};
59
+ let u3 = e3.name;
60
+ t3 || (t3 = {});
61
+ const f3 = u3.split(".");
62
+ for (let n4 = 0; n4 < f3.length; n4++) {
63
+ const u4 = f3[n4];
64
+ let d2;
65
+ if (n4 === f3.length - 1)
66
+ d2 = r(s3, f3, u4), d2.fields[u4] = i(e3, o4);
67
+ else {
68
+ let e4;
69
+ 0 === n4 ? d2 = t3 : (e4 = l(s3, f3, f3[n4 - 1]), d2 = e4.fields), d2[u4] || (d2[u4] = { type: "object", required: true, fields: {} }), 0 === n4 ? s3[u4] = d2[u4] : e4.fields[u4] = d2[u4];
70
+ }
71
+ }
72
+ }(e2, t2, 0, s2);
73
+ }
74
+ }
75
+ function u(e2, t2, n2, i2, o2, l2, r2) {
76
+ return f(e2, t2, n2, true, i2, o2, l2, r2);
77
+ }
78
+ function f(n2, i2, o2, l2, r2, s2, u2, d2) {
79
+ let a2 = false;
80
+ let c2;
81
+ if (new e(i2).validate(n2, { first: true }, (e2, d3) => {
82
+ if (e2) {
83
+ const n3 = e2[0].message;
84
+ c2 = e2[0].field, a2 = null != o2 ? void 0 !== s2 && void 0 !== u2 ? t().t("workflowEditorMessage.pageRecordLine", { pageNum: s2, row: u2 }) + "," + n3 : t().t("workflowEditorMessage.recordLine", { row: o2 + 1 }) + "," + n3 : n3;
85
+ } else
86
+ a2 = true;
87
+ if (c2 && true === l2) {
88
+ if (void 0 !== r2 && true === r2 && /[A-Z]+/.test(c2) && void 0 !== n2[c2.toLowerCase()]) {
89
+ const e3 = JSON.parse(JSON.stringify(n2));
90
+ e3[c2.toUpperCase()] = n2[c2.toLowerCase()], delete e3[c2.toLowerCase()], a2 = f(e3, i2, o2, false, r2, s2, u2);
91
+ }
92
+ }
93
+ }), d2) {
94
+ let e2 = { msg: a2, field: c2 };
95
+ return void 0 !== s2 && void 0 !== u2 ? (e2.pageNum = s2, e2.rowIndex = u2) : e2.rowIndex = o2, e2;
96
+ }
97
+ return a2;
98
+ }
99
+ function d(e2, t2, i2, o2, l2, r2, s2, u2, f2) {
100
+ const d2 = function(e3) {
101
+ return e3 && e3.id ? e3.id : e3 && e3.ID ? e3.ID : void 0;
102
+ }(i2), a2 = {};
103
+ for (let c2 = 0; c2 < e2.length; c2++) {
104
+ const g = e2[c2];
105
+ if (f2.indexOf(g) < 0)
106
+ continue;
107
+ const b = t2[g], m = b.condition, p = n(m, o2, l2, i2, r2, s2, u2);
108
+ if (null != p && true === p)
109
+ if (void 0 === d2)
110
+ a2[g] = b;
111
+ else {
112
+ const e3 = b.rowIndexes;
113
+ (!e3 || e3.indexOf(d2) >= 0) && (a2[g] = b);
114
+ }
115
+ }
116
+ return a2;
117
+ }
118
+ function a(e2, t2, n2) {
119
+ let i2 = t2[n2];
120
+ return i2 || (i2 = []), 0 !== i2.length || !e2 || !e2[n2] || void 0 === e2[n2].required || true !== e2[n2].required || e2[n2].message;
121
+ }
122
+ const c = { formValidator: function(e2, t2, n2, i2, o2, l2, r2, s2) {
123
+ let f2 = u(e2, t2, null, n2, null, null, s2);
124
+ if (!(!s2 && true === f2 || s2 && true === f2.msg))
125
+ return f2;
126
+ {
127
+ const c2 = Object.keys(t2);
128
+ if (c2.indexOf("rules") >= 0 && c2.indexOf("subRules") >= 0 && c2.indexOf("totalSubRules") >= 0) {
129
+ const c3 = t2.rules, g = t2.subRules, b = t2.totalSubRules, m = t2.dataTypeMap;
130
+ return f2 = u(e2, c3, null, n2, null, null, s2), (!s2 && true === f2 || s2 && true === f2.msg) && (g || b) && (f2 = function(e3, t3, n3, i3, o3, l3, r3, s3, f3, c4) {
131
+ let g2 = {};
132
+ if (n3 && (g2 = JSON.parse(JSON.stringify(n3))), t3) {
133
+ const n4 = Object.keys(t3);
134
+ for (let b2 = 0; b2 < n4.length; b2++) {
135
+ const m2 = n4[b2], p = t3[m2], O = Object.keys(p);
136
+ let w = e3[m2];
137
+ w || (w = []);
138
+ const x = a(g2, e3, m2);
139
+ if (true !== x)
140
+ return delete g2[m2], c4 ? { msg: x, listCode: m2 } : x;
141
+ let y, E = [];
142
+ f3 && f3[m2] && (y = f3[m2].pageSize, E = f3[m2].fields || []);
143
+ for (let t4 = 0; t4 < w.length; t4++) {
144
+ const n5 = w[t4], a2 = d(O, p, w[t4], o3, e3, l3, r3, s3, E);
145
+ let g3, b3;
146
+ void 0 !== y && y > 0 && (g3 = Math.ceil((t4 + 1) / y), b3 = t4 + 1 - (g3 - 1) * y), Object.keys(a2).forEach((i4) => {
147
+ const o4 = a2[i4];
148
+ if (o4 && o4.rules && (a2[i4] = o4.rules), o4 && o4.beforeValidate) {
149
+ const l4 = o4.beforeValidate;
150
+ "function" == typeof l4 && false === l4({ row: n5, parent: e3, rowIndex: t4 }) && (a2[i4] = []);
151
+ }
152
+ });
153
+ const x2 = u(n5, a2, t4, i3, g3, b3, c4);
154
+ if (!c4 && true !== x2 || c4 && true !== x2.msg)
155
+ return c4 && (f3[m2].title && (x2.msg = f3[m2].title + ":" + x2.msg), x2.listCode = m2), x2;
156
+ }
157
+ }
158
+ }
159
+ for (const t4 in g2) {
160
+ const n4 = a(g2, e3, t4);
161
+ if (true !== n4)
162
+ return c4 ? { msg: n4, listCode: t4 } : n4;
163
+ }
164
+ return !c4 || { msg: true };
165
+ }(e2, g, b, n2, m, i2, o2, l2, r2, s2)), f2;
166
+ }
167
+ if (c2.indexOf("rules") >= 0) {
168
+ return u(e2, t2.rules, null, n2, null, null, s2);
169
+ }
170
+ }
171
+ }, getValidator: function(e2, o2, l2, r2, u2, f2) {
172
+ void 0 === l2 && (l2 = false);
173
+ const d2 = {}, a2 = {}, c2 = {}, g = {};
174
+ return e2 && e2.forEach((e3) => {
175
+ const b = e3.canEdit;
176
+ if (void 0 !== b && true === b) {
177
+ let b2 = e3.name;
178
+ if (b2) {
179
+ const m = e3.condition, p = null;
180
+ let O = null;
181
+ if (O = b2.indexOf(".") > 0 && 0 === b2.indexOf("$") || n(m, a2, p, o2, r2, u2, f2), null != O && true === O) {
182
+ let n2 = {};
183
+ if (b2.indexOf(".") > 0)
184
+ 0 === b2.indexOf("$") ? function(e4, t2, n3, o3, l3) {
185
+ let r3 = e4.name;
186
+ const u3 = r3.substring(r3.indexOf("$") + 1, r3.indexOf("."));
187
+ if (!n3)
188
+ return;
189
+ const f3 = n3[u3], d3 = r3.substring(r3.indexOf(".") + 1);
190
+ t2[u3] || (t2[u3] = {});
191
+ const a3 = JSON.parse(JSON.stringify(e4));
192
+ if (a3.name = d3, d3.indexOf(".") > 0) {
193
+ if (void 0 !== f3 && null === f3 && 0 === f3.length) {
194
+ const e5 = f3[0];
195
+ s(a3, t2[u3], e5, o3, l3);
196
+ }
197
+ } else
198
+ t2[u3][d3] = i(a3, l3);
199
+ }(e3, g, o2, l2, a2) : s(e3, d2, o2, l2, a2);
200
+ else if (0 === b2.indexOf("$")) {
201
+ const n3 = b2.substring(b2.indexOf("$") + 1);
202
+ c2[n3] = { required: true, message: t().t("workflowEditorMessage.subTableMustInputDatas", { subTable: e3.label }) };
203
+ } else
204
+ n2 = i(e3, a2), d2[b2] = n2;
205
+ }
206
+ }
207
+ }
208
+ }), Object.keys(g).length > 0 || Object.keys(c2).length > 0 ? { rules: d2, subRules: g, totalSubRules: c2, dataTypeMap: a2 } : d2;
209
+ } };
210
+ export {
211
+ c as default
212
+ };
@@ -0,0 +1,7 @@
1
+ import o from "./formValidatorUtil.mjs";
2
+ const t = { install: function(t2, a) {
3
+ t2.config.globalProperties.$formValidator = o.formValidator, t2.config.globalProperties.$getValidator = o.getValidator;
4
+ } };
5
+ export {
6
+ t as default
7
+ };
@@ -0,0 +1,7 @@
1
+ import { createI18n as e } from "vue-i18n";
2
+ import m from "./langs/en.mjs";
3
+ import n from "./langs/cn.mjs";
4
+ const o = e({ locale: "cn", messages: { en: m, cn: n }, legacy: false });
5
+ export {
6
+ o as default
7
+ };
@@ -0,0 +1,4 @@
1
+ const e = { workflowEditorPublicModel: { add: "添加", insert: "插入", delete: "删除", viewConditions: "查看条件", agree: "同意", disagree: "不同意", andOr: "并且/或者", mail: "邮件", message: "短信", App: "App", dingding: "钉钉", qiwei: "企业微信", feishu: "飞书", determine: "确定", cancel: "取消", choice: "选择", empty: "清空", save: "保存", export: "导出", open: "打开", return: "返回", flowChart: "流程图", close: "关闭", selectPage: "选择页面", search: "查询", adminSave: "管理员保存", tipTitle: "提示", i18nSet: "国际化设置", i18nZh: "中文", i18nEn: "英文", i18nKey: "国际化key", subprocessTitle: "子流程流转历史", custom: "自定义", enable: "启用" }, workflowEditorMessage: { requiredAndMustBeADate: "必填且必须为日期", requiredAndMustBeAnInteger: "必填且必须为整数", requiredAndMustBeDecimal: "必填且必须为小数", mustFill: "必填", recordLine: "第{row}行记录", pageRecordLine: "第{pageNum}页第{row}行记录", currentHandlingPersonnel: "当前办理人员", pleaseSelect: "请选择", pleaseSelectARow: "请选中一行", conditionsHaveNotBeenSet: "还未设置条件", viewConditions: "查看条件", fieldSettings: "字段设置", valueSetting: "值设置", pleaseEnterContent: "请输入内容", theFieldNameOrFieldValueInLineCannotBeEmpty: "第{row}行的字段名或者字段值不能为空", fieldNameCannotBeEmpty: "字段名不能为空", fieldValueCannotBeEmpty: "字段值不能为空", pleaseEnterASubject: "请输入主题", selectStandardFields: "选择标准字段", pleaseEnterTheRoleName: "请输入角色名称", queryResultIsEmpty: "查询结果为空", selectRole: "选择角色", enterText: "输入文字", selectField: "选择字段", pleaseSelectPersonnel: "请选择人员", pleaseSelectAValue: "请选择值", pleaseSelectAValueInTheCurrentTab: "请在当前页签中选中一个值", variableNameCannotBeEmpty: "变量名不能为空", variableValueCannotBeEmpty: "变量值不能为空", variableNameOrValueOnLineCannotBeEmpty: "第{row}行的变量名或者变量值不能为空", whenThereAreMultipleManagers: "多个办理人时", duplicateOperationTypeWithLinePleaseReselect: "与第{row}行的操作类型重复了,请重新选择", theOperationTypeOrNameInLineIsEmpty: "第{row}行的操作类型或者名称为空", readOnly: "只读", pleaseEnterFieldName: "请输入字段名", dataInLineCannotBeEmpty: "第{row}行的{data1}或{data2}不能为空", dataCannotBeEmpty: "{data}不能为空", theStartAndEndOfTheFlowDirectionCannotBeTheSame: "流向的起点和终点不能相同", onlyConditionJudgmentBranchAndManualJudgmentCanHaveMultipleOutboundFlows: "只有条件判断、分支以及人工判断才能有多条外出流向", startAndEndNodesCannotBeConnectedDirectly: "开始节点和结束节点不能直接相连", endNodeCannotHaveOutFlowDirection: "结束节点不能有外出流向", itIsTheSameAsTheExistingLink: "与已有环节:{name}的编码重复", updateSuccessful: "更新成功", savedSuccessfully: "保存成功", exportSucceeded: "导出成功", pleaseSelectRole: "请选择角色", subTableMustInputDatas: "[{subTable}] 子表必须录入数据", pleaseEnterTheNameOrCode: "请输入字段名或字段描述", updateVersionSuccessful: "成功更新版本", addVersionSuccessful: "成功增加版本", adminSaveTip: "有以下几种情况时必须增加版本:", adminSaveTip1: "1、修改了流程名称或编码", adminSaveTip2: "2、修改了节点名称或编码", adminSaveTip3: "3、增加了节点或流向", adminSaveTip4: "4、移除了节点或流向", adminSaveTip5: "请选择“增加版本”或“更新当前版本”?", updateVersion: "更新当前版本", addVersion: "增加版本", pleaseInputCode: "请先输入编码,再做国际化配置", blankFieldNameOrValue: "字段名或值有空白", enabledSuccessfully: "启用成功", additionalParam: "请求参数", handlingOpinion: "办理意见", opinionSourceField: "意见来源字段" }, workflowEditor: { main: { tacheType: "环节类型", straightLine: "直线", curveLine: "曲线", brokenLine: "折线" }, common: { remove: "移除", attribute: "属性", fieldName: "字段名(*)", operator: "操作符", value: "值(*)", name: "字段名", fieldValue: "字段值", separator: "分隔符", fillInMethod: "填写方式", cover: "覆盖", append: "追加", insertToFront: "插入到最前", fillInTime: "填写时间", fillInBeforeHandling: "办理前填写", fillInAfterHandling: "办理后填写", type: "类别(*)", user: "用户", role: "角色", department: "部门", workgroup: "工作组", selectFormField: "选择表单字段", notificationMethod: "通知方式", addressee: "收件人", theme: "主题", content: "内容", notifyPersonnel: "通知人员", selectusers: "选择用户", selectDepartment: "选择部门", selectTeam: "选择工作组", selectRole: "选择角色", organizationStructure: "组织结构", formField: "表单字段", variableName: "变量名", variableValue: "变量值", selectField: "选择字段", taskNotice: "待办通知", reminderNotice: "催办通知", customMsg: "自定义消息内容", canNotBeEmpty: "不能为空", copy: "复制" }, process: { processInitiator: "起草人", processInitiatorRole: "起草人角色", processInitiatorDepartment: "起草人部门", processInitiatorSuperiorDepartment: "起草人上级部门", processInitiatorTopDepartment: "起草人顶级部门", processInitiatorWorkingGroup: "起草人工作组", nameOfTheDirectSuperiorOfTheProcessInitiator: "起草人直属上级姓名", processInitiatorsDirectSuperiorDepartment: "起草人直属上级部门", directSuperiorRoleOfProcessInitiator: "起草人直属上级角色", ProcessInitiatorsImmediateSuperiorWorkingGroup: "起草人直属上级工作组", nameOfCurrentHandler: "当前办理人姓名", currentHandlerRole: "当前办理人角色", currentHandlerDepartment: "当前办理人部门", currentHandlerSuperiorDepartment: "当前办理人上级部门", topDepartmentOfCurrentHandler: "当前办理人顶级部门", currentHandlerWorkingGroup: "当前办理人工作组", nameOfTheImmediateSuperiorOfTheCurrentHandler: "当前办理人直属上级姓名", currentHandlerDirectSuperiorDepartment: "当前办理人直属上级部门", currentManagerDirectSuperiorRole: "当前办理人直属上级角色", workingGroupDirectlyUnderTheCurrentHandler: "当前办理人直属上级工作组", topDepartments: "顶级部门", approvalResults: "审批结果", totalNnumberOfPersonsWhoDisagreeWithTheCountersignature: "会签不同意人员总数", totalNumberOfCountersignedAndAgreedPersonnel: "会签同意人员总数", percentageOfPersonsWhoDisagreeWithTheCountersignature: "会签不同意人员百分比", percentageOfCountersignedAndAgreedPersonnel: "会签同意人员百分比", percentageOfAbstentions: "弃权票百分比", percentageOfVotesAgainst: "反对票百分比", percentageOfAffirmativeVotes: "赞成票百分比", totalNumberOfAbstentions: "弃权票总数", totalVotesAgainst: "反对票总数", totalNumberOfAffirmativeVotes: "赞成票总数", standardFields: "标准字段", perhaps: "或者", also: "并且", greaterThan: "大于", lessThan: "小于", beEqualTo: "等于", notGreaterThan: "不大于", notLessThan: "不小于", notEqualTo: "不等于", contain: "包含", notIncluded: "不包含", laterThan: "晚于", earlierThan: "早于", noLaterThan: "不晚于", noEarlierThan: "不早于", handlingTimeOfThisLink: "本环节办理时间", handlerIDOfThisLink: "本环节办理人id", currentHandlerPrincipalDepartmentID: "当前办理人正职部门id", iDOfTheImmediateSuperiorOfTheCurrentHandler: "当前办理人直属上级id", iDOfTheSuperiorDepartmentDirectlyUnderTheCurrentHandler: "当前办理人直属上级正职部门id", loginNameOfTheHandlerInThisLink: "本环节办理人登录名", NameOfCurrentHandler: "当前办理人姓名", CurrentHandlerDepartment: "当前办理人部门", CurrentHandlerDepartmentID: "当前办理人部门id", CurrentManagersPrincipalDepartment: "当前办理人正职部门", iDOfSsuperiorDepartmentOfCurrentHandler: "当前办理人上级部门id", CurrentHandlersSuperiorDepartment: "当前办理人上级部门", TopDepartmentOfCurrentHandler: "当前办理人顶级部门", TopDepartmentIDOfCurrentHandler: "当前办理人顶级部门id", CurrentHandlerRole: "当前办理人角色", CurrentHandlerRoleID: "当前办理人角色id", CurrentHandlerWorkingGroupID: "当前办理人工作组id", LoginNameOfTheImmediateSuperiorOfTheCurrentHandler: "当前办理人直属上级登录名", currentHandlersDirectSuperiorDepartment: "当前办理人直属上级部门", currentManagersDirectSuperiorDepartment: "当前办理人直属上级正职部门", currentManagersDirectSuperiorRole: "当前办理人直属上级角色", currentHandlersDirectSuperiorRoleID: "当前办理人直属上级角色id", currentManagersDirectSuperiorWork: "当前办理人直属上级工作", iDOfTheWorkingGroupDirectlyUnderTheCurrentHandler: "当前办理人直属上级工作组id", operationsPerformedInThisPhase: "本环节执行的操作", handlerIDOfThePreviousLink: "上一环节办理人id", lastLinkHandlerLogin: "上一环节办理人登录名", nameOfHandlerInThePreviousLink: "上一环节办理人姓名", currentManagersIdDirectlyUnderTheSuperior: "当前办理人直属上级部门id", appointmentOfHandlerInThePreviousLink: "上一环节办理人指定", personSpecifiedInFormField: "表单字段中指定的人员", filterByCriteria: "按条件筛选", additionalConditions: "附加条件", handlingYyThePersonnelOfTheDepartmentOfTheInitiator: "起草人所在部门人员办理", personnelOfTheDepartmentWhereTheInitiatorWorksParticipateInTheHandling: "起草人所在部门人员参与办理", selectSpecificHandler: "选择具体办理人", selectOneFromDept: "同一部门仅需一人办理", generateOneInstanceFromDept: "同一部门生成一个实例", selectionMethod: "选择方式", manualSelection: "人工选择", autoSelect: "自动选择", callbackURL: "回调URL", cannotBeEmpty: "不能为空", selectURL: "选人URL", fieldName: "字段名称", processAdministrator: "流程管理员", currentHandler: "当前办理人", allHandlingPersonnel: "所有办理人员", designatedPersonnel: "指定人员", listOfDesignatedPersons: "指定人员列表", processName: "流程名称", processCode: "流程编码", creater: "创建人", correspondingForm: "对应表单", processType: "流程类型", system: "所属系统", affiliatedBranch: "所属分支机构", customCategory: "自定义类别", initiationProcess: "发起流程", deleteProcess: "删除流程", cancelProcess: "取消流程", endProcess: "结束流程", pauseProcess: "暂停流程", continueTheProcess: "继续流程", jumpLink: "跳转环节", modificationHandler: "修改办理人", addHandler: "增加办理人", decreaseOofHandler: "减少办理人", appointedTask: "指派任务", returnTask: "退回任务", retrieveTask: "取回任务", processTaskParameterSettings: "办理任务参数设置", uRLForProcessingTask: "办理任务的url", parametersForReceivingTaskID: "接收任务id的参数", viewFormParameterSettings: "查看表单参数设置", viewTheURLOfTheForm: "查看表单的url", parametersOfReceivingEntityID: "接收实体id的参数", emergencyTreatmentParameterSetting: "应急处理参数设置", uRLOfEmergencyHandling: "应急处理的url", initiateProcessParameterSettings: "发起流程参数设置", uRLOfTheInitiatingProcess: "发起流程的url", parametersForReceivingProcessName: "接收流程名称的参数", customParameterValue: "自定义参数值", ViewFlowHistoryPersonnel: "查看流转历史人员", ViewCountersignatureResultPersonnel: "查看会签结果人员", ViewVotingResultsBy: "查看投票结果人员", name: "名称", code: "编码", subprocess: "子流程", transferValueFromMainFormToSubForm: "主表单给子表单传值", fieldsOfTheMainForm: "主表单的字段", fieldsOfSubform: "子表单的字段", subformReturnsResultsToMainForm: "子表单返回结果给主表单", eventsTriggeredBeforeStartingASubprocess: "启动子流程前事件", triggerSubprocessEndEvent: "触发子流程结束事件", setTheHandlerOfTheFirstPhaseOfTheSubProcess: "设置子流程第一环节办理人", keepTheHandlerUnchangedWhenTheTargetLinkIsHandledRepeatedly: "目标环节重复办理时保持办理人不变", branchingCondition: "分支条件", processProperties: "流程属性", basicProperties: "基本属性", permissionSettings: "权限设置", notificationSettings: "通知设置", sendNotificationAfterProcessEnds: "流程结束后发送通知", reminderSettings: "通知与催办", parameterSsetting: "参数设置", event: "事件", processVariables: "流程变量", propertiesOfSubprocesses: "子流程的属性", settingOfHandler: "办理人设置", eventProcessing: "事件处理", sponsorsImmediateSuperior: "起草人直属上级", sponsorsSuperiorDepartment: "起草人上级部门", sponsorTopDepartment: "起草人顶级部门", superiorDepartmentDirectlyUnderTheInitiator: "起草人直属上级部门", sponsorsImmediateSuperiorWorkingGroup: "起草人直属上级工作组", lastLinkHandlerDepartment: "上一环节办理人部门", previousLinkHandlerSuperiorDepartment: "上一环节办理人上级部门", topDepartmentOfHandlerInThePreviousLink: "上一环节办理人顶级部门", previousLinkHandlersDirectSuperiorDepartment: "上一环节办理人直属上级部门", previousLinkHandlerWorkingGroup: "上一环节办理人工作组", workingGroupDirectlyUnderTheManagerInThePreviousLink: "上一环节办理人直属上级工作组", getSubprocessEntityBean: "获得子流程实体bean", getSubprocessEntityBeanPlaceholder: "格式为:xxxServiceImpl,例如:exampleServiceImpl", getSubprocessEntityBeanInfo: "该bean需要实现接口tech.imatrix.wf.core.OnStartingSubProcess", isNull: "等于Null", isNotNull: "不等于Null", defaultMailTemplate: "默认邮件模板", defaultCommonTemplate: "默认通知模板", trustTask: "委托任务", subprocessIsSharedForm: "主子流程共用表单", generateForParttimeDept: "为兼职部门人员生成任务", deptSpecifiedInFormField: "表单字段中指定的部门", activateOneVoteVeto: "一票否决", systemVersion: "系统版本", tableCode: "对应数据表", deptApprover: "起草人部门授权审批人", superiorDeptApprover: "起草人上级部门授权审批人", superiorDeptLeader: "起草人上级部门负责人" }, task: { newCc: "新抄送", judge: "判断", end: "结束", branch: "分支", manualJudgment: "人工判断", newTask: "新任务", converge: "汇聚", newProcess: "新流程", start: "开始", subprocess: "子流程", needToBeUrged: "需要催办", urgingMethod: "催办方式", timeLimitForHandling: "办理时限", day: "天", urgingInterval: "催办间隔", hour: "小时", alwaysUrging: "一直催办", limitedUrging: "限次催办", timesOfUrging: "催办次数", includingHandoverPersonnel: "包含移交人员", handoverPersonnel: "移交人员", includeNotifyPeople: "包含通知人员", name: "名称", code: "编码", taskTitle: "任务标题", emailNotification: "邮件通知", handlingPage: "办理页面", remarks: "备注", allowViews: "允许查看意见", allowToViewCountersignatureResults: "允许查看会签结果", allowToViewVotingResults: "允许查看投票结果", allowToViewFlowHistory: "允许查看流转历史", allowFormsToPrint: "允许打印表单", attachmentAuthority: "附件权限", downloadAttachment: "下载附件", bodyPermission: "正文权限(暂不开放)", additionalConditions: "附加条件", setConditions: "设置条件", HandlingMethod: "办理方式", editorial: "编辑式", approvalType: "审批式", countersign: "会签式", voting: "投票式", anyOneCanHandleIt: "任意一人办理即可", forAll: "所有人均需办理", passRate: "通过率", modifyOperationName: "修改操作名称", operationType: "操作类型", visibleOrNot: "是否可见", save: "保存", submission: "提交", agree: "同意", disagree: "不同意", favor: "赞成", opposition: "反对", waiver: "弃权", receive: "领取", giveUp: "放弃", additionalSignature: "加签", reductionOfSignature: "减签", assignTask: "指派", copyTask: "抄送", retrieveTask: "取回", exportReport: "导出报告", readTask: "阅", selectEditableField: "选择可编辑字段", optionalField: "可选字段", selectedFields: "已选字段", editingMethod: "编辑方式", propertyName: "属性名", condition: "条件", nothing: "无", beforeSubmission: "提交前", executionURL: "执行url", errorMessage: "出错信息", afterSubmission: "提交后", allowEditingForms: "允许编辑表单", commentsAllowed: "允许填写意见", commentsAreRequired: "必须填写意见", deletePermission: "删除权限", addAttachment: "添加附件", deleteAttachment: "删除附件", propertiesOfCCTask: "抄送任务的属性", basicProperties: "基本属性", settingOfHandler: "办理人设置", permissionSettings: "权限设置", attributeOfConditionJudgment: "条件判断的属性", allBranchFlows: "所有分支流向", targetLink: "目标环节", propertiesOfBranches: "分支的属性", attributesOfManualJudgment: "人工判断的属性", linkAttribute: "环节属性", autoFillInFieldSettings: "自动填写字段设置", reminderSettings: "通知与催办", eventProcessing: "事件处理", linkVariable: "环节变量", convergedProperties: "汇聚的属性", humanTask: "人工任务", conditionJudgment: "条件判断", cCtask: "抄送任务", canItBeRejected: "是否可驳回", selectNoticeTemplate: "选择通知模板", selectMailTemplate: "选择邮件模板", selectTemplate: "选择模板", autoTask: "自动任务", newAutoTask: "新自动任务", propertiesOfAutoTask: "自动任务的属性", custombeanName: "自定义bean", baseField: "基础字段", reminderTipTemplateMsg: "模板说明:", reminderTipRemindMsg: "催办说明:", reminderTipTemplateNotice: "通知模板:钉钉、企微、飞书、自定义都使用通知模板。邮件方式时,如果没有选“邮件模板”,则使用通知模板", reminderTipTemplateEmail: "邮件模板:邮件方式特制模板", reminderTipRemindImmediately: "催办方式、通知模板、邮件模板、催办次数、通知方式、通知人员、移交人员 修改后立即生效", reminderTipRemindHistory: "办理时限、办理时限的时间粒度(天/小时)、催办间隔、催办间隔的时间粒度(天/小时)仅对新发起的流程生效,如历史数据也需要应用最新配置,请联系运维人员调整", timeLimitTypeDefault: "默认", timeLimitTypeFormField: "表单字段", timeLimitTypeCustom: "自定义" }, transition: { flowProperties: "流向属性", basicProperties: "基本属性", notificationSettings: "通知设置", sendNotificationAfterFlow: "流过后发送通知", autoFillInFieldSettings: "自动填写字段设置", eventProcessing: "事件处理", triggerFlowThroughEvent: "触发流过事件", beanName: "bean名称" }, condition: { combinationCondition: "组合条件", currentUserId: "当前用户ID", currentUserLogin: "当前用户登录名", currentUserName: "当前用户姓名", fillInManually: "手动填写", environmentVariable: "环境变量", databaseFields: "数据库字段", requestParameters: "请求参数", currentTime: "当前时间", currentDate: "当前日期", currentTransactor: "当前用户登录名", currentTransactorName: "当前用户姓名", currentTransactorId: "当前用户id", currentTransactorMainDepartmentId: "当前用户部门id", currentTransactorMainDepartment: "当前用户部门名称", currentTransactorRoleId: "当前用户角色id", currentTransactorRole: "当前用户角色名称", currentTransactorWorkGroupId: "当前用户工作组id", currentTransactorWorkGroup: "当前用户工作组名称", whenTheVariableIsEmpty: "变量为空时", ignore11: "忽略(1=1)", nonConformity: "不符合(1<>1)", currentHandler: "当前办理人", currentTaskClient: "当前任务委托人", currentAssignor: "当前指派人", rowsCanBeAdded: "可添加行", deleteLine: "可删除行", modifiableHistoricalData: "可修改历史数据", controlByField: "按字段控制", allReadOnly: "全部只读", allRequired: "全部必填", mainTableField: "主表字段", linkName: "环节名称", linkCode: "环节编码", taskFields: "任务字段", systemParameter: "系统参数", personnelScope: "人员范围", mainTableConditions: "主表条件", subtableCondition: "子表条件", accessControl: "进行权限控制", formBindingModel: "表单绑定model", allFields: "全部字段", tableDataNotEmpty: "表格数据不为空" } } };
2
+ export {
3
+ e as default
4
+ };
@@ -0,0 +1,4 @@
1
+ const e = { workflowEditorPublicModel: { add: "Add", insert: "Insert", delete: "Delete", viewConditions: "View Conditions", agree: "Agree", disagree: "Disagree", andOr: "And / Or", mail: "Mail", message: "Message", App: "App", dingding: "DingTalk", qiwei: "Weixin", feishu: "Lark", determine: "Determine", cancel: "Cancel", choice: "Choice", empty: "Empty", save: "Save", export: "Export", open: "Open", return: "Return", flowChart: "Flow Chart", close: "Close", selectPage: "Select Page", search: "Search", adminSave: "Admin Save", tipTitle: "Tip", i18nSet: "I18n Setting", i18nZh: "Chinese", i18nEn: "English", i18nKey: "I18n Key", subprocessTitle: "Subprocess History", custom: "Custom", enable: "Enable" }, workflowEditorMessage: { requiredAndMustBeADate: "Required And Must Be A Date", requiredAndMustBeAnInteger: "Required And Must Be An Integer", requiredAndMustBeDecimal: "Required And Must Be Decimal", mustFill: "Must Fill", recordLine: "Record Line {row}", pageRecordLine: "Record in row {row} of page {pageNum}", currentHandlingPersonnel: "Current Handling Personnel", pleaseSelect: "Please Select", pleaseSelectARow: "Please Select A Row", conditionsHaveNotBeenSet: "Conditions Have Not Been Set", viewConditions: "View Conditions", fieldSettings: "Field Settings", valueSetting: "Value Setting", pleaseEnterContent: "Please Enter Content", theFieldNameOrFieldValueInLineCannotBeEmpty: "The Field Name Or Field Value In Line {row} Cannot Be Empty", fieldNameCannotBeEmpty: "Field Name Cannot Be Empty", fieldValueCannotBeEmpty: "Field Value Cannot Be Empty", pleaseEnterASubject: "Please Enter A Subject", selectStandardFields: "Select Standard Fields", pleaseEnterTheRoleName: "Please Enter The Role Name", queryResultIsEmpty: "Query Result Is Empty", selectRole: "Select Role", enterText: "Enter Text", selectField: "Select Field", pleaseSelectPersonnel: "Please Select Personnel", pleaseSelectAValue: "Please Select A Value", pleaseSelectAValueInTheCurrentTab: "Please Select A Value In The Current Tab", variableNameCannotBeEmpty: "Variable Name Cannot Be Empty", variableValueCannotBeEmpty: "Variable Value Cannot Be Empty", variableNameOrValueOnLineCannotBeEmpty: "Variable Name Or Value On Line {row} Cannot Be Empty", whenThereAreMultipleManagers: "When There Are Multiple Managers", duplicateOperationTypeWithLinePleaseReselect: "Duplicate Operation Type With Line {row}, Please Reselect", theOperationTypeOrNameInLineIsEmpty: "The Operation Type Or Name In Line {row} Is Empty", readOnly: "Read Only", pleaseEnterFieldName: "Please Enter Field Name", dataInLineCannotBeEmpty: "{data1} Or {data2} In Line {row} Cannot Be Empty", dataCannotBeEmpty: "{data} Cannot Be Empty", theStartAndEndOfTheFlowDirectionCannotBeTheSame: "The Start And End Of The Flow Direction Cannot Be The Same", onlyConditionJudgmentBranchAndManualJudgmentCanHaveMultipleOutboundFlows: "Only Condition Judgment, Branch And Manual Judgment Can Have Multiple Outbound Flows", startAndEndNodesCannotBeConnectedDirectly: "Start And End Nodes Cannot Be Connected Directly", endNodeCannotHaveOutFlowDirection: "End Node Cannot Have Out Flow Direction", itIsTheSameAsTheExistingLink: "It Is The Same As The Existing Link: {name}", updateSuccessful: "Update Successful", savedSuccessfully: "Saved Successfully", exportSucceeded: "Export Succeeded", pleaseSelectRole: "Please select role", subTableMustInputDatas: "The [{subtable}] subtable must enter data", pleaseEnterTheNameOrCode: "Please Enter The Name Or Describe", updateVersionSuccessful: "Version updated successfully", addVersionSuccessful: "Version added successfully", adminSaveTip: "The version must be added in the following cases:", adminSaveTip1: "1.The process name or code has been modified", adminSaveTip2: "2.The node name or code has been modified", adminSaveTip3: "3.Added node or flow direction", adminSaveTip4: "4.Node or flow direction removed", adminSaveTip5: 'Please select "Add Version" or "Update Current Version"?', updateVersion: "Update Current Version", addVersion: "Add Version", pleaseInputCode: "Please input the code first, and then do the international configuration", blankFieldNameOrValue: "Blank Field Name Or Value", enabledSuccessfully: "Enabled Successfully", additionalParam: "Request parameter", handlingOpinion: "Handling Opinion", opinionSourceField: "Opinion Source Field" }, workflowEditor: { main: { tacheType: "Tache Type", straightLine: "Straight Line", curveLine: "Curve Line", brokenLine: "Broken Line" }, common: { remove: "Remove", attribute: "Attribute", fieldName: "Field Name(*)", operator: "Operator", value: "Value(*)", name: "Name", fieldValue: "Field Value", separator: "Separator", fillInMethod: "Fill In Method", cover: "Cover", append: "Append", insertToFront: "Insert To Front", fillInTime: "Fill In Time", fillInBeforeHandling: "Fill In Before Handling", fillInAfterHandling: "Fill In After Handling", type: "Type(*)", user: "User", role: "Role", department: "Department", workgroup: "Workgroup", selectFormField: "Select Form Field", notificationMethod: "Notification Method", addressee: "Addressee", theme: "Theme", content: "Content", notifyPersonnel: "Notify Personnel", selectusers: "Select Users", selectDepartment: "Select Department", selectTeam: "Select Team", selectRole: "Select Role", organizationStructure: "Organization Structure", formField: "Form Field", variableName: "Variable Name", variableValue: "Variable Value", selectField: "Select Field", taskNotice: "Task Notice", reminderNotice: "Reminder Notice", customMsg: "Custom Notice Message", canNotBeEmpty: "can Not Be Empty", copy: "Copy" }, process: { processInitiator: "Process Initiator", processInitiatorRole: "Process Initiator Role", processInitiatorDepartment: "ProcessInitiator Department", processInitiatorSuperiorDepartment: "Process Initiator Superior Ddepartment", processInitiatorTopDepartment: "Process Initiator Top Department", processInitiatorWorkingGroup: "Process Initiator Working Group", nameOfTheDirectSuperiorOfTheProcessInitiator: "Name Of The Direct Superior Of The Process Initiator", processInitiatorsDirectSuperiorDepartment: "Process initiator`s Direct Superior Department", directSuperiorRoleOfProcessInitiator: "Direct Superior Role Of Process Initiator", ProcessInitiatorsImmediateSuperiorWorkingGroup: "Process Initiator`s Immediate Superior Working Group", nameOfCurrentHandler: "Name Of Current Handler", currentHandlerRole: "Current Handler Role", currentHandlerDepartment: "Current Handler Department", currentHandlerSuperiorDepartment: "Current Handler`s Superior Department", topDepartmentOfCurrentHandler: "Top Department Of current Handler", currentHandlerWorkingGroup: "Current Handler Working Group", nameOfTheImmediateSuperiorOfTheCurrentHandler: "Name Of The Immediate Superior Of The Current Handler", currentHandlerDirectSuperiorDepartment: "Current handler`s Direct Superior Department", currentManagerDirectSuperiorRole: "Current Manager`s Direct Superior Role", workingGroupDirectlyUnderTheCurrentHandler: "Working Group Directly Under The Current Handler", topDepartments: "Top Departments", approvalResults: "Approval Results", totalNnumberOfPersonsWhoDisagreeWithTheCountersignature: "Total Number O Persons Who Disagree With The Countersignature", totalNumberOfCountersignedAndAgreedPersonnel: "Total Number Of Countersigned And Agreed Personnel", percentageOfPersonsWhoDisagreeWithTheCountersignature: "Percntage Of Persons Who Disagree With The Countersignature", percentageOfCountersignedAndAgreedPersonnel: "Percentage Of Countersigned And Agreed Personnel", percentageOfAbstentions: "Percentage Of Abstentions", percentageOfVotesAgainst: "Percentage Of Votes Against", percentageOfAffirmativeVotes: "Percentage Of Affirmative Votes", totalNumberOfAbstentions: "Total Number Of Abstentions", totalVotesAgainst: "Total Votes Against", totalNumberOfAffirmativeVotes: "Total Number Of Affirmative Votes", standardFields: "Standard Fields", perhaps: "Perhaps", also: "Also", greaterThan: "Greater Than", lessThan: "Less Than", beEqualTo: "Be Equal To", notGreaterThan: "Not Greater Than", notLessThan: "Not Less Than", notEqualTo: "Not Equal To", contain: "Contain", notIncluded: "Not Included", laterThan: "Later Than", earlierThan: "Earlier Than", noLaterThan: "No Later Than", noEarlierThan: "No Earlier Than", handlingTimeOfThisLink: "Handling Time Of This Link", handlerIDOfThisLink: "Handler ID Of This Link", currentHandlerPrincipalDepartmentID: "Current Handler Principal Department ID", iDOfTheImmediateSuperiorOfTheCurrentHandler: "ID Of The Immediate Superior Of The Current Handler", iDOfTheSuperiorDepartmentDirectlyUnderTheCurrentHandler: "ID Of The Superior Department Directly Under The Current Handler", loginNameOfTheHandlerInThisLink: "Login Name Of The Handler In This Link", NameOfCurrentHandler: "Name Of Current Handler", CurrentHandlerDepartment: "Current Handler Department", CurrentHandlerDepartmentID: "Current Handler Department ID", CurrentManagersPrincipalDepartment: "Current Manager`s Principal Department", iDOfSsuperiorDepartmentOfCurrentHandler: "ID Of Superior Department Of Current Handler", CurrentHandlersSuperiorDepartment: "Current Handler`s Superior Department", TopDepartmentOfCurrentHandler: "Top Department Of Current Handler", TopDepartmentIDOfCurrentHandler: "Top Department ID Of Current Handler", CurrentHandlerRole: "Current Handler Role", CurrentHandlerRoleID: "Current Handler Role ID", CurrentHandlerWorkingGroupID: "Current Handler Working Group ID", LoginNameOfTheImmediateSuperiorOfTheCurrentHandler: "Login Name Of The Immediate Superior Of The Current Handler", currentHandlersDirectSuperiorDepartment: "Current handler`s Direct Superior Department", currentManagersDirectSuperiorDepartment: "Current Manager`s Direct Superior Department", currentManagersDirectSuperiorRole: "Current manager`s Direct Superior Role", currentHandlersDirectSuperiorRoleID: "Current Handler`s Direct Superior Role ID", currentManagersDirectSuperiorWork: "Current Manager`s Direct Superior Work", iDOfTheWorkingGroupDirectlyUnderTheCurrentHandler: "ID Of The Working Group Directly Under The Current Handler", operationsPerformedInThisPhase: "Operations Performed In This Phase", handlerIDOfThePreviousLink: "Handler ID Of The Previous Link", lastLinkHandlerLogin: "Last Link Handler Login", nameOfHandlerInThePreviousLink: "Name Of Handler In The Previous Link", currentManagersIdDirectlyUnderTheSuperior: "Current Manager`s Id Directly Under The Ssuperior", appointmentOfHandlerInThePreviousLink: "Appointment Of Handler In The Previous Link", personSpecifiedInFormField: "Person Specified In Form Field", filterByCriteria: "Filter by Criteria", additionalConditions: "Additional Conditions", handlingYyThePersonnelOfTheDepartmentOfTheInitiator: "Handling By The Personnel Of The Department Of The Initiator", personnelOfTheDepartmentWhereTheInitiatorWorksParticipateInTheHandling: "Personnel Of The Department Where The Initiator Works Participate In The Handling", selectSpecificHandler: "Select Specific Handler", selectOneFromDept: "Only one person is required to handle the same department", generateOneInstanceFromDept: "Generate an instance from the same department", selectionMethod: "Selection Method", manualSelection: "Manual Selection", autoSelect: "Auto Select", callbackURL: "Callback URL", cannotBeEmpty: "Cannot Be Empty", selectURL: "Select URL", fieldName: "Field Name", processAdministrator: "Process Administrator", currentHandler: "Current Handler", allHandlingPersonnel: "All Handling Personnel", designatedPersonnel: "Designated Personnel", listOfDesignatedPersons: "List Of Designated Persons", processName: "Process Name", processCode: "Process Code", creater: "Creater", correspondingForm: "Corresponding Form", processType: "Process Type", system: "System", affiliatedBranch: "Affiliated Branch", customCategory: "Custom Category", initiationProcess: "Initiation Process", deleteProcess: "Delete Process", cancelProcess: "Cancel Process", endProcess: "End Process", pauseProcess: "Pause Process", continueTheProcess: "Continue The Process", jumpLink: "Jump Link", modificationHandler: "Modification Handler", addHandler: "Add Handler", decreaseOofHandler: "Decrease Of Handler", appointedTask: "Appointed Task", returnTask: "Return Task", retrieveTask: "Retrieve Task", processTaskParameterSettings: "Process Task Parameter Settings", uRLForProcessingTask: "URL For Processing Task", parametersForReceivingTaskID: "Parameters For Receiving Task ID", viewFormParameterSettings: "View Form Parameter Settings", viewTheURLOfTheForm: "View The URL Of The Form", parametersOfReceivingEntityID: "Parameters Of Receiving Entity ID", emergencyTreatmentParameterSetting: "Emergency Treatment Parameter Setting", uRLOfEmergencyHandling: "URL Of Emergency Handling", initiateProcessParameterSettings: "Initiate Process Parameter Settings", uRLOfTheInitiatingProcess: "URL Of The Initiating Process", parametersForReceivingProcessName: "Parameters For Receiving Process Name", customParameterValue: "Custom Parameter Value", ViewFlowHistoryPersonnel: "View Flow History Personnel", ViewCountersignatureResultPersonnel: "View Countersignature Result Personnel", ViewVotingResultsBy: "View Voting Results By", name: "Name", code: "Code", subprocess: "Subprocess", transferValueFromMainFormToSubForm: "Transfer Value From Main Form To Sub Form", fieldsOfTheMainForm: "Fields Of The Main Form", fieldsOfSubform: "Fields Of Subform", subformReturnsResultsToMainForm: "Subform Returns Results To Main Form", eventsTriggeredBeforeStartingASubprocess: "Events Triggered Before Starting A Subprocess", triggerSubprocessEndEvent: "Trigger Subprocess End Event", setTheHandlerOfTheFirstPhaseOfTheSubProcess: "Set The Handler Of The First Phase Of The Sub Process", keepTheHandlerUnchangedWhenTheTargetLinkIsHandledRepeatedly: "Keep The Handler Unchanged When The Target Link Is Handled Repeatedly", branchingCondition: "Branching Condition", processProperties: "Process Properties", basicProperties: "Basic Properties", permissionSettings: "Permission Settings", notificationSettings: "Notification Settings", sendNotificationAfterProcessEnds: "Send Notification After Process Ends", reminderSettings: "Notice And Reminder Settings", parameterSsetting: "Parameter Setting", event: "Event", processVariables: "Process Variables", propertiesOfSubprocesses: "Properties Of Subprocesses", settingOfHandler: "Setting Of Handler", eventProcessing: "Event Processing", sponsorsImmediateSuperior: "Sponsor`s Immediate Superior", sponsorsSuperiorDepartment: "Sponsor`s Superior Department", sponsorTopDepartment: "Sponsor Top Department", superiorDepartmentDirectlyUnderTheInitiator: "Superior Department Directly Under The Initiator", sponsorsImmediateSuperiorWorkingGroup: "Sponsor`s Immediate Superior Working Group", lastLinkHandlerDepartment: "Last Link Handler Department", previousLinkHandlerSuperiorDepartment: "Previous Link Handler Superior Department", topDepartmentOfHandlerInThePreviousLink: "Top Department Of Handler In The Previous Link", previousLinkHandlersDirectSuperiorDepartment: "Previous Link Handler`s Direct Superior Department", previousLinkHandlerWorkingGroup: "Previous Link Handler Working Group", workingGroupDirectlyUnderTheManagerInThePreviousLink: "Working Group Directly Under The Manager In The Previous Link", getSubprocessEntityBean: "Get subprocess entity bean", getSubprocessEntityBeanPlaceholder: "The format is:xxxServiceImpl,for example:exampleServiceImpl", getSubprocessEntityBeanInfo: 'The bean needs to implement the interface "tech.imatrix.wf.core.OnStartingSubProcess"', isNull: "Is Null", isNotNull: "Is Not Null", defaultMailTemplate: "Default Mail Template", defaultCommonTemplate: "Default Common Template", trustTask: "Trust Task", subprocessIsSharedForm: "Main process and subprocess shared form", generateForParttimeDept: "Generate tasks for part-time department personnel", deptSpecifiedInFormField: "Dept Specified In Form Field", activateOneVoteVeto: "Activate one vote veto", systemVersion: "System Version", tableCode: "DataTable Name", deptApprover: "Authorized approver of the drafting department", superiorDeptApprover: "Drafted by the authorized approver of the superior department", superiorDeptLeader: "Drafted by the superior department head" }, task: { newCc: "New Cc", judge: "Judge", end: "End", branch: "Branch", manualJudgment: "Manual Judgment", newTask: "New Task", converge: "Converge", newProcess: "New Process", start: "Start", subprocess: "Subprocess", needToBeUrged: "Need To Be Urged", urgingMethod: "Urging Method", timeLimitForHandling: "Time Limit For Handling", day: "Day", urgingInterval: "Urging Interval", hour: "Hour", alwaysUrging: "Always Urging", limitedUrging: "Limited Urging", timesOfUrging: "Times Of Urging", includingHandoverPersonnel: "Including Handover Personnel", handoverPersonnel: "Handover Personnel", includeNotifyPeople: "Include Notify People", name: "Name", code: "Code", taskTitle: "Task Title", emailNotification: "Email Notification", handlingPage: "Handling Page", remarks: "Remarks", allowViews: "Allow Views", allowToViewCountersignatureResults: "Allow To View Countersignature Results", allowToViewVotingResults: "Allow To View Voting Results", allowToViewFlowHistory: "Allow To View Flow History", allowFormsToPrint: "Allow Forms To Print", attachmentAuthority: "Attachment Authority", downloadAttachment: "Download Attachment", bodyPermission: "Body Permission(Temporarily Closed)", additionalConditions: "Additional Conditions", setConditions: "Set Conditions", HandlingMethod: "Handling Method", editorial: "Editorial", approvalType: "Approval Type", countersign: "Countersign", voting: "Voting", anyOneCanHandleIt: "Any One Can Handle It", forAll: "For All", passRate: "Pass Rate", modifyOperationName: "Modify Operation Name", operationType: "Operation Type", visibleOrNot: "Visible Or Not", save: "Save", submission: "Submission", agree: "Agree", disagree: "Disagree", favor: "Favor", opposition: "Opposition", waiver: "Waiver", receive: "Receive", giveUp: "Give Up", additionalSignature: "Additional Signature", reductionOfSignature: "Reduction Of Signature", assignTask: "Assign Task", copyTask: "Copy Task", retrieveTask: "Retrieve Task", exportReport: "Export Report", readTask: "Read", selectEditableField: "Select Editable Field", optionalField: "Optional Field", selectedFields: "Selected Fields", editingMethod: "Editing Method", propertyName: "Property Name", condition: "Condition", nothing: "Nothing", beforeSubmission: "Before Submission", executionURL: "Execution URL", errorMessage: "Error Message", afterSubmission: "After Submission", allowEditingForms: "Allow Editing Forms", commentsAllowed: "Comments Allowed", commentsAreRequired: "Comments Are Required", deletePermission: "Delete Permission", addAttachment: "Add Attachment", deleteAttachment: "Delete Attachment", propertiesOfCCTask: "Properties Of CC Task", basicProperties: "Basic Properties", settingOfHandler: "Setting Of Handler", permissionSettings: "Permission Settings", attributeOfConditionJudgment: "Attribute Of Condition Judgment", allBranchFlows: "All Branch Flows", targetLink: "Target Link", propertiesOfBranches: "Properties Of Branches", attributesOfManualJudgment: "Attributes of manual Judgment", linkAttribute: "Link Attribute", autoFillInFieldSettings: "Auto Fill In Field Settings", reminderSettings: "Notice And Reminder Settings", eventProcessing: "Event Processing", linkVariable: "Link Variable", convergedProperties: "Converged Properties", humanTask: "Human Task", conditionJudgment: "Condition Judgment", cCtask: "CC Task", canItBeRejected: "Can It Be Rejected", selectNoticeTemplate: "Select Notice Template", selectMailTemplate: "Select Email Template", selectTemplate: "Select Template", autoTask: "Auto Task", newAutoTask: "New Auto Task", propertiesOfAutoTask: "Properties Of Auto Task", custombeanName: "Custom Bean Name", baseField: "Base Field", reminderTipTemplateMsg: "Template Description:", reminderTipRemindMsg: "Reminder Description:", reminderTipTemplateNotice: 'Notification templates: DingTalk, Enterprise WeChat, Feishu, and Customization all use notification templates. When using email, if "email template" is not selected, use notification template', reminderTipTemplateEmail: "Email Template: Customized Email Template", reminderTipRemindImmediately: "The reminder method, notification template, email template, maximum number of reminders, notification method, notification personnel, and transfer personnel will take effect immediately after modification", reminderTipRemindHistory: "The processing time limit, processing time granularity (days/hours), reminder interval, reminder interval time granularity (days/hours) are only effective for newly initiated processes. If historical data also requires the latest configuration, please contact the operation and maintenance personnel to adjust", timeLimitTypeDefault: "Default", timeLimitTypeFormField: "Form Field", timeLimitTypeCustom: "Custom" }, transition: { flowProperties: "Flow Properties", basicProperties: "Basic Properties", notificationSettings: "Notification Settings", sendNotificationAfterFlow: "Send Notification After Flow", autoFillInFieldSettings: "Auto Fill In Field Settings", eventProcessing: "Event Processing", triggerFlowThroughEvent: "Trigger Flow Through Event", beanName: "Bean Name" }, condition: { combinationCondition: "Combination Condition", currentUserId: "Current User ID", currentUserLogin: "Current User Login", currentUserName: "Current User Name", fillInManually: "Fill In Manually", environmentVariable: "Environment Variable", databaseFields: "Database fields", requestParameters: "Request Parameters", currentTime: "Current Time", currentDate: "Current Date", currentTransactor: "Current Transactor", currentTransactorName: "Current Transactor Name", currentTransactorId: "Current Transactor Id", currentTransactorMainDepartmentId: "Current Transactor Main Department Id", currentTransactorMainDepartment: "Current Transactor Main Department", currentTransactorRoleId: "Current Transactor Role Id", currentTransactorRole: "Current Transactor Role", currentTransactorWorkGroupId: "Current Transactor Work Group Id", currentTransactorWorkGroup: "Current Transactor Work Group", whenTheVariableIsEmpty: "When The Variable Is Empty", ignore11: "Ignore (1 = 1)", nonConformity: "Non Conformity (1 < > 1)", currentHandler: "Current Handler", currentTaskClient: "Current Task Client", currentAssignor: "Current Assignor", rowsCanBeAdded: "Rows Can Be Added", deleteLine: "Delete Line", modifiableHistoricalData: "Modifiable Historical Data", controlByField: "Control By Field", allReadOnly: "All Read Only", allRequired: "All Required", mainTableField: "Main Table Field", linkName: "Link Name", linkCode: "Link Code", taskFields: "Task Fields", systemParameter: "System Parameter", personnelScope: "Personnel Scope", mainTableConditions: "Main Table Conditions", subtableCondition: "Subtable Condition", accessControl: "Access Control", formBindingModel: "Form Binding Model", allFields: "All Fields", tableDataNotEmpty: "Table Data Not Empty" } } };
2
+ export {
3
+ e as default
4
+ };
package/es/style.css ADDED
@@ -0,0 +1 @@
1
+ @charset "UTF-8";.button-area[data-v-c5c6cdd2]{padding:5px 0 5px 5px;height:50px;background-color:#fff}.el-row[data-v-c5c6cdd2]{border:1px solid #f1f1f1;border-radius:5px}.el-col[data-v-c5c6cdd2]{padding-left:5px}.main[data-v-c5c6cdd2]{position:relative;display:flex;height:calc(100% - 50px);width:100%}.canvas-container[data-v-c5c6cdd2]{position:relative;height:calc(100% - 50px);width:100%}.toolbox[data-v-c5c6cdd2]{width:150px;overflow-y:auto;height:100%;background:#f7f7f7;padding:10px;text-align:center;flex:none}section[data-v-c5c6cdd2]{overflow:hidden;flex:1 1 auto;height:100%;padding:0}.tabs[data-v-c5c6cdd2]{height:100%;width:100%}.tabBox[data-v-c5c6cdd2]{padding:20px}.tab-pane[data-v-c5c6cdd2]{height:100%;width:100%}.tabs[data-v-c5c6cdd2] .el-tabs__content{height:calc(100vh - 138px);width:100%}.canvas[data-v-c5c6cdd2],.xml[data-v-c5c6cdd2]{overflow:auto;height:100%;width:100%;padding:0;min-height:500px}pre[data-v-c5c6cdd2]{margin:0;font-size:16px}.component-icon[data-v-c5c6cdd2]{position:absolute;pointer-events:none}.canvas[data-v-c5c6cdd2] .draggable{cursor:move}[data-v-c5c6cdd2] .el-tabs__header .el-tabs__item.is-active{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAG4AAAA7CAYAAACaGL+/AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAmhSURBVHhe7Z3NaxzJGcanu2ekGetbsgeNPFFko2Rj7JCAcQgJAcd7CXj3EIIhhCXnBLP3TXKwDAkh9/wBOYQk4EMgl7A5GZK9xadYhgVhKTK2sT2WJc3oYzRfeX7vdE1aI3lJWFlqQz1QrurqqppxP/O89b7VreogI3Q6nWBhYSG4ePFicP78+XBsbCx88eJFODo6GjUajeze3l506tSpbC6X4zhS+1wo7OzsROSDg4NBq9UKA4HxXJ6E+gXq39FYmYGBgYzLgSvTT2N3rDIGx8nxksf0Y0zGdmNyjjprnAD19HXfg7rkd/hf4fq4z6Yum80ybqbdbneUDENDQ+1ms9nSuVYURU21b9br9ZauWevMmTPNWq3W0nVubWxstC9fvty+c+dO5saNG4zH/+/A9+8H/xkjjXT37t2gXC5H+Xw+1IBGGoSJlJxSVh+aE0mUI31p6o04fc+IC8N4qqNoF1Zf2C6y/gP856jaBy4k7SnTlpz2yfp+0K6/T7Itn+M+j3EYj3rqgPtOyc9wfdx5ctfPjcF599nJ3LWJs44uR4tc59Sk1VJ9Q3VNHTeVN0Rec2tri3JT17ilHwFEth88eNBKEGfD8s/rYMSJ7VCdA6VQv5RwZWUlOz4+np0SSqXSj/Sh39ZgF9W+3O3m4aDrVxM/S1LUJy9fvvxkfX39ieoQHb9gfg0N5Q1ypT1yCaAxPDzckAggr/n8+fNWsVhEeRDtfjifSVykFN68eTPQh2IiI3INmL106dL7ExMTfxFp39Mg82o3aj089kHXZkDqmZYF+oau3w9ESK5SqXwqFTOlYGbsGus4lGpDVCqVmaQQ5O7ubmZ+fh4Fdx49ehTMzMwYYbdv3yZ7LVBcSL64uBhtbm5i+nJXrlz5jfKfdJt4/L+Q2p6LhF+8evXqKWrTNd5Tqou0us5ZEpG7mE7OkcvSNSWaFvMdQzCO+pIdqjwj7d69e2YiSer4M0/a54OuX3F2dvZX8g9Oi5iCjvNSWV6E5VUeRKUkqSwrFWbxJRBNtVqN8DM0hJtfyQ4FxGXkjAT6BQQyjx8o/8jOeHwuiJji3Nzch8rzJJFmBDryhAEcPU1HOIORyuHIyEh49erVUOQZL+pnYx0GGgWrq6vB2toa7vzP43qPI4BUdllOx9dRHYSRJAxTmzzLQXmY5AOoTs5NFm9+aWkpEIGmus9UHI0uXLhA+kADzsb1HkcEOebfF2GYR0siKC8Tiek0AuWcWKilelMdYRgW0KlO5Jnnb4MlYCcxk/KK3rMajyOF+Hlnenr6EkWIc3McxyIkp/M5cpGblQKzmhvN13CqIwkHpBfC7rNnz2D1i3GdxxFDqnvfkUWCQKnMCJRjQh0LG6xMhZq2IpFpvCi+fu0kZ4pTB1j9qtV4HDl0fb98+vTpCxSVBhQWWE6StTNwDnOJo7K8vByx5MjyI+TdunUr7DeXts4Ylz3eIKS69ySOrEwlS4VOfShmkBxTqeTIMw8T1bGitbCw4JbBejDF6RfgyXvDkPn7kjzMr6jIAr0RSLU8yt4ch6Oids5U2kK/wgO6ozo46vFkxHkcDxSzXY8Jw1T2zKZzUuSUsDJtQblIjFDd4uIiHKG6fQF5z6u0I483ClQnk/mOCLA7LpAoE2hhAeTJTJr57FcdK1vdEbrhATmLn560Y4SI66lO5hHCzGRCnMA8B6n7VMdcF3uY4rgbGnhTecxIqg6yqFIiCMdJGYA4jslFmDkqrGPiYareBeMBtxo6lUpFZY/jgpyUH8vScbvHSIJAzXVGJHMdylOK8DBRneoCVGedBbXrmkrFGHGVx3FAJE2WSqVvYTJFgpHHPEcOeXiXlEWWLYWhOlZT4rmuO8ehOAoex4vx8fHrMoeozkiCMHHRi++c6kSY3faJb3RDnE1vpjhvKo8fqK5cLjvVGXniwnIgUnPb29s5kcbzPeHw8HAEV1Idigu9c3KCQHUykTziYMpzqnNE4qCwhomXWavVwjhE6JpK/vFz3Mmgb67bp7r42LxMTCbkuTVM5jqvuBMGqpOSRl1sJ4Kc4nAvjVDMppTGfBdNTk7a/TpP3AkD1Z09e/aaCDOVQZZg5LmkY1Mcc121WjUP0xOXAsjxuCYVDatoS2GQpbLzMi08wGRubGzY4w3MdZ64FEAOSmFmZuZdpzBVWZIaUaDViaxsoVDIEh7wNJgRt76+3ovKPU4GIyMj3xU5I8x1qI65jgRpAMVBHgG5/c0GnTRB+iD8hIHqFNe9qyL36rhzYIqDOMVylkMecx2Oil85SRGkuqsS1wiKS3qZhAiC8zBNdX7lJEVwcx2kiSAzk051Om0xHeZSJHYV5wPw9IC5DtWJLFMciQVo9zQYJLIU5m+kpgyojrgO1ZGc2pSMQKc6Hw6kEIrrUB1xnSkO8iDN5Tzi4IlLIWLVEdf1zCVzHaRRpt7HcSlFrDqL6yAKtam6ZzaNOB8SpA+oTh7mNUcYIYJyI01znDeVaUbsYQ6baYyVJ5NpT4IZcT4cSCfiuc48TB0eNJV+jksvknOdCw+4K+7nuJQD1ZXL5euYydhkRtzuMeJ8EJ5uoDqlMyq6+3W290bHKy79mJ6e5s+02MHJHi6yJS9/Wyf90Lz2tUKhcArSTHFUeuck/dDcVigWi2zNhepCM5VecW8HFHd/QaQB/8zJ2wRNa1PkCsK7D8ROTEzY3lEebwfkWWbC+fn59tOnTzn+t9V6pBZySrba7Tb7YbZNcVNTUyjuX5Q90oudnZ1PjbQwbPMcemZubo6dMf8en/dIKdbW1v4px8Q2LGWbw87S0hIbXv5eFRvWwiN1kNr+UavVmNNst1lMZbter3fE5iup7tc08kgfnjx5ckdmsk5SCLdnc5zUhuo69+/f/63I+4O19EgNNjc3fyfFPcrlcuwqu6t4bteIq1arHZ3obG1ttR8+fPhTkfdH6+Fx4hAnf1pZWfmzONkhQVyj0ajzl5DB0NBQZmxsrFMqlYLt7e3g8ePHfy0Wi2w8Oqs01h3C4zghk/isUqn8cnV19WPFbbsKum1fZ51iJ/Xd3r4ZbGzJ9vXsqeFeFHHu3Lnz+Xz+O5LmD0XgNxnQ481BXNhW+LJ+Hy8vL/9N19xiNuX2ngJxYptv67hhpLHBF2/5cO8eSJKngXhphP1VpJQ5KSInVGYrI9uHQ7l7w0eotuztvO8FDizP6Dg++u8xeT9cu2Sbw9omz4Hk+f66vnFYk+WlFgf69B/rx2pv84jre/1AYrwDOTisTA6S9cCd07WuibCqyry1pAVHOtfWsUHE8R4De/lEEASN/wBelbH6m9sh0QAAAABJRU5ErkJggg==)!important;background-size:100% 100%;min-width:100px;text-align:center}[data-v-c5c6cdd2] .el-tabs__header .el-tabs__item{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAAA6CAYAAABVsbwnAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAJTSURBVHhe7ZyNTYNQFIVLJ9AN6ga6QTuBbqBu4AbqBLqBOoHtBNYN3MCO4AZ4DjxIEFoLvJ9Lcr7k5j1qYxNOvgcFemdiWmRubJDn+QmGa9QSdY5aoESbL1ebLMvWxSuBaQWGsK4wvKAYmjieHeoWwW3LzTDM3ViAsJ4wvKMUVn+4Cn1gH96Xm2GoA3MfdFduiRE8YF8G24/FkogPuMHAZVD4YxVieawC+8agEwu/bBHYys29MXd2KSz/LLFveZbtFR7DLsupCID3ExAGJrvC4d2yDP8wd3MRBq/Hssb3MBEEWsarRl6QYXHYwbIzNx+FDIvDwpdlMiweXiyTYfGgZaMvWcmwuPygzmAax0HIsLjwLsgoy2RYfEZZJsPiM8oyGZaGwZbJsDQMtkyGpWOQZTIsHYMsk2Fp6W2ZDEtLb8tkWHp6WSbD0tPLMhlmg6Mtk2E2oGVHPbAjw2xBy/iM/l5kmC3+tUyG2eOgZTLMHgctk2E2uYBl/KFgCxlmE/5OrxMFZpO9j3grMLt0HssUmF06LVNgtmlZpsBs07JMgdmnYZkCs0/DMgU2DWrLdKVjOpzyfpkMmw7s+aUlcUIUzQMU2MRgYAfvcAozFDkxsM7L+MIcdWCfnAjTsNdHHdgr6uhHhUUSmFHBnOf2GB/LTWEQdh94c/PyLBEvPGOoXxRm4DLYaHvU6Pmb5znV89ZmR4yiCKs6dlUUhlXgj+ydyOWx8SYRHXYybYVF9rVB57dqXiGuWqGL8DCcDWqNoPa2nu0M7C8IkM9+s0QAukzqZjb7BSMgwjylk2AUAAAAAElFTkSuQmCC)!important;background-size:100% 100%;min-width:100px;text-align:center}[data-v-c5c6cdd2] .el-tabs__active-bar{display:none}[data-v-c5c6cdd2] .el-tabs__item{padding:0}[data-v-c5c6cdd2] .el-tabs__nav-wrap:after{width:0}[data-v-c5c6cdd2] .el-tabs__header{margin:0}.main[data-v-6658e14b]{position:relative;display:flex;height:100%;width:100%}.canvas-container[data-v-6658e14b]{position:relative;height:100%;width:100%}section[data-v-6658e14b]{overflow:hidden;width:100%;height:100%;padding:0}.canvas[data-v-6658e14b]{overflow:auto;height:100%;padding:0;min-height:500px}.canvas[data-v-6658e14b] .draggable{cursor:default}.passed-tache .task-tache{fill:green;stroke:green;stroke-width:2}.current-tache .task-tache{fill:red;stroke:red;stroke-width:2}.passed-tache text{fill:#fff}.current-tache text{fill:#fff}.svg-icon{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}#svg{background:white;background-image:linear-gradient(rgba(242,242,242,.7) 1px,transparent 0),linear-gradient(90deg,rgba(242,242,242,.7) 1px,transparent 0),linear-gradient(#e5e5e5 1px,transparent 0),linear-gradient(90deg,#e5e5e5 1px,transparent 0);background-size:15px 15px,15px 15px,75px 75px,75px 75px}g{font-size:16px}g text{dominant-baseline:middle}.selected{fill:#fff;stroke:red;stroke-width:2}.task-tache{fill:#fff;stroke:#666;stroke-width:2}h3[data-v-0d941719]{color:#999;margin:0;padding:0;font-weight:700;font-size:18px}.el-button[data-v-0d941719]{margin:6px 0;min-width:110px;padding:9px 15px}.el-button i[data-v-0d941719]{padding-right:4px}li[data-v-7e8a1cf6]{color:#333}.context-menu[data-v-7e8a1cf6]{position:fixed;background:#fff;z-index:999;padding:5px;margin:0}.context-menu li[data-v-7e8a1cf6]{min-width:75px;height:28px;line-height:28px;text-align:left;color:#1a1a1a}.context-menu li[data-v-7e8a1cf6]:hover{background:#42b983;color:#fff}.context-menu[data-v-7e8a1cf6]{border:1px solid #eee;box-shadow:0 .5em 1em #0000001a;border-radius:5px}li[data-v-7e8a1cf6]{list-style-type:none}.start,.end,.decision,.human-decision{stroke-width:0;fill:#fff}.transition[data-v-893fde7e]{stroke-width:2;stroke:#666;fill:none;cursor:pointer}.selected[data-v-893fde7e]{stroke:red}.transition-dragger[data-v-893fde7e]{stroke:red;stroke-width:1;fill:#fff;cursor:move}.no-events[data-v-893fde7e]{pointer-events:none}#_subprocess-content[data-v-2b195c05]{width:100%;height:calc(100vh - 200px)}.tooltip[data-v-ac799913]{position:absolute;background:#fff;min-width:150px;border-radius:4px;border:1px solid #ebeef5;padding:12px;z-index:2000;color:#606266;line-height:1.4;text-align:justify;font-size:14px;box-shadow:0 2px 12px #0000001a;word-break:break-all}.selection-region{stroke:#00f;stroke-width:1;fill:#fff;fill-opacity:0;opacity:1;cursor:move}.dashed{stroke-dasharray:10 2;pointer-events:none}.properties-editor[data-v-ff5ffacd] .el-dialog__body{padding-top:0}.virtual-transition{stroke-width:2;stroke:#000;stroke-dasharray:2 2;fill:none}.properties-editor[data-v-456087c8] .el-dialog__body,.properties-editor[data-v-029d9709] .el-dialog__body,.properties-editor[data-v-bd66d235] .el-dialog__body{padding-top:0}.joint-container{stroke-width:0;fill:#fff;fill-opacity:0}.joint{fill:#00f;stroke-width:1px}.joint-activated{fill:red;stroke-width:1px;fill-opacity:1}.properties-editor[data-v-adb7c2ff] .el-dialog__body{padding-top:0}.control-point[data-v-0ff53a0a]{fill:#fff;cursor:move}.control-line[data-v-0ff53a0a]{stroke-dasharray:2 2}.percent[data-v-bd65494e]{margin-left:10px;color:red;font-size:1.2em}.resizer{stroke:#00f;stroke-width:1;fill:#fff}.el-checkbox[data-v-eb469484]{margin-left:20px}ul[data-v-b82251c5]{margin:0;padding:0}ul li[data-v-b82251c5]{list-style:none}.sub-li[data-v-b82251c5]{padding-left:10px}.control-point[data-v-788fb0ae]{fill:#fff;cursor:move}.control-line[data-v-788fb0ae]{stroke-dasharray:2 2}.percent[data-v-c1c7385b],.percent[data-v-6aef99ff]{margin-left:10px;color:red;font-size:1.2em}.el-checkbox[data-v-5fb29fef]{margin-left:20px}.tag-container[data-v-77d37fde]{display:inline-flex;flex-wrap:wrap;gap:6px;cursor:grab}.el-tag+.el-tag[data-v-77d37fde]{margin-left:0}.tag-text[data-v-77d37fde]{display:inline-block;max-width:160px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;vertical-align:middle}.button-new-tag[data-v-77d37fde]{margin-left:10px;height:32px;line-height:30px;padding-top:0;padding-bottom:0}.input-new-tag[data-v-77d37fde]{width:150px;margin-left:10px;vertical-align:bottom}select[data-v-77d37fde]{width:150px;margin-left:10px;height:32px;line-height:32px}.wf-tag-drag{display:inline-flex!important;pointer-events:auto!important;opacity:.85;box-shadow:0 4px 12px #00000026;background:#fff}.group[data-v-486a7dd1]{font-size:14px;width:100%}.item[data-v-486a7dd1]{float:left;list-style-type:none;width:33.33%;margin-bottom:18px}.item-content[data-v-486a7dd1]{height:calc(100vh - 300px);padding-left:20px;overflow:auto}span[data-v-f45e26ae]{margin:0 10px}#appContainer[data-v-9458f3bf] .el-checkbox{display:block}#appContainer[data-v-9458f3bf] .el-transfer-panel{width:400px}#appContainer[data-v-9458f3bf] .ellipsis{display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-break:keep-all;width:55%}#custTabOne[data-v-7feaa2da] .el-tabs__content{height:500px}.group[data-v-7feaa2da]{font-size:14px;width:100%}.item[data-v-7feaa2da]{float:left;list-style-type:none;width:33.33%;margin-bottom:18px}.item-content[data-v-7feaa2da]{height:calc(100vh - 300px);padding-left:20px;overflow:auto}.searchResult{color:red}.inline-input-custom{width:90%}
@@ -0,0 +1,10 @@
1
+ import o from "./src/workflow-editor.vue.mjs";
2
+ import r from "./src/store/workflow-editor.mjs";
3
+ import t from "./src/workflow-history.vue.mjs";
4
+ o.install = function(r2) {
5
+ r2.component(o.name, o), r2.component(t.name, t);
6
+ };
7
+ const m = { WorkflowEditor: o, WorkflowHistory: t, wfEditorStore: r };
8
+ export {
9
+ m as default
10
+ };
@@ -0,0 +1,6 @@
1
+ const s = { refresh() {
2
+ this.showHistory();
3
+ } };
4
+ export {
5
+ s as default
6
+ };
@@ -0,0 +1,43 @@
1
+ !function(c) {
2
+ var t, l = '<svg><symbol id="icon-switch" viewBox="0 0 1024 1024"><path d="M701.74225 917.574059c-7.419408 0-14.960447-2.675852-20.9203-8.149187-12.649483-11.554816-13.500891-31.13719-2.067704-43.786673l119.318684-130.75187L679.119135 608.634755c-11.798076-12.527854-11.189928-32.110227 1.337926-43.786673 12.527854-11.798076 32.110227-11.189928 43.786673 1.337926l138.657798 147.171873c11.068298 11.798076 11.311557 30.164153 0.364889 42.205488l-138.657798 152.037059c-6.081482 6.568001-14.473928 9.973631-22.866373 9.973631z" fill="" ></path><path d="M806.343746 786.21404h-581.389713c-82.100012 0-148.996318-66.896306-148.996318-148.996318v-245.691888c0-17.14978 13.86578-31.01556 31.01556-31.01556s31.01556 13.86578 31.01556 31.01556v245.691888c0 47.922081 39.043117 86.965198 86.965198 86.965198h581.389713c17.14978 0 31.01556 13.86578 31.01556 31.01556s-13.86578 31.01556-31.01556 31.01556z" fill="" ></path><path d="M322.25775 468.76066c-8.270816 0-16.420002-3.284-22.623114-9.730371l-138.657798-147.171874c-11.068298-11.798076-11.311557-30.164153-0.364889-42.205487l138.657798-152.037059c11.554816-12.649483 31.13719-13.500891 43.786673-2.067704 12.649483 11.554816 13.500891 31.13719 2.067704 43.786673l-119.197054 130.8735 118.953795 126.251574c11.798076 12.527854 11.189928 32.110227-1.337926 43.786673-5.959853 5.716593-13.62252 8.514075-21.285189 8.514075z" fill="" ></path><path d="M917.026725 664.584392c-17.14978 0-31.01556-13.86578-31.01556-31.01556v-245.691887c0-47.922081-39.043117-86.965198-86.965198-86.965198h-581.389713c-17.14978 0-31.01556-13.86578-31.01556-31.01556s13.86578-31.01556 31.01556-31.01556h581.389713c82.100012 0 148.996318 66.896306 148.996318 148.996318v245.691887c0 17.14978-13.86578 31.01556-31.01556 31.01556z" fill="" ></path></symbol><symbol id="icon-properties" viewBox="0 0 1024 1024"><path d="M512.980327 64.636113c-246.706845 0-447.421192 200.714348-447.421192 447.421192 0 246.700705 200.714348 447.415053 447.421192 447.415053s447.421192-200.714348 447.421193-447.415053c0-246.706845-200.715371-447.421192-447.421193-447.421192z m0 833.54532c-212.913181 0-386.130268-173.21811-386.130267-386.125151 0-212.913181 173.21811-386.130268 386.130267-386.130268s386.130268 173.21811 386.130268 386.130268c0 212.908064-173.21811 386.125151-386.130268 386.125151z" ></path><path d="M606.931093 640.392182c-11.621688 0-55.209416 68.771293-79.423911 68.771293-6.780427 0-9.685593-5.813403-9.685593-11.624758 0-13.558807 8.715499-33.899064 13.558807-45.520753l57.147558-156.913773c28.088732-77.487815-8.717546-98.795097-42.617633-98.795097-46.491871 0-88.142479 23.245424-120.105449 54.240345-10.654664 10.654664-45.523823 44.554752-45.523823 59.083654 0 4.844332 4.843308 10.655687 10.655688 10.655687 14.528901 0 52.302203-69.739341 82.328053-69.739341 5.814426 0 13.561877 6.780427 7.751545 21.309329L426.773943 612.304474c-5.811356 13.558807-32.93204 79.423911-32.93204 118.167306 0 30.994921 19.373233 44.554752 48.432059 44.554752 80.391958 0 174.34477-99.765191 174.34477-123.009591-0.002047-6.780427-5.814426-11.624758-9.687639-11.624759zM590.464049 249.081938c-35.836183 0-65.86408 28.088732-65.86408 63.927985 0 32.93204 21.310352 55.210439 54.242392 54.239322 36.805254 0 66.832128-27.120684 66.832128-63.927985 0-32.92897-23.24747-54.239322-55.21044-54.239322z" ></path></symbol><symbol id="icon-delete" viewBox="0 0 1024 1024"><path d="M409.6 163.84h163.84v40.96h-163.84zM532.48 368.64h40.96v368.64h-40.96zM409.6 368.64h40.96v368.64h-40.96z" ></path><path d="M286.72 245.76v614.4h409.6V245.76H286.72z m450.56 0v655.36H245.76V245.76H204.8V204.8h573.44v40.96h-40.96z" ></path></symbol><symbol id="icon-custom-task" viewBox="0 0 1024 1024"><path d="M756.63132445 483.81952l220.74709333-209.7152a112.86755555 112.86755555 0 0 0 0-159.61656889l-55.08664889-55.08664889a112.86755555 112.86755555 0 0 0-157.54126222-2.00248889L549.13706667 262.12579555 339.71313778 38.39317333l-1.71121778-1.78403555a73.76440889 73.76440889 0 0 0-104.34787555-0.43690667L76.44046222 193.38581333a73.728 73.728 0 0 0-1.27431111 102.56384L281.49532445 516.36906667 86.41649778 701.69031111A112.94037333 112.94037333 0 0 0 54.26744889 757.76L21.28099555 898.55317333a74.67463111 74.67463111 0 0 0 93.7528889 88.65564445L250.76622222 947.23185778a113.48650667 113.48650667 0 0 0 45.8752-26.43285333l192.34816-182.73621334 231.66976 247.50762667 1.71121778 1.78403555a73.76440889 73.76440889 0 0 0 104.34787555 0.43690667L983.93201778 830.57777778a73.728 73.728 0 0 0 1.27431111-102.56384L756.63132445 483.81952zM292.89130667 823.95136l-102.52743112-102.52743111a35.82634667 35.82634667 0 0 0-11.14112-7.39100444l509.2511289-483.80131556 107.26058666 107.26058666c1.60199111 1.60199111 3.60448 2.36657778 5.42492444 3.60448l-508.26808888 482.85468445z m521.99424-713.83267555a40.04977778 40.04977778 0 0 1 55.88764444 0.72817777l55.08664889 55.08664889c15.65582222 15.65582222 15.65582222 40.99640889-0.72817778 57.344l-73.32750222 69.65020444c-1.45635555-2.36657778-2.54862222-4.87879111-4.62392889-6.95409777l-105.94986666-105.94986667 73.65518222-69.90506666z m-557.16522667 274.34097777c9.10222222-0.14563555 18.20444445-3.60448 25.15854222-10.55857777l54.61333333-54.61333334a36.37248 36.37248 0 1 0-51.48216888-51.48216889l-54.61333334 54.61333333a36.0448 36.0448 0 0 0-10.15808 23.04682667L128.35953778 246.21511111c-0.58254222-0.58254222-0.58254222-1.16508445-0.40049778-1.31072L285.17262222 87.6544c0.14563555-0.14563555 0.76458667-0.14563555 1.41994667 0.47331555l209.78801778 224.13312L334.32462222 466.23402667l-76.60430222-81.77436445zM94.46286222 917.37656889a1.82044445 1.82044445 0 0 1-2.29376-2.18453334L125.15555555 774.39886222c1.12867555-4.73315555 3.34961778-9.06581333 6.04387556-13.07079111a36.19043555 36.19043555 0 0 0 7.68227556 11.54161778l100.45212444 100.45212444a39.90414222 39.90414222 0 0 1-9.10222222 4.04138667l-135.76874667 40.01336889zM775.23626667 936.3456c-0.14563555 0.14563555-0.76458667 0.14563555-1.41994667-0.47331555l-142.90488889-152.66247112a35.53507555 35.53507555 0 0 0 16.01991111-8.77454222l54.61333333-54.61333333a36.37248 36.37248 0 1 0-51.48216888-51.48216889l-54.61333334 54.61333333a36.0448 36.0448 0 0 0-8.30122666 13.54410667l-45.40188445-48.53304889 162.05596445-153.97319111 228.21091555 243.83032889c0.54613333 0.58254222 0.54613333 1.16508445 0.40049778 1.31072L775.23626667 936.3456z" ></path></symbol><symbol id="icon-join" viewBox="0 0 1024 1024"><path d="M987.136 552.96c5.46133333-5.46133333 10.92266667-13.65333333 10.92266667-24.576 0-8.192-2.73066667-16.384-10.92266667-24.576L817.83466667 329.04533333c-5.46133333-2.73066667-13.65333333-8.192-24.576-8.192-8.192 0-19.11466667 2.73066667-24.576 10.92266667l-177.49333334 174.76266667C585.728 512 580.26666667 520.192 580.26666667 531.11466667s2.73066667 19.11466667 10.92266666 24.576l177.49333334 172.032c5.46133333 5.46133333 13.65333333 10.92266667 24.576 10.92266666 8.192 0 16.384-2.73066667 24.576-10.92266666L987.136 552.96zM25.94133333 970.752c0 8.192 2.73066667 16.384 10.92266667 24.576 5.46133333 5.46133333 16.384 10.92266667 24.576 10.92266667h270.336c8.192 0 16.384-2.73066667 24.576-10.92266667 5.46133333-5.46133333 10.92266667-16.384 10.92266667-24.576v-68.26666667h152.91733333c8.192 0 16.384-2.73066667 24.576-10.92266666 5.46133333-5.46133333 10.92266667-16.384 10.92266667-24.576v-682.66666667c0-8.192-2.73066667-16.384-10.92266667-24.576-5.46133333-5.46133333-16.384-10.92266667-24.576-10.92266667H367.27466667V47.78666667c0-8.192-2.73066667-16.384-10.92266667-24.576-5.46133333-5.46133333-16.384-10.92266667-24.576-10.92266667H61.44c-8.192 0-16.384 2.73066667-24.576 10.92266667-5.46133333 5.46133333-10.92266667 16.384-10.92266667 24.576v221.184c0 8.192 2.73066667 16.384 10.92266667 24.576 5.46133333 5.46133333 16.384 10.92266667 24.576 10.92266666h270.336c8.192 0 16.384-2.73066667 24.576-10.92266666 5.46133333-5.46133333 10.92266667-16.384 10.92266667-24.576V252.58666667h68.26666666c8.192 0 16.384 2.73066667 24.576 10.92266666 5.46133333 5.46133333 10.92266667 16.384 10.92266667 24.576V785.06666667c0 8.192-2.73066667 16.384-10.92266667 24.576-5.46133333 5.46133333-16.384 10.92266667-24.576 10.92266666h-68.26666666v-68.26666666c0-8.192-2.73066667-16.384-10.92266667-24.576-5.46133333-5.46133333-16.384-10.92266667-24.576-10.92266667H61.44c-8.192 0-16.384 2.73066667-24.576 10.92266667-5.46133333 5.46133333-10.92266667 16.384-10.92266667 24.576v218.45333333z" ></path></symbol><symbol id="icon-fork" viewBox="0 0 1024 1024"><path d="M36.864 471.04c-5.46133333 5.46133333-10.92266667 13.65333333-10.92266667 24.576 0 8.192 2.73066667 16.384 10.92266667 24.576l169.30133333 174.76266667c5.46133333 2.73066667 13.65333333 8.192 24.576 8.192 8.192 0 19.11466667-2.73066667 24.576-10.92266667l177.49333334-174.76266667c5.46133333-5.46133333 10.92266667-13.65333333 10.92266666-24.576s-2.73066667-19.11466667-10.92266666-24.576l-177.49333334-172.032c-5.46133333-5.46133333-13.65333333-10.92266667-24.576-10.92266666-8.192 0-16.384 2.73066667-24.576 10.92266666L36.864 471.04zM998.05866667 53.248c0-8.192-2.73066667-16.384-10.92266667-24.576-5.46133333-5.46133333-16.384-10.92266667-24.576-10.92266667H692.224c-8.192 0-16.384 2.73066667-24.576 10.92266667-5.46133333 5.46133333-10.92266667 16.384-10.92266667 24.576v68.26666667H503.808c-8.192 0-16.384 2.73066667-24.576 10.92266666-5.46133333 5.46133333-10.92266667 16.384-10.92266667 24.576v682.66666667c0 8.192 2.73066667 16.384 10.92266667 24.576 5.46133333 5.46133333 16.384 10.92266667 24.576 10.92266667h152.91733333v101.03466666c0 8.192 2.73066667 16.384 10.92266667 24.576 5.46133333 5.46133333 16.384 10.92266667 24.576 10.92266667H962.56c8.192 0 16.384-2.73066667 24.576-10.92266667 5.46133333-5.46133333 10.92266667-16.384 10.92266667-24.576V755.02933333c0-8.192-2.73066667-16.384-10.92266667-24.576-5.46133333-5.46133333-16.384-10.92266667-24.576-10.92266666H692.224c-8.192 0-16.384 2.73066667-24.576 10.92266666-5.46133333 5.46133333-10.92266667 16.384-10.92266667 24.576v16.384h-68.26666666c-8.192 0-16.384-2.73066667-24.576-10.92266666-5.46133333-5.46133333-10.92266667-16.384-10.92266667-24.576V238.93333333c0-8.192 2.73066667-16.384 10.92266667-24.576 5.46133333-5.46133333 16.384-10.92266667 24.576-10.92266666h68.26666666v68.26666666c0 8.192 2.73066667 16.384 10.92266667 24.576 5.46133333 5.46133333 16.384 10.92266667 24.576 10.92266667H962.56c8.192 0 16.384-2.73066667 24.576-10.92266667 5.46133333-5.46133333 10.92266667-16.384 10.92266667-24.576V53.248z" ></path></symbol><symbol id="icon-copy-task" viewBox="0 0 1024 1024"><path d="M636.30222222 513.25155555c11.71911111-6.82666667 21.16266667-26.39644445 1.36533334-35.72622222-6.71288889-3.072-13.65333333-5.91644445-20.59377778-8.64711111C666.45333334 424.61866667 697.74222222 360.56177778 697.74222222 288.99555555c0-133.34755555-108.20266667-241.55022222-241.55022222-241.55022222S214.64177778 155.648 214.64177778 288.99555555c0 71.56622222 31.28888889 135.62311111 80.66844444 179.88266667-146.31822222 57.45777778-254.29333333 191.03288889-275.34222222 352.02844445-0.22755555 1.93422222-0.34133333 3.86844445-0.34133333 5.80266666 0 30.37866667 24.576 55.06844445 55.06844445 55.06844445H532.76444445c-21.04888889-38.912-33.10933333-83.51288889-33.10933333-130.84444445 0.11377778-101.48977778 55.06844445-190.00888889 136.6471111-237.68177778z m31.63022223 227.8968889l78.05155555 37.09155555 98.98666667-98.98666667z m133.91644444 133.91644444l56.88888889-171.23555556-94.09422222 94.09422222z" ></path><path d="M774.76977778 524.97066667c-124.47288889 0-225.84888889 101.26222222-225.84888889 225.84888888 0 124.47288889 101.26222222 225.84888889 225.84888889 225.8488889s225.84888889-101.26222222 225.84888889-225.8488889c0-124.47288889-101.26222222-225.84888889-225.84888889-225.84888888z m129.47911111 128l-87.15377777 262.25777778c-1.70666667 5.23377778-6.48533333 8.87466667-11.94666667 9.216h-0.91022223c-5.12 0-10.01244445-2.95822222-12.17422222-7.62311112l-54.49955555-112.64-110.93333333-52.90666666c-3.29955555-1.59288889-5.80266667-4.32355555-6.94044445-7.73688889-2.50311111-7.05422222 1.25155555-14.79111111 8.30577778-17.29422223l258.95822222-90.45333333c1.47911111-0.45511111 2.95822222-0.79644445 4.43733333-0.79644444 3.64088889 0 6.94044445 1.36533333 9.55733334 3.86844444 3.52711111 3.75466667 4.89244445 9.216 3.29955555 14.10844445z" ></path></symbol><symbol id="icon-subprocess" viewBox="0 0 1024 1024"><path d="M1023.78666667 129.49333333c-0.32-6.93333333-1.28-13.86666667-2.56-20.48s-3.2-13.12-5.54666667-19.41333333c-0.74666667-2.13333333-1.6-4.16-2.45333333-6.18666667-3.73333333-8.85333333-8.42666667-17.28-13.86666667-25.06666666-0.32-0.53333333-0.74666667-1.06666667-1.06666667-1.49333334-0.96-1.28-1.92-2.66666667-2.98666666-3.94666666-0.32-0.32-0.53333333-0.74666667-0.85333334-1.06666667-2.56-3.2-5.22666667-6.29333333-8-9.28l-0.21333333-0.21333333c-5.97333333-6.29333333-12.58666667-12.05333333-19.73333333-17.06666667-1.49333333-1.06666667-2.98666667-2.02666667-4.48-3.09333333-1.6-1.06666667-3.2-2.02666667-4.90666667-3.09333334-0.85333333-0.53333333-1.81333333-1.06666667-2.66666667-1.6-1.28-0.74666667-2.45333333-1.38666667-3.73333333-2.02666666-0.64-0.32-1.28-0.64-2.02666667-1.06666667-1.28-0.64-2.66666667-1.28-4.05333333-1.92-2.56-1.17333333-5.22666667-2.34666667-7.89333333-3.41333333-1.49333333-0.64-3.09333333-1.17333333-4.58666667-1.70666667-2.34666667-0.85333333-4.8-1.6-7.25333333-2.24-3.2-0.96-6.50666667-1.70666667-9.81333334-2.45333333-5.54666667-1.17333333-11.2-1.92-16.96-2.34666667-3.52-0.21333333-6.93333333-0.42666667-10.45333333-0.42666667s-7.04 0.10666667-10.45333333 0.42666667c-5.76 0.42666667-11.41333333 1.28-16.96 2.34666667-3.30666667 0.64-6.61333333 1.49333333-9.81333334 2.45333333-2.45333333 0.64-4.8 1.49333333-7.25333333 2.24-1.49333333 0.53333333-3.09333333 1.06666667-4.58666667 1.70666667-2.66666667 1.06666667-5.33333333 2.13333333-7.89333333 3.41333333-1.38666667 0.64-2.66666667 1.28-4.05333333 1.92-0.64 0.32-1.28 0.64-2.02666667 1.06666667-1.28 0.64-2.56 1.38666667-3.73333333 2.02666666-0.96 0.53333333-1.81333333 1.06666667-2.66666667 1.6-1.6 0.96-3.30666667 2.02666667-4.90666667 3.09333334-1.49333333 0.96-2.98666667 2.02666667-4.48 3.09333333-7.14666667 5.01333333-13.76 10.77333333-19.73333333 17.06666667l-0.21333333 0.21333333c-2.77333333 2.98666667-5.44 6.08-8 9.28-0.32 0.32-0.53333333 0.74666667-0.85333334 1.06666667-0.96 1.28-2.02666667 2.56-2.98666666 3.94666666-0.32 0.53333333-0.74666667 1.06666667-1.06666667 1.49333334-5.44 7.78666667-10.13333333 16.21333333-13.86666667 25.06666666-0.85333333 2.02666667-1.70666667 4.16-2.45333333 6.18666667-2.34666667 6.29333333-4.16 12.8-5.54666667 19.41333333s-2.24 13.54666667-2.56 20.48c-0.10666667 2.34666667-0.21333333 4.69333333-0.21333333 7.04 0 3.52 0.10666667 7.04 0.42666667 10.45333334 0.42666667 5.76 1.28 11.41333333 2.34666666 16.96 0.64 3.30666667 1.49333333 6.61333333 2.45333334 9.81333333 5.22666667 18.34666667 14.18666667 35.09333333 26.02666666 49.49333333 0.74666667 0.85333333 1.38666667 1.70666667 2.13333334 2.45333334 4.16 4.8 8.74666667 9.38666667 13.54666666 13.65333333l-105.81333333 306.98666667c-3.09333333-0.21333333-6.18666667-0.32-9.28-0.32-14.93333333 0-29.33333333 2.45333333-42.77333333 6.82666666-0.64 0.21333333-1.28 0.42666667-1.81333334 0.64-1.49333333 0.53333333-3.09333333 1.06666667-4.58666666 1.70666667-2.34666667 0.96-4.69333333 1.92-7.04 2.98666667L466.56 395.62666667c2.34666667-5.44 4.37333333-11.2 6.08-16.96 0.96-3.2 1.70666667-6.50666667 2.45333333-9.81333334 1.17333333-5.54666667 1.92-11.2 2.34666667-16.96 0.21333333-3.52 0.42666667-6.93333333 0.42666667-10.45333333 0-2.34666667-0.10666667-4.69333333-0.21333334-7.04-0.32-6.93333333-1.28-13.86666667-2.56-20.48-7.04-34.45333333-27.09333333-64.10666667-54.72-83.84-0.85333333-0.64-1.81333333-1.28-2.66666666-1.92-6.4-4.26666667-13.12-8.10666667-20.16-11.30666667-2.02666667-0.96-4.05333333-1.81333333-6.08-2.56s-4.16-1.6-6.29333334-2.34666666c-13.76-4.69333333-28.48-7.14666667-43.84-7.14666667-3.52 0-7.04 0.10666667-10.45333333 0.42666667-5.76 0.42666667-11.41333333 1.28-16.96 2.34666666-3.30666667 0.64-6.61333333 1.49333333-9.81333333 2.45333334-2.45333333 0.64-4.8 1.49333333-7.25333334 2.24-1.49333333 0.53333333-3.09333333 1.06666667-4.58666666 1.70666666-2.66666667 1.06666667-5.33333333 2.13333333-7.89333334 3.41333334-1.38666667 0.64-2.66666667 1.28-4.05333333 1.92-0.64 0.32-1.28 0.64-2.02666667 1.06666666-1.28 0.64-2.56 1.38666667-3.73333333 2.02666667-0.96 0.53333333-1.81333333 1.06666667-2.66666667 1.6-1.6 0.96-3.30666667 2.02666667-4.90666666 3.09333333-1.49333333 0.96-2.98666667 2.02666667-4.48 3.09333334-7.14666667 5.01333333-13.76 10.77333333-19.73333334 17.06666666l-0.21333333 0.21333334c-2.77333333 2.98666667-5.44 6.08-8 9.28-0.32 0.32-0.53333333 0.74666667-0.85333333 1.06666666-0.96 1.28-2.02666667 2.56-2.98666667 3.94666667-0.32 0.53333333-0.74666667 1.06666667-1.06666667 1.49333333-5.44 7.78666667-10.13333333 16.21333333-13.86666666 25.06666667-0.85333333 2.02666667-1.70666667 4.16-2.45333334 6.18666667-2.34666667 6.29333333-4.16 12.8-5.54666666 19.41333333s-2.24 13.54666667-2.56 20.48c-0.10666667 2.34666667-0.21333333 4.69333333-0.21333334 7.04 0 3.52 0.10666667 7.04 0.42666667 10.45333333 0.42666667 5.76 1.28 11.41333333 2.34666667 16.96 0.64 3.30666667 1.49333333 6.61333333 2.45333333 9.81333334 5.22666667 18.34666667 14.18666667 35.09333333 26.02666667 49.49333333 0.74666667 0.85333333 1.38666667 1.70666667 2.13333333 2.45333333 0.64 0.74666667 1.28 1.49333333 1.92 2.13333334L129.6 751.04c-12.48 0.64-24.53333333 2.88-35.84 6.61333333-0.64 0.21333333-1.28 0.42666667-1.81333333 0.64-1.49333333 0.53333333-3.09333333 1.06666667-4.58666667 1.70666667-2.66666667 1.06666667-5.33333333 2.13333333-7.89333333 3.41333333-3.30666667 1.49333333-6.61333333 3.2-9.81333334 5.01333334-0.96 0.53333333-1.81333333 1.06666667-2.66666666 1.6-1.6 0.96-3.30666667 2.02666667-4.90666667 3.09333333-1.49333333 0.96-2.98666667 2.02666667-4.48 3.09333333-1.81333333 1.28-3.52 2.56-5.22666667 3.94666667-0.85333333 0.64-1.70666667 1.38666667-2.56 2.02666667-2.56 2.13333333-5.01333333 4.26666667-7.36 6.50666666-0.74666667 0.74666667-1.6 1.49333333-2.34666666 2.24-1.49333333 1.49333333-3.09333333 3.09333333-4.48 4.69333334-1.49333333 1.6-2.88 3.30666667-4.26666667 4.90666666-2.77333333 3.41333333-5.44 6.82666667-7.89333333 10.56-4.90666667 7.25333333-9.17333333 15.04-12.58666667 23.14666667-0.85333333 2.02666667-1.70666667 4.16-2.45333333 6.18666667-0.74666667 2.13333333-1.49333333 4.16-2.13333334 6.29333333-1.28 4.26666667-2.45333333 8.64-3.41333333 13.12s-1.6 8.96-2.02666667 13.54666667c-0.42666667 4.58666667-0.74666667 9.28-0.74666666 13.97333333 0 75.41333333 61.12 136.53333333 136.53333333 136.53333333s136.53333333-61.12 136.53333333-136.53333333c0-4.69333333-0.21333333-9.38666667-0.74666666-13.97333333-0.42666667-4.58666667-1.17333333-9.06666667-2.02666667-13.54666667s-2.02666667-8.85333333-3.41333333-13.12c-0.64-2.13333333-1.38666667-4.26666667-2.13333334-6.29333333-0.74666667-2.13333333-1.6-4.16-2.45333333-6.18666667-3.41333333-8.21333333-7.68-15.89333333-12.58666667-23.14666667-2.45333333-3.62666667-5.12-7.14666667-7.89333333-10.56-1.38666667-1.70666667-2.77333333-3.30666667-4.26666667-4.90666666s-2.98666667-3.2-4.48-4.69333334c-0.74666667-0.74666667-1.6-1.49333333-2.34666666-2.24-1.38666667-1.38666667-2.88-2.66666667-4.37333334-3.94666666l106.45333334-307.2c2.77333333 0.21333333 5.65333333 0.32 8.42666666 0.32 16.53333333 0 32.32-2.88 46.93333334-8.32 1.81333333-0.64 3.52-1.38666667 5.33333333-2.13333334l162.13333333 164.8c-0.42666667 1.17333333-0.85333333 2.24-1.28 3.41333334-0.74666667 2.13333333-1.49333333 4.16-2.13333333 6.29333333-1.28 4.26666667-2.45333333 8.64-3.41333333 13.12s-1.6 8.96-2.02666667 13.54666667c-0.42666667 4.58666667-0.74666667 9.28-0.74666667 13.97333333 0 75.41333333 61.12 136.53333333 136.53333334 136.53333333s136.53333333-61.12 136.53333333-136.53333333c0-4.69333333-0.21333333-9.38666667-0.74666667-13.97333333-0.42666667-4.58666667-1.17333333-9.06666667-2.02666666-13.54666667s-2.02666667-8.85333333-3.41333334-13.12c-0.64-2.13333333-1.38666667-4.26666667-2.13333333-6.29333333-0.74666667-2.13333333-1.6-4.16-2.45333333-6.18666667-3.41333333-8.21333333-7.68-15.89333333-12.58666667-23.14666667-2.45333333-3.62666667-5.12-7.14666667-7.89333333-10.56-1.06666667-1.38666667-2.24-2.66666667-3.41333334-3.94666666l109.97333334-318.93333334c1.17333333-0.10666667 2.24-0.10666667 3.41333333-0.21333333 5.76-0.42666667 11.41333333-1.28 16.96-2.34666667 3.30666667-0.64 6.61333333-1.49333333 9.81333333-2.45333333 18.34666667-5.22666667 35.09333333-14.18666667 49.49333334-26.02666667 0.85333333-0.74666667 1.70666667-1.38666667 2.45333333-2.13333333 4.90666667-4.26666667 9.6-8.96 13.86666667-13.86666667 0.74666667-0.85333333 1.38666667-1.70666667 2.13333333-2.45333333 11.84-14.29333333 20.8-31.14666667 26.02666667-49.49333333 0.96-3.2 1.70666667-6.50666667 2.45333333-9.81333334 1.17333333-5.54666667 1.92-11.2 2.34666667-16.96 0.21333333-3.52 0.42666667-6.93333333 0.42666666-10.45333333 0.10666667-2.45333333 0-4.8-0.10666666-7.14666667z" ></path></symbol><symbol id="icon-human-decision" viewBox="0 0 1024 1024"><path d="M519.5 594.47733333c-4.1 10.399-6.1 21.398-6.1 32.197 0 23.198 8.899 46.395 26.497 64.294l29.897 29.997 1.7 1.4c17.398 16.798 39.996 24.997 62.494 24.997 22.998 0 46.396-8.7 63.794-26.397h0.2l176.883-176.983 1.6-1.5c16.698-17.598 24.797-40.196 24.797-62.794 0-23.197-8.8-46.195-26.397-63.794h0.1l0.1-0.4-29.898-29.797c-17.598-17.498-40.796-26.297-64.293-26.297-11 0-21.998 1.9-32.497 5.9L557.696 174.41733333c4.2-10.399 6.099-21.498 6.099-32.497 0-23.198-9-46.395-26.697-64.293L507.2 47.83033333C489.602 30.23333333 466.404 21.33333333 443.107 21.33333333c-23.198 0-46.696 8.9-64.294 26.497L201.93 224.81333333l-1.5 1.5c-16.398 17.698-24.797 40.296-24.797 62.494 0 23.398 8.799 46.595 26.397 64.394l29.897 29.897 1.7 1.4c17.598 16.898 40.096 25.097 62.494 25.097 10.999 0 21.898-2.2 32.497-6l18.898 18.999L31.546 738.86333333C10.55 759.86133333 0.05 787.45833333 0.05 814.95533333c0 27.798 10.499 55.495 31.497 76.393 21.198 21.098 48.795 31.597 76.392 31.597 27.698 0 55.195-10.499 76.293-31.597l315.97-316.07 19.297 19.199zM959.956 981.33933333H512c-35.197 0-63.994-28.797-63.994-63.994 0-35.196 28.797-63.993 63.994-63.993h447.956c35.197 0 63.994 28.797 63.994 63.993 0 35.197-28.797 63.994-63.994 63.994z" ></path></symbol><symbol id="icon-human-task" viewBox="0 0 1024 1024"><path d="M924.33066667 123.33511111H776.87466667v163.84h-546.13333334v-163.84H99.66933333c-19.11466667 0-32.768 19.11466667-32.768 38.22933334v813.73866666c0 21.84533333 16.384 38.22933333 35.49866667 38.22933334h816.46933333c19.11466667 0 35.49866667-16.384 35.49866667-38.22933334V161.56444445c0-21.84533333-16.384-38.22933333-35.49866667-38.22933334h5.46133334zM790.528 445.55377778L471.04 838.76977778c2.73066667 5.46133333-5.46133333 5.46133333-10.92266667 2.73066667l-232.10666666-191.14666667c-5.46133333-2.73066667-5.46133333-10.92266667-2.73066667-16.384l38.22933333-49.152c2.73066667-5.46133333 10.92266667-5.46133333 16.384-2.73066667l174.76266667 147.456 273.06666667-338.60266666c2.73066667-8.192 10.92266667-8.192 16.384-2.73066667l43.69066666 38.22933333c8.192 2.73066667 10.92266667 8.192 2.73066667 19.11466667zM643.072 74.18311111V41.41511111c0-30.03733333-27.30666667-49.152-57.344-49.152H419.15733333c-30.03733333 0-57.344 19.11466667-57.344 49.152v32.768h-65.536v163.84h412.33066667v-163.84h-65.536z m-139.264 98.304c-32.768 0-60.07466667-27.30666667-60.07466667-60.07466666s27.30666667-60.07466667 60.07466667-60.07466667 60.07466667 27.30666667 60.07466667 60.07466667c0 38.22933333-27.30666667 60.07466667-60.07466667 60.07466666z m0 0" ></path></symbol><symbol id="icon-decision" viewBox="0 0 1024 1024"><path d="M580.175027 28.57919l414.065896 414.065896a97.58526 97.58526 0 0 1 0 138.00065l-414.065896 414.065896a97.58526 97.58526 0 0 1-138.000649 0l-414.065897-414.065896a97.58526 97.58526 0 0 1 0-138.00065l414.065897-414.065896a97.58526 97.58526 0 0 1 138.000649 0z" ></path></symbol><symbol id="icon-end" viewBox="0 0 1024 1024"><path d="M512 25.6C243.2 25.6 25.6 243.2 25.6 512S243.2 998.4 512 998.4 998.4 780.8 998.4 512 780.8 25.6 512 25.6z m162.304 615.936c0 17.92-14.336 32.256-32.256 32.256H382.464c-17.92 0-32.256-14.336-32.256-32.256V381.952c0-17.92 14.336-32.256 32.256-32.256h259.584c17.92 0 32.256 14.336 32.256 32.256v259.584z m0 0" ></path></symbol><symbol id="icon-start" viewBox="0 0 1024 1024"><path d="M960.62577778 322.33244445c-24.46222222-57.91288889-59.61955555-110.02311111-104.33422223-154.73777778s-96.82488889-79.872-154.73777777-104.33422222C641.59288889 37.888 577.87733333 25.03111111 512.11377778 25.03111111c-65.64977778 0-129.47911111 12.85688889-189.44 38.22933334-57.91288889 24.46222222-110.02311111 59.61955555-154.73777778 104.33422222s-79.872 96.82488889-104.33422222 154.73777778C38.22933333 382.29333333 25.37244445 446.00888889 25.37244445 511.77244445c0 65.64977778 12.85688889 129.47911111 38.22933333 189.44 24.46222222 57.91288889 59.61955555 110.02311111 104.33422222 154.73777777s96.82488889 79.872 154.73777778 104.33422223c59.96088889 25.37244445 123.67644445 38.22933333 189.44 38.22933333 65.64977778 0 129.47911111-12.97066667 189.44-38.22933333 57.91288889-24.46222222 110.02311111-59.61955555 154.73777777-104.33422223s79.872-96.82488889 104.33422223-154.73777777c25.37244445-59.96088889 38.22933333-123.67644445 38.22933333-189.44 0-65.64977778-12.85688889-129.47911111-38.22933333-189.44z m-236.65777778 233.13066666L464.09955555 755.14311111C422.11555555 797.01333333 350.43555555 767.31733333 350.43555555 708.03911111V308.79288889c0-59.27822222 71.68-88.97422222 113.664-47.104l259.86844445 199.56622222c26.05511111 26.05511111 26.05511111 68.15288889 0 94.208z" ></path></symbol><symbol id="icon-virtual-human-task" viewBox="0 0 1496 1024"><path d="M864 1024H160C70.4 1024 0 953.6 0 864V160C0 70.4 70.4 0 160 0h704c89.6 0 160 70.4 160 160v704c0 89.6-70.4 160-160 160zM160 64c-51.2 0-96 44.8-96 96v704c0 51.2 44.8 96 96 96h704c51.2 0 96-44.8 96-96V160c0-51.2-44.8-96-96-96H160z" fill="#C9CED6" ></path></symbol><symbol id="icon-fuzhi" viewBox="0 0 1024 1024"><path d="M394.667 106.667h448a74.667 74.667 0 0 1 74.666 74.666v448A74.667 74.667 0 0 1 842.667 704h-448A74.667 74.667 0 0 1 320 629.333v-448a74.667 74.667 0 0 1 74.667-74.666z m0 64A10.667 10.667 0 0 0 384 181.333v448A10.667 10.667 0 0 0 394.667 640h448a10.667 10.667 0 0 0 10.666-10.667v-448a10.667 10.667 0 0 0-10.666-10.666h-448zM640 768a32 32 0 0 1 64 0v74.667a74.667 74.667 0 0 1-74.667 74.666h-448a74.667 74.667 0 0 1-74.666-74.666v-448A74.667 74.667 0 0 1 181.333 320H256a32 32 0 0 1 0 64h-74.667a10.667 10.667 0 0 0-10.666 10.667v448a10.667 10.667 0 0 0 10.666 10.666h448A10.667 10.667 0 0 0 640 842.667V768z" ></path></symbol></svg>';
3
+ if ((t = document.getElementsByTagName("script"))[t.length - 1].getAttribute("data-injectcss") && !c.__iconfont__svg__cssinject__) {
4
+ c.__iconfont__svg__cssinject__ = true;
5
+ try {
6
+ document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>");
7
+ } catch (t2) {
8
+ console;
9
+ }
10
+ }
11
+ !function(t2) {
12
+ if (document.addEventListener)
13
+ if (~["complete", "loaded", "interactive"].indexOf(document.readyState))
14
+ setTimeout(t2, 0);
15
+ else {
16
+ var l2 = function() {
17
+ document.removeEventListener("DOMContentLoaded", l2, false), t2();
18
+ };
19
+ document.addEventListener("DOMContentLoaded", l2, false);
20
+ }
21
+ else
22
+ document.attachEvent && (e = t2, o = c.document, a = false, i = function() {
23
+ a || (a = true, e());
24
+ }, (s = function() {
25
+ try {
26
+ o.documentElement.doScroll("left");
27
+ } catch (c2) {
28
+ return void setTimeout(s, 50);
29
+ }
30
+ i();
31
+ })(), o.onreadystatechange = function() {
32
+ "complete" == o.readyState && (o.onreadystatechange = null, i());
33
+ });
34
+ var e, o, a, i, s;
35
+ }(function() {
36
+ var c2, t2;
37
+ (c2 = document.createElement("div")).innerHTML = l, l = null, (t2 = c2.getElementsByTagName("svg")[0]) && (t2.setAttribute("aria-hidden", "true"), t2.style.position = "absolute", t2.style.width = 0, t2.style.height = 0, t2.style.overflow = "hidden", function(c3, t3) {
38
+ t3.firstChild ? function(c4, t4) {
39
+ t4.parentNode.insertBefore(c4, t4);
40
+ }(c3, t3.firstChild) : t3.appendChild(c3);
41
+ }(t2, document.body));
42
+ });
43
+ }(window);
@@ -0,0 +1,7 @@
1
+ import i from "../../../src/i18n/i18n.mjs";
2
+ function n() {
3
+ return { attr: { id: "", name: i.global.t("workflowEditor.task.newAutoTask") }, g: {}, taskNotice: {}, basicProperties: { beanName: "" }, transactorSettings: { userCondition: "", moreTransactor: false, additionalCondition: { onlyInCreatorDepartment: false, withCreatorDepartment: false, selectOneFromMultiple: false } }, events: {}, permissionSettings: { editForm: { permission: false, field: [] }, viewOpinion: { permission: false, condition: "" }, editOpinion: { permission: false, condition: "" }, requireOpinion: { permission: false, condition: "" }, viewMeetingResult: { permission: false, condition: "" }, viewVoteResult: { permission: false, condition: "" }, viewFlowHistory: { permission: false, condition: "" }, printForm: { permission: false, condition: "" }, officialText: { permission: false }, attachment: { permission: false }, deleteInstance: { userCondition: "" } } };
4
+ }
5
+ export {
6
+ n as default
7
+ };
@@ -0,0 +1,7 @@
1
+ import i from "../../../src/i18n/i18n.mjs";
2
+ function n() {
3
+ return { attr: { id: "", name: i.global.t("workflowEditor.task.newCc") }, g: {}, taskNotice: {}, basicProperties: { taskTitle: "", remark: "", taskUrl: "" }, transactorSettings: { userCondition: "", moreTransactor: false, additionalCondition: { onlyInCreatorDepartment: false, withCreatorDepartment: false, selectOneFromMultiple: false } }, events: {}, permissionSettings: { editForm: { permission: false, field: [] }, viewOpinion: { permission: false, condition: "" }, editOpinion: { permission: false, condition: "" }, requireOpinion: { permission: false, condition: "" }, viewMeetingResult: { permission: false, condition: "" }, viewVoteResult: { permission: false, condition: "" }, viewFlowHistory: { permission: false, condition: "" }, printForm: { permission: false, condition: "" }, officialText: { permission: false }, attachment: { permission: false }, deleteInstance: { userCondition: "" } } };
4
+ }
5
+ export {
6
+ n as default
7
+ };
@@ -0,0 +1,7 @@
1
+ import t from "../../../src/i18n/i18n.mjs";
2
+ function r() {
3
+ return { attr: { id: "t3", name: t.global.t("workflowEditor.task.judge") }, g: {} };
4
+ }
5
+ export {
6
+ r as default
7
+ };
@@ -0,0 +1,7 @@
1
+ import t from "../../../src/i18n/i18n.mjs";
2
+ function r() {
3
+ return { attr: { id: "", name: t.global.t("workflowEditor.task.end") }, g: {} };
4
+ }
5
+ export {
6
+ r as default
7
+ };
@@ -0,0 +1,7 @@
1
+ import r from "../../../src/i18n/i18n.mjs";
2
+ function t() {
3
+ return { attr: { id: "", name: r.global.t("workflowEditor.task.branch") }, g: {} };
4
+ }
5
+ export {
6
+ t as default
7
+ };
@@ -0,0 +1,7 @@
1
+ import t from "../../../src/i18n/i18n.mjs";
2
+ function r() {
3
+ return { attr: { name: t.global.t("workflowEditor.task.manualJudgment") }, g: {} };
4
+ }
5
+ export {
6
+ r as default
7
+ };
@@ -0,0 +1,7 @@
1
+ import n from "../../../src/i18n/i18n.mjs";
2
+ function i() {
3
+ return { attr: { id: "newHumanTask", name: n.global.t("workflowEditor.task.newTask") }, g: {}, basicProperties: { processingMode: { type: "EDIT", passRate: 0, moreTransactor: false, actions: { action: [] } }, taskCode: "", taskTitle: "", remark: "", mailNotice: false, taskUrl: "" }, transactorSettings: { userCondition: "", moreTransactor: false, additionalCondition: { onlyInCreatorDepartment: false, withCreatorDepartment: false, selectOneFromMultiple: false } }, permissionSettings: { editForm: { permission: false, field: [], subTablePermission: [{ tableName: "sub_table1", permission: false, modelName: "model", action: [{ name: "notEmpty", userCondition: "人员条件", parentCondition: "主表字段条件" }, { name: "add", userCondition: "人员条件", parentCondition: "主表字段条件" }, { name: "update", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }, { name: "delete", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }], field: [{ name: "all_fields", constraintRule: "REQUIRED/READ_ONLY", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }, { name: "xxx", constraintRule: "REQUIRED/READ_ONLY", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }] }, { tableName: "sub_table2", permission: false, modelName: "model", action: [{ name: "notEmpty", userCondition: "人员条件", parentCondition: "主表字段条件" }, { name: "add", userCondition: "人员条件", parentCondition: "主表字段条件" }, { name: "update", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }, { name: "delete", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }], field: [{ name: "all_fields", constraintRule: "REQUIRED/READ_ONLY", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }, { name: "xxx", constraintRule: "REQUIRED/READ_ONLY", userCondition: "人员条件", parentCondition: "主表字段条件", condition: "子表字段条件" }] }] }, viewOpinion: { permission: false, condition: "" }, editOpinion: { permission: false, condition: "" }, requireOpinion: { permission: false, condition: "" }, viewMeetingResult: { permission: false, condition: "" }, viewVoteResult: { permission: false, condition: "" }, viewFlowHistory: { permission: false, condition: "" }, printForm: { permission: false, condition: "" }, officialText: { permission: false }, attachment: { permission: false }, deleteInstance: { userCondition: "" } }, autoFilledFields: { field: [] }, reminder: null, events: { afterComplete: false }, variables: { variable: [] } };
4
+ }
5
+ export {
6
+ i as default
7
+ };
@@ -0,0 +1,7 @@
1
+ import r from "../../../src/i18n/i18n.mjs";
2
+ function t() {
3
+ return { attr: { id: "", name: r.global.t("workflowEditor.task.converge") }, g: {} };
4
+ }
5
+ export {
6
+ t as default
7
+ };