workflow-editor 0.9.67-boe6 → 0.9.67-boe7
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/lib/workflow-editor.css +1 -1
- package/lib/workflow-editor.umd.min.js +8 -8
- package/package.json +2 -2
- package/packages/workflow-editor/src/json-object-templates/auto-task.js +70 -0
- package/packages/workflow-editor/src/main/canvas.vue +5 -1
- package/packages/workflow-editor/src/main/wf-history-canvas.vue +3 -1
- package/packages/workflow-editor/src/properties-editors/auto-task/basic-properties.vue +81 -0
- package/packages/workflow-editor/src/properties-editors/auto-task/permission-settings.vue +155 -0
- package/packages/workflow-editor/src/properties-editors/auto-task.vue +73 -0
- package/packages/workflow-editor/src/taches/auto-task.vue +99 -0
- package/packages/workflow-editor/src/util.js +32 -36
- package/packages/workflow-editor/src/workflow-editor.vue +1 -0
- package/src/i18n/langs/cn.js +9 -5
- package/src/i18n/langs/en.js +5 -1
package/src/i18n/langs/cn.js
CHANGED
|
@@ -30,7 +30,7 @@ const cn = {
|
|
|
30
30
|
i18nEn: '英文',
|
|
31
31
|
i18nKey: '国际化key',
|
|
32
32
|
subprocessTitle: '子流程流转历史',
|
|
33
|
-
custom:'自定义'
|
|
33
|
+
custom: '自定义'
|
|
34
34
|
},
|
|
35
35
|
workflowEditorMessage: {
|
|
36
36
|
requiredAndMustBeADate: '必填且必须为日期',
|
|
@@ -139,9 +139,9 @@ const cn = {
|
|
|
139
139
|
variableName: '变量名',
|
|
140
140
|
variableValue: '变量值',
|
|
141
141
|
selectField: '选择字段',
|
|
142
|
-
taskNotice:'待办通知',
|
|
143
|
-
reminderNotice:'催办通知',
|
|
144
|
-
customMsg:'自定义消息内容'
|
|
142
|
+
taskNotice: '待办通知',
|
|
143
|
+
reminderNotice: '催办通知',
|
|
144
|
+
customMsg: '自定义消息内容'
|
|
145
145
|
},
|
|
146
146
|
// 流程属性
|
|
147
147
|
process: {
|
|
@@ -426,7 +426,11 @@ const cn = {
|
|
|
426
426
|
cCtask: '抄送任务',
|
|
427
427
|
canItBeRejected: '是否可驳回',
|
|
428
428
|
selectMailTemplate: '选择通知模板',
|
|
429
|
-
selectTemplate: '选择模板'
|
|
429
|
+
selectTemplate: '选择模板',
|
|
430
|
+
autoTask: '自动任务',
|
|
431
|
+
newAutoTask: '新自动任务',
|
|
432
|
+
propertiesOfAutoTask: '自动任务的属性',
|
|
433
|
+
custombeanName: '自定义bean'
|
|
430
434
|
},
|
|
431
435
|
// 流向属性
|
|
432
436
|
transition: {
|
package/src/i18n/langs/en.js
CHANGED
|
@@ -426,7 +426,11 @@ const en = {
|
|
|
426
426
|
cCtask: 'CC Task',
|
|
427
427
|
canItBeRejected: 'Can It Be Rejected',
|
|
428
428
|
selectMailTemplate: 'Select Notice Template',
|
|
429
|
-
selectTemplate: 'Select Template'
|
|
429
|
+
selectTemplate: 'Select Template',
|
|
430
|
+
autoTask: 'Auto Task',
|
|
431
|
+
newAutoTask: 'New Auto Task',
|
|
432
|
+
propertiesOfAutoTask: 'Properties Of Auto Task',
|
|
433
|
+
custombeanName: 'Custom Bean Name'
|
|
430
434
|
},
|
|
431
435
|
// 流向属性
|
|
432
436
|
transition: {
|