Fix:4450 【旅居商城小程序】订单状态列表,联系商家按钮点击无效,应弹窗显示商家电话
This commit is contained in:
@@ -607,6 +607,19 @@ export default {
|
|||||||
return this.$force2Decimal(v)
|
return this.$force2Decimal(v)
|
||||||
},
|
},
|
||||||
goRoom(order) {
|
goRoom(order) {
|
||||||
|
console.log(order);
|
||||||
|
if(order.isTravelGroup === 1) {
|
||||||
|
// 拨打商家电话
|
||||||
|
uni.makePhoneCall({
|
||||||
|
phoneNumber: order.merPhone,
|
||||||
|
success: () => {
|
||||||
|
uni.showToast({
|
||||||
|
title: '拨打成功'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
const params = {
|
const params = {
|
||||||
goodsId: order.cartInfo[0].productId,
|
goodsId: order.cartInfo[0].productId,
|
||||||
goodsName: order.cartInfo[0].productInfo.storeName,
|
goodsName: order.cartInfo[0].productInfo.storeName,
|
||||||
|
|||||||
Reference in New Issue
Block a user