workflow-editor 0.0.81-up-tmp15 → 0.0.81-up-tmp16

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 (158) hide show
  1. package/es/{index.mjs → index.js} +4 -4
  2. package/es/plugins/{formValidatorUtil.mjs → formValidatorUtil.js} +16 -16
  3. package/es/plugins/{index.mjs → index.js} +1 -1
  4. package/es/src/i18n/i18n.js +7 -0
  5. package/es/style.css +119 -119
  6. package/es/workflow-editor/index.js +10 -0
  7. package/es/workflow-editor/src/json-object-templates/{auto-task.mjs → auto-task.js} +1 -1
  8. package/es/workflow-editor/src/json-object-templates/{copy-task.mjs → copy-task.js} +1 -1
  9. package/es/workflow-editor/src/json-object-templates/{decision.mjs → decision.js} +1 -1
  10. package/es/workflow-editor/src/json-object-templates/{end.mjs → end.js} +1 -1
  11. package/es/workflow-editor/src/json-object-templates/{fork.mjs → fork.js} +1 -1
  12. package/es/workflow-editor/src/json-object-templates/{human-decision.mjs → human-decision.js} +1 -1
  13. package/es/workflow-editor/src/json-object-templates/{human-task.mjs → human-task.js} +1 -1
  14. package/es/workflow-editor/src/json-object-templates/{join.mjs → join.js} +1 -1
  15. package/es/workflow-editor/src/json-object-templates/{process.mjs → process.js} +2 -2
  16. package/es/workflow-editor/src/json-object-templates/{start.mjs → start.js} +1 -1
  17. package/es/workflow-editor/src/json-object-templates/{subprocess.mjs → subprocess.js} +1 -1
  18. package/es/workflow-editor/src/main/{admin-save-dialog.vue.mjs → admin-save-dialog.vue.js} +1 -1
  19. package/es/workflow-editor/src/main/{canvas.vue.mjs → canvas.vue.js} +29 -29
  20. package/es/workflow-editor/src/main/{context-menu.vue.mjs → context-menu.vue.js} +3 -3
  21. package/es/workflow-editor/src/main/{icon-svg.vue.mjs → icon-svg.vue.js} +4 -4
  22. package/es/workflow-editor/src/main/{selection-region.vue.mjs → selection-region.vue.js} +3 -3
  23. package/es/workflow-editor/src/main/{tache-history-tooltip.vue.mjs → tache-history-tooltip.vue.js} +2 -2
  24. package/es/workflow-editor/src/main/{tache-subprocess-history-dialog.vue.mjs → tache-subprocess-history-dialog.vue.js} +2 -2
  25. package/es/workflow-editor/src/main/{toolbox.vue.mjs → toolbox.vue.js} +6 -6
  26. package/es/workflow-editor/src/main/{wf-history-canvas.vue.mjs → wf-history-canvas.vue.js} +17 -17
  27. package/es/workflow-editor/src/properties-editors/auto-task/{basic-properties.vue.mjs → basic-properties.vue.js} +7 -7
  28. package/es/workflow-editor/src/properties-editors/{auto-task.vue.mjs → auto-task.vue.js} +3 -3
  29. package/es/workflow-editor/src/properties-editors/common/{additional-condition-utils.mjs → additional-condition-utils.js} +2 -2
  30. package/es/workflow-editor/src/properties-editors/common/{additional-condition.vue.mjs → additional-condition.vue.js} +3 -3
  31. package/es/workflow-editor/src/properties-editors/common/{auto-filled-fields-utils.mjs → auto-filled-fields-utils.js} +1 -1
  32. package/es/workflow-editor/src/properties-editors/common/{auto-filled-fields.vue.mjs → auto-filled-fields.vue.js} +6 -6
  33. package/es/workflow-editor/src/properties-editors/common/{common-notice-tool.vue.mjs → common-notice-tool.vue.js} +3 -3
  34. package/es/workflow-editor/src/properties-editors/common/{common-user-condition.vue.mjs → common-user-condition.vue.js} +4 -4
  35. package/es/workflow-editor/src/properties-editors/common/{form-fields.vue.mjs → form-fields.vue.js} +2 -2
  36. package/es/workflow-editor/src/properties-editors/common/{i18n-input.vue.mjs → i18n-input.vue.js} +6 -6
  37. package/es/workflow-editor/src/properties-editors/common/{i18n-set-dialog.vue.mjs → i18n-set-dialog.vue.js} +2 -2
  38. package/es/workflow-editor/src/properties-editors/common/{notice-reminder.vue.mjs → notice-reminder.vue.js} +7 -7
  39. package/es/workflow-editor/src/properties-editors/common/{notice.vue.mjs → notice.vue.js} +4 -4
  40. package/es/workflow-editor/src/properties-editors/common/{reminder.vue.mjs → reminder.vue.js} +5 -5
  41. package/es/workflow-editor/src/properties-editors/common/{select-mail-template.vue.mjs → select-mail-template.vue.js} +1 -1
  42. package/es/workflow-editor/src/properties-editors/common/{system-role-tree-inline.vue.mjs → system-role-tree-inline.vue.js} +2 -2
  43. package/es/workflow-editor/src/properties-editors/common/{system-role-tree.vue.mjs → system-role-tree.vue.js} +3 -3
  44. package/es/workflow-editor/src/properties-editors/common/{task-title.vue.mjs → task-title.vue.js} +4 -4
  45. package/es/workflow-editor/src/properties-editors/common/{transactor-settings.vue.mjs → transactor-settings.vue.js} +4 -4
  46. package/es/workflow-editor/src/properties-editors/common/{user-selection.vue.mjs → user-selection.vue.js} +4 -4
  47. package/es/workflow-editor/src/properties-editors/common/{value-selection-dialog.vue.mjs → value-selection-dialog.vue.js} +4 -4
  48. package/es/workflow-editor/src/properties-editors/common/{variables.vue.mjs → variables.vue.js} +1 -1
  49. package/es/workflow-editor/src/properties-editors/copy-task/{basic-properties.vue.mjs → basic-properties.vue.js} +7 -7
  50. package/es/workflow-editor/src/properties-editors/copy-task/{permission-settings.vue.mjs → permission-settings.vue.js} +4 -4
  51. package/es/workflow-editor/src/properties-editors/{copy-task.vue.mjs → copy-task.vue.js} +11 -11
  52. package/es/workflow-editor/src/properties-editors/{decision.vue.mjs → decision.vue.js} +3 -3
  53. package/es/workflow-editor/src/properties-editors/{fork.vue.mjs → fork.vue.js} +2 -2
  54. package/es/workflow-editor/src/properties-editors/{human-decision.vue.mjs → human-decision.vue.js} +1 -1
  55. package/es/workflow-editor/src/properties-editors/human-task/{additional-condition-dialog.vue.mjs → additional-condition-dialog.vue.js} +2 -2
  56. package/es/workflow-editor/src/properties-editors/human-task/{basic-properties.vue.mjs → basic-properties.vue.js} +7 -7
  57. package/es/workflow-editor/src/properties-editors/human-task/{componentsConfigUtil.mjs → componentsConfigUtil.js} +1 -1
  58. package/es/workflow-editor/src/properties-editors/human-task/{custom-actions.vue.mjs → custom-actions.vue.js} +4 -4
  59. package/es/workflow-editor/src/properties-editors/human-task/{editable-child-field-setting.vue.mjs → editable-child-field-setting.vue.js} +3 -3
  60. package/es/workflow-editor/src/properties-editors/human-task/{editable-child-fields.vue.mjs → editable-child-fields.vue.js} +3 -3
  61. package/es/workflow-editor/src/properties-editors/human-task/{editable-field-selection.vue.mjs → editable-field-selection.vue.js} +3 -3
  62. package/es/workflow-editor/src/properties-editors/human-task/{editable-fields.vue.mjs → editable-fields.vue.js} +4 -4
  63. package/es/workflow-editor/src/properties-editors/human-task/{events.vue.mjs → events.vue.js} +1 -1
  64. package/es/workflow-editor/src/properties-editors/human-task/{permission-settings.vue.mjs → permission-settings.vue.js} +7 -7
  65. package/es/workflow-editor/src/properties-editors/human-task/{selection-conditions.vue.mjs → selection-conditions.vue.js} +4 -4
  66. package/es/workflow-editor/src/properties-editors/{human-task.vue.mjs → human-task.vue.js} +9 -9
  67. package/es/workflow-editor/src/properties-editors/{join.vue.mjs → join.vue.js} +1 -1
  68. package/es/workflow-editor/src/properties-editors/process/{basic-properties.vue.mjs → basic-properties.vue.js} +6 -6
  69. package/es/workflow-editor/src/properties-editors/process/{events.vue.mjs → events.vue.js} +6 -6
  70. package/es/workflow-editor/src/properties-editors/process/{notice-settings.vue.mjs → notice-settings.vue.js} +3 -3
  71. package/es/workflow-editor/src/properties-editors/process/{parameter-settings.vue.mjs → parameter-settings.vue.js} +2 -2
  72. package/es/workflow-editor/src/properties-editors/process/{permission-settings.vue.mjs → permission-settings.vue.js} +2 -2
  73. package/es/workflow-editor/src/properties-editors/process/{selectPage.vue.mjs → selectPage.vue.js} +1 -1
  74. package/es/workflow-editor/src/properties-editors/{process.vue.mjs → process.vue.js} +8 -8
  75. package/es/workflow-editor/src/properties-editors/subprocess/{basic-properties.vue.mjs → basic-properties.vue.js} +8 -8
  76. package/es/workflow-editor/src/properties-editors/subprocess/{events.vue.mjs → events.vue.js} +1 -1
  77. package/es/workflow-editor/src/properties-editors/subprocess/{field-mappings.vue.mjs → field-mappings.vue.js} +5 -5
  78. package/es/workflow-editor/src/properties-editors/subprocess/{transactor-settings.vue.mjs → transactor-settings.vue.js} +7 -7
  79. package/es/workflow-editor/src/properties-editors/{subprocess.vue.mjs → subprocess.vue.js} +5 -5
  80. package/es/workflow-editor/src/properties-editors/transition/{basic-properties.vue.mjs → basic-properties.vue.js} +3 -3
  81. package/es/workflow-editor/src/properties-editors/{transition.vue.mjs → transition.vue.js} +9 -9
  82. package/es/workflow-editor/src/properties-editors/{user-condition.mjs → user-condition.js} +1 -1
  83. package/es/workflow-editor/src/store/{workflow-editor.mjs → workflow-editor.js} +1 -1
  84. package/es/workflow-editor/src/taches/{auto-task.vue.mjs → auto-task.vue.js} +7 -7
  85. package/es/workflow-editor/src/taches/{common-methods.mjs → common-methods.js} +1 -1
  86. package/es/workflow-editor/src/taches/{copy-task.vue.mjs → copy-task.vue.js} +7 -7
  87. package/es/workflow-editor/src/taches/{custom-task.vue.mjs → custom-task.vue.js} +4 -4
  88. package/es/workflow-editor/src/taches/{decision.vue.mjs → decision.vue.js} +5 -5
  89. package/es/workflow-editor/src/taches/{end.vue.mjs → end.vue.js} +4 -4
  90. package/es/workflow-editor/src/taches/{fork.vue.mjs → fork.vue.js} +5 -5
  91. package/es/workflow-editor/src/taches/{human-decision.vue.mjs → human-decision.vue.js} +7 -7
  92. package/es/workflow-editor/src/taches/{human-task.vue.mjs → human-task.vue.js} +5 -5
  93. package/es/workflow-editor/src/taches/{join.vue.mjs → join.vue.js} +4 -4
  94. package/es/workflow-editor/src/taches/{joint.vue.mjs → joint.vue.js} +3 -3
  95. package/es/workflow-editor/src/taches/{start.vue.mjs → start.vue.js} +4 -4
  96. package/es/workflow-editor/src/taches/{subprocess.vue.mjs → subprocess.vue.js} +7 -7
  97. package/es/workflow-editor/src/taches/{tache-resizer.vue.mjs → tache-resizer.vue.js} +2 -2
  98. package/es/workflow-editor/src/transitions/{broken-line.vue.mjs → broken-line.vue.js} +3 -3
  99. package/es/workflow-editor/src/transitions/{curve-line.vue.mjs → curve-line.vue.js} +3 -3
  100. package/es/workflow-editor/src/transitions/{straight-line.vue.mjs → straight-line.vue.js} +2 -2
  101. package/es/workflow-editor/src/transitions/{transition.vue.mjs → transition.vue.js} +8 -8
  102. package/es/workflow-editor/src/transitions/{virtual-transition.vue.mjs → virtual-transition.vue.js} +3 -3
  103. package/es/workflow-editor/src/{util.mjs → util.js} +13 -13
  104. package/es/workflow-editor/src/{workflow-editor.vue.mjs → workflow-editor.vue.js} +16 -16
  105. package/es/workflow-editor/src/{workflow-history.vue.mjs → workflow-history.vue.js} +8 -8
  106. package/lib/style.css +108 -108
  107. package/package.json +1 -1
  108. package/es/src/i18n/i18n.mjs +0 -7
  109. package/es/workflow-editor/index.mjs +0 -10
  110. /package/es/_virtual/{_plugin-vue_export-helper.mjs → _plugin-vue_export-helper.js} +0 -0
  111. /package/es/src/i18n/langs/{cn.mjs → cn.js} +0 -0
  112. /package/es/src/i18n/langs/{en.mjs → en.js} +0 -0
  113. /package/es/workflow-editor/src/{api.mjs → api.js} +0 -0
  114. /package/es/workflow-editor/src/assets/{wf-editor-icons.mjs → wf-editor-icons.js} +0 -0
  115. /package/es/workflow-editor/src/json-object-templates/{transition.mjs → transition.js} +0 -0
  116. /package/es/workflow-editor/src/main/{canvas.vue2.mjs → canvas.vue2.js} +0 -0
  117. /package/es/workflow-editor/src/main/{context-menu.vue2.mjs → context-menu.vue2.js} +0 -0
  118. /package/es/workflow-editor/src/main/{icon-svg.vue2.mjs → icon-svg.vue2.js} +0 -0
  119. /package/es/workflow-editor/src/main/{selection-region.vue2.mjs → selection-region.vue2.js} +0 -0
  120. /package/es/workflow-editor/src/main/{tache-history-tooltip.vue2.mjs → tache-history-tooltip.vue2.js} +0 -0
  121. /package/es/workflow-editor/src/main/{tache-subprocess-history-dialog.vue2.mjs → tache-subprocess-history-dialog.vue2.js} +0 -0
  122. /package/es/workflow-editor/src/main/{toolbox.vue2.mjs → toolbox.vue2.js} +0 -0
  123. /package/es/workflow-editor/src/main/{wf-history-canvas.vue2.mjs → wf-history-canvas.vue2.js} +0 -0
  124. /package/es/workflow-editor/src/{process-service.mjs → process-service.js} +0 -0
  125. /package/es/workflow-editor/src/properties-editors/auto-task/{basic-properties.vue2.mjs → basic-properties.vue2.js} +0 -0
  126. /package/es/workflow-editor/src/properties-editors/{auto-task.vue2.mjs → auto-task.vue2.js} +0 -0
  127. /package/es/workflow-editor/src/properties-editors/common/{form-fields-utils.mjs → form-fields-utils.js} +0 -0
  128. /package/es/workflow-editor/src/properties-editors/common/{form-fields.vue2.mjs → form-fields.vue2.js} +0 -0
  129. /package/es/workflow-editor/src/properties-editors/common/{notice-reminder.vue2.mjs → notice-reminder.vue2.js} +0 -0
  130. /package/es/workflow-editor/src/properties-editors/common/{reminder.vue2.mjs → reminder.vue2.js} +0 -0
  131. /package/es/workflow-editor/src/properties-editors/common/{system-role-tree-inline.vue2.mjs → system-role-tree-inline.vue2.js} +0 -0
  132. /package/es/workflow-editor/src/properties-editors/common/{system-role-tree.vue2.mjs → system-role-tree.vue2.js} +0 -0
  133. /package/es/workflow-editor/src/properties-editors/common/{task-title.vue2.mjs → task-title.vue2.js} +0 -0
  134. /package/es/workflow-editor/src/properties-editors/common/{value-selection-dialog.vue2.mjs → value-selection-dialog.vue2.js} +0 -0
  135. /package/es/workflow-editor/src/properties-editors/copy-task/{basic-properties.vue2.mjs → basic-properties.vue2.js} +0 -0
  136. /package/es/workflow-editor/src/properties-editors/copy-task/{permission-settings.vue2.mjs → permission-settings.vue2.js} +0 -0
  137. /package/es/workflow-editor/src/properties-editors/{copy-task.vue2.mjs → copy-task.vue2.js} +0 -0
  138. /package/es/workflow-editor/src/properties-editors/human-task/{basic-properties.vue2.mjs → basic-properties.vue2.js} +0 -0
  139. /package/es/workflow-editor/src/properties-editors/human-task/{editable-field-selection.vue2.mjs → editable-field-selection.vue2.js} +0 -0
  140. /package/es/workflow-editor/src/properties-editors/human-task/{permission-settings.vue2.mjs → permission-settings.vue2.js} +0 -0
  141. /package/es/workflow-editor/src/properties-editors/{human-task.vue2.mjs → human-task.vue2.js} +0 -0
  142. /package/es/workflow-editor/src/properties-editors/{subprocess.vue2.mjs → subprocess.vue2.js} +0 -0
  143. /package/es/workflow-editor/src/properties-editors/{transition.vue2.mjs → transition.vue2.js} +0 -0
  144. /package/es/workflow-editor/src/store/{getters.mjs → getters.js} +0 -0
  145. /package/es/workflow-editor/src/taches/{decision.vue2.mjs → decision.vue2.js} +0 -0
  146. /package/es/workflow-editor/src/taches/{end.vue2.mjs → end.vue2.js} +0 -0
  147. /package/es/workflow-editor/src/taches/{fork.vue2.mjs → fork.vue2.js} +0 -0
  148. /package/es/workflow-editor/src/taches/{human-decision.vue2.mjs → human-decision.vue2.js} +0 -0
  149. /package/es/workflow-editor/src/taches/{join.vue2.mjs → join.vue2.js} +0 -0
  150. /package/es/workflow-editor/src/taches/{joint.vue2.mjs → joint.vue2.js} +0 -0
  151. /package/es/workflow-editor/src/taches/{start.vue2.mjs → start.vue2.js} +0 -0
  152. /package/es/workflow-editor/src/taches/{tache-resizer.vue2.mjs → tache-resizer.vue2.js} +0 -0
  153. /package/es/workflow-editor/src/transitions/{broken-line.vue2.mjs → broken-line.vue2.js} +0 -0
  154. /package/es/workflow-editor/src/transitions/{curve-line.vue2.mjs → curve-line.vue2.js} +0 -0
  155. /package/es/workflow-editor/src/transitions/{transition.vue2.mjs → transition.vue2.js} +0 -0
  156. /package/es/workflow-editor/src/transitions/{virtual-transition.vue2.mjs → virtual-transition.vue2.js} +0 -0
  157. /package/es/workflow-editor/src/{workflow-editor.vue2.mjs → workflow-editor.vue2.js} +0 -0
  158. /package/es/workflow-editor/src/{workflow-history.vue2.mjs → workflow-history.vue2.js} +0 -0
