[最新更新]

This commit is contained in:
2024-03-04 15:39:57 +08:00
parent a8a1c06ae4
commit 195547d86a
8 changed files with 20 additions and 30 deletions

View File

@@ -18,12 +18,11 @@ Page({
freight : '', // 运费
weight : '', // 重量
distribution : [
{ type: 2, title: "选择配送方式" },
{ type: 0, title: "快递" },
{ type: 1, title: "自提" },
{ type: 0, title: "选择配送方式" },
{ type: 1, title: "快递" },
{ type: 2, title: "自提" },
],
distributionIndex: 0,
distributionType : 2
distributionIndex: 0
},
/**
@@ -43,8 +42,7 @@ Page({
distributionChange(e){
if(e.detail.value === this.data.distributionIndex) return
this.setData({
distributionIndex : e.detail.value,
distributionType : this.data.distribution[e.detail.value].type
distributionIndex: e.detail.value
})
this.placeInfo(this.data.skuId);
},
@@ -96,7 +94,7 @@ Page({
cart_ids : this.data.skuId,
address_id : this.data.address.address_id,
remark : '',
delivery_type : this.data.distributionType
delivery_type : this.data.distributionIndex
}).then(res => {
wx.redirectTo({
url: '/pages/pay/index?params=' + encodeURIComponent(JSON.stringify(res.data))