From 17010a15a3ec156976ebfac9b463a3b54e384ccd Mon Sep 17 00:00:00 2001 From: dj <1042039504@qq.com> Date: Thu, 3 Jul 2025 23:08:16 +0800 Subject: [PATCH] =?UTF-8?q?fix=20:=20=E4=BF=AE=E5=A4=8D=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/home/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/home/index.vue b/src/views/home/index.vue index 1be47e4..1004dba 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -633,7 +633,7 @@ const getTodoList = () => { getHomeTaskInfo().then(res => { if (res.code === 1000) { todoList.value = res.data.rows - todoNum.value=res.data.total + todoNum.value = res.data.total > 99 ? '99+' : res.data.total } else { ElNotification({ title: '提示', @@ -647,7 +647,7 @@ const getDoneList = () => { getDoneTaskInfo().then(res => { if (res.code === 1000) { doneList.value = res.data.rows - doneNum.value=res.data.total + doneNum.value = res.data.total > 99 ? '99+' : res.data.total } else { ElNotification({ title: '提示',