Browse Source

商品编辑增加视频封面

cr 4 years ago
parent
commit
ead65c0dfd
4 changed files with 73 additions and 18 deletions
  1. 4 0
      releaselog.md
  2. 20 1
      src/pages/manage/add-good-form.vue
  3. 48 16
      src/pages/manage/edit-good-form.vue
  4. 1 1
      src/pages/manage/index.vue

+ 4 - 0
releaselog.md

@@ -1,4 +1,8 @@
1 1
 
2
+# 0.3.23 (20.12.7 18:00)  
3
+### 商品编辑增加视频封面
4
+
5
+
2 6
 # 0.3.2 (20.12.4 11:00)  0.3.21  0.3.22
3 7
 ### 修改bug
4 8
 

+ 20 - 1
src/pages/manage/add-good-form.vue

@@ -361,6 +361,19 @@
361 361
                     ></easy-upload>
362 362
                 </div>
363 363
             </section>
364
+            <section class="form-img-item">
365
+                <div class="tit">
366
+                    <span class="required hide">*</span>视频封面
367
+                </div>
368
+                <div class="list">
369
+                    <easy-upload
370
+                        :types="'image'"
371
+                        :value="videoConver"
372
+                        :uploadCount="1"
373
+                        @change="videoConverChange"
374
+                    ></easy-upload>
375
+                </div>
376
+            </section>
364 377
             <section class="form-img-item">
365 378
                 <div class="tit">
366 379
                     <span class="required hide">*</span>视频<span class="gray-text">(视频文件最大不超过100M)</span>
@@ -569,9 +582,11 @@ export default {
569 582
 
570 583
                 images: [], // 主图
571 584
                 detailImages: [], // 详情图
572
-                video:''
585
+                video:'',
586
+                videoConver:'',
573 587
             },
574 588
             mainImage: [],
589
+            videoConver:[],
575 590
             video:[],
576 591
 
577 592
             // 规格
@@ -844,6 +859,10 @@ export default {
844 859
         minImgChange(e) {
845 860
             this.baseInfo.mainImage = e[0] || "";
846 861
         },
862
+        // 视频图
863
+        videoConverChange(e) {
864
+            this.productForm.videoConver = e[0] || "";
865
+        },
847 866
         // 视频
848 867
         videoChange(e) {
849 868
             this.productForm.video = e[0] || "";

+ 48 - 16
src/pages/manage/edit-good-form.vue

@@ -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);

+ 1 - 1
src/pages/manage/index.vue

@@ -55,7 +55,7 @@
55 55
 
56 56
         <button class="btn" @click="layout">退出登录</button>
57 57
 
58
-        <div class="ver">0.3.22</div>
58
+        <div class="ver">0.3.23</div>
59 59
     </div>
60 60
 </template>
61 61