@lambo-design/workflow-approve 1.0.0-beta.63 → 1.0.0-beta.64
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 +2 -2
- package/src/workflow-diagram.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambo-design/workflow-approve",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.64",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "lambo",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"axios": "^0.24.0",
|
|
14
14
|
"axios-cache-plugin": "^0.1.0",
|
|
15
|
-
"@lambo-design/core": "^4.7.1-beta.
|
|
15
|
+
"@lambo-design/core": "^4.7.1-beta.158",
|
|
16
16
|
"@lambo-design/shared": "^1.0.0-beta.250"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
package/src/workflow-diagram.vue
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
<i-col span="12" offset="0">
|
|
55
55
|
<FormItem :label="item.handleName ? item.handleName + '结果:' : '审批结果:'">
|
|
56
56
|
<Tag color="green" v-if="item.auditResult == '00'">流程发起</Tag>
|
|
57
|
-
<Tag color="green" v-if="item.auditResult == '10'">自动跳过</Tag>
|
|
57
|
+
<Tag color="green" v-else-if="item.auditResult == '10'">自动跳过</Tag>
|
|
58
58
|
<Tag color="green" v-else-if="item.auditResult == '30'">通过</Tag>
|
|
59
59
|
<Tag color="volcano" v-else-if="item.auditResult == '40'">驳回上一节点</Tag>
|
|
60
60
|
<Tag color="red" v-else-if="item.auditResult=='50'">驳回到原点</Tag>
|