@@ -1,11 +1,11 @@
1
1
  import { openBlock as e, createElementBlock as r, createElementVNode as n } from "vue";
2
- import "./icon-svg.vue2.mjs";
3
- import i from "../../../_virtual/_plugin-vue_export-helper.mjs";
2
+ import "./icon-svg.vue2.js";
3
+ import i from "../../../_virtual/_plugin-vue_export-helper.js";
4
4
  const o = { class: "svg-icon", "aria-hidden": "true" }, t = ["xlink:href"];
5
5
  const u = i({ name: "IconSvg", props: { icon: { type: String, required: true } }, computed: { iconName() {
6
6
  return `#icon-${this.icon}`;
7
- } } }, [["render", function(i2, u2, c, s, m, p) {
8
- return e(), r("svg", o, [n("use", { "xlink:href": p.iconName }, null, 8, t)]);
7
+ } } }, [["render", function(i2, u2, c, s, p, a) {
8
+ return e(), r("svg", o, [n("use", { "xlink:href": a.iconName }, null, 8, t)]);
9
9
  }]]);
10
10
  export {
11
11
  u as default
@@ -1,8 +1,8 @@
1
1
  import { mapGetters as e, mapMutations as o } from "vuex";
2
- import { getMousePosition as t } from "../util.mjs";
2
+ import { getMousePosition as t } from "../util.js";
3
3
  import { openBlock as i, createElementBlock as n, normalizeClass as s, withModifiers as r, createCommentVNode as g } from "vue";
4
- import "./selection-region.vue2.mjs";
5
- import l from "../../../_virtual/_plugin-vue_export-helper.mjs";
4
+ import "./selection-region.vue2.js";
5
+ import l from "../../../_virtual/_plugin-vue_export-helper.js";
6
6
  const u = { name: "SelectionRegion", props: { region: { type: Object, default: null } }, computed: { ...e("wfEditor", ["selectedTaches"]) }, methods: { ...o("wfEditor", ["setDrawingRegion", "setMovingRegion", "setMouseDownPosition"]), startDrag(e2) {
7
7
  const o2 = t(e2);
8
8
  this.setMouseDownPosition(o2), this.setMovingRegion(true);
@@ -1,6 +1,6 @@
1
1
  import { openBlock as t, createElementBlock as o, createElementVNode as e } from "vue";
2
- import "./tache-history-tooltip.vue2.mjs";
3
- import r from "../../../_virtual/_plugin-vue_export-helper.mjs";
2
+ import "./tache-history-tooltip.vue2.js";
3
+ import r from "../../../_virtual/_plugin-vue_export-helper.js";
4
4
  const n = { class: "tooltip" }, i = ["innerHTML"];
5
5
  const p = r({ name: "TacheHistoryTooltip", props: { content: { type: String, default: "" } }, methods: {} }, [["render", function(r2, p2, s, a, l, c) {
6
6
  return t(), o("div", n, [e("div", { innerHTML: s.content }, null, 8, i)]);
@@ -1,6 +1,6 @@
1
1
  import { resolveComponent as o, openBlock as e, createBlock as t, withCtx as s, createElementVNode as l } from "vue";
2
- import "./tache-subprocess-history-dialog.vue2.mjs";
3
- import r from "../../../_virtual/_plugin-vue_export-helper.mjs";
2
+ import "./tache-subprocess-history-dialog.vue2.js";
3
+ import r from "../../../_virtual/_plugin-vue_export-helper.js";
4
4
  const i = ["src"];
5
5
  const n = r({ name: "TacheSubprocessHistoryDialog", props: { workflowId: { type: Number, default: null } }, data: () => ({ dialogVisible: true }) }, [["render", function(r2, n2, d, c, p, a) {
6
6
  const u = o("el-dialog");
@@ -1,15 +1,15 @@
1
1
  import { mapGetters as o, mapMutations as t } from "vuex";
2
- import e from "./icon-svg.vue.mjs";
3
- import { getComponentList as n } from "../util.mjs";
4
- import { resolveComponent as r, openBlock as s, createElementBlock as m, createElementVNode as c, toDisplayString as l, Fragment as i, renderList as p, createBlock as u, normalizeClass as a, withCtx as d, createVNode as v, createTextVNode as f } from "vue";
5
- import "./toolbox.vue2.mjs";
6
- import w from "../../../_virtual/_plugin-vue_export-helper.mjs";
2
+ import e from "./icon-svg.vue.js";
3
+ import { getComponentList as n } from "../util.js";
4
+ import { resolveComponent as r, openBlock as s, createElementBlock as c, createElementVNode as l, toDisplayString as i, Fragment as m, renderList as p, createBlock as u, normalizeClass as a, withCtx as d, createVNode as v, createTextVNode as f } from "vue";
5
+ import "./toolbox.vue2.js";
6
+ import w from "../../../_virtual/_plugin-vue_export-helper.js";
7
7
  const h = { name: "Toolbox", components: { IconSvg: e }, data: () => ({ componentList: n() }), computed: { ...o("wfEditor", ["componentToDraw"]) }, methods: { ...t("wfEditor", ["setComponentToDraw"]), select(o2) {
8
8
  this.setComponentToDraw(o2);
9
9
  } } }, g = { style: { height: "calc(100vh - 98px)", "background-color": "#FFFFFF" } };
10
10
  const x = w(h, [["render", function(o2, t2, e2, n2, w2, h2) {
11
11
  const x2 = r("icon-svg"), y = r("el-button");
12
- return s(), m("div", g, [c("h3", null, l(o2.$t("workflowEditor.main.tacheType")), 1), (s(true), m(i, null, p(w2.componentList, (o3) => (s(), u(y, { key: o3.name, type: o3.type, class: a(o3.class), round: o3.round, onMousedown: (t3) => h2.select(o3.name) }, { default: d(() => [v(x2, { icon: o3.icon }, null, 8, ["icon"]), f(" " + l(o3.label), 1)]), _: 2 }, 1032, ["type", "class", "round", "onMousedown"]))), 128))]);
12
+ return s(), c("div", g, [l("h3", null, i(o2.$t("workflowEditor.main.tacheType")), 1), (s(true), c(m, null, p(w2.componentList, (o3) => (s(), u(y, { key: o3.name, type: o3.type, class: a(o3.class), round: o3.round, onMousedown: (t3) => h2.select(o3.name) }, { default: d(() => [v(x2, { icon: o3.icon }, null, 8, ["icon"]), f(" " + i(o3.label), 1)]), _: 2 }, 1032, ["type", "class", "round", "onMousedown"]))), 128))]);
13
13
  }], ["__scopeId", "data-v-0d941719"]]);
14
14
  export {
15
15
  x as default
@@ -1,23 +1,23 @@
1
- import o from "../taches/start.vue.mjs";
2
- import e from "../taches/end.vue.mjs";
3
- import t from "../taches/human-task.vue.mjs";
4
- import s from "../taches/decision.vue.mjs";
5
- import r from "../taches/subprocess.vue.mjs";
6
- import i from "../taches/custom-task.vue.mjs";
7
- import a from "../taches/fork.vue.mjs";
8
- import n from "../taches/join.vue.mjs";
9
- import u from "../taches/human-decision.vue.mjs";
10
- import l from "../taches/copy-task.vue.mjs";
11
- import h from "../taches/auto-task.vue.mjs";
12
- import c from "../transitions/transition.vue.mjs";
13
- import m from "./tache-history-tooltip.vue.mjs";
1
+ import o from "../taches/start.vue.js";
2
+ import e from "../taches/end.vue.js";
3
+ import t from "../taches/human-task.vue.js";
4
+ import s from "../taches/decision.vue.js";
5
+ import r from "../taches/subprocess.vue.js";
6
+ import i from "../taches/custom-task.vue.js";
7
+ import a from "../taches/fork.vue.js";
8
+ import n from "../taches/join.vue.js";
9
+ import u from "../taches/human-decision.vue.js";
10
+ import l from "../taches/copy-task.vue.js";
11
+ import h from "../taches/auto-task.vue.js";
12
+ import c from "../transitions/transition.vue.js";
13
+ import m from "./tache-history-tooltip.vue.js";
14
14
  import { mapGetters as p } from "vuex";
15
- import { getMousePosition as d } from "../util.mjs";
15
+ import { getMousePosition as d } from "../util.js";
16
16
  import { getLanguageWithLocale as f, i18nOperation as y } from "agilebuilder-ui";
17
- import T from "./tache-subprocess-history-dialog.vue.mjs";
17
+ import T from "./tache-subprocess-history-dialog.vue.js";
18
18
  import { resolveComponent as v, openBlock as k, createElementBlock as g, Fragment as w, renderList as H, createBlock as b, resolveDynamicComponent as S, normalizeClass as j, normalizeStyle as C, createCommentVNode as P, createElementVNode as M } from "vue";
19
- import "./wf-history-canvas.vue2.mjs";
20
- import I from "../../../_virtual/_plugin-vue_export-helper.mjs";
19
+ import "./wf-history-canvas.vue2.js";
20
+ import I from "../../../_virtual/_plugin-vue_export-helper.js";
21
21
  const D = { name: "WfHistoryCanvas", components: { Start: o, End: e, HumanTask: t, Decision: s, Subprocess: r, CustomTask: i, Fork: a, Join: n, HumanDecision: u, CopyTask: l, Transition: c, TacheHistoryTooltip: m, TacheSubprocessHistoryDialog: T, AutoTask: h }, props: { process: { type: Object, default: null }, histories: { type: Array, default: null }, currentTasks: { type: Array, default: null }, allProcessI18n: { type: Object, default: null } }, data: function() {
22
22
  return { showHistory: false, tooltipPosition: null, tacheHistoryInfo: null, showSubprocessDialog: false, subWorkflowId: null };
23
23
  }, computed: { ...p("wfEditor", ["taches", "transitions", "processI18n"]) }, mounted: function() {
@@ -1,9 +1,9 @@
1
- import e from "../common/task-title.vue.mjs";
2
- import { validateTacheCode as l } from "../../util.mjs";
3
- import t from "../common/i18n-input.vue.mjs";
4
- import { resolveComponent as o, openBlock as a, createBlock as m, withCtx as n, createVNode as d } from "vue";
5
- import "./basic-properties.vue2.mjs";
6
- import i from "../../../../_virtual/_plugin-vue_export-helper.mjs";
1
+ import e from "../common/task-title.vue.js";
2
+ import { validateTacheCode as l } from "../../util.js";
3
+ import t from "../common/i18n-input.vue.js";
4
+ import { resolveComponent as o, openBlock as a, createBlock as n, withCtx as d, createVNode as m } from "vue";
5
+ import "./basic-properties.vue2.js";
6
+ import i from "../../../../_virtual/_plugin-vue_export-helper.js";
7
7
  const u = i({ name: "BasicProperties", components: { TaskTitle: e, i18nInput: t }, props: { model: { type: Object, default: null }, id: { type: String, default: null }, name: { type: String, default: null } }, data() {
8
8
  return { formModel: { name: this.name, id: this.id, tache: this.model } };
9
9
  }, computed: { tache() {
@@ -18,7 +18,7 @@ const u = i({ name: "BasicProperties", components: { TaskTitle: e, i18nInput: t
18
18
  this.tache.i18nKey = e2;
19
19
  } } }, [["render", function(e2, l2, t2, i2, u2, r) {
20
20
  const f = o("i18n-input"), s = o("el-form-item"), p = o("el-col"), c = o("el-input"), h = o("el-row"), b = o("el-form");
21
- return a(), m(b, { model: u2.formModel, "label-width": "110px" }, { default: n(() => [d(h, null, { default: n(() => [d(p, { span: 12 }, { default: n(() => [d(s, { label: e2.$t("workflowEditor.task.name") }, { default: n(() => [d(f, { modelValue: u2.formModel.name, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => u2.formModel.name = e3), "i18n-key": r.tache.i18nKey ? r.tache.i18nKey : "name." + u2.formModel.id, onSetI18n: r.setI18nValue }, null, 8, ["modelValue", "i18n-key", "onSetI18n"])]), _: 1 }, 8, ["label"])]), _: 1 }), d(p, { span: 12 }, { default: n(() => [d(s, { label: e2.$t("workflowEditor.task.code") }, { default: n(() => [d(c, { modelValue: u2.formModel.id, "onUpdate:modelValue": l2[1] || (l2[1] = (e3) => u2.formModel.id = e3), onBlur: r.validateId }, null, 8, ["modelValue", "onBlur"])]), _: 1 }, 8, ["label"])]), _: 1 })]), _: 1 }), d(s, { label: e2.$t("workflowEditor.task.custombeanName") }, { default: n(() => [d(c, { modelValue: r.tache.beanName, "onUpdate:modelValue": l2[2] || (l2[2] = (e3) => r.tache.beanName = e3) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"])]), _: 1 }, 8, ["model"]);
21
+ return a(), n(b, { model: u2.formModel, "label-width": "110px" }, { default: d(() => [m(h, null, { default: d(() => [m(p, { span: 12 }, { default: d(() => [m(s, { label: e2.$t("workflowEditor.task.name") }, { default: d(() => [m(f, { modelValue: u2.formModel.name, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => u2.formModel.name = e3), "i18n-key": r.tache.i18nKey ? r.tache.i18nKey : "name." + u2.formModel.id, onSetI18n: r.setI18nValue }, null, 8, ["modelValue", "i18n-key", "onSetI18n"])]), _: 1 }, 8, ["label"])]), _: 1 }), m(p, { span: 12 }, { default: d(() => [m(s, { label: e2.$t("workflowEditor.task.code") }, { default: d(() => [m(c, { modelValue: u2.formModel.id, "onUpdate:modelValue": l2[1] || (l2[1] = (e3) => u2.formModel.id = e3), onBlur: r.validateId }, null, 8, ["modelValue", "onBlur"])]), _: 1 }, 8, ["label"])]), _: 1 })]), _: 1 }), m(s, { label: e2.$t("workflowEditor.task.custombeanName") }, { default: d(() => [m(c, { modelValue: r.tache.beanName, "onUpdate:modelValue": l2[2] || (l2[2] = (e3) => r.tache.beanName = e3) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"])]), _: 1 }, 8, ["model"]);
22
22
  }], ["__scopeId", "data-v-6aef99ff"]]);
23
23
  export {
24
24
  u as default
@@ -1,7 +1,7 @@
1
- import e from "./auto-task/basic-properties.vue.mjs";
1
+ import e from "./auto-task/basic-properties.vue.js";
2
2
  import { resolveComponent as t, openBlock as o, createBlock as a, withCtx as r, createVNode as i } from "vue";
3
- import "./auto-task.vue2.mjs";
4
- import l from "../../../_virtual/_plugin-vue_export-helper.mjs";
3
+ import "./auto-task.vue2.js";
4
+ import l from "../../../_virtual/_plugin-vue_export-helper.js";
5
5
  const d = l({ name: "HumanTaskPropertiesEditor", components: { BasicProperties: e }, props: { model: { type: Object, default: null } }, data() {
6
6
  return this.model, this.model.ref.taskNotice || (this.model.ref.taskNotice = {}), { activeTab: "basicProperties", dialogVisible: true };
7
7
  }, computed: { formModel() {
@@ -1,5 +1,5 @@
1
- import { getFormFieldLabel as e, getFormField as r } from "./form-fields-utils.mjs";
2
- import { getI18n as t } from "../../util.mjs";
1
+ import { getFormFieldLabel as e, getFormField as r } from "./form-fields-utils.js";
2
+ import { getI18n as t } from "../../util.js";
3
3
  const o = [{ name: "${approvalResult}", label: t().t("workflowEditor.process.approvalResults"), orgType: "other" }, { name: "${instanceCreatorName}", label: t().t("workflowEditor.process.processInitiator"), orgType: "user" }, { name: "${instanceCreatorRole}", label: t().t("workflowEditor.process.processInitiatorRole"), orgType: "role" }, { name: "${instanceCreatorDepartment}", label: t().t("workflowEditor.process.processInitiatorDepartment"), orgType: "department", relatedFields: ["upstageDepartment"] }, { name: "${superiorDepartment}", label: t().t("workflowEditor.process.processInitiatorSuperiorDepartment"), orgType: "department", relatedFields: ["upstageDepartment"] }, { name: "${instanceCreatorUpstageDepartment}", label: t().t("workflowEditor.process.processInitiatorTopDepartment"), orgType: "department" }, { name: "${instanceCreatorWorkGroup}", label: t().t("workflowEditor.process.processInitiatorWorkingGroup"), orgType: "workgroup" }, { name: "${instanceCreatorDirectSuperiorName}", label: t().t("workflowEditor.process.sponsorsImmediateSuperior"), orgType: "user" }, { name: "${instanceCreatorDeptApprover}", label: t().t("workflowEditor.process.deptApprover"), orgType: "user" }, { name: "${instanceCreatorDirectSuperiorDeptApprover}", label: t().t("workflowEditor.process.superiorDeptApprover"), orgType: "user" }, { name: "${instanceCreatorDirectSuperiorDeptLeader}", label: t().t("workflowEditor.process.superiorDeptLeader"), orgType: "user" }, { name: "${instanceCreatorDirectSuperiorDepartment}", label: t().t("workflowEditor.process.processInitiatorsDirectSuperiorDepartment"), orgType: "department", relatedFields: ["upstageDepartment"] }, { name: "${instanceCreatorDirectSuperiorRole}", label: t().t("workflowEditor.process.directSuperiorRoleOfProcessInitiator"), orgType: "role" }, { name: "${instanceCreatorDirectSuperiorWorkGroup}", label: t().t("workflowEditor.process.ProcessInitiatorsImmediateSuperiorWorkingGroup"), orgType: "workgroup" }, { name: "${currentTransactorName}", label: t().t("workflowEditor.process.nameOfCurrentHandler"), orgType: "user", relatedFields: ["instanceCreatorName", "instanceCreatorDirectSuperiorName"] }, { name: "${currentTransactorRole}", label: t().t("workflowEditor.process.currentHandlerRole"), orgType: "role" }, { name: "${currentTransactorDepartment}", label: t().t("workflowEditor.process.currentHandlerDepartment"), orgType: "department", relatedFields: ["instanceCreatorDepartment", "superiorDepartment", "instanceCreatorUpstageDepartment", "instanceCreatorDirectSuperiorDepartment", "upstageDepartment"] }, { name: "${currentTransactorSuperiorDepartment}", label: t().t("workflowEditor.process.currentHandlerSuperiorDepartment"), orgType: "department", relatedFields: ["instanceCreatorDepartment", "superiorDepartment", "instanceCreatorUpstageDepartment", "instanceCreatorDirectSuperiorDepartment", "upstageDepartment"] }, { name: "${currentTransactorUpstageDepartment}", label: t().t("workflowEditor.process.topDepartmentOfCurrentHandler"), orgType: "department", relatedFields: ["instanceCreatorDepartment", "superiorDepartment", "instanceCreatorUpstageDepartment", "instanceCreatorDirectSuperiorDepartment"] }, { name: "${currentTransactorWorkGroup}", label: t().t("workflowEditor.process.currentHandlerWorkingGroup"), orgType: "workgroup" }, { name: "${currentTransactorDirectSuperiorName}", label: t().t("workflowEditor.process.nameOfTheImmediateSuperiorOfTheCurrentHandler"), orgType: "user", relatedFields: ["instanceCreatorName", "instanceCreatorDirectSuperiorName"] }, { name: "${currentTransactorDirectSuperiorDepartment}", label: t().t("workflowEditor.process.currentHandlerDirectSuperiorDepartment"), orgType: "department", relatedFields: ["instanceCreatorDepartment", "superiorDepartment", "instanceCreatorUpstageDepartment", "instanceCreatorDirectSuperiorDepartment", "upstageDepartment"] }, { name: "${currentTransactorDirectSuperiorRole}", label: t().t("workflowEditor.process.currentManagerDirectSuperiorRole"), orgType: "role" }, { name: "${currentTransactorDirectSuperiorWorkGroup}", label: t().t("workflowEditor.process.workingGroupDirectlyUnderTheCurrentHandler"), orgType: "workgroup" }, { name: "${upstageDepartment}", label: t().t("workflowEditor.process.topDepartments"), orgType: "department" }, { name: "${countersignatureDisagreeCount}", label: t().t("workflowEditor.process.totalNnumberOfPersonsWhoDisagreeWithTheCountersignature"), orgType: "other", dataType: "INTEGER" }, { name: "${countersignatureAgreeCount}", label: t().t("workflowEditor.process.totalNumberOfCountersignedAndAgreedPersonnel"), orgType: "other", dataType: "INTEGER" }, { name: "${countersignatureDisagreePercentage}", label: t().t("workflowEditor.process.percentageOfPersonsWhoDisagreeWithTheCountersignature"), orgType: "other", dataType: "INTEGER" }, { name: "${countersignatureAgreePercentage}", label: t().t("workflowEditor.process.percentageOfCountersignedAndAgreedPersonnel"), orgType: "other", dataType: "INTEGER" }, { name: "${abstentionPercentage}", label: t().t("workflowEditor.process.percentageOfAbstentions"), orgType: "other", dataType: "INTEGER" }, { name: "${againstPercentage}", label: t().t("workflowEditor.process.percentageOfVotesAgainst"), orgType: "other", dataType: "INTEGER" }, { name: "${favorPercentage}", label: t().t("workflowEditor.process.percentageOfAffirmativeVotes"), orgType: "other", dataType: "INTEGER" }, { name: "${abstentionCount}", label: t().t("workflowEditor.process.totalNumberOfAbstentions"), orgType: "other", dataType: "INTEGER" }, { name: "${againstCount}", label: t().t("workflowEditor.process.totalVotesAgainst"), orgType: "other", dataType: "INTEGER" }, { name: "${favorCount}", label: t().t("workflowEditor.process.totalNumberOfAffirmativeVotes"), orgType: "other", dataType: "INTEGER" }], a = { "condition.operator.or": t().t("workflowEditor.process.perhaps"), "condition.operator.and": t().t("workflowEditor.process.also") };
4
4
  function n(e2) {
5
5
  return ["NUMBER", "DOUBLE", "FLOAT", "LONG", "INTEGER", "AMOUNT"].indexOf(e2) >= 0;
@@ -1,8 +1,8 @@
1
- import { parseCondition as e, standardFields as t, getStandardFieldsByTacheType as l, getRelatedStandardFields as o, generateCondition as a, getFieldLabel as r, getOperators as i, displayCondition as n, isTransitionOtherField as u } from "./additional-condition-utils.mjs";
2
- import s from "./value-selection-dialog.vue.mjs";
1
+ import { parseCondition as e, standardFields as t, getStandardFieldsByTacheType as l, getRelatedStandardFields as o, generateCondition as a, getFieldLabel as r, getOperators as i, displayCondition as n, isTransitionOtherField as u } from "./additional-condition-utils.js";
2
+ import s from "./value-selection-dialog.vue.js";
3
3
  import { mapGetters as d } from "vuex";
4
4
  import { resolveComponent as c, openBlock as h, createElementBlock as w, createVNode as p, withCtx as f, createTextVNode as m, toDisplayString as g, Fragment as b, renderList as k, createBlock as v, createCommentVNode as y } from "vue";
5
- import V from "../../../../_virtual/_plugin-vue_export-helper.mjs";
5
+ import V from "../../../../_virtual/_plugin-vue_export-helper.js";
6
6
  const C = { name: "AdditionalCondition", components: { ValueSelectionDialog: s }, props: { modelValue: { type: String, default: null }, isTransition: { type: Boolean, default: false } }, data() {
7
7
  const l2 = [], o2 = e(l2, this.modelValue);
8
8
  return { standardFields: t, tableData: l2, count: o2, currentRow: null, currentInput: null, options: [], valueDialogTitle: null, showOrganization: true, orgType: null };
@@ -1,4 +1,4 @@
1
- import { getI18n as r } from "../../util.mjs";
1
+ import { getI18n as r } from "../../util.js";
2
2
  const e = { "${currentTime}": r().t("workflowEditor.process.handlingTimeOfThisLink"), "${currentTransactorId}": r().t("workflowEditor.process.handlerIDOfThisLink"), "${currentTransactorMainDepartmentId}": r().t("workflowEditor.process.currentHandlerPrincipalDepartmentID"), "${currentTransactorDirectSuperiorId}": r().t("workflowEditor.process.iDOfTheImmediateSuperiorOfTheCurrentHandler"), "${currentTransactorDirectSuperiorMainDepartmentId}": r().t("workflowEditor.process.iDOfTheSuperiorDepartmentDirectlyUnderTheCurrentHandler"), "${currentTransactor}": r().t("workflowEditor.process.loginNameOfTheHandlerInThisLink"), "${currentTransactorName }": r().t("workflowEditor.process.NameOfCurrentHandler"), "${currentTransactorDepartment }": r().t("workflowEditor.process.CurrentHandlerDepartment"), "${currentTransactorDepartmentId}": r().t("workflowEditor.process.CurrentHandlerDepartmentID"), "${currentTransactorMainDepartment}": r().t("workflowEditor.process.CurrentManagersPrincipalDepartment"), "${currentTransactorSuperiorDepartmentId}": r().t("workflowEditor.process.iDOfSsuperiorDepartmentOfCurrentHandler"), "${currentTransactorSuperiorDepartment}": r().t("workflowEditor.process.CurrentHandlersSuperiorDepartment"), "${currentTransactorUpstageDepartment}": r().t("workflowEditor.process.TopDepartmentOfCurrentHandler"), "${currentTransactorUpstageDepartmentId}": r().t("workflowEditor.process.TopDepartmentIDOfCurrentHandler"), "${currentTransactorRole}": r().t("workflowEditor.process.CurrentHandlerRole"), "${currentTransactorRoleId}": r().t("workflowEditor.process.CurrentHandlerRoleID"), "${currentTransactorWorkGroup}": r().t("workflowEditor.process.currentHandlerWorkingGroup"), "${currentTransactorWorkGroupId}": r().t("workflowEditor.process.CurrentHandlerWorkingGroupID"), "${currentTransactorDirectSuperior}": r().t("workflowEditor.process.LoginNameOfTheImmediateSuperiorOfTheCurrentHandler"), "${currentTransactorDirectSuperiorName}": r().t("workflowEditor.process.nameOfTheImmediateSuperiorOfTheCurrentHandler"), "${currentTransactorDirectSuperiorDepartment}": r().t("workflowEditor.process.currentHandlersDirectSuperiorDepartment"), "${currentTransactorDirectSuperiorDepartmentId}": r().t("workflowEditor.process.currentManagersIdDirectlyUnderTheSuperior"), "${currentTransactorDirectSuperiorMainDepartment}": r().t("workflowEditor.process.currentManagersDirectSuperiorDepartment"), "${currentTransactorDirectSuperiorRole}": r().t("workflowEditor.process.currentManagersDirectSuperiorRole"), "${currentTransactorDirectSuperiorRoleId}": r().t("workflowEditor.process.currentHandlersDirectSuperiorRoleID"), "${currentTransactorDirectSuperiorWorkGroup}": r().t("workflowEditor.process.currentManagersDirectSuperiorWork"), "${currentTransactorDirectSuperiorWorkGroupId}": r().t("workflowEditor.process.iDOfTheWorkingGroupDirectlyUnderTheCurrentHandler"), "${currentOperation}": r().t("workflowEditor.process.operationsPerformedInThisPhase"), "${previousTransactorId}": r().t("workflowEditor.process.handlerIDOfThePreviousLink"), "${previousTransactor}": r().t("workflowEditor.process.lastLinkHandlerLogin"), "${previousTransactorName}": r().t("workflowEditor.process.nameOfHandlerInThePreviousLink") };
3
3
  export {
4
4
  e as standardValues
@@ -1,8 +1,8 @@
1
- import { standardValues as e } from "./auto-filled-fields-utils.mjs";
2
- import l from "./form-fields.vue.mjs";
3
- import { getFormFieldLabel as t } from "./form-fields-utils.mjs";
4
- import { resolveComponent as o, openBlock as a, createElementBlock as i, createVNode as n, withCtx as r, createTextVNode as d, toDisplayString as s, Fragment as u, renderList as m, createBlock as p, createCommentVNode as h } from "vue";
5
- import f from "../../../../_virtual/_plugin-vue_export-helper.mjs";
1
+ import { standardValues as e } from "./auto-filled-fields-utils.js";
2
+ import l from "./form-fields.vue.js";
3
+ import { getFormFieldLabel as t } from "./form-fields-utils.js";
4
+ import { resolveComponent as o, openBlock as a, createElementBlock as i, createVNode as n, withCtx as r, createTextVNode as d, toDisplayString as s, Fragment as u, renderList as p, createBlock as m, createCommentVNode as h } from "vue";
5
+ import f from "../../../../_virtual/_plugin-vue_export-helper.js";
6
6
  const c = f({ name: "AutoFilledFields", components: { FormFields: l }, props: { modelValue: { type: Object, default: () => ({}) }, opinionSetting: { type: Object, default: () => ({}) } }, data() {
7
7
  const l2 = [];
8
8
  if (void 0 !== this.modelValue.field && null !== this.modelValue.field)
@@ -65,7 +65,7 @@ const c = f({ name: "AutoFilledFields", components: { FormFields: l }, props: {
65
65
  delete this.opinionAutoSetting.opinionSourceField;
66
66
  } } }, [["render", function(e2, l2, t2, f2, c2, w) {
67
67
  const b = o("el-button"), v = o("el-row"), g = o("el-table-column"), k = o("el-input"), F = o("el-option"), V = o("el-select"), C = o("el-table"), y = o("el-card"), $ = o("el-form-item"), E = o("form-fields");
68
- return a(), i("div", null, [n(y, { class: "box-card" }, { header: r(() => [d(" 表单自动填充字段设置 ")]), default: r(() => [n(v, { style: { "margin-bottom": "5px" } }, { default: r(() => [n(b, { type: "primary", size: "small", plain: "", icon: "CirclePlus", onClick: w.add }, { default: r(() => [d(s(e2.$t("workflowEditorPublicModel.add")), 1)]), _: 1 }, 8, ["onClick"]), n(b, { type: "primary", size: "small", plain: "", icon: "Delete", onClick: w.remove }, { default: r(() => [d(s(e2.$t("workflowEditorPublicModel.delete")), 1)]), _: 1 }, 8, ["onClick"])]), _: 1 }), n(C, { ref: "table", data: c2.tableData, border: "", "highlight-current-row": "", style: { width: "100%" }, onCurrentChange: w.handleCurrentChange }, { default: r(() => [n(g, { type: "index", width: "50" }), n(g, { prop: "name", label: e2.$t("workflowEditor.common.name"), width: "150" }, { default: r((t3) => [n(k, { value: w.getFieldLabel(t3.row.name), placeholder: e2.$t("workflowEditorMessage.pleaseEnterContent"), readonly: "", onClick: l2[0] || (l2[0] = (e3) => c2.showFormFields = true), onBlur: (e3) => w.checkName(t3.row.name) }, null, 8, ["value", "placeholder", "onBlur"])]), _: 1 }, 8, ["label"]), n(g, { prop: "value", label: e2.$t("workflowEditor.common.fieldValue"), width: "200" }, { default: r((l3) => [n(V, { modelValue: l3.row.value, "onUpdate:modelValue": (e3) => l3.row.value = e3, multiple: "", filterable: "", "allow-create": "", "default-first-option": "", placeholder: e2.$t("workflowEditorMessage.pleaseSelect"), onBlur: (e3) => w.checkValue(l3.row.value) }, { default: r(() => [(a(true), i(u, null, m(w.keys, (e3) => (a(), p(F, { key: e3, label: c2.standardValues[e3], value: e3 }, null, 8, ["label", "value"]))), 128))]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue", "placeholder", "onBlur"])]), _: 1 }, 8, ["label"]), n(g, { prop: "separator", label: e2.$t("workflowEditor.common.separator") }, { default: r((e3) => [n(k, { modelValue: e3.row.separator, "onUpdate:modelValue": (l3) => e3.row.separator = l3, modelModifiers: { trim: true } }, null, 8, ["modelValue", "onUpdate:modelValue"])]), _: 1 }, 8, ["label"]), n(g, { prop: "fillType", label: e2.$t("workflowEditor.common.fillInMethod") }, { default: r((l3) => [n(V, { modelValue: l3.row.fillType, "onUpdate:modelValue": (e3) => l3.row.fillType = e3 }, { default: r(() => [n(F, { label: e2.$t("workflowEditor.common.cover"), value: "cover" }, null, 8, ["label"]), n(F, { label: e2.$t("workflowEditor.common.append"), value: "append" }, null, 8, ["label"]), n(F, { label: e2.$t("workflowEditor.common.insertToFront"), value: "prepend" }, null, 8, ["label"])]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue"])]), _: 1 }, 8, ["label"]), n(g, { prop: "fillTime", label: e2.$t("workflowEditor.common.fillInTime") }, { default: r((l3) => [n(V, { modelValue: l3.row.fillTime, "onUpdate:modelValue": (e3) => l3.row.fillTime = e3 }, { default: r(() => [n(F, { label: e2.$t("workflowEditor.common.fillInBeforeHandling"), value: "before" }, null, 8, ["label"]), n(F, { label: e2.$t("workflowEditor.common.fillInAfterHandling"), value: "after" }, null, 8, ["label"])]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue"])]), _: 1 }, 8, ["label"])]), _: 1 }, 8, ["data", "onCurrentChange"])]), _: 1 }), n(y, { class: "box-card", style: { "margin-top": "10px" } }, { header: r(() => [d(" 办理意见 ")]), default: r(() => [n($, { label: "意见来源字段", "label-width": "100" }, { default: r(() => [n(k, { value: w.getFieldLabel(c2.opinionAutoSetting.opinionSourceField), placeholder: e2.$t("workflowEditorMessage.pleaseSelect"), readonly: "", clearable: true, onClick: w.selectOpinionField }, { append: r(() => [n(b, { icon: "Delete", onClick: w.clearOpinionField }, null, 8, ["onClick"])]), _: 1 }, 8, ["value", "placeholder", "onClick"])]), _: 1 })]), _: 1 }), c2.showFormFields ? (a(), p(E, { key: 0, onClose: w.setField }, null, 8, ["onClose"])) : h("", true)]);
68
+ return a(), i("div", null, [n(y, { class: "box-card" }, { header: r(() => [d(" 表单自动填充字段设置 ")]), default: r(() => [n(v, { style: { "margin-bottom": "5px" } }, { default: r(() => [n(b, { type: "primary", size: "small", plain: "", icon: "CirclePlus", onClick: w.add }, { default: r(() => [d(s(e2.$t("workflowEditorPublicModel.add")), 1)]), _: 1 }, 8, ["onClick"]), n(b, { type: "primary", size: "small", plain: "", icon: "Delete", onClick: w.remove }, { default: r(() => [d(s(e2.$t("workflowEditorPublicModel.delete")), 1)]), _: 1 }, 8, ["onClick"])]), _: 1 }), n(C, { ref: "table", data: c2.tableData, border: "", "highlight-current-row": "", style: { width: "100%" }, onCurrentChange: w.handleCurrentChange }, { default: r(() => [n(g, { type: "index", width: "50" }), n(g, { prop: "name", label: e2.$t("workflowEditor.common.name"), width: "150" }, { default: r((t3) => [n(k, { value: w.getFieldLabel(t3.row.name), placeholder: e2.$t("workflowEditorMessage.pleaseEnterContent"), readonly: "", onClick: l2[0] || (l2[0] = (e3) => c2.showFormFields = true), onBlur: (e3) => w.checkName(t3.row.name) }, null, 8, ["value", "placeholder", "onBlur"])]), _: 1 }, 8, ["label"]), n(g, { prop: "value", label: e2.$t("workflowEditor.common.fieldValue"), width: "200" }, { default: r((l3) => [n(V, { modelValue: l3.row.value, "onUpdate:modelValue": (e3) => l3.row.value = e3, multiple: "", filterable: "", "allow-create": "", "default-first-option": "", placeholder: e2.$t("workflowEditorMessage.pleaseSelect"), onBlur: (e3) => w.checkValue(l3.row.value) }, { default: r(() => [(a(true), i(u, null, p(w.keys, (e3) => (a(), m(F, { key: e3, label: c2.standardValues[e3], value: e3 }, null, 8, ["label", "value"]))), 128))]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue", "placeholder", "onBlur"])]), _: 1 }, 8, ["label"]), n(g, { prop: "separator", label: e2.$t("workflowEditor.common.separator") }, { default: r((e3) => [n(k, { modelValue: e3.row.separator, "onUpdate:modelValue": (l3) => e3.row.separator = l3, modelModifiers: { trim: true } }, null, 8, ["modelValue", "onUpdate:modelValue"])]), _: 1 }, 8, ["label"]), n(g, { prop: "fillType", label: e2.$t("workflowEditor.common.fillInMethod") }, { default: r((l3) => [n(V, { modelValue: l3.row.fillType, "onUpdate:modelValue": (e3) => l3.row.fillType = e3 }, { default: r(() => [n(F, { label: e2.$t("workflowEditor.common.cover"), value: "cover" }, null, 8, ["label"]), n(F, { label: e2.$t("workflowEditor.common.append"), value: "append" }, null, 8, ["label"]), n(F, { label: e2.$t("workflowEditor.common.insertToFront"), value: "prepend" }, null, 8, ["label"])]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue"])]), _: 1 }, 8, ["label"]), n(g, { prop: "fillTime", label: e2.$t("workflowEditor.common.fillInTime") }, { default: r((l3) => [n(V, { modelValue: l3.row.fillTime, "onUpdate:modelValue": (e3) => l3.row.fillTime = e3 }, { default: r(() => [n(F, { label: e2.$t("workflowEditor.common.fillInBeforeHandling"), value: "before" }, null, 8, ["label"]), n(F, { label: e2.$t("workflowEditor.common.fillInAfterHandling"), value: "after" }, null, 8, ["label"])]), _: 2 }, 1032, ["modelValue", "onUpdate:modelValue"])]), _: 1 }, 8, ["label"])]), _: 1 }, 8, ["data", "onCurrentChange"])]), _: 1 }), n(y, { class: "box-card", style: { "margin-top": "10px" } }, { header: r(() => [d(" 办理意见 ")]), default: r(() => [n($, { label: "意见来源字段", "label-width": "100" }, { default: r(() => [n(k, { value: w.getFieldLabel(c2.opinionAutoSetting.opinionSourceField), placeholder: e2.$t("workflowEditorMessage.pleaseSelect"), readonly: "", clearable: true, onClick: w.selectOpinionField }, { append: r(() => [n(b, { icon: "Delete", onClick: w.clearOpinionField }, null, 8, ["onClick"])]), _: 1 }, 8, ["value", "placeholder", "onClick"])]), _: 1 })]), _: 1 }), c2.showFormFields ? (a(), m(E, { key: 0, onClose: w.setField }, null, 8, ["onClose"])) : h("", true)]);
69
69
  }]]);
70
70
  export {
71
71
  c as default
@@ -1,5 +1,5 @@
1
- import { resolveComponent as l, openBlock as t, createElementBlock as e, createVNode as o, withCtx as u, createTextVNode as s, toDisplayString as i, createBlock as m, createCommentVNode as a } from "vue";
2
- import d from "../../../../_virtual/_plugin-vue_export-helper.mjs";
1
+ import { resolveComponent as l, openBlock as t, createElementBlock as e, createVNode as o, withCtx as u, createTextVNode as s, toDisplayString as i, createBlock as a, createCommentVNode as m } from "vue";
2
+ import d from "../../../../_virtual/_plugin-vue_export-helper.js";
3
3
  const r = d({ name: "CommonNoticeTool", props: { label: { type: String, default: null }, modelValue: { type: String, default: null }, customMsg: { type: String, default: null } }, data() {
4
4
  let l2 = [];
5
5
  this.modelValue && "" !== this.modelValue && null !== this.modelValue && (l2 = this.modelValue.split(","));
@@ -11,7 +11,7 @@ const r = d({ name: "CommonNoticeTool", props: { label: { type: String, default:
11
11
  this.$emit("input-msg", this.myCustomMsg);
12
12
  } } }, [["render", function(d2, r2, n, c, f, b) {
13
13
  const g = l("el-checkbox"), h = l("el-checkbox-group"), p = l("el-form-item"), M = l("el-input");
14
- return t(), e("div", null, [o(p, { label: n.label }, { default: u(() => [o(h, { modelValue: f.tools, "onUpdate:modelValue": r2[0] || (r2[0] = (l2) => f.tools = l2) }, { default: u(() => [o(g, { label: "mail" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.mail")), 1)]), _: 1 }), o(g, { label: "DINGDING" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.dingding")), 1)]), _: 1 }), o(g, { label: "QIWEI" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.qiwei")), 1)]), _: 1 }), o(g, { label: "FEISHU" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.feishu")), 1)]), _: 1 }), o(g, { label: "custom" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.custom")), 1)]), _: 1 })]), _: 1 }, 8, ["modelValue"])]), _: 1 }, 8, ["label"]), f.tools.indexOf("custom") >= 0 ? (t(), m(p, { key: 0, "label-width": "110", label: d2.$t("workflowEditor.common.customMsg") }, { default: u(() => [o(M, { modelValue: f.myCustomMsg, "onUpdate:modelValue": r2[1] || (r2[1] = (l2) => f.myCustomMsg = l2) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"])) : a("", true)]);
14
+ return t(), e("div", null, [o(p, { label: n.label }, { default: u(() => [o(h, { modelValue: f.tools, "onUpdate:modelValue": r2[0] || (r2[0] = (l2) => f.tools = l2) }, { default: u(() => [o(g, { label: "mail" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.mail")), 1)]), _: 1 }), o(g, { label: "DINGDING" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.dingding")), 1)]), _: 1 }), o(g, { label: "QIWEI" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.qiwei")), 1)]), _: 1 }), o(g, { label: "FEISHU" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.feishu")), 1)]), _: 1 }), o(g, { label: "custom" }, { default: u(() => [s(i(d2.$t("workflowEditorPublicModel.custom")), 1)]), _: 1 })]), _: 1 }, 8, ["modelValue"])]), _: 1 }, 8, ["label"]), f.tools.indexOf("custom") >= 0 ? (t(), a(p, { key: 0, "label-width": "110", label: d2.$t("workflowEditor.common.customMsg") }, { default: u(() => [o(M, { modelValue: f.myCustomMsg, "onUpdate:modelValue": r2[1] || (r2[1] = (l2) => f.myCustomMsg = l2) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"])) : m("", true)]);
15
15
  }]]);
16
16
  export {
17
17
  r as default
@@ -1,8 +1,8 @@
1
- import e from "./value-selection-dialog.vue.mjs";
2
- import { parseCondition as o, userStandardFieldsForReminder as l, userStandardFieldsForTransactor as t, departmentStandardFieldsForReminder as r, departmentStandardFieldsForTransactor as a, workgroupStandardFieldsForReminder as i, workgroupStandardFieldsForTransactor as n, generateUserCondition as s, formatStandardValue as u, displayUserCondition as d } from "../user-condition.mjs";
3
- import { getFormFieldLabel as c } from "./form-fields-utils.mjs";
1
+ import e from "./value-selection-dialog.vue.js";
2
+ import { parseCondition as o, userStandardFieldsForReminder as l, userStandardFieldsForTransactor as t, departmentStandardFieldsForReminder as r, departmentStandardFieldsForTransactor as a, workgroupStandardFieldsForReminder as i, workgroupStandardFieldsForTransactor as n, generateUserCondition as s, formatStandardValue as u, displayUserCondition as d } from "../user-condition.js";
3
+ import { getFormFieldLabel as c } from "./form-fields-utils.js";
4
4
  import { resolveComponent as w, openBlock as h, createElementBlock as p, createVNode as m, withCtx as f, createTextVNode as k, toDisplayString as g, createBlock as b, createCommentVNode as v } from "vue";
5
- import $ from "../../../../_virtual/_plugin-vue_export-helper.mjs";
5
+ import $ from "../../../../_virtual/_plugin-vue_export-helper.js";
6
6
  const C = $({ name: "CommonUserCondition", components: { ValueSelectionDialog: e }, props: { modelValue: { type: String, default: null }, usedIn: { type: String, default: "reminder" } }, data() {
7
7
  const e2 = [];
8
8
  let l2 = 0;
@@ -1,7 +1,7 @@
1
1
  import { mapGetters as e } from "vuex";
2
2
  import { resolveComponent as l, openBlock as o, createBlock as i, withCtx as t, createVNode as s, createTextVNode as d, toDisplayString as a, createElementVNode as r, createElementBlock as m, Fragment as c, renderList as n } from "vue";
3
- import "./form-fields.vue2.mjs";
4
- import u from "../../../../_virtual/_plugin-vue_export-helper.mjs";
3
+ import "./form-fields.vue2.js";
4
+ import u from "../../../../_virtual/_plugin-vue_export-helper.js";
5
5
  const h = { name: "FormFields", props: { fields: { type: Array, default: null } }, data: () => ({ selectedField: null, copyShowFields: [], showFields: [], searchFormCode: "", dialogVisible: true }), computed: { ...e("wfEditor", ["formFields"]), allFields() {
6
6
  return this.fields ? this.fields : this.formFields;
7
7
  } }, mounted() {
@@ -1,7 +1,7 @@
1
- import e from "./i18n-set-dialog.vue.mjs";
1
+ import e from "./i18n-set-dialog.vue.js";
2
2
  import { mapGetters as t } from "vuex";
3
3
  import { resolveComponent as n, openBlock as s, createElementBlock as i, createElementVNode as o, createVNode as l, withCtx as a, createBlock as u, createCommentVNode as r } from "vue";
4
- import h from "../../../../_virtual/_plugin-vue_export-helper.mjs";
4
+ import h from "../../../../_virtual/_plugin-vue_export-helper.js";
5
5
  const d = { name: "I18nInput", components: { I18nSet: e }, model: { prop: "value", event: "input" }, props: { modelValue: { type: String, default: "" }, i18nKey: { type: String, default: "" } }, data() {
6
6
  const e2 = this.modelValue;
7
7
  return { isShowI18n: false, myI18nKey: this.i18nKey, zh: e2, isNewI18n: false };
@@ -15,11 +15,11 @@ const d = { name: "I18nInput", components: { I18nSet: e }, model: { prop: "value
15
15
  this.myI18nKey ? this.isShowI18n = true : this.$message({ showClose: true, type: "warning", message: this.$t("workflowEditorMessage.pleaseInputCode") });
16
16
  }, closeI18nSet(e2) {
17
17
  e2 && this.$emit("setI18n", e2), this.isShowI18n = false;
18
- } } }, m = { style: { float: "left", "padding-right": "5px" } };
19
- const p = h(d, [["render", function(e2, t2, h2, d2, p2, I) {
18
+ } } }, p = { style: { float: "left", "padding-right": "5px" } };
19
+ const m = h(d, [["render", function(e2, t2, h2, d2, m2, I) {
20
20
  const c = n("el-input"), y = n("i18n-set");
21
- return s(), i("span", null, [o("div", m, [l(c, { modelValue: p2.zh, "onUpdate:modelValue": t2[1] || (t2[1] = (e3) => p2.zh = e3) }, { append: a(() => [o("i", { class: "fa fa-cog", onClick: t2[0] || (t2[0] = (...e3) => I.i18nSet && I.i18nSet(...e3)) })]), _: 1 }, 8, ["modelValue"])]), p2.isShowI18n ? (s(), u(y, { key: 0, value: { values: { zh_CN: p2.zh }, key: p2.myI18nKey }, onClose: I.closeI18nSet }, null, 8, ["value", "onClose"])) : r("", true)]);
21
+ return s(), i("span", null, [o("div", p, [l(c, { modelValue: m2.zh, "onUpdate:modelValue": t2[1] || (t2[1] = (e3) => m2.zh = e3) }, { append: a(() => [o("i", { class: "fa fa-cog", onClick: t2[0] || (t2[0] = (...e3) => I.i18nSet && I.i18nSet(...e3)) })]), _: 1 }, 8, ["modelValue"])]), m2.isShowI18n ? (s(), u(y, { key: 0, value: { values: { zh_CN: m2.zh }, key: m2.myI18nKey }, onClose: I.closeI18nSet }, null, 8, ["value", "onClose"])) : r("", true)]);
22
22
  }]]);
23
23
  export {
24
- p as default
24
+ m as default
25
25
  };
@@ -1,7 +1,7 @@
1
- import { getI18n as e } from "../../util.mjs";
1
+ import { getI18n as e } from "../../util.js";
2
2
  import { mapGetters as t } from "vuex";
3
3
  import { resolveComponent as l, openBlock as i, createBlock as o, withCtx as s, createElementVNode as n, createVNode as d, createTextVNode as a, toDisplayString as r, createElementBlock as u, Fragment as h, renderList as m, createCommentVNode as p } from "vue";
4
- import f from "../../../../_virtual/_plugin-vue_export-helper.mjs";
4
+ import f from "../../../../_virtual/_plugin-vue_export-helper.js";
5
5
  const c = { name: "I18nSet", props: { value: { type: Object, default: null } }, data() {
6
6
  let t2 = {};
7
7
  return this.value && (t2 = JSON.parse(JSON.stringify(this.value))), { requiredRule: { required: true, message: e().t("workflowEditor.process.cannotBeEmpty"), trigger: "blur" }, i18nModel: t2, bundleCode: null, isShow: false, i18nKey: null, languages: {}, dialogVisible: true, isNewI18n: false };
@@ -1,9 +1,9 @@
1
- import e from "./reminder.vue.mjs";
2
- import l from "./common-notice-tool.vue.mjs";
3
- import t from "./select-mail-template.vue.mjs";
4
- import { resolveComponent as o, openBlock as i, createElementBlock as a, createVNode as m, withCtx as n, createElementVNode as r, toDisplayString as s, createBlock as d, createCommentVNode as u } from "vue";
5
- import "./notice-reminder.vue2.mjs";
6
- import c from "../../../../_virtual/_plugin-vue_export-helper.mjs";
1
+ import e from "./reminder.vue.js";
2
+ import l from "./common-notice-tool.vue.js";
3
+ import t from "./select-mail-template.vue.js";
4
+ import { resolveComponent as o, openBlock as i, createElementBlock as a, createVNode as n, withCtx as m, createElementVNode as r, toDisplayString as s, createBlock as d, createCommentVNode as u } from "vue";
5
+ import "./notice-reminder.vue2.js";
6
+ import c from "../../../../_virtual/_plugin-vue_export-helper.js";
7
7
  const p = { name: "NoticeReminder", components: { Reminder: e, CommonNoticeTool: l, SelectMailTemplates: t }, props: { reminderValue: { type: [Object, String], default: null }, taskNoticeValue: { type: Object, default: null }, isProcess: { type: Boolean, default: false } }, data() {
8
8
  let e2 = null;
9
9
  null !== this.reminderValue && void 0 !== this.reminderValue && "" !== this.reminderValue && (e2 = this.reminderValue);
@@ -20,7 +20,7 @@ const p = { name: "NoticeReminder", components: { Reminder: e, CommonNoticeTool:
20
20
  } } }, f = { class: "clearfix" }, b = { class: "sub-li" }, T = { class: "sub-li" }, k = { class: "clearfix" }, w = { class: "sub-li" }, j = { class: "sub-li" }, V = { class: "sub-li" }, h = { class: "sub-li" };
21
21
  const O = c(p, [["render", function(e2, l2, t2, c2, p2, O2) {
22
22
  const g = o("Warning"), E = o("el-icon"), $ = o("el-tooltip"), v = o("common-notice-tool"), y = o("select-mail-templates"), C = o("el-form-item"), M = o("el-form"), N = o("el-card"), _ = o("reminder");
23
- return i(), a("div", null, [m(N, { class: "box-card" }, { header: n(() => [r("div", f, [r("span", null, s(e2.$t("workflowEditor.common.taskNotice")), 1), m($, null, { content: n(() => [r("ul", null, [r("li", null, s(e2.$t("workflowEditor.task.reminderTipTemplateMsg")), 1), r("li", b, s(e2.$t("workflowEditor.task.reminderTipTemplateNotice")), 1), r("li", T, s(e2.$t("workflowEditor.task.reminderTipTemplateEmail")), 1)])]), default: n(() => [m(E, null, { default: n(() => [m(g)]), _: 1 })]), _: 1 })])]), default: n(() => [m(M, { model: p2.noticeObj, "label-width": "80px" }, { default: n(() => [m(v, { modelValue: p2.noticeObj.informType, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => p2.noticeObj.informType = e3), label: e2.$t("workflowEditor.common.notificationMethod"), "custom-msg": p2.noticeObj.customMsg, onInputMsg: O2.setCustomMsg }, null, 8, ["modelValue", "label", "custom-msg", "onInputMsg"]), p2.noticeObj.informType && p2.noticeObj.informType.length > 0 ? (i(), d(C, { key: 0, "label-width": "100", label: e2.$t("workflowEditor.task.selectNoticeTemplate") }, { default: n(() => [m(y, { modelValue: p2.noticeObj.mailTemplateCode, "onUpdate:modelValue": l2[1] || (l2[1] = (e3) => p2.noticeObj.mailTemplateCode = e3), onSetValue: O2.setNoticeCommonTemplateCode }, null, 8, ["modelValue", "onSetValue"])]), _: 1 }, 8, ["label"])) : u("", true), p2.noticeObj.informType && p2.noticeObj.informType.length > 0 && p2.noticeObj.informType.indexOf("mail") >= 0 ? (i(), d(C, { key: 1, "label-width": "100", label: e2.$t("workflowEditor.task.selectMailTemplate") }, { default: n(() => [m(y, { modelValue: p2.noticeObj.mailPointTemplateCode, "onUpdate:modelValue": l2[2] || (l2[2] = (e3) => p2.noticeObj.mailPointTemplateCode = e3), onSetValue: O2.setMailTemplateCode }, null, 8, ["modelValue", "onSetValue"])]), _: 1 }, 8, ["label"])) : u("", true)]), _: 1 }, 8, ["model"])]), _: 1 }), m(N, { class: "box-card", style: { "margin-top": "10px" } }, { header: n(() => [r("div", k, [r("span", null, s(e2.$t("workflowEditor.common.reminderNotice")), 1), m($, null, { content: n(() => [r("ul", null, [r("li", null, s(e2.$t("workflowEditor.task.reminderTipTemplateMsg")), 1), r("li", w, s(e2.$t("workflowEditor.task.reminderTipTemplateNotice")), 1), r("li", j, s(e2.$t("workflowEditor.task.reminderTipTemplateEmail")), 1), r("li", null, s(e2.$t("workflowEditor.task.reminderTipRemindMsg")), 1), r("li", V, s(e2.$t("workflowEditor.task.reminderTipRemindImmediately")), 1), r("li", h, s(e2.$t("workflowEditor.task.reminderTipRemindHistory")), 1)])]), default: n(() => [m(E, null, { default: n(() => [m(g)]), _: 1 })]), _: 1 })])]), default: n(() => [m(_, { modelValue: p2.reminderObj, "onUpdate:modelValue": l2[3] || (l2[3] = (e3) => p2.reminderObj = e3), isProcess: t2.isProcess }, null, 8, ["modelValue", "isProcess"])]), _: 1 })]);
23
+ return i(), a("div", null, [n(N, { class: "box-card" }, { header: m(() => [r("div", f, [r("span", null, s(e2.$t("workflowEditor.common.taskNotice")), 1), n($, null, { content: m(() => [r("ul", null, [r("li", null, s(e2.$t("workflowEditor.task.reminderTipTemplateMsg")), 1), r("li", b, s(e2.$t("workflowEditor.task.reminderTipTemplateNotice")), 1), r("li", T, s(e2.$t("workflowEditor.task.reminderTipTemplateEmail")), 1)])]), default: m(() => [n(E, null, { default: m(() => [n(g)]), _: 1 })]), _: 1 })])]), default: m(() => [n(M, { model: p2.noticeObj, "label-width": "80px" }, { default: m(() => [n(v, { modelValue: p2.noticeObj.informType, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => p2.noticeObj.informType = e3), label: e2.$t("workflowEditor.common.notificationMethod"), "custom-msg": p2.noticeObj.customMsg, onInputMsg: O2.setCustomMsg }, null, 8, ["modelValue", "label", "custom-msg", "onInputMsg"]), p2.noticeObj.informType && p2.noticeObj.informType.length > 0 ? (i(), d(C, { key: 0, "label-width": "100", label: e2.$t("workflowEditor.task.selectNoticeTemplate") }, { default: m(() => [n(y, { modelValue: p2.noticeObj.mailTemplateCode, "onUpdate:modelValue": l2[1] || (l2[1] = (e3) => p2.noticeObj.mailTemplateCode = e3), onSetValue: O2.setNoticeCommonTemplateCode }, null, 8, ["modelValue", "onSetValue"])]), _: 1 }, 8, ["label"])) : u("", true), p2.noticeObj.informType && p2.noticeObj.informType.length > 0 && p2.noticeObj.informType.indexOf("mail") >= 0 ? (i(), d(C, { key: 1, "label-width": "100", label: e2.$t("workflowEditor.task.selectMailTemplate") }, { default: m(() => [n(y, { modelValue: p2.noticeObj.mailPointTemplateCode, "onUpdate:modelValue": l2[2] || (l2[2] = (e3) => p2.noticeObj.mailPointTemplateCode = e3), onSetValue: O2.setMailTemplateCode }, null, 8, ["modelValue", "onSetValue"])]), _: 1 }, 8, ["label"])) : u("", true)]), _: 1 }, 8, ["model"])]), _: 1 }), n(N, { class: "box-card", style: { "margin-top": "10px" } }, { header: m(() => [r("div", k, [r("span", null, s(e2.$t("workflowEditor.common.reminderNotice")), 1), n($, null, { content: m(() => [r("ul", null, [r("li", null, s(e2.$t("workflowEditor.task.reminderTipTemplateMsg")), 1), r("li", w, s(e2.$t("workflowEditor.task.reminderTipTemplateNotice")), 1), r("li", j, s(e2.$t("workflowEditor.task.reminderTipTemplateEmail")), 1), r("li", null, s(e2.$t("workflowEditor.task.reminderTipRemindMsg")), 1), r("li", V, s(e2.$t("workflowEditor.task.reminderTipRemindImmediately")), 1), r("li", h, s(e2.$t("workflowEditor.task.reminderTipRemindHistory")), 1)])]), default: m(() => [n(E, null, { default: m(() => [n(g)]), _: 1 })]), _: 1 })])]), default: m(() => [n(_, { modelValue: p2.reminderObj, "onUpdate:modelValue": l2[3] || (l2[3] = (e3) => p2.reminderObj = e3), isProcess: t2.isProcess }, null, 8, ["modelValue", "isProcess"])]), _: 1 })]);
24
24
  }], ["__scopeId", "data-v-39fac73c"]]);
25
25
  export {
26
26
  O as default
@@ -1,8 +1,8 @@
1
- import e from "./user-selection.vue.mjs";
2
- import l from "./common-notice-tool.vue.mjs";
3
- import o from "./select-mail-template.vue.mjs";
1
+ import e from "./user-selection.vue.js";
2
+ import l from "./common-notice-tool.vue.js";
3
+ import o from "./select-mail-template.vue.js";
4
4
  import { resolveComponent as t, openBlock as m, createBlock as a, withCtx as d, createVNode as i, createElementBlock as n, createCommentVNode as u } from "vue";
5
- import s from "../../../../_virtual/_plugin-vue_export-helper.mjs";
5
+ import s from "../../../../_virtual/_plugin-vue_export-helper.js";
6
6
  const r = { key: 0 };
7
7
  const p = s({ name: "Notice", components: { UserSelection: e, CommonNoticeTool: l, SelectMailTemplates: o }, props: { modelValue: { type: [Object, String], default: null }, switchLabel: { type: String, default: "" } }, data() {
8
8
  let e2 = false, l2 = { informType: "", userCondition: "", subject: null, content: null };
@@ -1,9 +1,9 @@
1
- import e from "./common-notice-tool.vue.mjs";
2
- import l from "./common-user-condition.vue.mjs";
3
- import o from "./select-mail-template.vue.mjs";
1
+ import e from "./common-notice-tool.vue.js";
2
+ import l from "./common-user-condition.vue.js";
3
+ import o from "./select-mail-template.vue.js";
4
4
  import { resolveComponent as t, openBlock as d, createBlock as i, withCtx as a, createVNode as m, createElementBlock as n, createCommentVNode as s, createElementVNode as u, toDisplayString as r, createTextVNode as p } from "vue";
5
- import "./reminder.vue2.mjs";
6
- import c from "../../../../_virtual/_plugin-vue_export-helper.mjs";
5
+ import "./reminder.vue2.js";
6
+ import c from "../../../../_virtual/_plugin-vue_export-helper.js";
7
7
  const h = { name: "Reminder", components: { CommonNoticeTool: e, CommonUserCondition: l, SelectMailTemplates: o }, props: { modelValue: { type: [Object, String], default: null }, isProcess: { type: Boolean, default: false } }, data() {
8
8
  let e2 = false, l2 = false, o2 = { dueDate: 1, dueTimeUnit: "day", repeat: 1, containTransferUser: false, containNoticeUser: false, remindType: "mail", timeUnit: "day", remindTimes: 0, noticeType: "", noticeUserCondition: "", transferUserCondition: "" };
9
9
  return null !== this.modelValue && void 0 !== this.modelValue && "" !== this.modelValue && (o2 = this.modelValue, e2 = true, this.modelValue.remindTimes > 0 && (l2 = true), o2.dueTimeUnit || (o2.dueTimeUnit = "day")), { showReminder: e2, showNotice: l2, model: o2, showMailTemplateFlag: false, baseURL: "", optionUrl: "", multiSelectData: [], options: { showColumns: "code,name" } };
@@ -1,5 +1,5 @@
1
1
  import { resolveComponent as e, openBlock as l, createElementBlock as t, createVNode as a, withCtx as o, createElementVNode as i, createTextVNode as s, toDisplayString as r } from "vue";
2
- import p from "../../../../_virtual/_plugin-vue_export-helper.mjs";
2
+ import p from "../../../../_virtual/_plugin-vue_export-helper.js";
3
3
  const n = { style: { width: "100%" } };
4
4
  const d = p({ name: "SelectMailTemplates", model: { prop: "value", event: "input" }, props: { modelValue: { type: [String, Number], default: "" } }, data() {
5
5
  return { baseURL: "", optionUrl: "", multiSelectData: [], showMailTemplateFlag: false, code: this.modelValue, options: { showColumns: "code,name" }, dialogVisible: true };
@@ -1,6 +1,6 @@
1
1
  import { resolveComponent as e, openBlock as t, createElementBlock as s, createVNode as d, withKeys as o, withCtx as l, unref as n } from "vue";
2
- import { Search as r } from "../../../../node_modules/@element-plus/icons-vue/dist/index.mjs";
3
- import "./system-role-tree-inline.vue2.mjs";
2
+ import { Search as r } from "../../../../node_modules/@element-plus/icons-vue/dist/index.js";
3
+ import "./system-role-tree-inline.vue2.js";
4
4
  const i = { name: "InlineSystemRoleTree", props: { multiple: { type: Boolean, default: false } }, data: () => ({ systemRoleTrees: null, filterText: "", defaultProps: { id: "id", label: "label", children: "children", isLeaf: "leaf" }, containBranch: false, tenantInfo: null, tenantNodeId: -1, allSearchNodeIds: [], allExpandNodeIds: [], isClickNode: false, searchValue: null, selectNodeInfo: null }), computed: {}, watch: { filterText(e2) {
5
5
  e2 || (this.searchValue = e2, this.loadRole(this.tenantNodeId, this.tenantNodeId + ""));
6
6
  } }, created() {
@@ -1,7 +1,7 @@
1
- import e from "./system-role-tree-inline.vue.mjs";
1
+ import e from "./system-role-tree-inline.vue.js";
2
2
  import { resolveComponent as l, openBlock as t, createBlock as o, createSlots as s, withCtx as i, createVNode as r, createTextVNode as m, toDisplayString as n } from "vue";
3
- import "./system-role-tree.vue2.mjs";
4
- import u from "../../../../_virtual/_plugin-vue_export-helper.mjs";
3
+ import "./system-role-tree.vue2.js";
4
+ import u from "../../../../_virtual/_plugin-vue_export-helper.js";
5
5
  const a = u({ name: "SystemRoleTree", components: { InlineSystemRoleTree: e }, props: { multiple: { type: Boolean, default: false } }, data: () => ({ dialogVisible: true }), computed: {}, watch: {}, created() {
6
6
  }, methods: { roleResult(e2) {
7
7
  e2 ? this.$emit("close", e2) : this.$emit("close");
@@ -1,8 +1,8 @@
1
- import e from "./form-fields.vue.mjs";
2
- import { getFormFieldLabel as i } from "./form-fields-utils.mjs";
1
+ import e from "./form-fields.vue.js";
2
+ import { getFormFieldLabel as i } from "./form-fields-utils.js";
3
3
  import { resolveComponent as t, openBlock as s, createElementBlock as l, Fragment as n, renderList as o, createBlock as a, withCtx as d, createTextVNode as u, toDisplayString as r, withKeys as m, createCommentVNode as h, createVNode as p } from "vue";
4
- import "./task-title.vue2.mjs";
5
- import f from "../../../../_virtual/_plugin-vue_export-helper.mjs";
4
+ import "./task-title.vue2.js";
5
+ import f from "../../../../_virtual/_plugin-vue_export-helper.js";
6
6
  const c = f({ name: "TaskTitle", components: { FormFields: e }, props: { modelValue: { type: String, default: null } }, data() {
7
7
  const e2 = [];
8
8
  if (this.modelValue) {
@@ -1,8 +1,8 @@
1
- import e from "./common-user-condition.vue.mjs";
2
- import o from "./form-fields.vue.mjs";
3
- import { getFormFieldLabel as t } from "./form-fields-utils.mjs";
1
+ import e from "./common-user-condition.vue.js";
2
+ import o from "./form-fields.vue.js";
3
+ import { getFormFieldLabel as t } from "./form-fields-utils.js";
4
4
  import { resolveComponent as l, openBlock as i, createBlock as d, withCtx as r, createVNode as n, createTextVNode as a, toDisplayString as s, createCommentVNode as m, createElementBlock as u, withDirectives as c, vShow as f } from "vue";
5
- import p from "../../../../_virtual/_plugin-vue_export-helper.mjs";
5
+ import p from "../../../../_virtual/_plugin-vue_export-helper.js";
6
6
  const h = { name: "TransactorSettings", components: { CommonUserCondition: e, FormFields: o }, props: { model: { type: Object, default: null }, usedIn: { type: String, default: "HumanTask" }, isSubprocess: { type: Boolean, default: false }, basicProperties: { type: Object, default: null } }, data() {
7
7
  const e2 = { selectedField: "" };
8
8
  return this.initFormModel(e2), { showFormFields: false, formModel: e2, isCountersign: false };
@@ -1,8 +1,8 @@
1
- import e from "./form-fields.vue.mjs";
2
- import t from "./system-role-tree.vue.mjs";
3
- import { getFormFieldLabel as s } from "./form-fields-utils.mjs";
1
+ import e from "./form-fields.vue.js";
2
+ import t from "./system-role-tree.vue.js";
3
+ import { getFormFieldLabel as s } from "./form-fields-utils.js";
4
4
  import { resolveComponent as o, openBlock as l, createBlock as r, withCtx as i, createVNode as n, createTextVNode as a, toDisplayString as c, createElementBlock as d, createElementVNode as h, createCommentVNode as p } from "vue";
5
- import u from "../../../../_virtual/_plugin-vue_export-helper.mjs";
5
+ import u from "../../../../_virtual/_plugin-vue_export-helper.js";
6
6
  const m = { name: "UserSelection", components: { SystemRoleTree: t, FormFields: e }, props: { label: { type: String, default: "" }, labelWidth: { type: String, default: null }, modelValue: { type: String, default: "" }, currentTransactor: { type: Boolean, default: false } }, data() {
7
7
  let e2 = false, t2 = "";
8
8
  const s2 = this.modelValue.split("; "), o2 = s2[0].split(" condition.operator.or ");
@@ -1,9 +1,9 @@
1
- import e from "./system-role-tree-inline.vue.mjs";
1
+ import e from "./system-role-tree-inline.vue.js";
2
2
  import { mapGetters as t } from "vuex";
3
- import { getI18n as l } from "../../util.mjs";
3
+ import { getI18n as l } from "../../util.js";
4
4
  import { resolveComponent as a, openBlock as o, createBlock as r, withCtx as i, createVNode as s, createTextVNode as n, toDisplayString as d, createElementBlock as u, Fragment as m, renderList as p, createCommentVNode as c } from "vue";
5
- import "./value-selection-dialog.vue2.mjs";
6
- import f from "../../../../_virtual/_plugin-vue_export-helper.mjs";
5
+ import "./value-selection-dialog.vue2.js";
6
+ import f from "../../../../_virtual/_plugin-vue_export-helper.js";
7
7
  const g = f({ name: "ValueSelectionDialog", components: { InlineSystemRoleTree: e }, props: { standardFields: { type: [Object, Array], default: null }, title: { type: String, default: "" }, showOrganization: { type: Boolean, default: true }, showFormFields: { type: Boolean, default: true }, orgType: { type: String, default: "" } }, data() {
8
8
  let e2 = this.title, t2 = "organization";
9
9
  return this.showOrganization || (t2 = "standardFields"), this.title && "" !== this.title || (e2 = l().t("workflowEditorMessage.pleaseSelectAValue")), { selectedValue: "", activeTab: t2, titleName: e2, dialogVisible: true, activeNames: ["baseField"] };
@@ -1,5 +1,5 @@
1
1
  import { resolveComponent as e, openBlock as l, createElementBlock as a, createVNode as t, withCtx as r, createTextVNode as o, toDisplayString as i } from "vue";
2
- import n from "../../../../_virtual/_plugin-vue_export-helper.mjs";
2
+ import n from "../../../../_virtual/_plugin-vue_export-helper.js";
3
3
  const s = n({ name: "Variables", props: { modelValue: { type: Object, default: null } }, data() {
4
4
  let e2 = [];
5
5
  return this.modelValue && (Array.isArray(this.modelValue.variable) ? e2 = this.modelValue.variable : this.modelValue.variable && e2.push(this.modelValue.variable)), { variables: e2, currentRow: null };
@@ -1,9 +1,9 @@
1
- import e from "../common/task-title.vue.mjs";
2
- import { validateTacheCode as l } from "../../util.mjs";
3
- import t from "../common/i18n-input.vue.mjs";
4
- import { resolveComponent as a, openBlock as o, createBlock as d, withCtx as m, createVNode as i } from "vue";
5
- import "./basic-properties.vue2.mjs";
6
- import n from "../../../../_virtual/_plugin-vue_export-helper.mjs";
1
+ import e from "../common/task-title.vue.js";
2
+ import { validateTacheCode as l } from "../../util.js";
3
+ import t from "../common/i18n-input.vue.js";
4
+ import { resolveComponent as a, openBlock as o, createBlock as d, withCtx as i, createVNode as m } from "vue";
5
+ import "./basic-properties.vue2.js";
6
+ import n from "../../../../_virtual/_plugin-vue_export-helper.js";
7
7
  const u = n({ name: "BasicProperties", components: { TaskTitle: e, i18nInput: t }, props: { model: { type: Object, default: null }, id: { type: String, default: null }, name: { type: String, default: null } }, data() {
8
8
  return { formModel: { name: this.name, id: this.id, tache: this.model } };
9
9
  }, computed: { tache() {
@@ -18,7 +18,7 @@ const u = n({ name: "BasicProperties", components: { TaskTitle: e, i18nInput: t
18
18
  this.tache.i18nKey = e2;
19
19
  } } }, [["render", function(e2, l2, t2, n2, u2, r) {
20
20
  const s = a("i18n-input"), f = a("el-form-item"), p = a("el-col"), c = a("el-input"), h = a("el-row"), k = a("task-title"), V = a("el-switch"), b = a("el-form");
21
- return o(), d(b, { model: u2.formModel, "label-width": "110px" }, { default: m(() => [i(h, null, { default: m(() => [i(p, { span: 12 }, { default: m(() => [i(f, { label: e2.$t("workflowEditor.task.name") }, { default: m(() => [i(s, { modelValue: u2.formModel.name, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => u2.formModel.name = e3), "i18n-key": r.tache.i18nKey ? r.tache.i18nKey : "name." + u2.formModel.id, onSetI18n: r.setI18nValue }, null, 8, ["modelValue", "i18n-key", "onSetI18n"])]), _: 1 }, 8, ["label"])]), _: 1 }), i(p, { span: 12 }, { default: m(() => [i(f, { label: e2.$t("workflowEditor.task.code") }, { default: m(() => [i(c, { modelValue: u2.formModel.id, "onUpdate:modelValue": l2[1] || (l2[1] = (e3) => u2.formModel.id = e3), onBlur: r.validateId }, null, 8, ["modelValue", "onBlur"])]), _: 1 }, 8, ["label"])]), _: 1 })]), _: 1 }), i(f, { label: e2.$t("workflowEditor.task.taskTitle") }, { default: m(() => [i(k, { modelValue: r.tache.taskTitle, "onUpdate:modelValue": l2[2] || (l2[2] = (e3) => r.tache.taskTitle = e3) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"]), i(f, { label: e2.$t("workflowEditor.task.emailNotification") }, { default: m(() => [i(V, { modelValue: r.tache.mailNotice, "onUpdate:modelValue": l2[3] || (l2[3] = (e3) => r.tache.mailNotice = e3) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"]), i(f, { label: e2.$t("workflowEditor.task.handlingPage") }, { default: m(() => [i(c, { modelValue: r.tache.taskUrl, "onUpdate:modelValue": l2[4] || (l2[4] = (e3) => r.tache.taskUrl = e3) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"]), i(f, { label: e2.$t("workflowEditor.task.remarks") }, { default: m(() => [i(c, { modelValue: r.tache.remark, "onUpdate:modelValue": l2[5] || (l2[5] = (e3) => r.tache.remark = e3), type: "textarea", autosize: "" }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"])]), _: 1 }, 8, ["model"]);
21
+ return o(), d(b, { model: u2.formModel, "label-width": "110px" }, { default: i(() => [m(h, null, { default: i(() => [m(p, { span: 12 }, { default: i(() => [m(f, { label: e2.$t("workflowEditor.task.name") }, { default: i(() => [m(s, { modelValue: u2.formModel.name, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => u2.formModel.name = e3), "i18n-key": r.tache.i18nKey ? r.tache.i18nKey : "name." + u2.formModel.id, onSetI18n: r.setI18nValue }, null, 8, ["modelValue", "i18n-key", "onSetI18n"])]), _: 1 }, 8, ["label"])]), _: 1 }), m(p, { span: 12 }, { default: i(() => [m(f, { label: e2.$t("workflowEditor.task.code") }, { default: i(() => [m(c, { modelValue: u2.formModel.id, "onUpdate:modelValue": l2[1] || (l2[1] = (e3) => u2.formModel.id = e3), onBlur: r.validateId }, null, 8, ["modelValue", "onBlur"])]), _: 1 }, 8, ["label"])]), _: 1 })]), _: 1 }), m(f, { label: e2.$t("workflowEditor.task.taskTitle") }, { default: i(() => [m(k, { modelValue: r.tache.taskTitle, "onUpdate:modelValue": l2[2] || (l2[2] = (e3) => r.tache.taskTitle = e3) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"]), m(f, { label: e2.$t("workflowEditor.task.emailNotification") }, { default: i(() => [m(V, { modelValue: r.tache.mailNotice, "onUpdate:modelValue": l2[3] || (l2[3] = (e3) => r.tache.mailNotice = e3) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"]), m(f, { label: e2.$t("workflowEditor.task.handlingPage") }, { default: i(() => [m(c, { modelValue: r.tache.taskUrl, "onUpdate:modelValue": l2[4] || (l2[4] = (e3) => r.tache.taskUrl = e3) }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"]), m(f, { label: e2.$t("workflowEditor.task.remarks") }, { default: i(() => [m(c, { modelValue: r.tache.remark, "onUpdate:modelValue": l2[5] || (l2[5] = (e3) => r.tache.remark = e3), type: "textarea", autosize: "" }, null, 8, ["modelValue"])]), _: 1 }, 8, ["label"])]), _: 1 }, 8, ["model"]);
22
22
  }], ["__scopeId", "data-v-c1c7385b"]]);
23
23
  export {
24
24
  u as default