javascript
mobile:'17344444388',//客服电话
结构
bash
<view data-phone="{{ costomerPhone }}" catchtap='makeCall'>
手机号:{{ mobile}}
<text style="color: coral;">点击拨打</text>
</view>
方法
bash
// 拨打电话
makeCall(e) {
// 调用微信的拨打电话API 安卓直接跳转到手机拨号页面 苹果要用户点击同意才跳转
wx.makePhoneCall({
phoneNumber: e.currentTarget.dataset.phone,
})
},
使用wx.makePhoneCall(Object object)
实现拨打电话功能,详细介绍见官方介绍