From 908ac7e8ee56551f324590a85e95bf6502431b75 Mon Sep 17 00:00:00 2001 From: bb_pan Date: Sun, 4 Jan 2026 14:17:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/user/sourcingNeed/index.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/user/sourcingNeed/index.vue b/src/views/user/sourcingNeed/index.vue index 3a17577..a3980ca 100644 --- a/src/views/user/sourcingNeed/index.vue +++ b/src/views/user/sourcingNeed/index.vue @@ -1069,10 +1069,14 @@ const onDeleteDemand = (index: any) => { const onProvinceChange = async (id: any) => { const res: any = await getAreaApi(id) areaCityList.value = res.data + addOrEditForm.value.cityCode = '' + addOrEditForm.value.areaCode = '' + areaCountyList.value = [] } const onCityChange = async (id: any) => { const res: any = await getAreaApi(id) areaCountyList.value = res.data + addOrEditForm.value.areaCode = '' } const onCountyChange = async (id: any) => {}