From 3435d267e573f4123bf6d3af856d409c093f9b6f Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Mon, 31 Mar 2025 11:16:02 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/pro-tabs/bns-timeline-tabs.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/pro-tabs/bns-timeline-tabs.vue b/src/components/pro-tabs/bns-timeline-tabs.vue index d1513bf..3d7dfe4 100644 --- a/src/components/pro-tabs/bns-timeline-tabs.vue +++ b/src/components/pro-tabs/bns-timeline-tabs.vue @@ -225,8 +225,8 @@ export default { return (item, index) => { if (item.auditStatus == 1 || item.auditStatus == 3) return '√' if (item.auditStatus == 2) return 'X' - if (item.auditStatus == null) return '' - if (item.auditStatus == 4) return '?' + if (item.auditStatus == null || this.endAuditingIndex > -1) return '' + if (item.auditStatus == 4 && this.endAuditingIndex < 0) return '?' } }, },