From 15dd6ce13bbbed47cb83efffedbbe3ee025ea3bb Mon Sep 17 00:00:00 2001 From: liushilong <2224574157@qq.com> Date: Mon, 1 Apr 2024 22:27:40 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E5=9B=BE=E5=AE=A1?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=E5=B1=95=E7=A4=BA=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/worksheet/modal/ApprovalModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/worksheet/modal/ApprovalModal.vue b/src/views/worksheet/modal/ApprovalModal.vue index 28d04bb..b0ad148 100644 --- a/src/views/worksheet/modal/ApprovalModal.vue +++ b/src/views/worksheet/modal/ApprovalModal.vue @@ -40,7 +40,7 @@ async function getDetail(id) { const res = await aiApprovaltools({ taskid: id }); if (res.code === "OK") { state.detail = res.data; - if(Number(res.data.similarComplete) > 0){ + if(Number(res.data.pendingApprovaCount) > 0){ show.value = true; } }