diff --git a/apps/web-antd/src/views/workflow/components/approval-timeline-item.vue b/apps/web-antd/src/views/workflow/components/approval-timeline-item.vue index e08d3197..7440b586 100644 --- a/apps/web-antd/src/views/workflow/components/approval-timeline-item.vue +++ b/apps/web-antd/src/views/workflow/components/approval-timeline-item.vue @@ -45,11 +45,8 @@ onMounted(async () => { })); }); -/** - * 这里无法处理昵称中带,的情况 - */ const isMultiplePerson = computed( - () => props.item.approveName?.split(',').length > 1, + () => props.item.approver?.split(',').length > 1, ); @@ -87,6 +84,7 @@ const isMultiplePerson = computed(