From 3ed490d6dc25a13246aabcbfb9243215ae12e050 Mon Sep 17 00:00:00 2001 From: lbw_9527443 <780139497@qq.com> Date: Wed, 15 Oct 2025 17:48:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86=E5=AE=A2=E6=88=B7=E8=A1=A8?= =?UTF-8?q?=E5=8D=95=E8=AF=B7=E6=B1=82=E5=8F=82=E6=95=B0=E4=BB=8Ename?= =?UTF-8?q?=E6=94=B9=E4=B8=BAphone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 客户表单接口现在需要使用手机号而非姓名作为查询参数,以更准确地识别客户 --- my-vue-app/src/views/person/sale.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/my-vue-app/src/views/person/sale.vue b/my-vue-app/src/views/person/sale.vue index 8e6388c..144bec4 100644 --- a/my-vue-app/src/views/person/sale.vue +++ b/my-vue-app/src/views/person/sale.vue @@ -578,7 +578,7 @@ async function getCustomerForm() { const routeParams = getRequestParams() const params = { user_name: routeParams.user_name || userStore.userInfo.username, - customer_name: selectedContact.value.name, + phone: selectedContact.value.phone, } try { const res = await getCustomerFormInfo(params)