|
@@ -330,7 +330,7 @@
|
330
|
330
|
<div class="list">
|
331
|
331
|
<easy-upload
|
332
|
332
|
:types="'image'"
|
333
|
|
- v-model="mainImage"
|
|
333
|
+ :value="mainImage"
|
334
|
334
|
:uploadCount="1"
|
335
|
335
|
:openCilp="true"
|
336
|
336
|
@change="minImgChange"
|
|
@@ -342,7 +342,7 @@
|
342
|
342
|
<div class="list">
|
343
|
343
|
<easy-upload
|
344
|
344
|
:types="'image'"
|
345
|
|
- v-model="productForm.images"
|
|
345
|
+ :value="productForm.images"
|
346
|
346
|
:uploadCount="100"
|
347
|
347
|
@change="imagesChange"
|
348
|
348
|
></easy-upload>
|
|
@@ -355,7 +355,7 @@
|
355
|
355
|
<div class="list">
|
356
|
356
|
<easy-upload
|
357
|
357
|
:types="'image'"
|
358
|
|
- v-model="productForm.detailImages"
|
|
358
|
+ :value="productForm.detailImages"
|
359
|
359
|
:uploadCount="100"
|
360
|
360
|
@change="detailImagesChange"
|
361
|
361
|
></easy-upload>
|
|
@@ -586,8 +586,7 @@ export default {
|
586
|
586
|
};
|
587
|
587
|
},
|
588
|
588
|
onLoad() {
|
589
|
|
- this.mainImage = [];
|
590
|
|
- this.video = [];
|
|
589
|
+ this.reset();
|
591
|
590
|
// this.getStore();
|
592
|
591
|
if (this.user.storeId) {
|
593
|
592
|
this.baseInfo.storeId = this.user.storeId;
|