Browse Source

2024.10.22 - 修复代码合并导致的代码丢失bug

GuYun-D 5 months ago
parent
commit
78ca820e59
1 changed files with 6 additions and 2 deletions
  1. 6 2
      src/views/explosiveProduct/list/HotGoodsAdd.vue

+ 6 - 2
src/views/explosiveProduct/list/HotGoodsAdd.vue

@@ -68,6 +68,7 @@ import ImageUpload from '@/components/ImageUpload'
 import { getClassifyGetAll } from '@/api/commodity'
 import { addHotGoods, editHotGoods } from '@/api/active/active_hot'
 import { getExplosiveProductCategory } from '@/api/explosiveProduct/category'
+import { getProvinceList, getChildAreaList } from '@/api/address'
 
 export default {
   components: { ImageUpload },
@@ -86,7 +87,8 @@ export default {
         productImage: '',
         productPrice: '',
         isPut: 1,
-        categoryId: ''
+        categoryId: '',
+        regionalCodes: ''
       },
       regionProps: {
         checkStrictly: true,
@@ -159,6 +161,7 @@ export default {
         this.form.productImage = row.productImage
         this.form.productPrice = row.productPrice
         this.form.isPut = row.isPut
+        this.form.regionalCodes = row.regionalCodesSource || ''
         this.form.categoryId = row.categoryId || ''
         this.dialogTitle = '编辑爆款产品'
       }
@@ -219,7 +222,8 @@ export default {
         productImage: '',
         productPrice: '',
         isPut: 1,
-        categoryId: ''
+        categoryId: '',
+        regionalCodes: ''
       }
       this.goodsList = []
     },