Fix:4450 【旅居商城小程序】订单状态列表,联系商家按钮点击无效,应弹窗显示商家电话

This commit is contained in:
linxi
2025-11-07 11:21:34 +08:00
parent 9f06b47de3
commit ee6e39a4b9
+13
View File
@@ -607,6 +607,19 @@ export default {
return this.$force2Decimal(v)
},
goRoom(order) {
console.log(order);
if(order.isTravelGroup === 1) {
// 拨打商家电话
uni.makePhoneCall({
phoneNumber: order.merPhone,
success: () => {
uni.showToast({
title: '拨打成功'
})
}
})
return
}
const params = {
goodsId: order.cartInfo[0].productId,
goodsName: order.cartInfo[0].productInfo.storeName,