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) => {}