|
@@ -515,6 +515,30 @@
|
|
},
|
|
},
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+
|
|
|
|
+ //计算运费
|
|
|
|
+ calculate(){
|
|
|
|
+ uni.$u.http
|
|
|
|
+ .post("/api/order/calculate", {
|
|
|
|
+ address_id: this.addinfo.id, //3 是 String 地址ID
|
|
|
|
+ goods_id: this.goodinfo.id, //65 是 String 商品id
|
|
|
|
+ goods_num: this.value, //2 是 String 商品数量
|
|
|
|
+ sku_item_id: this.sku_info.id, //60 是 String 规格id
|
|
|
|
+ cart_ids: this.stringcheck, //8,9 是 String 购物车id
|
|
|
|
+ remark: "", //备注 是 String 备注
|
|
|
|
+ merchant_goods_id: this.goodinfo.merchant_goods_id || "", //39 是 String 团长商品id
|
|
|
|
+ container_id: this.containid, //1 是 String 货柜id
|
|
|
|
+ share_member_id: this.share_merchant_id, // 是 String 分享团长id 分享商品的时候传
|
|
|
|
+ belong: this.goodinfo.source || "", //0 是 String 商品归属 0团长 1平台自营 2团长发布或者分享的平台自营商品、供应链商品
|
|
|
|
+ })
|
|
|
|
+ .then((res) => {
|
|
|
|
+ this.sum = res.freight
|
|
|
|
+ if(this.sum==0){
|
|
|
|
+ this.unit_price = 0
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ .catch(() => {});
|
|
|
|
+ } ,
|
|
//货柜列表
|
|
//货柜列表
|
|
container() {
|
|
container() {
|
|
this.containlist = [];
|
|
this.containlist = [];
|
|
@@ -558,11 +582,14 @@
|
|
if (this.goodinfo.is_shipping == 0) {
|
|
if (this.goodinfo.is_shipping == 0) {
|
|
this.unit_price = 0;
|
|
this.unit_price = 0;
|
|
} else {
|
|
} else {
|
|
- this.unit_price = this.containlist[0].unit_price;
|
|
|
|
|
|
+ this.unit_price = this.containlist[0].unit_price;
|
|
}
|
|
}
|
|
this.recommend_weight = this.containlist[0].recommend_weight;
|
|
this.recommend_weight = this.containlist[0].recommend_weight;
|
|
this.weight_total = this.containlist[0].weight_total;
|
|
this.weight_total = this.containlist[0].weight_total;
|
|
this.containid = this.containlist[0].id;
|
|
this.containid = this.containlist[0].id;
|
|
|
|
+ if(this.typea == "shop"){
|
|
|
|
+ this.calculate()
|
|
|
|
+ }
|
|
if (this.language == "zh-CN") {
|
|
if (this.language == "zh-CN") {
|
|
this.containname = this.containlist[0].name_cn;
|
|
this.containname = this.containlist[0].name_cn;
|
|
}
|
|
}
|