@lambo-design/workflow-approve 1.0.0-beta.54 → 1.0.0-beta.56
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/package.json +1 -1
- package/src/components/assignee-box.vue +696 -694
- package/src/components/candidate-groups-box.vue +103 -201
- package/src/components/history.vue +7 -3
- package/src/portrait.vue +408 -279
- package/src/workflow-diagram.vue +10 -0
package/src/workflow-diagram.vue
CHANGED
|
@@ -60,6 +60,8 @@
|
|
|
60
60
|
<Tag color="red" v-else-if="item.auditResult=='50'">驳回到原点</Tag>
|
|
61
61
|
<Tag color="purple" v-else-if="item.auditResult=='51'">流程终止</Tag>
|
|
62
62
|
<Tag color="blue" v-else-if="item.auditResult == '60'">撤回</Tag>
|
|
63
|
+
<Tag color="green" v-else-if="item.auditResult == '61'">交回委派任务</Tag>
|
|
64
|
+
<Tag color="blue" v-else-if="item.auditResult == '62'">委派任务被撤回</Tag>
|
|
63
65
|
<Tag color="cyan" v-else-if="item.auditResult == '80'">跳转指定节点</Tag>
|
|
64
66
|
<Tag color="cyan" v-else-if="item.auditResult == '83'">会签减签</Tag>
|
|
65
67
|
<Tag color="magenta" v-else-if="item.auditResult == '90'">驳回指定节点</Tag>
|
|
@@ -176,6 +178,14 @@ export default {
|
|
|
176
178
|
label = '撤回';
|
|
177
179
|
tagColor = 'blue'; // 蓝色
|
|
178
180
|
}
|
|
181
|
+
else if (row.auditResult == '61'){
|
|
182
|
+
label = '交回委派任务';
|
|
183
|
+
tagColor = 'green'; // 绿色
|
|
184
|
+
}
|
|
185
|
+
else if (row.auditResult == '62'){
|
|
186
|
+
label = '委派任务被撤回';
|
|
187
|
+
tagColor = 'blue'; // 蓝色
|
|
188
|
+
}
|
|
179
189
|
else if (row.auditResult == '80'){
|
|
180
190
|
label = '跳转到指定节点';
|
|
181
191
|
tagColor = 'cyan'; // 青色
|