Browse Source

fix[litemall-admin]: 商品上架页面和编辑页面中规格图片上传不显示

Junling Bu 7 years ago
parent
commit
5c626152f8

+ 1 - 1
litemall-admin/src/views/goods/create.vue

@@ -422,7 +422,7 @@ export default {
       this.specForm.picUrl = response.data.url
     },
     handleSpecificationShow() {
-      this.specForm = {}
+      this.specForm = { specification: '', value: '', picUrl: '' }
       this.specVisiable = true
     },
     handleSpecificationAdd() {

+ 1 - 1
litemall-admin/src/views/goods/edit.vue

@@ -433,7 +433,7 @@ export default {
       this.specForm.picUrl = response.data.url
     },
     handleSpecificationShow() {
-      this.specForm = {}
+      this.specForm = { specification: '', value: '', picUrl: '' }
       this.specVisiable = true
     },
     handleSpecificationAdd() {