workflow-editor 0.0.3 → 0.0.4-up
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/.vscode/extensions.json +3 -0
- package/README.md +7 -0
- package/index.html +13 -0
- package/lib/workflow-editor.js +23979 -0
- package/package.json +30 -38
- package/packages/index.js +34 -0
- package/packages/plugins/formValidatorUtil.js +533 -0
- package/packages/plugins/index.js +8 -0
- package/packages/workflow-editor/index.js +14 -0
- package/packages/workflow-editor/src/api.js +7 -0
- package/packages/workflow-editor/src/assets/wf-editor-icons.js +2 -0
- package/packages/workflow-editor/src/constant.js +8 -0
- package/packages/workflow-editor/src/json-object-templates/auto-task.js +70 -0
- package/packages/workflow-editor/src/json-object-templates/copy-task.js +72 -0
- package/packages/workflow-editor/src/json-object-templates/decision.js +11 -0
- package/packages/workflow-editor/src/json-object-templates/end.js +14 -0
- package/packages/workflow-editor/src/json-object-templates/fork.js +10 -0
- package/packages/workflow-editor/src/json-object-templates/human-decision.js +9 -0
- package/packages/workflow-editor/src/json-object-templates/human-task.js +199 -0
- package/packages/workflow-editor/src/json-object-templates/join.js +10 -0
- package/packages/workflow-editor/src/json-object-templates/process.js +98 -0
- package/packages/workflow-editor/src/json-object-templates/start.js +13 -0
- package/packages/workflow-editor/src/json-object-templates/subprocess.js +31 -0
- package/packages/workflow-editor/src/json-object-templates/transition.js +26 -0
- package/packages/workflow-editor/src/main/admin-save-dialog.vue +66 -0
- package/packages/workflow-editor/src/main/canvas.vue +483 -0
- package/packages/workflow-editor/src/main/context-menu.vue +132 -0
- package/packages/workflow-editor/src/main/icon-svg.vue +32 -0
- package/packages/workflow-editor/src/main/selection-region.vue +66 -0
- package/packages/workflow-editor/src/main/tache-history-tooltip.vue +38 -0
- package/packages/workflow-editor/src/main/tache-name-input.vue +19 -0
- package/packages/workflow-editor/src/main/tache-subprocess-history-dialog.vue +35 -0
- package/packages/workflow-editor/src/main/toolbox.vue +60 -0
- package/packages/workflow-editor/src/main/wf-history-canvas.vue +304 -0
- package/packages/workflow-editor/src/process-json.js +623 -0
- package/packages/workflow-editor/src/process-service.js +31 -0
- 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/properties-editors/common/additional-condition-utils.js +531 -0
- package/packages/workflow-editor/src/properties-editors/common/additional-condition.vue +276 -0
- package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields-utils.js +34 -0
- package/packages/workflow-editor/src/properties-editors/common/auto-filled-fields.vue +239 -0
- package/packages/workflow-editor/src/properties-editors/common/common-notice-tool.vue +67 -0
- package/packages/workflow-editor/src/properties-editors/common/common-user-condition.vue +241 -0
- package/packages/workflow-editor/src/properties-editors/common/form-fields-utils.js +23 -0
- package/packages/workflow-editor/src/properties-editors/common/form-fields.vue +116 -0
- package/packages/workflow-editor/src/properties-editors/common/i18n-input.vue +75 -0
- package/packages/workflow-editor/src/properties-editors/common/i18n-set-dialog.vue +125 -0
- package/packages/workflow-editor/src/properties-editors/common/notice-reminder.vue +72 -0
- package/packages/workflow-editor/src/properties-editors/common/notice.vue +101 -0
- package/packages/workflow-editor/src/properties-editors/common/reminder.vue +185 -0
- package/packages/workflow-editor/src/properties-editors/common/select-mail-template.vue +83 -0
- package/packages/workflow-editor/src/properties-editors/common/standard-fields.vue +65 -0
- package/packages/workflow-editor/src/properties-editors/common/system-role-tree-inline.vue +347 -0
- package/packages/workflow-editor/src/properties-editors/common/system-role-tree.vue +63 -0
- package/packages/workflow-editor/src/properties-editors/common/task-title.vue +148 -0
- package/packages/workflow-editor/src/properties-editors/common/transactor-settings.vue +233 -0
- package/packages/workflow-editor/src/properties-editors/common/user-selection.vue +386 -0
- package/packages/workflow-editor/src/properties-editors/common/value-selection-dialog.vue +209 -0
- package/packages/workflow-editor/src/properties-editors/common/variables.vue +135 -0
- package/packages/workflow-editor/src/properties-editors/copy-task/basic-properties.vue +90 -0
- package/packages/workflow-editor/src/properties-editors/copy-task/permission-settings.vue +155 -0
- package/packages/workflow-editor/src/properties-editors/copy-task.vue +94 -0
- package/packages/workflow-editor/src/properties-editors/decision.vue +90 -0
- package/packages/workflow-editor/src/properties-editors/fork.vue +72 -0
- package/packages/workflow-editor/src/properties-editors/human-decision.vue +44 -0
- package/packages/workflow-editor/src/properties-editors/human-task/additional-condition-dialog.vue +60 -0
- package/packages/workflow-editor/src/properties-editors/human-task/basic-properties.vue +160 -0
- package/packages/workflow-editor/src/properties-editors/human-task/componentsConfigUtil.js +291 -0
- package/packages/workflow-editor/src/properties-editors/human-task/custom-actions.vue +249 -0
- package/packages/workflow-editor/src/properties-editors/human-task/editable-child-field-setting.vue +392 -0
- package/packages/workflow-editor/src/properties-editors/human-task/editable-child-fields.vue +241 -0
- package/packages/workflow-editor/src/properties-editors/human-task/editable-field-selection.vue +220 -0
- package/packages/workflow-editor/src/properties-editors/human-task/editable-fields.vue +204 -0
- package/packages/workflow-editor/src/properties-editors/human-task/events.vue +59 -0
- package/packages/workflow-editor/src/properties-editors/human-task/permission-settings.vue +207 -0
- package/packages/workflow-editor/src/properties-editors/human-task/selection-conditions.vue +390 -0
- package/packages/workflow-editor/src/properties-editors/human-task.vue +109 -0
- package/packages/workflow-editor/src/properties-editors/join.vue +44 -0
- package/packages/workflow-editor/src/properties-editors/process/basic-properties.vue +273 -0
- package/packages/workflow-editor/src/properties-editors/process/events.vue +76 -0
- package/packages/workflow-editor/src/properties-editors/process/notice-settings.vue +60 -0
- package/packages/workflow-editor/src/properties-editors/process/parameter-settings.vue +95 -0
- package/packages/workflow-editor/src/properties-editors/process/permission-settings.vue +28 -0
- package/packages/workflow-editor/src/properties-editors/process/selectPage.vue +81 -0
- package/packages/workflow-editor/src/properties-editors/process.vue +115 -0
- package/packages/workflow-editor/src/properties-editors/subprocess/basic-properties.vue +199 -0
- package/packages/workflow-editor/src/properties-editors/subprocess/events.vue +26 -0
- package/packages/workflow-editor/src/properties-editors/subprocess/field-mappings.vue +206 -0
- package/packages/workflow-editor/src/properties-editors/subprocess/transactor-settings.vue +64 -0
- package/packages/workflow-editor/src/properties-editors/subprocess.vue +79 -0
- package/packages/workflow-editor/src/properties-editors/transition/basic-properties.vue +53 -0
- package/packages/workflow-editor/src/properties-editors/transition.vue +74 -0
- package/packages/workflow-editor/src/properties-editors/user-condition.js +177 -0
- package/packages/workflow-editor/src/store/getters.js +27 -0
- package/packages/workflow-editor/src/store/workflow-editor.js +125 -0
- package/packages/workflow-editor/src/taches/auto-task.vue +99 -0
- package/packages/workflow-editor/src/taches/common-methods.js +21 -0
- package/packages/workflow-editor/src/taches/copy-task.vue +99 -0
- package/packages/workflow-editor/src/taches/custom-task.vue +88 -0
- package/packages/workflow-editor/src/taches/decision.vue +102 -0
- package/packages/workflow-editor/src/taches/end.vue +76 -0
- package/packages/workflow-editor/src/taches/fork.vue +102 -0
- package/packages/workflow-editor/src/taches/human-decision.vue +102 -0
- package/packages/workflow-editor/src/taches/human-task.vue +113 -0
- package/packages/workflow-editor/src/taches/join.vue +91 -0
- package/packages/workflow-editor/src/taches/joint.vue +177 -0
- package/packages/workflow-editor/src/taches/start.vue +76 -0
- package/packages/workflow-editor/src/taches/subprocess.vue +99 -0
- package/packages/workflow-editor/src/taches/tache-resizer.vue +80 -0
- package/packages/workflow-editor/src/transitions/broken-line.vue +91 -0
- package/packages/workflow-editor/src/transitions/curve-line.vue +91 -0
- package/packages/workflow-editor/src/transitions/straight-line.vue +26 -0
- package/packages/workflow-editor/src/transitions/transition.vue +212 -0
- package/packages/workflow-editor/src/transitions/virtual-transition.vue +43 -0
- package/packages/workflow-editor/src/util.js +489 -0
- package/packages/workflow-editor/src/workflow-editor.vue +606 -0
- package/packages/workflow-editor/src/workflow-history.vue +153 -0
- package/public/vite.svg +1 -0
- package/src/i18n/i18n.js +16 -0
- package/src/i18n/langs/cn.js +509 -0
- package/src/i18n/langs/en.js +551 -0
- package/vite.config.js +36 -0
- package/yarn-error.log +0 -8405
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
ref="wfEditor"
|
|
4
|
+
style="position:relative;height:100%;"
|
|
5
|
+
>
|
|
6
|
+
<div
|
|
7
|
+
class="main"
|
|
8
|
+
>
|
|
9
|
+
<section>
|
|
10
|
+
<wf-history-canvas
|
|
11
|
+
onselectstart="return false"
|
|
12
|
+
:process="process"
|
|
13
|
+
:histories="histories"
|
|
14
|
+
:current-tasks="currentTasks"
|
|
15
|
+
:all-process-i18n="allProcessI18n"
|
|
16
|
+
:show-history="true"
|
|
17
|
+
class="canvas"
|
|
18
|
+
@contextmenu.native.prevent="showContextMenu"
|
|
19
|
+
/>
|
|
20
|
+
</section>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
<script>
|
|
25
|
+
import './assets/wf-editor-icons.js'
|
|
26
|
+
import { mapGetters, mapMutations } from 'vuex'
|
|
27
|
+
import { removeTextProperty, initializeProcessData, processTemplate } from './util'
|
|
28
|
+
import WfHistoryCanvas from './main/wf-history-canvas'
|
|
29
|
+
import convert from 'xml-js'
|
|
30
|
+
import ApiJs from './api'
|
|
31
|
+
export default {
|
|
32
|
+
name: 'WorkflowHistory',
|
|
33
|
+
components: {
|
|
34
|
+
WfHistoryCanvas
|
|
35
|
+
},
|
|
36
|
+
props: {
|
|
37
|
+
// 实例id
|
|
38
|
+
id: {
|
|
39
|
+
type: Number,
|
|
40
|
+
default: null
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
data: function() {
|
|
44
|
+
return {
|
|
45
|
+
process: null,
|
|
46
|
+
histories: [],
|
|
47
|
+
currentTasks: [],
|
|
48
|
+
allProcessI18n: null
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
computed: {
|
|
52
|
+
...mapGetters(
|
|
53
|
+
'wfEditor', ['componentToDraw', 'taches', 'transitions', 'contextMenuVisible']
|
|
54
|
+
),
|
|
55
|
+
...mapGetters([
|
|
56
|
+
'sidebar'
|
|
57
|
+
])
|
|
58
|
+
|
|
59
|
+
},
|
|
60
|
+
watch: {
|
|
61
|
+
|
|
62
|
+
},
|
|
63
|
+
created: function() {
|
|
64
|
+
this.showHistory()
|
|
65
|
+
},
|
|
66
|
+
mounted: function() {
|
|
67
|
+
|
|
68
|
+
},
|
|
69
|
+
methods: {
|
|
70
|
+
...ApiJs,
|
|
71
|
+
...mapMutations('wfEditor', [
|
|
72
|
+
'setComponentToDraw',
|
|
73
|
+
'clearCanvas',
|
|
74
|
+
'setContextMenuVisible',
|
|
75
|
+
'setProcessI18n'
|
|
76
|
+
]),
|
|
77
|
+
showHistory() {
|
|
78
|
+
// 打开或新建流程图时先清空画布,开发过程中代码热更新的时候可以避免节点重复
|
|
79
|
+
this.clearCanvas()
|
|
80
|
+
if (this.id) {
|
|
81
|
+
this.$http.get(this.baseAPI + '/wf-editor/i18n-settings/get-bundle-info?workflowId=' + this.id).then(processI18n => {
|
|
82
|
+
this.allProcessI18n = processI18n
|
|
83
|
+
const url = this.baseAPI + '/wf-editor/instance-histories/' + this.id
|
|
84
|
+
this.$http.get(url).then(data => {
|
|
85
|
+
this.initProcessByXml(data.xml)
|
|
86
|
+
let mainBundleCode
|
|
87
|
+
if (data.histories && data.histories.length > 0) {
|
|
88
|
+
mainBundleCode = data.histories[0].bundleCode
|
|
89
|
+
}
|
|
90
|
+
if (!mainBundleCode && data.currentTasks && data.currentTasks.length > 0) {
|
|
91
|
+
mainBundleCode = data.currentTasks[0].bundleCode
|
|
92
|
+
}
|
|
93
|
+
if (mainBundleCode) {
|
|
94
|
+
this.setProcessI18n(processI18n[mainBundleCode])
|
|
95
|
+
}
|
|
96
|
+
this.histories = data.histories
|
|
97
|
+
this.currentTasks = data.currentTasks
|
|
98
|
+
})
|
|
99
|
+
})
|
|
100
|
+
} else {
|
|
101
|
+
this.process = processTemplate.newProcess()
|
|
102
|
+
initializeProcessData(this.process)
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
showContextMenu(event) {
|
|
106
|
+
|
|
107
|
+
},
|
|
108
|
+
initProcessByXml(xml) {
|
|
109
|
+
const options = { nativeType: true, attributesKey: 'attr', compact: true, ignoreComment: true, spaces: 4 }
|
|
110
|
+
const processObj = convert.xml2js(xml, options)
|
|
111
|
+
removeTextProperty(processObj.process)
|
|
112
|
+
this.process = processObj.process
|
|
113
|
+
|
|
114
|
+
initializeProcessData(this.process)
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
</script>
|
|
119
|
+
<style lang="scss" scoped>
|
|
120
|
+
.main{
|
|
121
|
+
position: relative;
|
|
122
|
+
display:flex;
|
|
123
|
+
height: 100%;
|
|
124
|
+
width:100%;
|
|
125
|
+
}
|
|
126
|
+
.canvas-container{
|
|
127
|
+
position: relative;
|
|
128
|
+
// display:flex;
|
|
129
|
+
height: 100%;
|
|
130
|
+
width:100%;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
section{
|
|
134
|
+
overflow: hidden;
|
|
135
|
+
width:100%;
|
|
136
|
+
height:100%;
|
|
137
|
+
padding: 0;
|
|
138
|
+
// min-height: 500px;
|
|
139
|
+
}
|
|
140
|
+
.canvas{
|
|
141
|
+
overflow: auto;
|
|
142
|
+
height:100%;
|
|
143
|
+
// border:1px solid red;
|
|
144
|
+
// background: #ffffff;
|
|
145
|
+
padding: 0;
|
|
146
|
+
min-height: 500px;
|
|
147
|
+
|
|
148
|
+
}
|
|
149
|
+
.canvas :deep(.draggable){
|
|
150
|
+
cursor: default;
|
|
151
|
+
}
|
|
152
|
+
</style>
|
|
153
|
+
|
package/public/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/src/i18n/i18n.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { createI18n } from 'vue-i18n'
|
|
2
|
+
import en from './langs/en'
|
|
3
|
+
import cn from './langs/cn'
|
|
4
|
+
|
|
5
|
+
const messages = {
|
|
6
|
+
en: en,
|
|
7
|
+
cn: cn,
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
const i18n = createI18n({
|
|
11
|
+
locale: 'cn', // 当前语言
|
|
12
|
+
messages,
|
|
13
|
+
legacy: false,
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
export default i18n
|
|
@@ -0,0 +1,509 @@
|
|
|
1
|
+
const cn = {
|
|
2
|
+
workflowEditorPublicModel: {
|
|
3
|
+
add: '添加',
|
|
4
|
+
insert: '插入',
|
|
5
|
+
delete: '删除',
|
|
6
|
+
viewConditions: '查看条件',
|
|
7
|
+
agree: '同意',
|
|
8
|
+
disagree: '不同意',
|
|
9
|
+
andOr: '并且/或者',
|
|
10
|
+
mail: '邮件',
|
|
11
|
+
message: '短信',
|
|
12
|
+
App: 'App',
|
|
13
|
+
dingding: '钉钉',
|
|
14
|
+
determine: '确定',
|
|
15
|
+
cancel: '取消',
|
|
16
|
+
choice: '选择',
|
|
17
|
+
empty: '清空',
|
|
18
|
+
save: '保存',
|
|
19
|
+
export: '导出',
|
|
20
|
+
open: '打开',
|
|
21
|
+
return: '返回',
|
|
22
|
+
flowChart: '流程图',
|
|
23
|
+
close: '关闭',
|
|
24
|
+
selectPage: '选择页面',
|
|
25
|
+
search: '查询',
|
|
26
|
+
adminSave: '管理员保存',
|
|
27
|
+
tipTitle: '提示',
|
|
28
|
+
i18nSet: '国际化设置',
|
|
29
|
+
i18nZh: '中文',
|
|
30
|
+
i18nEn: '英文',
|
|
31
|
+
i18nKey: '国际化key',
|
|
32
|
+
subprocessTitle: '子流程流转历史',
|
|
33
|
+
custom: '自定义',
|
|
34
|
+
},
|
|
35
|
+
workflowEditorMessage: {
|
|
36
|
+
requiredAndMustBeADate: '必填且必须为日期',
|
|
37
|
+
requiredAndMustBeAnInteger: '必填且必须为整数',
|
|
38
|
+
requiredAndMustBeDecimal: '必填且必须为小数',
|
|
39
|
+
mustFill: '必填',
|
|
40
|
+
recordLine: '第{row}行记录',
|
|
41
|
+
pageRecordLine: '第{pageNum}页第{row}行记录',
|
|
42
|
+
currentHandlingPersonnel: '当前办理人员',
|
|
43
|
+
pleaseSelect: '请选择',
|
|
44
|
+
pleaseSelectARow: '请选中一行',
|
|
45
|
+
conditionsHaveNotBeenSet: '还未设置条件',
|
|
46
|
+
viewConditions: '查看条件',
|
|
47
|
+
fieldSettings: '字段设置',
|
|
48
|
+
valueSetting: '值设置',
|
|
49
|
+
pleaseEnterContent: '请输入内容',
|
|
50
|
+
theFieldNameOrFieldValueInLineCannotBeEmpty:
|
|
51
|
+
'第{row}行的字段名或者字段值不能为空',
|
|
52
|
+
fieldNameCannotBeEmpty: '字段名不能为空',
|
|
53
|
+
fieldValueCannotBeEmpty: '字段值不能为空',
|
|
54
|
+
pleaseEnterASubject: '请输入主题',
|
|
55
|
+
selectStandardFields: '选择标准字段',
|
|
56
|
+
pleaseEnterTheRoleName: '请输入角色名称',
|
|
57
|
+
queryResultIsEmpty: '查询结果为空',
|
|
58
|
+
selectRole: '选择角色',
|
|
59
|
+
enterText: '输入文字',
|
|
60
|
+
selectField: '选择字段',
|
|
61
|
+
pleaseSelectPersonnel: '请选择人员',
|
|
62
|
+
pleaseSelectAValue: '请选择值',
|
|
63
|
+
pleaseSelectAValueInTheCurrentTab: '请在当前页签中选中一个值',
|
|
64
|
+
variableNameCannotBeEmpty: '变量名不能为空',
|
|
65
|
+
variableValueCannotBeEmpty: '变量值不能为空',
|
|
66
|
+
variableNameOrValueOnLineCannotBeEmpty:
|
|
67
|
+
'第{row}行的变量名或者变量值不能为空',
|
|
68
|
+
whenThereAreMultipleManagers: '多个办理人时',
|
|
69
|
+
duplicateOperationTypeWithLinePleaseReselect:
|
|
70
|
+
'与第{row}行的操作类型重复了,请重新选择',
|
|
71
|
+
theOperationTypeOrNameInLineIsEmpty: '第{row}行的操作类型或者名称为空',
|
|
72
|
+
readOnly: '只读',
|
|
73
|
+
pleaseEnterFieldName: '请输入字段名',
|
|
74
|
+
dataInLineCannotBeEmpty: '第{row}行的{data1}或{data2}不能为空',
|
|
75
|
+
dataCannotBeEmpty: '{data}不能为空',
|
|
76
|
+
theStartAndEndOfTheFlowDirectionCannotBeTheSame: '流向的起点和终点不能相同',
|
|
77
|
+
onlyConditionJudgmentBranchAndManualJudgmentCanHaveMultipleOutboundFlows:
|
|
78
|
+
'只有条件判断、分支以及人工判断才能有多条外出流向',
|
|
79
|
+
startAndEndNodesCannotBeConnectedDirectly: '开始节点和结束节点不能直接相连',
|
|
80
|
+
endNodeCannotHaveOutFlowDirection: '结束节点不能有外出流向',
|
|
81
|
+
itIsTheSameAsTheExistingLink: '与已有环节:{name}的编码重复',
|
|
82
|
+
updateSuccessful: '更新成功',
|
|
83
|
+
savedSuccessfully: '保存成功',
|
|
84
|
+
exportSucceeded: '导出成功',
|
|
85
|
+
pleaseSelectRole: '请选择角色',
|
|
86
|
+
subTableMustInputDatas: '[{subTable}] 子表必须录入数据',
|
|
87
|
+
pleaseEnterTheNameOrCode: '请输入字段名或字段描述',
|
|
88
|
+
updateVersionSuccessful: '成功更新版本',
|
|
89
|
+
addVersionSuccessful: '成功增加版本',
|
|
90
|
+
adminSaveTip: '有以下几种情况时必须增加版本:',
|
|
91
|
+
adminSaveTip1: '1、修改了流程名称或编码',
|
|
92
|
+
adminSaveTip2: '2、修改了节点名称或编码',
|
|
93
|
+
adminSaveTip3: '3、增加了节点或流向',
|
|
94
|
+
adminSaveTip4: '4、移除了节点或流向',
|
|
95
|
+
adminSaveTip5: '请选择“增加版本”或“更新当前版本”?',
|
|
96
|
+
updateVersion: '更新当前版本',
|
|
97
|
+
addVersion: '增加版本',
|
|
98
|
+
pleaseInputCode: '请先输入编码,再做国际化配置',
|
|
99
|
+
blankFieldNameOrValue: '字段名或值有空白',
|
|
100
|
+
},
|
|
101
|
+
workflowEditor: {
|
|
102
|
+
// 主页面
|
|
103
|
+
main: {
|
|
104
|
+
tacheType: '环节类型',
|
|
105
|
+
straightLine: '直线',
|
|
106
|
+
curveLine: '曲线',
|
|
107
|
+
brokenLine: '折线',
|
|
108
|
+
},
|
|
109
|
+
// 公共属性
|
|
110
|
+
common: {
|
|
111
|
+
remove: '移除',
|
|
112
|
+
attribute: '属性',
|
|
113
|
+
fieldName: '字段名(*)',
|
|
114
|
+
operator: '操作符',
|
|
115
|
+
value: '值(*)',
|
|
116
|
+
name: '字段名',
|
|
117
|
+
fieldValue: '字段值',
|
|
118
|
+
separator: '分隔符',
|
|
119
|
+
fillInMethod: '填写方式',
|
|
120
|
+
cover: '覆盖',
|
|
121
|
+
append: '追加',
|
|
122
|
+
insertToFront: '插入到最前',
|
|
123
|
+
fillInTime: '填写时间',
|
|
124
|
+
fillInBeforeHandling: '办理前填写',
|
|
125
|
+
fillInAfterHandling: '办理后填写',
|
|
126
|
+
type: '类别(*)',
|
|
127
|
+
user: '用户',
|
|
128
|
+
role: '角色',
|
|
129
|
+
department: '部门',
|
|
130
|
+
workgroup: '工作组',
|
|
131
|
+
selectFormField: '选择表单字段',
|
|
132
|
+
notificationMethod: '通知方式',
|
|
133
|
+
addressee: '收件人',
|
|
134
|
+
theme: '主题',
|
|
135
|
+
content: '内容',
|
|
136
|
+
notifyPersonnel: '通知人员',
|
|
137
|
+
selectusers: '选择用户',
|
|
138
|
+
selectDepartment: '选择部门',
|
|
139
|
+
selectTeam: '选择工作组',
|
|
140
|
+
selectRole: '选择角色',
|
|
141
|
+
organizationStructure: '组织结构',
|
|
142
|
+
formField: '表单字段',
|
|
143
|
+
variableName: '变量名',
|
|
144
|
+
variableValue: '变量值',
|
|
145
|
+
selectField: '选择字段',
|
|
146
|
+
taskNotice: '待办通知',
|
|
147
|
+
reminderNotice: '催办通知',
|
|
148
|
+
customMsg: '自定义消息内容',
|
|
149
|
+
},
|
|
150
|
+
// 流程属性
|
|
151
|
+
process: {
|
|
152
|
+
processInitiator: '流程发起人',
|
|
153
|
+
processInitiatorRole: '流程发起人角色',
|
|
154
|
+
processInitiatorDepartment: '流程发起人部门',
|
|
155
|
+
processInitiatorSuperiorDepartment: '流程发起人上级部门',
|
|
156
|
+
processInitiatorTopDepartment: '流程发起人顶级部门',
|
|
157
|
+
processInitiatorWorkingGroup: '流程发起人工作组',
|
|
158
|
+
nameOfTheDirectSuperiorOfTheProcessInitiator: '流程发起人直属上级姓名',
|
|
159
|
+
processInitiatorsDirectSuperiorDepartment: '流程发起人直属上级部门',
|
|
160
|
+
directSuperiorRoleOfProcessInitiator: '流程发起人直属上级角色',
|
|
161
|
+
ProcessInitiatorsImmediateSuperiorWorkingGroup:
|
|
162
|
+
'流程发起人直属上级工作组',
|
|
163
|
+
nameOfCurrentHandler: '当前办理人姓名',
|
|
164
|
+
currentHandlerRole: '当前办理人角色',
|
|
165
|
+
currentHandlerDepartment: '当前办理人部门',
|
|
166
|
+
currentHandlerSuperiorDepartment: '当前办理人上级部门',
|
|
167
|
+
topDepartmentOfCurrentHandler: '当前办理人顶级部门',
|
|
168
|
+
currentHandlerWorkingGroup: '当前办理人工作组',
|
|
169
|
+
nameOfTheImmediateSuperiorOfTheCurrentHandler: '当前办理人直属上级姓名',
|
|
170
|
+
currentHandlerDirectSuperiorDepartment: '当前办理人直属上级部门',
|
|
171
|
+
currentManagerDirectSuperiorRole: '当前办理人直属上级角色',
|
|
172
|
+
workingGroupDirectlyUnderTheCurrentHandler: '当前办理人直属上级工作组',
|
|
173
|
+
topDepartments: '顶级部门',
|
|
174
|
+
approvalResults: '审批结果',
|
|
175
|
+
totalNnumberOfPersonsWhoDisagreeWithTheCountersignature:
|
|
176
|
+
'会签不同意人员总数',
|
|
177
|
+
totalNumberOfCountersignedAndAgreedPersonnel: '会签同意人员总数',
|
|
178
|
+
percentageOfPersonsWhoDisagreeWithTheCountersignature:
|
|
179
|
+
'会签不同意人员百分比',
|
|
180
|
+
percentageOfCountersignedAndAgreedPersonnel: '会签同意人员百分比',
|
|
181
|
+
percentageOfAbstentions: '弃权票百分比',
|
|
182
|
+
percentageOfVotesAgainst: '反对票百分比',
|
|
183
|
+
percentageOfAffirmativeVotes: '赞成票百分比',
|
|
184
|
+
totalNumberOfAbstentions: '弃权票总数',
|
|
185
|
+
totalVotesAgainst: '反对票总数',
|
|
186
|
+
totalNumberOfAffirmativeVotes: '赞成票总数',
|
|
187
|
+
standardFields: '标准字段',
|
|
188
|
+
perhaps: '或者',
|
|
189
|
+
also: '并且',
|
|
190
|
+
greaterThan: '大于',
|
|
191
|
+
lessThan: '小于',
|
|
192
|
+
beEqualTo: '等于',
|
|
193
|
+
notGreaterThan: '不大于',
|
|
194
|
+
notLessThan: '不小于',
|
|
195
|
+
notEqualTo: '不等于',
|
|
196
|
+
contain: '包含',
|
|
197
|
+
notIncluded: '不包含',
|
|
198
|
+
laterThan: '晚于',
|
|
199
|
+
earlierThan: '早于',
|
|
200
|
+
noLaterThan: '不晚于',
|
|
201
|
+
noEarlierThan: '不早于',
|
|
202
|
+
handlingTimeOfThisLink: '本环节办理时间',
|
|
203
|
+
handlerIDOfThisLink: '本环节办理人id',
|
|
204
|
+
currentHandlerPrincipalDepartmentID: '当前办理人正职部门id',
|
|
205
|
+
iDOfTheImmediateSuperiorOfTheCurrentHandler: '当前办理人直属上级id',
|
|
206
|
+
iDOfTheSuperiorDepartmentDirectlyUnderTheCurrentHandler:
|
|
207
|
+
'当前办理人直属上级正职部门id',
|
|
208
|
+
loginNameOfTheHandlerInThisLink: '本环节办理人登录名',
|
|
209
|
+
NameOfCurrentHandler: '当前办理人姓名',
|
|
210
|
+
CurrentHandlerDepartment: '当前办理人部门',
|
|
211
|
+
CurrentHandlerDepartmentID: '当前办理人部门id',
|
|
212
|
+
CurrentManagersPrincipalDepartment: '当前办理人正职部门',
|
|
213
|
+
iDOfSsuperiorDepartmentOfCurrentHandler: '当前办理人上级部门id',
|
|
214
|
+
CurrentHandlersSuperiorDepartment: '当前办理人上级部门',
|
|
215
|
+
TopDepartmentOfCurrentHandler: '当前办理人顶级部门',
|
|
216
|
+
TopDepartmentIDOfCurrentHandler: '当前办理人顶级部门id',
|
|
217
|
+
CurrentHandlerRole: '当前办理人角色',
|
|
218
|
+
CurrentHandlerRoleID: '当前办理人角色id',
|
|
219
|
+
CurrentHandlerWorkingGroupID: '当前办理人工作组id',
|
|
220
|
+
LoginNameOfTheImmediateSuperiorOfTheCurrentHandler:
|
|
221
|
+
'当前办理人直属上级登录名',
|
|
222
|
+
currentHandlersDirectSuperiorDepartment: '当前办理人直属上级部门',
|
|
223
|
+
currentManagersDirectSuperiorDepartment: '当前办理人直属上级正职部门',
|
|
224
|
+
currentManagersDirectSuperiorRole: '当前办理人直属上级角色',
|
|
225
|
+
currentHandlersDirectSuperiorRoleID: '当前办理人直属上级角色id',
|
|
226
|
+
currentManagersDirectSuperiorWork: '当前办理人直属上级工作',
|
|
227
|
+
iDOfTheWorkingGroupDirectlyUnderTheCurrentHandler:
|
|
228
|
+
'当前办理人直属上级工作组id',
|
|
229
|
+
operationsPerformedInThisPhase: '本环节执行的操作',
|
|
230
|
+
handlerIDOfThePreviousLink: '上一环节办理人id',
|
|
231
|
+
lastLinkHandlerLogin: '上一环节办理人登录名',
|
|
232
|
+
nameOfHandlerInThePreviousLink: '上一环节办理人姓名',
|
|
233
|
+
currentManagersIdDirectlyUnderTheSuperior: '当前办理人直属上级部门id',
|
|
234
|
+
appointmentOfHandlerInThePreviousLink: '上一环节办理人指定',
|
|
235
|
+
personSpecifiedInFormField: '表单字段中指定的人员',
|
|
236
|
+
filterByCriteria: '按条件筛选',
|
|
237
|
+
additionalConditions: '附加条件',
|
|
238
|
+
handlingYyThePersonnelOfTheDepartmentOfTheInitiator:
|
|
239
|
+
'发起人所在部门人员办理',
|
|
240
|
+
personnelOfTheDepartmentWhereTheInitiatorWorksParticipateInTheHandling:
|
|
241
|
+
'发起人所在部门人员参与办理',
|
|
242
|
+
selectSpecificHandler: '选择具体办理人',
|
|
243
|
+
selectOneFromDept: '同一部门仅需一人办理',
|
|
244
|
+
generateOneInstanceFromDept: '同一部门生成一个实例',
|
|
245
|
+
selectionMethod: '选择方式',
|
|
246
|
+
manualSelection: '人工选择',
|
|
247
|
+
autoSelect: '自动选择',
|
|
248
|
+
callbackURL: '回调URL',
|
|
249
|
+
cannotBeEmpty: '不能为空',
|
|
250
|
+
selectURL: '选人URL',
|
|
251
|
+
fieldName: '字段名称',
|
|
252
|
+
processAdministrator: '流程管理员',
|
|
253
|
+
currentHandler: '当前办理人',
|
|
254
|
+
allHandlingPersonnel: '所有办理人员',
|
|
255
|
+
designatedPersonnel: '指定人员',
|
|
256
|
+
listOfDesignatedPersons: '指定人员列表',
|
|
257
|
+
processName: '流程名称',
|
|
258
|
+
processCode: '流程编码',
|
|
259
|
+
creater: '创建人',
|
|
260
|
+
correspondingForm: '对应表单',
|
|
261
|
+
processType: '流程类型',
|
|
262
|
+
system: '所属系统',
|
|
263
|
+
affiliatedBranch: '所属分支机构',
|
|
264
|
+
customCategory: '自定义类别',
|
|
265
|
+
initiationProcess: '发起流程',
|
|
266
|
+
deleteProcess: '删除流程',
|
|
267
|
+
cancelProcess: '取消流程',
|
|
268
|
+
endProcess: '结束流程',
|
|
269
|
+
pauseProcess: '暂停流程',
|
|
270
|
+
continueTheProcess: '继续流程',
|
|
271
|
+
jumpLink: '跳转环节',
|
|
272
|
+
modificationHandler: '修改办理人',
|
|
273
|
+
addHandler: '增加办理人',
|
|
274
|
+
decreaseOofHandler: '减少办理人',
|
|
275
|
+
appointedTask: '指派任务',
|
|
276
|
+
returnTask: '退回任务',
|
|
277
|
+
retrieveTask: '取回任务',
|
|
278
|
+
processTaskParameterSettings: '办理任务参数设置',
|
|
279
|
+
uRLForProcessingTask: '办理任务的url',
|
|
280
|
+
parametersForReceivingTaskID: '接收任务id的参数',
|
|
281
|
+
viewFormParameterSettings: '查看表单参数设置',
|
|
282
|
+
viewTheURLOfTheForm: '查看表单的url',
|
|
283
|
+
parametersOfReceivingEntityID: '接收实体id的参数',
|
|
284
|
+
emergencyTreatmentParameterSetting: '应急处理参数设置',
|
|
285
|
+
uRLOfEmergencyHandling: '应急处理的url',
|
|
286
|
+
initiateProcessParameterSettings: '发起流程参数设置',
|
|
287
|
+
uRLOfTheInitiatingProcess: '发起流程的url',
|
|
288
|
+
parametersForReceivingProcessName: '接收流程名称的参数',
|
|
289
|
+
customParameterValue: '自定义参数值',
|
|
290
|
+
ViewFlowHistoryPersonnel: '查看流转历史人员',
|
|
291
|
+
ViewCountersignatureResultPersonnel: '查看会签结果人员',
|
|
292
|
+
ViewVotingResultsBy: '查看投票结果人员',
|
|
293
|
+
name: '名称',
|
|
294
|
+
code: '编码',
|
|
295
|
+
subprocess: '子流程',
|
|
296
|
+
transferValueFromMainFormToSubForm: '主表单给子表单传值',
|
|
297
|
+
fieldsOfTheMainForm: '主表单的字段',
|
|
298
|
+
fieldsOfSubform: '子表单的字段',
|
|
299
|
+
subformReturnsResultsToMainForm: '子表单返回结果给主表单',
|
|
300
|
+
eventsTriggeredBeforeStartingASubprocess: '启动子流程前事件',
|
|
301
|
+
triggerSubprocessEndEvent: '触发子流程结束事件',
|
|
302
|
+
setTheHandlerOfTheFirstPhaseOfTheSubProcess: '设置子流程第一环节办理人',
|
|
303
|
+
keepTheHandlerUnchangedWhenTheTargetLinkIsHandledRepeatedly:
|
|
304
|
+
'目标环节重复办理时保持办理人不变',
|
|
305
|
+
branchingCondition: '分支条件',
|
|
306
|
+
processProperties: '流程属性',
|
|
307
|
+
basicProperties: '基本属性',
|
|
308
|
+
permissionSettings: '权限设置',
|
|
309
|
+
notificationSettings: '通知设置',
|
|
310
|
+
sendNotificationAfterProcessEnds: '流程结束后发送通知',
|
|
311
|
+
reminderSettings: '通知与催办',
|
|
312
|
+
parameterSsetting: '参数设置',
|
|
313
|
+
event: '事件',
|
|
314
|
+
processVariables: '流程变量',
|
|
315
|
+
propertiesOfSubprocesses: '子流程的属性',
|
|
316
|
+
settingOfHandler: '办理人设置',
|
|
317
|
+
eventProcessing: '事件处理',
|
|
318
|
+
sponsorsImmediateSuperior: '发起人直属上级',
|
|
319
|
+
sponsorsSuperiorDepartment: '发起人上级部门',
|
|
320
|
+
sponsorTopDepartment: '发起人顶级部门',
|
|
321
|
+
superiorDepartmentDirectlyUnderTheInitiator: '发起人直属上级部门',
|
|
322
|
+
sponsorsImmediateSuperiorWorkingGroup: '发起人直属上级工作组',
|
|
323
|
+
lastLinkHandlerDepartment: '上一环节办理人部门',
|
|
324
|
+
previousLinkHandlerSuperiorDepartment: '上一环节办理人上级部门',
|
|
325
|
+
topDepartmentOfHandlerInThePreviousLink: '上一环节办理人顶级部门',
|
|
326
|
+
previousLinkHandlersDirectSuperiorDepartment:
|
|
327
|
+
'上一环节办理人直属上级部门',
|
|
328
|
+
previousLinkHandlerWorkingGroup: '上一环节办理人工作组',
|
|
329
|
+
workingGroupDirectlyUnderTheManagerInThePreviousLink:
|
|
330
|
+
'上一环节办理人直属上级工作组',
|
|
331
|
+
getSubprocessEntityBean: '获得子流程实体bean',
|
|
332
|
+
getSubprocessEntityBeanPlaceholder:
|
|
333
|
+
'格式为:xxxServiceImpl,例如:exampleServiceImpl',
|
|
334
|
+
getSubprocessEntityBeanInfo:
|
|
335
|
+
'该bean需要实现接口tech.imatrix.wf.core.OnStartingSubProcess',
|
|
336
|
+
isNull: '等于Null',
|
|
337
|
+
isNotNull: '不等于Null',
|
|
338
|
+
defaultMailTemplate: '默认邮件模板',
|
|
339
|
+
trustTask: '委托任务',
|
|
340
|
+
subprocessIsSharedForm: '主子流程共用表单',
|
|
341
|
+
},
|
|
342
|
+
// 环节属性
|
|
343
|
+
task: {
|
|
344
|
+
newCc: '新抄送',
|
|
345
|
+
judge: '判断',
|
|
346
|
+
end: '结束',
|
|
347
|
+
branch: '分支',
|
|
348
|
+
manualJudgment: '人工判断',
|
|
349
|
+
newTask: '新任务',
|
|
350
|
+
converge: '汇聚',
|
|
351
|
+
newProcess: '新流程',
|
|
352
|
+
start: '开始',
|
|
353
|
+
subprocess: '子流程',
|
|
354
|
+
needToBeUrged: '需要催办',
|
|
355
|
+
urgingMethod: '催办方式',
|
|
356
|
+
timeLimitForHandling: '办理时限',
|
|
357
|
+
day: '天',
|
|
358
|
+
urgingInterval: '催办间隔',
|
|
359
|
+
hour: '小时',
|
|
360
|
+
alwaysUrging: '一直催办',
|
|
361
|
+
limitedUrging: '限次催办',
|
|
362
|
+
timesOfUrging: '催办次数',
|
|
363
|
+
includingHandoverPersonnel: '包含移交人员',
|
|
364
|
+
handoverPersonnel: '移交人员',
|
|
365
|
+
includeNotifyPeople: '包含通知人员',
|
|
366
|
+
name: '名称',
|
|
367
|
+
code: '编码',
|
|
368
|
+
taskTitle: '任务标题',
|
|
369
|
+
emailNotification: '邮件通知',
|
|
370
|
+
handlingPage: '办理页面',
|
|
371
|
+
remarks: '备注',
|
|
372
|
+
allowViews: '允许查看意见',
|
|
373
|
+
allowToViewCountersignatureResults: '允许查看会签结果',
|
|
374
|
+
allowToViewVotingResults: '允许查看投票结果',
|
|
375
|
+
allowToViewFlowHistory: '允许查看流转历史',
|
|
376
|
+
allowFormsToPrint: '允许打印表单',
|
|
377
|
+
attachmentAuthority: '附件权限',
|
|
378
|
+
downloadAttachment: '下载附件',
|
|
379
|
+
bodyPermission: '正文权限(暂不开放)',
|
|
380
|
+
additionalConditions: '附加条件',
|
|
381
|
+
setConditions: '设置条件',
|
|
382
|
+
HandlingMethod: '办理方式',
|
|
383
|
+
editorial: '编辑式',
|
|
384
|
+
approvalType: '审批式',
|
|
385
|
+
countersign: '会签式',
|
|
386
|
+
voting: '投票式',
|
|
387
|
+
anyOneCanHandleIt: '任意一人办理即可',
|
|
388
|
+
forAll: '所有人均需办理',
|
|
389
|
+
passRate: '通过率',
|
|
390
|
+
modifyOperationName: '修改操作名称',
|
|
391
|
+
operationType: '操作类型',
|
|
392
|
+
visibleOrNot: '是否可见',
|
|
393
|
+
save: '保存',
|
|
394
|
+
submission: '提交',
|
|
395
|
+
agree: '同意',
|
|
396
|
+
disagree: '不同意',
|
|
397
|
+
favor: '赞成',
|
|
398
|
+
opposition: '反对',
|
|
399
|
+
waiver: '弃权',
|
|
400
|
+
receive: '领取',
|
|
401
|
+
giveUp: '放弃',
|
|
402
|
+
additionalSignature: '加签',
|
|
403
|
+
reductionOfSignature: '减签',
|
|
404
|
+
assignTask: '指派',
|
|
405
|
+
copyTask: '抄送',
|
|
406
|
+
retrieveTask: '取回',
|
|
407
|
+
exportReport: '导出报告',
|
|
408
|
+
readTask: '阅',
|
|
409
|
+
selectEditableField: '选择可编辑字段',
|
|
410
|
+
optionalField: '可选字段',
|
|
411
|
+
selectedFields: '已选字段',
|
|
412
|
+
editingMethod: '编辑方式',
|
|
413
|
+
propertyName: '属性名',
|
|
414
|
+
condition: '条件',
|
|
415
|
+
nothing: '无',
|
|
416
|
+
beforeSubmission: '提交前',
|
|
417
|
+
executionURL: '执行url',
|
|
418
|
+
errorMessage: '出错信息',
|
|
419
|
+
afterSubmission: '提交后',
|
|
420
|
+
allowEditingForms: '允许编辑表单',
|
|
421
|
+
commentsAllowed: '允许填写意见',
|
|
422
|
+
commentsAreRequired: '必须填写意见',
|
|
423
|
+
deletePermission: '删除权限',
|
|
424
|
+
addAttachment: '添加附件',
|
|
425
|
+
deleteAttachment: '删除附件',
|
|
426
|
+
propertiesOfCCTask: '抄送任务的属性',
|
|
427
|
+
basicProperties: '基本属性',
|
|
428
|
+
settingOfHandler: '办理人设置',
|
|
429
|
+
permissionSettings: '权限设置',
|
|
430
|
+
attributeOfConditionJudgment: '条件判断的属性',
|
|
431
|
+
allBranchFlows: '所有分支流向',
|
|
432
|
+
targetLink: '目标环节',
|
|
433
|
+
propertiesOfBranches: '分支的属性',
|
|
434
|
+
attributesOfManualJudgment: '人工判断的属性',
|
|
435
|
+
linkAttribute: '环节属性',
|
|
436
|
+
autoFillInFieldSettings: '自动填写字段设置',
|
|
437
|
+
reminderSettings: '通知与催办',
|
|
438
|
+
eventProcessing: '事件处理',
|
|
439
|
+
linkVariable: '环节变量',
|
|
440
|
+
convergedProperties: '汇聚的属性',
|
|
441
|
+
humanTask: '人工任务',
|
|
442
|
+
conditionJudgment: '条件判断',
|
|
443
|
+
cCtask: '抄送任务',
|
|
444
|
+
canItBeRejected: '是否可驳回',
|
|
445
|
+
selectMailTemplate: '选择通知模板',
|
|
446
|
+
selectTemplate: '选择模板',
|
|
447
|
+
autoTask: '自动任务',
|
|
448
|
+
newAutoTask: '新自动任务',
|
|
449
|
+
propertiesOfAutoTask: '自动任务的属性',
|
|
450
|
+
custombeanName: '自定义bean',
|
|
451
|
+
},
|
|
452
|
+
// 流向属性
|
|
453
|
+
transition: {
|
|
454
|
+
flowProperties: '流向属性',
|
|
455
|
+
basicProperties: '基本属性',
|
|
456
|
+
notificationSettings: '通知设置',
|
|
457
|
+
sendNotificationAfterFlow: '流过后发送通知',
|
|
458
|
+
autoFillInFieldSettings: '自动填写字段设置',
|
|
459
|
+
eventProcessing: '事件处理',
|
|
460
|
+
triggerFlowThroughEvent: '触发流过事件',
|
|
461
|
+
beanName: 'bean名称',
|
|
462
|
+
},
|
|
463
|
+
condition: {
|
|
464
|
+
combinationCondition: '组合条件',
|
|
465
|
+
currentUserId: '当前用户ID',
|
|
466
|
+
currentUserLogin: '当前用户登录名',
|
|
467
|
+
currentUserName: '当前用户姓名',
|
|
468
|
+
fillInManually: '手动填写',
|
|
469
|
+
environmentVariable: '环境变量',
|
|
470
|
+
databaseFields: '数据库字段',
|
|
471
|
+
requestParameters: '请求参数',
|
|
472
|
+
currentTime: '当前时间',
|
|
473
|
+
currentDate: '当前日期',
|
|
474
|
+
currentTransactor: '当前用户登录名',
|
|
475
|
+
currentTransactorName: '当前用户姓名',
|
|
476
|
+
currentTransactorId: '当前用户id',
|
|
477
|
+
currentTransactorMainDepartmentId: '当前用户部门id',
|
|
478
|
+
currentTransactorMainDepartment: '当前用户部门名称',
|
|
479
|
+
currentTransactorRoleId: '当前用户角色id',
|
|
480
|
+
currentTransactorRole: '当前用户角色名称',
|
|
481
|
+
currentTransactorWorkGroupId: '当前用户工作组id',
|
|
482
|
+
currentTransactorWorkGroup: '当前用户工作组名称',
|
|
483
|
+
whenTheVariableIsEmpty: '变量为空时',
|
|
484
|
+
ignore11: '忽略(1=1)',
|
|
485
|
+
nonConformity: '不符合(1<>1)',
|
|
486
|
+
currentHandler: '当前办理人',
|
|
487
|
+
currentTaskClient: '当前任务委托人',
|
|
488
|
+
currentAssignor: '当前指派人',
|
|
489
|
+
rowsCanBeAdded: '可添加行',
|
|
490
|
+
deleteLine: '可删除行',
|
|
491
|
+
modifiableHistoricalData: '可修改历史数据',
|
|
492
|
+
controlByField: '按字段控制',
|
|
493
|
+
allReadOnly: '全部只读',
|
|
494
|
+
allRequired: '全部必填',
|
|
495
|
+
mainTableField: '主表字段',
|
|
496
|
+
linkName: '环节名称',
|
|
497
|
+
linkCode: '环节编码',
|
|
498
|
+
taskFields: '任务字段',
|
|
499
|
+
systemParameter: '系统参数',
|
|
500
|
+
personnelScope: '人员范围',
|
|
501
|
+
mainTableConditions: '主表条件',
|
|
502
|
+
subtableCondition: '子表条件',
|
|
503
|
+
accessControl: '进行权限控制',
|
|
504
|
+
formBindingModel: '表单绑定model',
|
|
505
|
+
allFields: '全部字段',
|
|
506
|
+
},
|
|
507
|
+
},
|
|
508
|
+
}
|
|
509
|
+
export default cn
|