From 32ca029580a27edceed0b3dd73095e41db5b8492 Mon Sep 17 00:00:00 2001 From: v6ole Date: Mon, 13 Jul 2026 00:12:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=B8=AA=E4=BA=BA=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E5=BC=B9=E7=AA=97=E4=B8=8E=E6=88=91=E7=9A=84?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E4=BF=9D=E6=8C=81=E4=B8=80=E8=87=B4=E2=80=94?= =?UTF-8?q?=E8=A1=A5=E5=85=A8=E5=9B=9B=E6=A8=A1=E5=9D=97=E5=85=A8=E9=83=A8?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 拜访: 客户经理/日期/方式/时间/拜访人/电话/相关人员/内容/需求 - 计划: 客户经理/计划日期/内容/状态 - 商机: 客户经理/产品/金额/跟进/状态/预计列收(月选择器) - 要客: 客户经理/紧急度/描述/进展/时间/拜访人/对象 Co-Authored-By: Claude --- frontend/src/views/desktop/CustomerManage.vue | 37 ++++++++++++++++--- 1 file changed, 32 insertions(+), 5 deletions(-) diff --git a/frontend/src/views/desktop/CustomerManage.vue b/frontend/src/views/desktop/CustomerManage.vue index 99cb6ff..0fbce8a 100644 --- a/frontend/src/views/desktop/CustomerManage.vue +++ b/frontend/src/views/desktop/CustomerManage.vue @@ -55,11 +55,11 @@ async function handleIndivEditSave() { manager_id: f.manager_id, }) } else if (type === 'plan') { - await api.put(`/work-plans/${f.id}`, { plan_content: f.plan_content, status: f.status }) + await api.put(`/work-plans/${f.id}`, { plan_content: f.plan_content, status: f.status, plan_date: f.plan_date, manager_id: f.manager_id }) } else if (type === 'mini') { - await api.put(`/mini-business/${f.id}`, { product_type: f.product_type, amount: f.amount, follow_up_detail: f.follow_up_detail, status: f.status }) + await api.put(`/mini-business/${f.id}`, { product_type: f.product_type, amount: f.amount, follow_up_detail: f.follow_up_detail, status: f.status, expected_revenue_date: f.expected_revenue_date, manager_id: f.manager_id }) } else if (type === 'key') { - await api.put(`/key-visits/${f.id}`, { description: f.description }) + await api.put(`/key-visits/${f.id}`, { description: f.description, urgency_level: f.urgency_level, progress_status: f.progress_status, planned_date: f.planned_date, planned_visitor: f.planned_visitor, visit_target: f.visit_target, manager_id: f.manager_id }) } ElMessage.success('已更新') indivEditVisible.value = false @@ -707,21 +707,48 @@ async function handleImport() { +