From baf58613df0d768b3dd986727a3bf4b8fc1ab8c5 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Tue, 11 Nov 2025 15:58:00 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=9F=E8=BF=9B=E8=B7=B3=E8=BD=AC=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E8=B7=9F=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/CustomerManagement.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/components/CustomerManagement.vue b/components/CustomerManagement.vue index 379447c..c421672 100644 --- a/components/CustomerManagement.vue +++ b/components/CustomerManagement.vue @@ -290,10 +290,9 @@ const handleCustomerClick = (customer) => { // 处理跟进 const handleFollowup = (customer) => { console.log('跟进客户:', customer); - // TODO: 调用 API 更新跟进状态 - // 这里可以跳转到跟进记录页面或打开跟进对话框 + // 跳转到跟进新增页 uni.navigateTo({ - url: `/pages/customer-follow/index?customerId=${customer.id}&customerName=${customer.name}` + url: `/pages/customer/follow/add/index?customerId=${customer.id}&customerName=${encodeURIComponent(customer.name || '')}` }); }; @@ -635,7 +634,7 @@ defineExpose({ } .edit-icon { - font-size: 14px; + color: #909399; cursor: pointer; opacity: 0.6;