This commit is contained in:
weipengfei 2024-04-15 17:42:41 +08:00
parent c6eb8e421a
commit 305e52b617

View File

@ -937,11 +937,12 @@
data.push(obj) data.push(obj)
}) })
orderAgain({ orderAgain({
data: data data: data,
sale_type: this.sale_type
}).then(res => { }).then(res => {
let cart_id = res.data.cart_id.join(',') let cart_id = res.data.cart_id.join(',')
return uni.navigateTo({ return uni.navigateTo({
url: '/pages/users/order_confirm/index?cartId=' + cart_id url: '/pages/users/order_confirm/index?cartId=' + cart_id + '&sale_type=' + this.sale_type
}); });
}).catch(err => { }).catch(err => {
that.$util.Tips({ that.$util.Tips({