|
@@ -100,7 +100,9 @@
|
100
|
100
|
placeholder="请选择"
|
101
|
101
|
/>
|
102
|
102
|
</picker>
|
103
|
|
- <span class="remove-text" @click="typeRemove(index,item)"
|
|
103
|
+ <span
|
|
104
|
+ class="remove-text"
|
|
105
|
+ @click="typeRemove(index, item)"
|
104
|
106
|
>删除</span
|
105
|
107
|
>
|
106
|
108
|
</div>
|
|
@@ -376,7 +378,10 @@
|
376
|
378
|
</section>
|
377
|
379
|
<section class="form-img-item">
|
378
|
380
|
<div class="tit">
|
379
|
|
- <span class="required hide">*</span>视频<span class="gray-text">(视频文件最大不超过100M)</span>
|
|
381
|
+ <span class="required hide">*</span>视频<span
|
|
382
|
+ class="gray-text"
|
|
383
|
+ >(视频文件最大不超过100M)</span
|
|
384
|
+ >
|
380
|
385
|
</div>
|
381
|
386
|
<div class="list">
|
382
|
387
|
<easy-upload
|
|
@@ -515,7 +520,7 @@
|
515
|
520
|
|
516
|
521
|
<script>
|
517
|
522
|
import MyImage from "../../components/image/index";
|
518
|
|
-import EasyUpload from '../../components/easy-upload/easy-upload';
|
|
523
|
+import EasyUpload from "../../components/easy-upload/easy-upload";
|
519
|
524
|
|
520
|
525
|
export default {
|
521
|
526
|
name: "",
|
|
@@ -581,12 +586,12 @@ export default {
|
581
|
586
|
|
582
|
587
|
images: [], // 主图
|
583
|
588
|
detailImages: [], // 详情图
|
584
|
|
- video:'',
|
585
|
|
- videoConver:'',
|
|
589
|
+ video: "",
|
|
590
|
+ videoConver: "",
|
586
|
591
|
},
|
587
|
592
|
mainImage: [],
|
588
|
|
- videoConver:[],
|
589
|
|
- video:[],
|
|
593
|
+ videoConver: [],
|
|
594
|
+ video: [],
|
590
|
595
|
|
591
|
596
|
// 规格
|
592
|
597
|
specIndex: 0,
|
|
@@ -596,7 +601,7 @@ export default {
|
596
|
601
|
curSpecIndex: 0, // 当前编辑specData
|
597
|
602
|
skuTableData: [], // sku表格数据 详情见initSkuTable
|
598
|
603
|
skuAttrs: {}, // sku后台保存用
|
599
|
|
- submitLoading:false,
|
|
604
|
+ submitLoading: false,
|
600
|
605
|
};
|
601
|
606
|
},
|
602
|
607
|
onLoad() {
|
|
@@ -897,8 +902,8 @@ export default {
|
897
|
902
|
this.typeList.splice(i, 1);
|
898
|
903
|
this.typeList = [...this.typeList];
|
899
|
904
|
let ids = [];
|
900
|
|
- for(let item of this.baseInfo.productTypeIds){
|
901
|
|
- if(item !== val.id){
|
|
905
|
+ for (let item of this.baseInfo.productTypeIds) {
|
|
906
|
+ if (item !== val.id) {
|
902
|
907
|
ids.push(item);
|
903
|
908
|
}
|
904
|
909
|
}
|
|
@@ -950,7 +955,7 @@ export default {
|
950
|
955
|
|
951
|
956
|
// 保存
|
952
|
957
|
save(type) {
|
953
|
|
- if(this.submitLoading){
|
|
958
|
+ if (this.submitLoading) {
|
954
|
959
|
return;
|
955
|
960
|
}
|
956
|
961
|
let requiredFile1 = [
|
|
@@ -1090,17 +1095,19 @@ export default {
|
1090
|
1095
|
hotSaleRecommendIds: [],
|
1091
|
1096
|
businessRecommendIds: [],
|
1092
|
1097
|
participated: false,
|
1093
|
|
- participatedBox:false,
|
|
1098
|
+ participatedBox: false,
|
1094
|
1099
|
skuInfo: skuInfo,
|
1095
|
1100
|
};
|
1096
|
|
- if(sendData.baseInfo.weight){
|
|
1101
|
+ if (sendData.baseInfo.weight) {
|
1097
|
1102
|
sendData.baseInfo.weight = Number(sendData.baseInfo.weight);
|
1098
|
1103
|
}
|
1099
|
|
- if(sendData.baseInfo.stock){
|
|
1104
|
+ if (sendData.baseInfo.stock) {
|
1100
|
1105
|
sendData.baseInfo.stock = Number(sendData.baseInfo.stock);
|
1101
|
1106
|
}
|
1102
|
|
- if(sendData.baseInfo.initialSale){
|
1103
|
|
- sendData.baseInfo.initialSale = Number(sendData.baseInfo.initialSale);
|
|
1107
|
+ if (sendData.baseInfo.initialSale) {
|
|
1108
|
+ sendData.baseInfo.initialSale = Number(
|
|
1109
|
+ sendData.baseInfo.initialSale
|
|
1110
|
+ );
|
1104
|
1111
|
}
|
1105
|
1112
|
//规格判断
|
1106
|
1113
|
if (this.specIndex === 0) {
|
|
@@ -1118,29 +1125,31 @@ export default {
|
1118
|
1125
|
);
|
1119
|
1126
|
}
|
1120
|
1127
|
this.submitLoading = true;
|
1121
|
|
-
|
|
1128
|
+
|
1122
|
1129
|
uni.showLoading({
|
1123
|
1130
|
title: "提交中...",
|
1124
|
|
- mask:true
|
|
1131
|
+ mask: true,
|
1125
|
1132
|
});
|
1126
|
|
- this.api.post("/product/SaveEdit", sendData,{pass:true}).then((res) => {
|
1127
|
|
- this.submitLoading = false;
|
1128
|
|
- uni.hideLoading();
|
1129
|
|
- if (res.success) {
|
1130
|
|
- if (type === "next") {
|
1131
|
|
- this.fn.showToast("保存成功");
|
1132
|
|
- this.reset();
|
|
1133
|
+ this.api
|
|
1134
|
+ .post("/product/SaveEdit", sendData, { pass: true })
|
|
1135
|
+ .then((res) => {
|
|
1136
|
+ this.submitLoading = false;
|
|
1137
|
+ uni.hideLoading();
|
|
1138
|
+ if (res.success) {
|
|
1139
|
+ if (type === "next") {
|
|
1140
|
+ this.fn.showToast("保存成功");
|
|
1141
|
+ this.reset();
|
|
1142
|
+ } else {
|
|
1143
|
+ this.fn.showToast("保存成功");
|
|
1144
|
+ this.router.back();
|
|
1145
|
+ }
|
1133
|
1146
|
} else {
|
1134
|
|
- this.fn.showToast("保存成功");
|
1135
|
|
- this.router.back();
|
|
1147
|
+ this.fn.showModal({
|
|
1148
|
+ content: res.message,
|
|
1149
|
+ showCancel: false,
|
|
1150
|
+ });
|
1136
|
1151
|
}
|
1137
|
|
- } else {
|
1138
|
|
- this.fn.showModal({
|
1139
|
|
- content: res.message,
|
1140
|
|
- showCancel: false,
|
1141
|
|
- });
|
1142
|
|
- }
|
1143
|
|
- });
|
|
1152
|
+ });
|
1144
|
1153
|
},
|
1145
|
1154
|
|
1146
|
1155
|
// 重置
|
|
@@ -1175,7 +1184,7 @@ export default {
|
1175
|
1184
|
|
1176
|
1185
|
images: [], // 封面图
|
1177
|
1186
|
detailImages: [], // 详情图
|
1178
|
|
- video:''
|
|
1187
|
+ video: "",
|
1179
|
1188
|
};
|
1180
|
1189
|
|
1181
|
1190
|
this.video = [];
|
|
@@ -1619,9 +1628,10 @@ button::before {
|
1619
|
1628
|
.sepc-card {
|
1620
|
1629
|
padding-bottom: px(30);
|
1621
|
1630
|
}
|
1622
|
|
-.gray-text{
|
|
1631
|
+.gray-text {
|
1623
|
1632
|
color: #999;
|
1624
|
1633
|
display: inline-block;
|
1625
|
1634
|
margin-left: px(10);
|
1626
|
1635
|
}
|
|
1636
|
+
|
1627
|
1637
|
</style>
|