Fix:4568 【旅居商城小程序】订单状态列表,点击联系商家按钮返回后,页面显示“拨打成功”

This commit is contained in:
linxi
2025-11-12 14:40:43 +08:00
parent ec042122c8
commit e3e8c37551
3 changed files with 0 additions and 17 deletions
-5
View File
@@ -612,11 +612,6 @@ export default {
// 拨打商家电话
uni.makePhoneCall({
phoneNumber: order.merPhone,
success: () => {
uni.showToast({
title: '拨打成功'
})
}
})
return
}
-6
View File
@@ -358,12 +358,6 @@ export default {
// 这里可以添加跳转到客服页面或打开客服会话的逻辑
uni.makePhoneCall({
phoneNumber: this.orderInfo.merPhone,
success: () => {
uni.showToast({
title: '正在拨打电话',
icon: 'none'
})
},
fail: () => {
uni.showToast({
title: '拨打失败',
-6
View File
@@ -213,12 +213,6 @@ export default {
if (res.confirm && this.detail.merPhone) {
uni.makePhoneCall({
phoneNumber: this.detail.merPhone,
fail: () => {
uni.showToast({
title: '拨打电话失败',
icon: 'none'
})
}
})
}
}