From a6a98eb2b65e8a0879d3d02de1f9eb5923512d80 Mon Sep 17 00:00:00 2001 From: wangzhuo Date: Mon, 1 Sep 2025 13:56:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AE=A2=E6=88=B7=E4=BA=BA=E5=91=98-?= =?UTF-8?q?=E7=BC=96=E8=BE=91-=E5=A4=9A=E9=80=89=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E5=A4=B1=E5=8E=BB=E7=84=A6=E7=82=B9=E5=85=B3=E9=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../business/CRM/customer/components/customerUserEdit.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/pages/business/CRM/customer/components/customerUserEdit.vue b/src/pages/business/CRM/customer/components/customerUserEdit.vue index 3c640e5..1742605 100644 --- a/src/pages/business/CRM/customer/components/customerUserEdit.vue +++ b/src/pages/business/CRM/customer/components/customerUserEdit.vue @@ -22,7 +22,7 @@ - + @@ -582,6 +582,11 @@ let handleWorkingStatusChange = e => { formData.value.workingStatus = workingStatusList[value].name; } +const hobbySelectRef = ref(null); +// 多选组件失去焦点关闭 +let handleBlur = () => { + if (hobbySelectRef.value) hobbySelectRef.value.handleBlur(); +} let submitForm = async () => { let hobbyTags = hobbies.value.map(it => { let {name} = it;