fix: 将客户表单请求参数从name改为phone

客户表单接口现在需要使用手机号而非姓名作为查询参数,以更准确地识别客户
This commit is contained in:
2025-10-15 17:48:31 +08:00
parent 1fdd8fe12a
commit 3ed490d6dc

View File

@@ -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)