workflow-editor 0.9.87-dw → 0.9.87-dw-pv2
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 +7 -7
- package/package.json +2 -2
- package/packages/workflow-editor/src/process-service.js +2 -2
- package/packages/workflow-editor/src/properties-editors/common/common-notice-tool.vue +30 -10
- package/packages/workflow-editor/src/properties-editors/common/notice-reminder.vue +72 -0
- package/packages/workflow-editor/src/properties-editors/common/notice.vue +4 -1
- package/packages/workflow-editor/src/properties-editors/common/reminder.vue +8 -2
- package/packages/workflow-editor/src/properties-editors/human-task.vue +10 -4
- package/packages/workflow-editor/src/properties-editors/process/basic-properties.vue +62 -11
- package/packages/workflow-editor/src/properties-editors/process/selectPage.vue +8 -1
- package/packages/workflow-editor/src/properties-editors/process.vue +10 -4
- package/packages/workflow-editor/src/store/getters.js +2 -1
- package/packages/workflow-editor/src/store/workflow-editor.js +3 -0
- package/packages/workflow-editor/src/workflow-editor.vue +27 -6
- package/src/i18n/i18n.js +1 -1
- package/src/i18n/langs/cn.js +11 -6
- package/src/i18n/langs/en.js +11 -6
package/src/i18n/langs/cn.js
CHANGED
|
@@ -29,7 +29,8 @@ const cn = {
|
|
|
29
29
|
i18nZh: '中文',
|
|
30
30
|
i18nEn: '英文',
|
|
31
31
|
i18nKey: '国际化key',
|
|
32
|
-
subprocessTitle: '子流程流转历史'
|
|
32
|
+
subprocessTitle: '子流程流转历史',
|
|
33
|
+
custom:'自定义'
|
|
33
34
|
},
|
|
34
35
|
workflowEditorMessage: {
|
|
35
36
|
requiredAndMustBeADate: '必填且必须为日期',
|
|
@@ -137,7 +138,10 @@ const cn = {
|
|
|
137
138
|
formField: '表单字段',
|
|
138
139
|
variableName: '变量名',
|
|
139
140
|
variableValue: '变量值',
|
|
140
|
-
selectField: '选择字段'
|
|
141
|
+
selectField: '选择字段',
|
|
142
|
+
taskNotice:'待办通知',
|
|
143
|
+
reminderNotice:'催办通知',
|
|
144
|
+
customMsg:'自定义消息内容'
|
|
141
145
|
},
|
|
142
146
|
// 流程属性
|
|
143
147
|
process: {
|
|
@@ -291,7 +295,7 @@ const cn = {
|
|
|
291
295
|
permissionSettings: '权限设置',
|
|
292
296
|
notificationSettings: '通知设置',
|
|
293
297
|
sendNotificationAfterProcessEnds: '流程结束后发送通知',
|
|
294
|
-
reminderSettings: '
|
|
298
|
+
reminderSettings: '通知与催办',
|
|
295
299
|
parameterSsetting: '参数设置',
|
|
296
300
|
event: '事件',
|
|
297
301
|
processVariables: '流程变量',
|
|
@@ -316,7 +320,8 @@ const cn = {
|
|
|
316
320
|
isNotNull: '不等于Null',
|
|
317
321
|
defaultMailTemplate: '默认邮件模板',
|
|
318
322
|
trustTask: '委托任务',
|
|
319
|
-
subprocessIsSharedForm: '主子流程共用表单'
|
|
323
|
+
subprocessIsSharedForm: '主子流程共用表单',
|
|
324
|
+
systemVersion: '系统版本'
|
|
320
325
|
},
|
|
321
326
|
// 环节属性
|
|
322
327
|
task: {
|
|
@@ -413,7 +418,7 @@ const cn = {
|
|
|
413
418
|
attributesOfManualJudgment: '人工判断的属性',
|
|
414
419
|
linkAttribute: '环节属性',
|
|
415
420
|
autoFillInFieldSettings: '自动填写字段设置',
|
|
416
|
-
reminderSettings: '
|
|
421
|
+
reminderSettings: '通知与催办',
|
|
417
422
|
eventProcessing: '事件处理',
|
|
418
423
|
linkVariable: '环节变量',
|
|
419
424
|
convergedProperties: '汇聚的属性',
|
|
@@ -421,7 +426,7 @@ const cn = {
|
|
|
421
426
|
conditionJudgment: '条件判断',
|
|
422
427
|
cCtask: '抄送任务',
|
|
423
428
|
canItBeRejected: '是否可驳回',
|
|
424
|
-
selectMailTemplate: '
|
|
429
|
+
selectMailTemplate: '选择通知模板',
|
|
425
430
|
selectTemplate: '选择模板'
|
|
426
431
|
},
|
|
427
432
|
// 流向属性
|
package/src/i18n/langs/en.js
CHANGED
|
@@ -29,7 +29,8 @@ const en = {
|
|
|
29
29
|
i18nZh: 'Chinese',
|
|
30
30
|
i18nEn: 'English',
|
|
31
31
|
i18nKey: 'I18n Key',
|
|
32
|
-
subprocessTitle: 'Subprocess History'
|
|
32
|
+
subprocessTitle: 'Subprocess History',
|
|
33
|
+
custom: 'Custom'
|
|
33
34
|
},
|
|
34
35
|
workflowEditorMessage: {
|
|
35
36
|
requiredAndMustBeADate: 'Required And Must Be A Date',
|
|
@@ -137,7 +138,10 @@ const en = {
|
|
|
137
138
|
formField: 'Form Field',
|
|
138
139
|
variableName: 'Variable Name',
|
|
139
140
|
variableValue: 'Variable Value',
|
|
140
|
-
selectField: 'Select Field'
|
|
141
|
+
selectField: 'Select Field',
|
|
142
|
+
taskNotice: 'Task Notice',
|
|
143
|
+
reminderNotice: 'Reminder Notice',
|
|
144
|
+
customMsg: 'Custom Notice Message'
|
|
141
145
|
},
|
|
142
146
|
// 流程属性
|
|
143
147
|
process: {
|
|
@@ -291,7 +295,7 @@ const en = {
|
|
|
291
295
|
permissionSettings: 'Permission Settings',
|
|
292
296
|
notificationSettings: 'Notification Settings',
|
|
293
297
|
sendNotificationAfterProcessEnds: 'Send Notification After Process Ends',
|
|
294
|
-
reminderSettings: 'Reminder Settings',
|
|
298
|
+
reminderSettings: 'Notice And Reminder Settings',
|
|
295
299
|
parameterSsetting: 'Parameter Setting',
|
|
296
300
|
event: 'Event',
|
|
297
301
|
processVariables: 'Process Variables',
|
|
@@ -316,7 +320,8 @@ const en = {
|
|
|
316
320
|
isNotNull: 'Is Not Null',
|
|
317
321
|
defaultMailTemplate: 'Default Mail Template',
|
|
318
322
|
trustTask: 'Trust Task',
|
|
319
|
-
subprocessIsSharedForm: 'Main process and subprocess shared form'
|
|
323
|
+
subprocessIsSharedForm: 'Main process and subprocess shared form',
|
|
324
|
+
systemVersion: 'System Version'
|
|
320
325
|
},
|
|
321
326
|
// 环节属性
|
|
322
327
|
task: {
|
|
@@ -413,7 +418,7 @@ const en = {
|
|
|
413
418
|
attributesOfManualJudgment: 'Attributes of manual Judgment',
|
|
414
419
|
linkAttribute: 'Link Attribute',
|
|
415
420
|
autoFillInFieldSettings: 'Auto Fill In Field Settings',
|
|
416
|
-
reminderSettings: 'Reminder Settings',
|
|
421
|
+
reminderSettings: 'Notice And Reminder Settings',
|
|
417
422
|
eventProcessing: 'Event Processing',
|
|
418
423
|
linkVariable: 'Link Variable',
|
|
419
424
|
convergedProperties: 'Converged Properties',
|
|
@@ -421,7 +426,7 @@ const en = {
|
|
|
421
426
|
conditionJudgment: 'Condition Judgment',
|
|
422
427
|
cCtask: 'CC Task',
|
|
423
428
|
canItBeRejected: 'Can It Be Rejected',
|
|
424
|
-
selectMailTemplate: 'Select
|
|
429
|
+
selectMailTemplate: 'Select Notice Template',
|
|
425
430
|
selectTemplate: 'Select Template'
|
|
426
431
|
},
|
|
427
432
|
// 流向属性
|