lxf 2 년 전
부모
커밋
e2abcd94cf
2개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      src/components/process/EHSD/PriceSheet.vue
  2. 3 0
      src/components/process/PriceSheet.vue

+ 3 - 0
src/components/process/EHSD/PriceSheet.vue

@@ -834,6 +834,9 @@ const props = defineProps({
 onMounted(() => {
   if (props.queryData.priceSheetId) {
     proxy.post("/saleQuotation/detail", { id: props.queryData.priceSheetId }).then((res) => {
+      res.countryId = res.buyCountryId;
+      res.provinceId = res.buyProvinceId;
+      res.cityId = res.buyCityId;
       for (var text in res) {
         formData.data[text] = res[text];
       }

+ 3 - 0
src/components/process/PriceSheet.vue

@@ -744,6 +744,9 @@ const props = defineProps({
 onMounted(() => {
   if (props.queryData.priceSheetId) {
     proxy.post("/saleQuotation/detail", { id: props.queryData.priceSheetId }).then((res) => {
+      res.countryId = res.buyCountryId;
+      res.provinceId = res.buyProvinceId;
+      res.cityId = res.buyCityId;
       for (var text in res) {
         formData.data[text] = res[text];
       }