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;