Browse Source

fix: indent计价.修复地区选框被意外赋值详细地址数据的问题.

peter 3 weeks ago
parent
commit
43682c1fcf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/pages/indent-manage/indent/components/calcPrice/index.vue

+ 1 - 1
src/pages/indent-manage/indent/components/calcPrice/index.vue

@@ -817,7 +817,7 @@ let getForginCityFreight = (p: any, num: number) =>
           forginCityFreight.value[`${num}`] = response.result
           queryArea.value = response.result.location || ''
           exportForm.value.pdf_city = response.result.location || ''
-          formData.value.cal_city.local_city = queryArea.value
+          formData.value.cal_city.local_city = response.result.area || ''
           resolve(response.result)
         }
       })