From 9f3067b4120eb1335df14bbdfd947e6f45cedd20 Mon Sep 17 00:00:00 2001 From: v6ole Date: Sun, 12 Jul 2026 23:52:26 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8D=95=E4=BD=8D=E5=AE=A2=E6=88=B7?= =?UTF-8?q?=E5=88=97=E8=A1=A8API=E8=AF=B7=E6=B1=82=E5=8A=A0=E4=B8=8A=20cus?= =?UTF-8?q?tomer=5Ftype=20=E7=AD=9B=E9=80=89=E5=8F=82=E6=95=B0?= 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/views/desktop/CustomerManage.vue b/frontend/src/views/desktop/CustomerManage.vue index 7a8fa3b..8d2133e 100644 --- a/frontend/src/views/desktop/CustomerManage.vue +++ b/frontend/src/views/desktop/CustomerManage.vue @@ -77,6 +77,7 @@ async function loadCustomers() { if (filterIndustry.value) params.industry = filterIndustry.value if (filterService.value) params.service = filterService.value if (filterManagerId.value) params.manager_id = filterManagerId.value + if (customerType.value) params.customer_type = customerType.value const res = await customersApi.list(params) customers.value = res.data.items total.value = res.data.total