|
@@ -364,7 +364,22 @@
|
364
|
364
|
</div>
|
365
|
365
|
</section>
|
366
|
366
|
<section class="form-img-item">
|
367
|
|
- <span class="required hide">*</span>视频<span class="gray-text">(视频文件最大不超过100M)</span>
|
|
367
|
+ <div class="tit">
|
|
368
|
+ <span class="required hide">*</span>视频封面
|
|
369
|
+ </div>
|
|
370
|
+ <div class="list">
|
|
371
|
+ <easy-upload
|
|
372
|
+ :types="'image'"
|
|
373
|
+ :value="videoConver"
|
|
374
|
+ :uploadCount="1"
|
|
375
|
+ @change="videoConverChange"
|
|
376
|
+ ></easy-upload>
|
|
377
|
+ </div>
|
|
378
|
+ </section>
|
|
379
|
+ <section class="form-img-item">
|
|
380
|
+ <span class="required hide">*</span>视频<span class="gray-text"
|
|
381
|
+ >(视频文件最大不超过100M)</span
|
|
382
|
+ >
|
368
|
383
|
<div class="list">
|
369
|
384
|
<easy-upload
|
370
|
385
|
:types="'video'"
|
|
@@ -568,9 +583,11 @@ export default {
|
568
|
583
|
images: [], // 封面图
|
569
|
584
|
detailImages: [], // 详情图
|
570
|
585
|
video: "",
|
|
586
|
+ videoConver: "",
|
571
|
587
|
},
|
572
|
588
|
|
573
|
589
|
mainImage: [],
|
|
590
|
+ videoConver: [],
|
574
|
591
|
video: [],
|
575
|
592
|
|
576
|
593
|
// 规格
|
|
@@ -660,8 +677,12 @@ export default {
|
660
|
677
|
this.baseInfo.supplyPrice = this.baseInfo.supplyPrice / 100;
|
661
|
678
|
this.baseInfo.cost = this.baseInfo.cost / 100;
|
662
|
679
|
this.baseInfo.tagPrice = this.baseInfo.tagPrice / 100;
|
663
|
|
-
|
664
|
|
- this.mainImage = [this.baseInfo.mainImage];
|
|
680
|
+ if (this.baseInfo.mainImage) {
|
|
681
|
+ this.mainImage = [this.baseInfo.mainImage];
|
|
682
|
+ }
|
|
683
|
+ if (this.oldData.videoConver) {
|
|
684
|
+ this.videoConver = [this.oldData.videoConver];
|
|
685
|
+ }
|
665
|
686
|
if (this.oldData.video) {
|
666
|
687
|
this.video = [this.oldData.video];
|
667
|
688
|
this.productForm.video = this.oldData.video;
|
|
@@ -890,6 +911,11 @@ export default {
|
890
|
911
|
} else {
|
891
|
912
|
this.mainImage = [];
|
892
|
913
|
}
|
|
914
|
+ if (data.productForm.videoConver) {
|
|
915
|
+ this.videoConver = [data.productForm.videoConver];
|
|
916
|
+ } else {
|
|
917
|
+ this.productForm = [];
|
|
918
|
+ }
|
893
|
919
|
if (data.video) {
|
894
|
920
|
this.video = [data.video];
|
895
|
921
|
this.productForm.video = data.video;
|
|
@@ -974,6 +1000,10 @@ export default {
|
974
|
1000
|
minImgChange(e) {
|
975
|
1001
|
this.baseInfo.mainImage = e[0] || "";
|
976
|
1002
|
},
|
|
1003
|
+ // 视频图
|
|
1004
|
+ videoConverChange(e) {
|
|
1005
|
+ this.productForm.videoConver = e[0] || "";
|
|
1006
|
+ },
|
977
|
1007
|
// 视频
|
978
|
1008
|
videoChange(e) {
|
979
|
1009
|
this.productForm.video = e[0] || "";
|
|
@@ -1218,20 +1248,22 @@ export default {
|
1218
|
1248
|
);
|
1219
|
1249
|
}
|
1220
|
1250
|
this.submitLoading = true;
|
1221
|
|
- this.api.post("/product/SaveEdit", sendData,{pass:true}).then((res) => {
|
1222
|
|
- this.submitLoading = false;
|
1223
|
|
- if (res.success) {
|
1224
|
|
- if (type === "next") {
|
|
1251
|
+ this.api
|
|
1252
|
+ .post("/product/SaveEdit", sendData, { pass: true })
|
|
1253
|
+ .then((res) => {
|
|
1254
|
+ this.submitLoading = false;
|
|
1255
|
+ if (res.success) {
|
|
1256
|
+ if (type === "next") {
|
|
1257
|
+ } else {
|
|
1258
|
+ this.router.back();
|
|
1259
|
+ }
|
1225
|
1260
|
} else {
|
1226
|
|
- this.router.back();
|
|
1261
|
+ this.fn.showModal({
|
|
1262
|
+ content: res.message,
|
|
1263
|
+ showCancel: false,
|
|
1264
|
+ });
|
1227
|
1265
|
}
|
1228
|
|
- } else {
|
1229
|
|
- this.fn.showModal({
|
1230
|
|
- content: res.message,
|
1231
|
|
- showCancel: false,
|
1232
|
|
- });
|
1233
|
|
- }
|
1234
|
|
- });
|
|
1266
|
+ });
|
1235
|
1267
|
},
|
1236
|
1268
|
|
1237
|
1269
|
// 规格点击
|
|
@@ -1651,7 +1683,7 @@ button::before {
|
1651
|
1683
|
.sepc-card {
|
1652
|
1684
|
padding-bottom: px(30);
|
1653
|
1685
|
}
|
1654
|
|
-.gray-text{
|
|
1686
|
+.gray-text {
|
1655
|
1687
|
color: #999;
|
1656
|
1688
|
display: inline-block;
|
1657
|
1689
|
margin-left: px(10);
|