diff --git a/flowable-engine-web/src/components/common/AvatarEllipsis.vue b/flowable-engine-web/src/components/common/AvatarEllipsis.vue index 43e74e3..6067312 100644 --- a/flowable-engine-web/src/components/common/AvatarEllipsis.vue +++ b/flowable-engine-web/src/components/common/AvatarEllipsis.vue @@ -66,7 +66,7 @@ export default { this.$set(user, "color", "#0bbd87") } //审批通过 - if (state === 'AGREE') { + if (state === 'AGREE' || state === 'AUTO_PASS') { this.$set(user, "icon", "el-icon-check") this.$set(user, "color", "#0bbd87") } @@ -76,7 +76,7 @@ export default { this.$set(user, "color", "#f78f5f") } //拒绝后评论 - if (state === 'REFUSE') { + if (state === 'REFUSE' || state === 'AUTO_REFUSE') { this.$set(user, "icon", "el-icon-close") this.$set(user, "color", "#f56c6c") } diff --git a/flowable-engine-web/src/views/common/operation/OperationRender.vue b/flowable-engine-web/src/views/common/operation/OperationRender.vue index de8d04e..5522098 100644 --- a/flowable-engine-web/src/views/common/operation/OperationRender.vue +++ b/flowable-engine-web/src/views/common/operation/OperationRender.vue @@ -30,12 +30,12 @@
{{ operation.remark }}
-