微信小程序拨号功能,调起手机拨号!
微信官方文档·:https://developers.weixin.qq.com/miniprogram/dev/api/device/phone/wx.makePhoneCall.html
方法也很简单,直接调用wx.makePhoneCall({}),如下图,phoneNumber就是电话号码,触发call方法后,会直接跳转到拨号页面,如下图:
call() { // 打电话
let phone = "13123123123" // 仅为示例,并非真实的电话号码
wx.makePhoneCall({
phoneNumber: phone
})
}