workflow-editor 0.0.81-up-tmp12 → 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.
- package/es/{index.mjs → index.js} +4 -4
- package/es/plugins/{formValidatorUtil.mjs → formValidatorUtil.js} +16 -16
- package/es/plugins/{index.mjs → index.js} +1 -1
- package/es/src/i18n/i18n.js +7 -0
- package/es/style.css +152 -152
- package/es/workflow-editor/index.js +10 -0
- package/es/workflow-editor/src/json-object-templates/{auto-task.mjs → auto-task.js} +1 -1
- package/es/workflow-editor/src/json-object-templates/{copy-task.mjs → copy-task.js} +1 -1
- package/es/workflow-editor/src/json-object-templates/{decision.mjs → decision.js} +1 -1
- package/es/workflow-editor/src/json-object-templates/{end.mjs → end.js} +1 -1
- package/es/workflow-editor/src/json-object-templates/{fork.mjs → fork.js} +1 -1
- package/es/workflow-editor/src/json-object-templates/{human-decision.mjs → human-decision.js} +1 -1
- package/es/workflow-editor/src/json-object-templates/{human-task.mjs → human-task.js} +1 -1
- package/es/workflow-editor/src/json-object-templates/{join.mjs → join.js} +1 -1
- package/es/workflow-editor/src/json-object-templates/{process.mjs → process.js} +2 -2
- package/es/workflow-editor/src/json-object-templates/{start.mjs → start.js} +1 -1
- package/es/workflow-editor/src/json-object-templates/{subprocess.mjs → subprocess.js} +1 -1
- package/es/workflow-editor/src/main/{admin-save-dialog.vue.mjs → admin-save-dialog.vue.js} +1 -1
- package/es/workflow-editor/src/main/{canvas.vue.mjs → canvas.vue.js} +29 -29
- package/es/workflow-editor/src/main/{context-menu.vue.mjs → context-menu.vue.js} +3 -3
- package/es/workflow-editor/src/main/{icon-svg.vue.mjs → icon-svg.vue.js} +4 -4
- package/es/workflow-editor/src/main/{selection-region.vue.mjs → selection-region.vue.js} +3 -3
- package/es/workflow-editor/src/main/{tache-history-tooltip.vue.mjs → tache-history-tooltip.vue.js} +2 -2
- package/es/workflow-editor/src/main/{tache-subprocess-history-dialog.vue.mjs → tache-subprocess-history-dialog.vue.js} +2 -2
- package/es/workflow-editor/src/main/{toolbox.vue.mjs → toolbox.vue.js} +6 -6
- package/es/workflow-editor/src/main/{wf-history-canvas.vue.mjs → wf-history-canvas.vue.js} +17 -17
- package/es/workflow-editor/src/properties-editors/auto-task/{basic-properties.vue.mjs → basic-properties.vue.js} +7 -7
- package/es/workflow-editor/src/properties-editors/{auto-task.vue.mjs → auto-task.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/common/{additional-condition-utils.mjs → additional-condition-utils.js} +2 -2
- package/es/workflow-editor/src/properties-editors/common/{additional-condition.vue.mjs → additional-condition.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/common/{auto-filled-fields-utils.mjs → auto-filled-fields-utils.js} +1 -1
- package/es/workflow-editor/src/properties-editors/common/{auto-filled-fields.vue.mjs → auto-filled-fields.vue.js} +6 -6
- package/es/workflow-editor/src/properties-editors/common/{common-notice-tool.vue.mjs → common-notice-tool.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/common/{common-user-condition.vue.mjs → common-user-condition.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/common/{form-fields.vue.mjs → form-fields.vue.js} +2 -2
- package/es/workflow-editor/src/properties-editors/common/{i18n-input.vue.mjs → i18n-input.vue.js} +6 -6
- package/es/workflow-editor/src/properties-editors/common/{i18n-set-dialog.vue.mjs → i18n-set-dialog.vue.js} +2 -2
- package/es/workflow-editor/src/properties-editors/common/{notice-reminder.vue.mjs → notice-reminder.vue.js} +7 -7
- package/es/workflow-editor/src/properties-editors/common/{notice.vue.mjs → notice.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/common/{reminder.vue.mjs → reminder.vue.js} +5 -5
- package/es/workflow-editor/src/properties-editors/common/{select-mail-template.vue.mjs → select-mail-template.vue.js} +1 -1
- package/es/workflow-editor/src/properties-editors/common/{system-role-tree-inline.vue.mjs → system-role-tree-inline.vue.js} +2 -2
- package/es/workflow-editor/src/properties-editors/common/{system-role-tree.vue.mjs → system-role-tree.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/common/{task-title.vue.mjs → task-title.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/common/{transactor-settings.vue.mjs → transactor-settings.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/common/{user-selection.vue.mjs → user-selection.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/common/{value-selection-dialog.vue.mjs → value-selection-dialog.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/common/{variables.vue.mjs → variables.vue.js} +1 -1
- package/es/workflow-editor/src/properties-editors/copy-task/{basic-properties.vue.mjs → basic-properties.vue.js} +7 -7
- package/es/workflow-editor/src/properties-editors/copy-task/{permission-settings.vue.mjs → permission-settings.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/{copy-task.vue.mjs → copy-task.vue.js} +11 -11
- package/es/workflow-editor/src/properties-editors/{decision.vue.mjs → decision.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/{fork.vue.mjs → fork.vue.js} +2 -2
- package/es/workflow-editor/src/properties-editors/{human-decision.vue.mjs → human-decision.vue.js} +1 -1
- package/es/workflow-editor/src/properties-editors/human-task/{additional-condition-dialog.vue.mjs → additional-condition-dialog.vue.js} +2 -2
- package/es/workflow-editor/src/properties-editors/human-task/{basic-properties.vue.mjs → basic-properties.vue.js} +7 -7
- package/es/workflow-editor/src/properties-editors/human-task/{componentsConfigUtil.mjs → componentsConfigUtil.js} +1 -1
- package/es/workflow-editor/src/properties-editors/human-task/{custom-actions.vue.mjs → custom-actions.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/human-task/{editable-child-field-setting.vue.mjs → editable-child-field-setting.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/human-task/{editable-child-fields.vue.mjs → editable-child-fields.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/human-task/{editable-field-selection.vue.mjs → editable-field-selection.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/human-task/{editable-fields.vue.mjs → editable-fields.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/human-task/{events.vue.mjs → events.vue.js} +1 -1
- package/es/workflow-editor/src/properties-editors/human-task/{permission-settings.vue.mjs → permission-settings.vue.js} +7 -7
- package/es/workflow-editor/src/properties-editors/human-task/{selection-conditions.vue.mjs → selection-conditions.vue.js} +4 -4
- package/es/workflow-editor/src/properties-editors/{human-task.vue.mjs → human-task.vue.js} +9 -9
- package/es/workflow-editor/src/properties-editors/{join.vue.mjs → join.vue.js} +1 -1
- package/es/workflow-editor/src/properties-editors/process/{basic-properties.vue.mjs → basic-properties.vue.js} +6 -6
- package/es/workflow-editor/src/properties-editors/process/{events.vue.mjs → events.vue.js} +6 -6
- package/es/workflow-editor/src/properties-editors/process/{notice-settings.vue.mjs → notice-settings.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/process/{parameter-settings.vue.mjs → parameter-settings.vue.js} +2 -2
- package/es/workflow-editor/src/properties-editors/process/{permission-settings.vue.mjs → permission-settings.vue.js} +2 -2
- package/es/workflow-editor/src/properties-editors/process/{selectPage.vue.mjs → selectPage.vue.js} +1 -1
- package/es/workflow-editor/src/properties-editors/{process.vue.mjs → process.vue.js} +8 -8
- package/es/workflow-editor/src/properties-editors/subprocess/{basic-properties.vue.mjs → basic-properties.vue.js} +8 -8
- package/es/workflow-editor/src/properties-editors/subprocess/{events.vue.mjs → events.vue.js} +1 -1
- package/es/workflow-editor/src/properties-editors/subprocess/{field-mappings.vue.mjs → field-mappings.vue.js} +5 -5
- package/es/workflow-editor/src/properties-editors/subprocess/{transactor-settings.vue.mjs → transactor-settings.vue.js} +7 -7
- package/es/workflow-editor/src/properties-editors/{subprocess.vue.mjs → subprocess.vue.js} +5 -5
- package/es/workflow-editor/src/properties-editors/transition/{basic-properties.vue.mjs → basic-properties.vue.js} +3 -3
- package/es/workflow-editor/src/properties-editors/{transition.vue.mjs → transition.vue.js} +9 -9
- package/es/workflow-editor/src/properties-editors/{user-condition.mjs → user-condition.js} +1 -1
- package/es/workflow-editor/src/store/{workflow-editor.mjs → workflow-editor.js} +1 -1
- package/es/workflow-editor/src/taches/{auto-task.vue.mjs → auto-task.vue.js} +7 -7
- package/es/workflow-editor/src/taches/{common-methods.mjs → common-methods.js} +1 -1
- package/es/workflow-editor/src/taches/{copy-task.vue.mjs → copy-task.vue.js} +7 -7
- package/es/workflow-editor/src/taches/{custom-task.vue.mjs → custom-task.vue.js} +4 -4
- package/es/workflow-editor/src/taches/{decision.vue.mjs → decision.vue.js} +5 -5
- package/es/workflow-editor/src/taches/{end.vue.mjs → end.vue.js} +4 -4
- package/es/workflow-editor/src/taches/{fork.vue.mjs → fork.vue.js} +5 -5
- package/es/workflow-editor/src/taches/{human-decision.vue.mjs → human-decision.vue.js} +7 -7
- package/es/workflow-editor/src/taches/{human-task.vue.mjs → human-task.vue.js} +5 -5
- package/es/workflow-editor/src/taches/{join.vue.mjs → join.vue.js} +4 -4
- package/es/workflow-editor/src/taches/{joint.vue.mjs → joint.vue.js} +3 -3
- package/es/workflow-editor/src/taches/{start.vue.mjs → start.vue.js} +4 -4
- package/es/workflow-editor/src/taches/{subprocess.vue.mjs → subprocess.vue.js} +7 -7
- package/es/workflow-editor/src/taches/{tache-resizer.vue.mjs → tache-resizer.vue.js} +2 -2
- package/es/workflow-editor/src/transitions/{broken-line.vue.mjs → broken-line.vue.js} +3 -3
- package/es/workflow-editor/src/transitions/{curve-line.vue.mjs → curve-line.vue.js} +3 -3
- package/es/workflow-editor/src/transitions/{straight-line.vue.mjs → straight-line.vue.js} +2 -2
- package/es/workflow-editor/src/transitions/{transition.vue.mjs → transition.vue.js} +8 -8
- package/es/workflow-editor/src/transitions/{virtual-transition.vue.mjs → virtual-transition.vue.js} +3 -3
- package/es/workflow-editor/src/{util.mjs → util.js} +13 -13
- package/es/workflow-editor/src/{workflow-editor.vue.mjs → workflow-editor.vue.js} +16 -16
- package/es/workflow-editor/src/{workflow-history.vue.mjs → workflow-history.vue.js} +8 -8
- package/lib/style.css +144 -144
- package/package.json +7 -1
- package/.prettierrc.json +0 -9
- package/es/src/i18n/i18n.mjs +0 -7
- package/es/workflow-editor/index.mjs +0 -10
- package/index.html +0 -13
- package/packages/index.js +0 -50
- package/packages/plugins/formValidatorUtil.js +0 -723
- package/packages/plugins/index.js +0 -8
- package/packages/workflow-editor/index.js +0 -14
- package/packages/workflow-editor/src/api.js +0 -7
- package/packages/workflow-editor/src/assets/tab-select.png +0 -0
- package/packages/workflow-editor/src/assets/tab-selectWhite.png +0 -0
- package/packages/workflow-editor/src/assets/wf-editor-icons.js +0 -2
- package/packages/workflow-editor/src/constant.js +0 -8
- package/packages/workflow-editor/src/json-object-templates/auto-task.js +0 -70
- package/packages/workflow-editor/src/json-object-templates/copy-task.js +0 -72
- package/packages/workflow-editor/src/json-object-templates/decision.js +0 -11
- package/packages/workflow-editor/src/json-object-templates/end.js +0 -14
- package/packages/workflow-editor/src/json-object-templates/fork.js +0 -10
- package/packages/workflow-editor/src/json-object-templates/human-decision.js +0 -9
- package/packages/workflow-editor/src/json-object-templates/human-task.js +0 -208
- package/packages/workflow-editor/src/json-object-templates/join.js +0 -10
- package/packages/workflow-editor/src/json-object-templates/process.js +0 -99
- package/packages/workflow-editor/src/json-object-templates/start.js +0 -13
- package/packages/workflow-editor/src/json-object-templates/subprocess.js +0 -31
- package/packages/workflow-editor/src/json-object-templates/transition.js +0 -26
- package/packages/workflow-editor/src/main/admin-save-dialog.vue +0 -67
- package/packages/workflow-editor/src/main/canvas.vue +0 -493
- package/packages/workflow-editor/src/main/context-menu.vue +0 -147
- package/packages/workflow-editor/src/main/icon-svg.vue +0 -32
- package/packages/workflow-editor/src/main/selection-region.vue +0 -66
- package/packages/workflow-editor/src/main/tache-history-tooltip.vue +0 -38
- package/packages/workflow-editor/src/main/tache-name-input.vue +0 -19
- package/packages/workflow-editor/src/main/tache-subprocess-history-dialog.vue +0 -40
- package/packages/workflow-editor/src/main/toolbox.vue +0 -60
- package/packages/workflow-editor/src/main/wf-history-canvas.vue +0 -309
- package/packages/workflow-editor/src/process-json.js +0 -624
- package/packages/workflow-editor/src/process-service.js +0 -68
- package/packages/workflow-editor/src/properties-editors/auto-task/basic-properties.vue +0 -81
- package/packages/workflow-editor/src/properties-editors/auto-task/permission-settings.vue +0 -155
- package/packages/workflow-editor/src/properties-editors/auto-task.vue +0 -74
- package/packages/workflow-editor/src/properties-editors/common/additional-condition-utils.js +0 -568
- package/packages/workflow-editor/src/properties-editors/common/additional-condition.vue +0 -320
- package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields-utils.js +0 -34
- package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields.vue +0 -268
- package/packages/workflow-editor/src/properties-editors/common/common-notice-tool.vue +0 -81
- package/packages/workflow-editor/src/properties-editors/common/common-user-condition.vue +0 -242
- package/packages/workflow-editor/src/properties-editors/common/form-fields-utils.js +0 -23
- package/packages/workflow-editor/src/properties-editors/common/form-fields.vue +0 -117
- package/packages/workflow-editor/src/properties-editors/common/i18n-input.vue +0 -88
- package/packages/workflow-editor/src/properties-editors/common/i18n-set-dialog.vue +0 -143
- package/packages/workflow-editor/src/properties-editors/common/notice-reminder.vue +0 -149
- package/packages/workflow-editor/src/properties-editors/common/notice.vue +0 -108
- package/packages/workflow-editor/src/properties-editors/common/reminder.vue +0 -272
- package/packages/workflow-editor/src/properties-editors/common/select-mail-template.vue +0 -92
- package/packages/workflow-editor/src/properties-editors/common/standard-fields.vue +0 -66
- package/packages/workflow-editor/src/properties-editors/common/system-role-tree-inline.vue +0 -354
- package/packages/workflow-editor/src/properties-editors/common/system-role-tree.vue +0 -68
- package/packages/workflow-editor/src/properties-editors/common/task-title.vue +0 -165
- package/packages/workflow-editor/src/properties-editors/common/transactor-settings.vue +0 -275
- package/packages/workflow-editor/src/properties-editors/common/user-selection.vue +0 -426
- package/packages/workflow-editor/src/properties-editors/common/value-selection-dialog.vue +0 -272
- package/packages/workflow-editor/src/properties-editors/common/variables.vue +0 -139
- package/packages/workflow-editor/src/properties-editors/copy-task/basic-properties.vue +0 -90
- package/packages/workflow-editor/src/properties-editors/copy-task/permission-settings.vue +0 -155
- package/packages/workflow-editor/src/properties-editors/copy-task.vue +0 -95
- package/packages/workflow-editor/src/properties-editors/decision.vue +0 -95
- package/packages/workflow-editor/src/properties-editors/fork.vue +0 -77
- package/packages/workflow-editor/src/properties-editors/human-decision.vue +0 -49
- package/packages/workflow-editor/src/properties-editors/human-task/additional-condition-dialog.vue +0 -62
- package/packages/workflow-editor/src/properties-editors/human-task/basic-properties.vue +0 -184
- package/packages/workflow-editor/src/properties-editors/human-task/componentsConfigUtil.js +0 -359
- package/packages/workflow-editor/src/properties-editors/human-task/custom-actions.vue +0 -256
- package/packages/workflow-editor/src/properties-editors/human-task/editable-child-field-setting.vue +0 -405
- package/packages/workflow-editor/src/properties-editors/human-task/editable-child-fields.vue +0 -257
- package/packages/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue +0 -430
- package/packages/workflow-editor/src/properties-editors/human-task/editable-fields.vue +0 -206
- package/packages/workflow-editor/src/properties-editors/human-task/events.vue +0 -60
- package/packages/workflow-editor/src/properties-editors/human-task/permission-settings.vue +0 -224
- package/packages/workflow-editor/src/properties-editors/human-task/selection-conditions.vue +0 -499
- package/packages/workflow-editor/src/properties-editors/human-task.vue +0 -107
- package/packages/workflow-editor/src/properties-editors/join.vue +0 -49
- package/packages/workflow-editor/src/properties-editors/process/basic-properties.vue +0 -336
- package/packages/workflow-editor/src/properties-editors/process/events.vue +0 -79
- package/packages/workflow-editor/src/properties-editors/process/notice-settings.vue +0 -68
- package/packages/workflow-editor/src/properties-editors/process/parameter-settings.vue +0 -106
- package/packages/workflow-editor/src/properties-editors/process/permission-settings.vue +0 -28
- package/packages/workflow-editor/src/properties-editors/process/selectPage.vue +0 -88
- package/packages/workflow-editor/src/properties-editors/process.vue +0 -115
- package/packages/workflow-editor/src/properties-editors/subprocess/basic-properties.vue +0 -201
- package/packages/workflow-editor/src/properties-editors/subprocess/events.vue +0 -26
- package/packages/workflow-editor/src/properties-editors/subprocess/field-mappings.vue +0 -216
- package/packages/workflow-editor/src/properties-editors/subprocess/transactor-settings.vue +0 -66
- package/packages/workflow-editor/src/properties-editors/subprocess.vue +0 -80
- package/packages/workflow-editor/src/properties-editors/transition/basic-properties.vue +0 -53
- package/packages/workflow-editor/src/properties-editors/transition.vue +0 -75
- package/packages/workflow-editor/src/properties-editors/user-condition.js +0 -183
- package/packages/workflow-editor/src/store/getters.js +0 -33
- package/packages/workflow-editor/src/store/workflow-editor.js +0 -153
- package/packages/workflow-editor/src/taches/auto-task.vue +0 -99
- package/packages/workflow-editor/src/taches/common-methods.js +0 -21
- package/packages/workflow-editor/src/taches/copy-task.vue +0 -99
- package/packages/workflow-editor/src/taches/custom-task.vue +0 -88
- package/packages/workflow-editor/src/taches/decision.vue +0 -102
- package/packages/workflow-editor/src/taches/end.vue +0 -76
- package/packages/workflow-editor/src/taches/fork.vue +0 -102
- package/packages/workflow-editor/src/taches/human-decision.vue +0 -102
- package/packages/workflow-editor/src/taches/human-task.vue +0 -113
- package/packages/workflow-editor/src/taches/join.vue +0 -91
- package/packages/workflow-editor/src/taches/joint.vue +0 -177
- package/packages/workflow-editor/src/taches/start.vue +0 -76
- package/packages/workflow-editor/src/taches/subprocess.vue +0 -99
- package/packages/workflow-editor/src/taches/tache-resizer.vue +0 -80
- package/packages/workflow-editor/src/transitions/broken-line.vue +0 -91
- package/packages/workflow-editor/src/transitions/curve-line.vue +0 -91
- package/packages/workflow-editor/src/transitions/straight-line.vue +0 -26
- package/packages/workflow-editor/src/transitions/transition.vue +0 -209
- package/packages/workflow-editor/src/transitions/virtual-transition.vue +0 -43
- package/packages/workflow-editor/src/util.js +0 -499
- package/packages/workflow-editor/src/workflow-editor.vue +0 -852
- package/packages/workflow-editor/src/workflow-history.vue +0 -153
- package/public/vite.svg +0 -1
- package/src/i18n/i18n.js +0 -16
- package/src/i18n/langs/cn.js +0 -521
- package/src/i18n/langs/en.js +0 -529
- package/vite.config.js +0 -103
- /package/es/_virtual/{_plugin-vue_export-helper.mjs → _plugin-vue_export-helper.js} +0 -0
- /package/es/src/i18n/langs/{cn.mjs → cn.js} +0 -0
- /package/es/src/i18n/langs/{en.mjs → en.js} +0 -0
- /package/es/workflow-editor/src/{api.mjs → api.js} +0 -0
- /package/es/workflow-editor/src/assets/{wf-editor-icons.mjs → wf-editor-icons.js} +0 -0
- /package/es/workflow-editor/src/json-object-templates/{transition.mjs → transition.js} +0 -0
- /package/es/workflow-editor/src/main/{canvas.vue2.mjs → canvas.vue2.js} +0 -0
- /package/es/workflow-editor/src/main/{context-menu.vue2.mjs → context-menu.vue2.js} +0 -0
- /package/es/workflow-editor/src/main/{icon-svg.vue2.mjs → icon-svg.vue2.js} +0 -0
- /package/es/workflow-editor/src/main/{selection-region.vue2.mjs → selection-region.vue2.js} +0 -0
- /package/es/workflow-editor/src/main/{tache-history-tooltip.vue2.mjs → tache-history-tooltip.vue2.js} +0 -0
- /package/es/workflow-editor/src/main/{tache-subprocess-history-dialog.vue2.mjs → tache-subprocess-history-dialog.vue2.js} +0 -0
- /package/es/workflow-editor/src/main/{toolbox.vue2.mjs → toolbox.vue2.js} +0 -0
- /package/es/workflow-editor/src/main/{wf-history-canvas.vue2.mjs → wf-history-canvas.vue2.js} +0 -0
- /package/es/workflow-editor/src/{process-service.mjs → process-service.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/auto-task/{basic-properties.vue2.mjs → basic-properties.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/{auto-task.vue2.mjs → auto-task.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/common/{form-fields-utils.mjs → form-fields-utils.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/common/{form-fields.vue2.mjs → form-fields.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/common/{notice-reminder.vue2.mjs → notice-reminder.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/common/{reminder.vue2.mjs → reminder.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/common/{system-role-tree-inline.vue2.mjs → system-role-tree-inline.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/common/{system-role-tree.vue2.mjs → system-role-tree.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/common/{task-title.vue2.mjs → task-title.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/common/{value-selection-dialog.vue2.mjs → value-selection-dialog.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/copy-task/{basic-properties.vue2.mjs → basic-properties.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/copy-task/{permission-settings.vue2.mjs → permission-settings.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/{copy-task.vue2.mjs → copy-task.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/human-task/{basic-properties.vue2.mjs → basic-properties.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/human-task/{editable-field-selection.vue2.mjs → editable-field-selection.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/human-task/{permission-settings.vue2.mjs → permission-settings.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/{human-task.vue2.mjs → human-task.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/{subprocess.vue2.mjs → subprocess.vue2.js} +0 -0
- /package/es/workflow-editor/src/properties-editors/{transition.vue2.mjs → transition.vue2.js} +0 -0
- /package/es/workflow-editor/src/store/{getters.mjs → getters.js} +0 -0
- /package/es/workflow-editor/src/taches/{decision.vue2.mjs → decision.vue2.js} +0 -0
- /package/es/workflow-editor/src/taches/{end.vue2.mjs → end.vue2.js} +0 -0
- /package/es/workflow-editor/src/taches/{fork.vue2.mjs → fork.vue2.js} +0 -0
- /package/es/workflow-editor/src/taches/{human-decision.vue2.mjs → human-decision.vue2.js} +0 -0
- /package/es/workflow-editor/src/taches/{join.vue2.mjs → join.vue2.js} +0 -0
- /package/es/workflow-editor/src/taches/{joint.vue2.mjs → joint.vue2.js} +0 -0
- /package/es/workflow-editor/src/taches/{start.vue2.mjs → start.vue2.js} +0 -0
- /package/es/workflow-editor/src/taches/{tache-resizer.vue2.mjs → tache-resizer.vue2.js} +0 -0
- /package/es/workflow-editor/src/transitions/{broken-line.vue2.mjs → broken-line.vue2.js} +0 -0
- /package/es/workflow-editor/src/transitions/{curve-line.vue2.mjs → curve-line.vue2.js} +0 -0
- /package/es/workflow-editor/src/transitions/{transition.vue2.mjs → transition.vue2.js} +0 -0
- /package/es/workflow-editor/src/transitions/{virtual-transition.vue2.mjs → virtual-transition.vue2.js} +0 -0
- /package/es/workflow-editor/src/{workflow-editor.vue2.mjs → workflow-editor.vue2.js} +0 -0
- /package/es/workflow-editor/src/{workflow-history.vue2.mjs → workflow-history.vue2.js} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import o from "./workflow-editor/index.
|
|
2
|
-
import r from "./plugins/index.
|
|
3
|
-
import { default as default2 } from "./src/i18n/langs/cn.
|
|
4
|
-
import { default as default3 } from "./src/i18n/langs/en.
|
|
1
|
+
import o from "./workflow-editor/index.js";
|
|
2
|
+
import r from "./plugins/index.js";
|
|
3
|
+
import { default as default2 } from "./src/i18n/langs/cn.js";
|
|
4
|
+
import { default as default3 } from "./src/i18n/langs/en.js";
|
|
5
5
|
const n = o.WorkflowEditor, t = o.WorkflowHistory, i = o.wfEditorStore, s = [n, t], e = function(o2) {
|
|
6
6
|
e.installed || (s.forEach((r2) => {
|
|
7
7
|
o2.component(r2.name, r2);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import e from "../node_modules/async-validator/dist-web/index.
|
|
2
|
-
import { getI18n as t } from "../workflow-editor/src/util.
|
|
1
|
+
import e from "../node_modules/async-validator/dist-web/index.js";
|
|
2
|
+
import { getI18n as t } from "../workflow-editor/src/util.js";
|
|
3
3
|
import { parseSubTablePermissionCondition as n } from "agilebuilder-ui";
|
|
4
4
|
function o(e2, n2) {
|
|
5
5
|
const o2 = {}, r2 = e2.dataType;
|
|
@@ -104,8 +104,8 @@ function u(e2, t2, o2, i2, r2, s2, l2, d2, f2) {
|
|
|
104
104
|
const g = e2[c2];
|
|
105
105
|
if (f2.indexOf(g) < 0)
|
|
106
106
|
continue;
|
|
107
|
-
const b = t2[g],
|
|
108
|
-
if (null !=
|
|
107
|
+
const b = t2[g], p = b.condition, m = n(p, i2, r2, o2, s2, l2, d2);
|
|
108
|
+
if (null != m && true === m)
|
|
109
109
|
if (void 0 === u2)
|
|
110
110
|
a2[g] = b;
|
|
111
111
|
else {
|
|
@@ -123,22 +123,22 @@ const c = { formValidator: function(e2, t2, n2, o2, i2, r2, s2, l2) {
|
|
|
123
123
|
const f2 = Object.keys(t2);
|
|
124
124
|
if (f2.indexOf("rules") >= 0 && f2.indexOf("subRules") >= 0 && f2.indexOf("totalSubRules") >= 0) {
|
|
125
125
|
const f3 = t2.rules, c2 = t2.subRules, g = t2.totalSubRules, b = t2.dataTypeMap;
|
|
126
|
-
let
|
|
127
|
-
return (!l2 && true ===
|
|
126
|
+
let p = d(e2, f3, null, n2, null, null, l2);
|
|
127
|
+
return (!l2 && true === p || l2 && true === p.msg) && (c2 || g) && (p = function(e3, t3, n3, o3, i3, r3, s3, l3, f4, c3) {
|
|
128
128
|
let g2 = {};
|
|
129
129
|
if (n3 && (g2 = JSON.parse(JSON.stringify(n3))), t3) {
|
|
130
130
|
const n4 = Object.keys(t3);
|
|
131
131
|
for (let b2 = 0; b2 < n4.length; b2++) {
|
|
132
|
-
const
|
|
133
|
-
let O = e3[
|
|
132
|
+
const p2 = n4[b2], m = t3[p2], w = Object.keys(m);
|
|
133
|
+
let O = e3[p2];
|
|
134
134
|
O || (O = []);
|
|
135
|
-
const x = a(g2, e3,
|
|
135
|
+
const x = a(g2, e3, p2);
|
|
136
136
|
if (true !== x)
|
|
137
|
-
return delete g2[
|
|
137
|
+
return delete g2[p2], c3 ? { msg: x, listCode: p2 } : x;
|
|
138
138
|
let y, E = [];
|
|
139
|
-
f4 && f4[
|
|
139
|
+
f4 && f4[p2] && (y = f4[p2].pageSize, E = f4[p2].fields || []);
|
|
140
140
|
for (let t4 = 0; t4 < O.length; t4++) {
|
|
141
|
-
const n5 = O[t4], f5 = u(w,
|
|
141
|
+
const n5 = O[t4], f5 = u(w, m, O[t4], i3, e3, r3, s3, l3, E);
|
|
142
142
|
let a2, g3;
|
|
143
143
|
void 0 !== y && y > 0 && (a2 = Math.ceil((t4 + 1) / y), g3 = t4 + 1 - (a2 - 1) * y), Object.keys(f5).forEach((o4) => {
|
|
144
144
|
const i4 = f5[o4];
|
|
@@ -149,7 +149,7 @@ const c = { formValidator: function(e2, t2, n2, o2, i2, r2, s2, l2) {
|
|
|
149
149
|
});
|
|
150
150
|
const b3 = d(n5, f5, t4, o3, a2, g3, c3);
|
|
151
151
|
if (!c3 && true !== b3 || c3 && true !== b3.msg)
|
|
152
|
-
return c3 && (b3.listCode =
|
|
152
|
+
return c3 && (b3.listCode = p2), b3;
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
155
|
}
|
|
@@ -159,7 +159,7 @@ const c = { formValidator: function(e2, t2, n2, o2, i2, r2, s2, l2) {
|
|
|
159
159
|
return c3 ? { msg: n4, listCode: t4 } : n4;
|
|
160
160
|
}
|
|
161
161
|
return !c3 || { msg: true };
|
|
162
|
-
}(e2, c2, g, n2, b, o2, i2, r2, s2, l2)),
|
|
162
|
+
}(e2, c2, g, n2, b, o2, i2, r2, s2, l2)), p;
|
|
163
163
|
}
|
|
164
164
|
return d(e2, t2, null, n2, null, null, l2);
|
|
165
165
|
}, getValidator: function(e2, i2, r2, s2, d2, f2) {
|
|
@@ -170,9 +170,9 @@ const c = { formValidator: function(e2, t2, n2, o2, i2, r2, s2, l2) {
|
|
|
170
170
|
if (void 0 !== b && true === b) {
|
|
171
171
|
let b2 = e3.name;
|
|
172
172
|
if (b2) {
|
|
173
|
-
const
|
|
173
|
+
const p = e3.condition, m = null;
|
|
174
174
|
let w = null;
|
|
175
|
-
if (w = b2.indexOf(".") > 0 && 0 === b2.indexOf("$") || n(
|
|
175
|
+
if (w = b2.indexOf(".") > 0 && 0 === b2.indexOf("$") || n(p, a2, m, i2, s2, d2, f2), null != w && true === w) {
|
|
176
176
|
let n2 = {};
|
|
177
177
|
if (b2.indexOf(".") > 0)
|
|
178
178
|
0 === b2.indexOf("$") ? function(e4, t2, n3, i3, r3) {
|
package/es/style.css
CHANGED
|
@@ -1,29 +1,4 @@
|
|
|
1
|
-
@charset "UTF-8"
|
|
2
|
-
position: relative;
|
|
3
|
-
display: flex;
|
|
4
|
-
height: 100%;
|
|
5
|
-
width: 100%;
|
|
6
|
-
}
|
|
7
|
-
.canvas-container[data-v-6658e14b] {
|
|
8
|
-
position: relative;
|
|
9
|
-
height: 100%;
|
|
10
|
-
width: 100%;
|
|
11
|
-
}
|
|
12
|
-
section[data-v-6658e14b] {
|
|
13
|
-
overflow: hidden;
|
|
14
|
-
width: 100%;
|
|
15
|
-
height: 100%;
|
|
16
|
-
padding: 0;
|
|
17
|
-
}
|
|
18
|
-
.canvas[data-v-6658e14b] {
|
|
19
|
-
overflow: auto;
|
|
20
|
-
height: 100%;
|
|
21
|
-
padding: 0;
|
|
22
|
-
min-height: 500px;
|
|
23
|
-
}
|
|
24
|
-
.canvas[data-v-6658e14b] .draggable {
|
|
25
|
-
cursor: default;
|
|
26
|
-
}
|
|
1
|
+
@charset "UTF-8";
|
|
27
2
|
.button-area[data-v-865cb4ee] {
|
|
28
3
|
padding: 5px 0 5px 5px;
|
|
29
4
|
height: 50px;
|
|
@@ -125,20 +100,31 @@ pre[data-v-865cb4ee] {
|
|
|
125
100
|
/* 去掉卡片和tab表头的距离 */
|
|
126
101
|
[data-v-865cb4ee] .el-tabs__header {
|
|
127
102
|
margin: 0;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
|
|
103
|
+
}.main[data-v-6658e14b] {
|
|
104
|
+
position: relative;
|
|
105
|
+
display: flex;
|
|
106
|
+
height: 100%;
|
|
107
|
+
width: 100%;
|
|
108
|
+
}
|
|
109
|
+
.canvas-container[data-v-6658e14b] {
|
|
110
|
+
position: relative;
|
|
111
|
+
height: 100%;
|
|
112
|
+
width: 100%;
|
|
113
|
+
}
|
|
114
|
+
section[data-v-6658e14b] {
|
|
115
|
+
overflow: hidden;
|
|
116
|
+
width: 100%;
|
|
117
|
+
height: 100%;
|
|
131
118
|
padding: 0;
|
|
132
|
-
font-weight: bold;
|
|
133
|
-
font-size: 18px;
|
|
134
119
|
}
|
|
135
|
-
.
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
padding:
|
|
120
|
+
.canvas[data-v-6658e14b] {
|
|
121
|
+
overflow: auto;
|
|
122
|
+
height: 100%;
|
|
123
|
+
padding: 0;
|
|
124
|
+
min-height: 500px;
|
|
139
125
|
}
|
|
140
|
-
.
|
|
141
|
-
|
|
126
|
+
.canvas[data-v-6658e14b] .draggable {
|
|
127
|
+
cursor: default;
|
|
142
128
|
}
|
|
143
129
|
#svg{
|
|
144
130
|
/* border:1px solid red; */
|
|
@@ -169,14 +155,22 @@ g text{
|
|
|
169
155
|
fill: #fff;
|
|
170
156
|
stroke: #666;
|
|
171
157
|
stroke-width: 2;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
158
|
+
}
|
|
159
|
+
.passed-tache .task-tache{
|
|
160
|
+
fill: green;
|
|
161
|
+
stroke: green;
|
|
162
|
+
stroke-width: 2;
|
|
163
|
+
}
|
|
164
|
+
.current-tache .task-tache{
|
|
165
|
+
fill: red;
|
|
166
|
+
stroke: red;
|
|
167
|
+
stroke-width: 2;
|
|
168
|
+
}
|
|
169
|
+
.passed-tache text{
|
|
170
|
+
fill:white;
|
|
171
|
+
}
|
|
172
|
+
.current-tache text{
|
|
173
|
+
fill: white
|
|
180
174
|
}
|
|
181
175
|
|
|
182
176
|
#svg{
|
|
@@ -208,24 +202,30 @@ g text{
|
|
|
208
202
|
fill: #fff;
|
|
209
203
|
stroke: #666;
|
|
210
204
|
stroke-width: 2;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.svg-icon {
|
|
208
|
+
width: 1em;
|
|
209
|
+
height: 1em;
|
|
210
|
+
vertical-align: -0.15em;
|
|
211
|
+
fill: currentColor;
|
|
212
|
+
overflow: hidden;
|
|
213
|
+
}
|
|
214
|
+
h3[data-v-0d941719] {
|
|
215
|
+
color: #999999;
|
|
216
|
+
margin: 0;
|
|
217
|
+
padding: 0;
|
|
218
|
+
font-weight: bold;
|
|
219
|
+
font-size: 18px;
|
|
211
220
|
}
|
|
212
|
-
.
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
}
|
|
217
|
-
.current-tache .task-tache{
|
|
218
|
-
fill: red;
|
|
219
|
-
stroke: red;
|
|
220
|
-
stroke-width: 2;
|
|
221
|
-
}
|
|
222
|
-
.passed-tache text{
|
|
223
|
-
fill:white;
|
|
221
|
+
.el-button[data-v-0d941719] {
|
|
222
|
+
margin: 6px 0;
|
|
223
|
+
min-width: 110px;
|
|
224
|
+
padding: 9px 15px;
|
|
224
225
|
}
|
|
225
|
-
.
|
|
226
|
-
|
|
227
|
-
}
|
|
228
|
-
li[data-v-7e8a1cf6] {
|
|
226
|
+
.el-button i[data-v-0d941719] {
|
|
227
|
+
padding-right: 4px;
|
|
228
|
+
}li[data-v-7e8a1cf6] {
|
|
229
229
|
color: #333;
|
|
230
230
|
}
|
|
231
231
|
.context-menu[data-v-7e8a1cf6] {
|
|
@@ -269,33 +269,52 @@ li[data-v-7e8a1cf6] {
|
|
|
269
269
|
fill:#fff;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
-
.human-decision{
|
|
273
|
-
stroke-width: 0;
|
|
274
|
-
fill:#fff;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
272
|
.decision{
|
|
278
273
|
stroke-width: 0;
|
|
279
274
|
fill:#fff;
|
|
280
275
|
}
|
|
281
276
|
|
|
282
|
-
.
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
277
|
+
.transition[data-v-a1576cad] {
|
|
278
|
+
stroke-width: 2;
|
|
279
|
+
stroke: #666;
|
|
280
|
+
fill: none;
|
|
281
|
+
cursor: pointer;
|
|
282
|
+
}
|
|
283
|
+
.selected[data-v-a1576cad] {
|
|
284
|
+
stroke: red;
|
|
285
|
+
}
|
|
286
|
+
.transition-dragger[data-v-a1576cad] {
|
|
287
|
+
stroke: red;
|
|
288
|
+
stroke-width: 1;
|
|
289
|
+
fill: white;
|
|
290
|
+
cursor: move;
|
|
291
|
+
}
|
|
292
|
+
.no-events[data-v-a1576cad] {
|
|
293
|
+
pointer-events: none;
|
|
287
294
|
}
|
|
288
|
-
|
|
295
|
+
.tooltip[data-v-ac799913] {
|
|
296
|
+
position: absolute;
|
|
297
|
+
background: #fff;
|
|
298
|
+
min-width: 150px;
|
|
299
|
+
border-radius: 4px;
|
|
300
|
+
border: 1px solid #ebeef5;
|
|
301
|
+
padding: 12px;
|
|
302
|
+
z-index: 2000;
|
|
303
|
+
color: #606266;
|
|
304
|
+
line-height: 1.4;
|
|
305
|
+
text-align: justify;
|
|
306
|
+
font-size: 14px;
|
|
307
|
+
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
308
|
+
word-break: break-all;
|
|
309
|
+
}
|
|
289
310
|
.decision{
|
|
290
311
|
stroke-width: 0;
|
|
291
312
|
fill:#fff;
|
|
292
313
|
}
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
}
|
|
298
|
-
|
|
314
|
+
#_subprocess-content[data-v-2b195c05] {
|
|
315
|
+
width: 100%;
|
|
316
|
+
height: calc(100vh - 200px);
|
|
317
|
+
}
|
|
299
318
|
.selection-region{
|
|
300
319
|
stroke: blue;
|
|
301
320
|
stroke-width: 1;
|
|
@@ -310,32 +329,25 @@ li[data-v-7e8a1cf6] {
|
|
|
310
329
|
pointer-events:none;
|
|
311
330
|
}
|
|
312
331
|
|
|
313
|
-
.transition
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
stroke: red;
|
|
324
|
-
stroke-width: 1;
|
|
325
|
-
fill: white;
|
|
326
|
-
cursor: move;
|
|
327
|
-
}
|
|
328
|
-
.no-events[data-v-a1576cad] {
|
|
329
|
-
pointer-events: none;
|
|
332
|
+
.virtual-transition{
|
|
333
|
+
stroke-width: 2;
|
|
334
|
+
stroke:#000;
|
|
335
|
+
stroke-dasharray: 2 2;
|
|
336
|
+
fill: none;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.human-decision{
|
|
340
|
+
stroke-width: 0;
|
|
341
|
+
fill:#fff;
|
|
330
342
|
}
|
|
331
343
|
|
|
332
344
|
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
333
|
-
.properties-editor[data-v-
|
|
334
|
-
padding-top: 0
|
|
345
|
+
.properties-editor[data-v-1651d82a] .el-dialog__body {
|
|
346
|
+
padding-top: 0;
|
|
335
347
|
}
|
|
336
348
|
|
|
337
349
|
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
338
|
-
.properties-editor[data-v-
|
|
350
|
+
.properties-editor[data-v-0e44fe8c] .el-dialog__body{
|
|
339
351
|
padding-top: 0
|
|
340
352
|
}
|
|
341
353
|
|
|
@@ -348,24 +360,20 @@ li[data-v-7e8a1cf6] {
|
|
|
348
360
|
.properties-editor[data-v-bd66d235] .el-dialog__body{
|
|
349
361
|
padding-top: 0
|
|
350
362
|
}
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
line-height: 1.4;
|
|
361
|
-
text-align: justify;
|
|
362
|
-
font-size: 14px;
|
|
363
|
-
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
364
|
-
word-break: break-all;
|
|
365
|
-
}#_subprocess-content[data-v-2b195c05] {
|
|
366
|
-
width: 100%;
|
|
367
|
-
height: calc(100vh - 200px);
|
|
363
|
+
|
|
364
|
+
/* 使用深度作用选择器(vue-loader的功能)">>>"符号重新定义了.el-dialog__body,不影响其他页面的同名样式*/
|
|
365
|
+
.properties-editor[data-v-af76d417] .el-dialog__body{
|
|
366
|
+
padding-top: 0
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.control-point[data-v-0ff53a0a]{
|
|
370
|
+
fill: #fff;
|
|
371
|
+
cursor: move;
|
|
368
372
|
}
|
|
373
|
+
.control-line[data-v-0ff53a0a] {
|
|
374
|
+
stroke-dasharray: 2 2
|
|
375
|
+
}
|
|
376
|
+
|
|
369
377
|
.joint-container{
|
|
370
378
|
stroke-width: 0;
|
|
371
379
|
fill: #fff;
|
|
@@ -381,6 +389,24 @@ li[data-v-7e8a1cf6] {
|
|
|
381
389
|
fill-opacity: 1;
|
|
382
390
|
}
|
|
383
391
|
|
|
392
|
+
.control-point[data-v-788fb0ae]{
|
|
393
|
+
fill: #fff;
|
|
394
|
+
cursor: move;
|
|
395
|
+
}
|
|
396
|
+
.control-line[data-v-788fb0ae] {
|
|
397
|
+
stroke-dasharray: 2 2
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.el-checkbox[data-v-c019538f]{
|
|
401
|
+
margin-left: 20px;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.percent[data-v-a219b06d] {
|
|
405
|
+
margin-left: 10px;
|
|
406
|
+
color: red;
|
|
407
|
+
font-size: 1.2em;
|
|
408
|
+
}
|
|
409
|
+
|
|
384
410
|
.resizer{
|
|
385
411
|
stroke: blue;
|
|
386
412
|
stroke-width: 1;
|
|
@@ -396,33 +422,7 @@ ul li[data-v-39fac73c] {
|
|
|
396
422
|
.sub-li[data-v-39fac73c] {
|
|
397
423
|
padding-left: 10px;
|
|
398
424
|
}
|
|
399
|
-
.percent[data-v-
|
|
400
|
-
margin-left: 10px;
|
|
401
|
-
color: red;
|
|
402
|
-
font-size: 1.2em;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
.el-checkbox[data-v-c019538f]{
|
|
406
|
-
margin-left: 20px;
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
.control-point[data-v-788fb0ae]{
|
|
410
|
-
fill: #fff;
|
|
411
|
-
cursor: move;
|
|
412
|
-
}
|
|
413
|
-
.control-line[data-v-788fb0ae] {
|
|
414
|
-
stroke-dasharray: 2 2
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
.control-point[data-v-0ff53a0a]{
|
|
418
|
-
fill: #fff;
|
|
419
|
-
cursor: move;
|
|
420
|
-
}
|
|
421
|
-
.control-line[data-v-0ff53a0a] {
|
|
422
|
-
stroke-dasharray: 2 2
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
.percent[data-v-c1c7385b]{
|
|
425
|
+
.percent[data-v-6aef99ff]{
|
|
426
426
|
margin-left: 10px;
|
|
427
427
|
color:red;
|
|
428
428
|
font-size:1.2em;
|
|
@@ -432,7 +432,7 @@ ul li[data-v-39fac73c] {
|
|
|
432
432
|
margin-left: 20px;
|
|
433
433
|
}
|
|
434
434
|
|
|
435
|
-
.percent[data-v-
|
|
435
|
+
.percent[data-v-c1c7385b]{
|
|
436
436
|
margin-left: 10px;
|
|
437
437
|
color:red;
|
|
438
438
|
font-size:1.2em;
|
|
@@ -459,10 +459,6 @@ select[data-v-aaf48aff]{
|
|
|
459
459
|
height: 32px;
|
|
460
460
|
line-height: 32px;
|
|
461
461
|
}
|
|
462
|
-
|
|
463
|
-
span[data-v-4e29ea06] {
|
|
464
|
-
margin: 0 10px;
|
|
465
|
-
}
|
|
466
462
|
.group[data-v-98300543] {
|
|
467
463
|
font-size: 14px;
|
|
468
464
|
width: 100%;
|
|
@@ -478,11 +474,8 @@ span[data-v-4e29ea06] {
|
|
|
478
474
|
padding-left: 20px;
|
|
479
475
|
overflow: auto;
|
|
480
476
|
}
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
}
|
|
484
|
-
.inline-input-custom {
|
|
485
|
-
width : 90%
|
|
477
|
+
span[data-v-4e29ea06] {
|
|
478
|
+
margin: 0 10px;
|
|
486
479
|
}
|
|
487
480
|
|
|
488
481
|
#custTabOne[data-v-7feaa2da] .el-tabs__content {
|
|
@@ -523,3 +516,10 @@ span[data-v-4e29ea06] {
|
|
|
523
516
|
.inline-input-custom {
|
|
524
517
|
width : 90%
|
|
525
518
|
}
|
|
519
|
+
|
|
520
|
+
.searchResult {
|
|
521
|
+
color:red
|
|
522
|
+
}
|
|
523
|
+
.inline-input-custom {
|
|
524
|
+
width : 90%
|
|
525
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import o from "./src/workflow-editor.vue.js";
|
|
2
|
+
import r from "./src/store/workflow-editor.js";
|
|
3
|
+
import t from "./src/workflow-history.vue.js";
|
|
4
|
+
o.install = function(r2) {
|
|
5
|
+
r2.component(o.name, o), r2.component(t.name, t);
|
|
6
|
+
};
|
|
7
|
+
const e = { WorkflowEditor: o, WorkflowHistory: t, wfEditorStore: r };
|
|
8
|
+
export {
|
|
9
|
+
e as default
|
|
10
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import i from "../../../src/i18n/i18n.
|
|
1
|
+
import i from "../../../src/i18n/i18n.js";
|
|
2
2
|
function n() {
|
|
3
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
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import i from "../../../src/i18n/i18n.
|
|
1
|
+
import i from "../../../src/i18n/i18n.js";
|
|
2
2
|
function n() {
|
|
3
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
4
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import n from "../../../src/i18n/i18n.
|
|
1
|
+
import n from "../../../src/i18n/i18n.js";
|
|
2
2
|
function i() {
|
|
3
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
4
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import e from "./human-task.
|
|
2
|
-
import r from "../../../src/i18n/i18n.
|
|
1
|
+
import e from "./human-task.js";
|
|
2
|
+
import r from "../../../src/i18n/i18n.js";
|
|
3
3
|
function t() {
|
|
4
4
|
const t2 = e();
|
|
5
5
|
return t2.g = { x: 200, y: 150, width: 80, height: 40 }, { attr: { name: r.global.t("workflowEditor.task.newProcess"), code: "" }, properties: { basicProperties: { admin: "", formVersion: 1, formCode: "", processTypeCode: "", systemCode: "", creator: "", customType: "", branchCode: "" }, permissionSettings: { viewFlowHistory: "", viewSubscribeResult: "", viewVoteResult: "" }, reminder: null, parameterSettings: { doTask: { url: "", parameterName: "" }, viewForm: { url: "", parameterName: "" }, startProcess: { url: "", parameterName: "", parameterValue: "" }, handleEmergency: { url: "", parameterName: "" } }, events: { event: [] }, variables: { variable: [] } }, start: { attr: { id: "start" }, g: { x: 50, y: 50, width: 48, height: 48 } }, humanTask: t2, end: { attr: { id: "end" }, g: { x: 500, y: 300, width: 48, height: 48 } } };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import t from "../../../src/i18n/i18n.
|
|
1
|
+
import t from "../../../src/i18n/i18n.js";
|
|
2
2
|
function e() {
|
|
3
3
|
return { attr: { id: "", name: t.global.t("workflowEditor.task.subprocess"), taskTitle: "" }, g: {}, processCode: "", processVersion: "", events: { beforeStart: "", end: false }, transactorSettings: { userCondition: "", additionalCondition: { onlyInCreatorDepartment: false, withCreatorDepartment: false, selectOneFromMultiple: false } }, parameters: { field: [] }, result: { field: [] } };
|
|
4
4
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { resolveComponent as e, openBlock as o, createBlock as i, withCtx as l, createVNode as t, createTextVNode as d, toDisplayString as a, createElementVNode as n } from "vue";
|
|
2
|
-
import r from "../../../_virtual/_plugin-vue_export-helper.
|
|
2
|
+
import r from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
3
3
|
const s = r({ name: "AdminSaveDialog", data: () => ({ dialogVisible: true }), methods: { updateWfVersion() {
|
|
4
4
|
this.$emit("update");
|
|
5
5
|
}, addWfVersion() {
|