tel: function (e) {
console.log(e.currentTarget.dataset.phone);
debugger
wx.makePhoneCall({
phoneNumber: e.currentTarget.dataset.phone,
success: function () {
console.log('success');
debugger
},
fail: function (err) {
console.log(err);
}
})
},
//备注
1-如果固定手机号,没有问题
2-三位号没问题
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
tel: function (e) {
console.log(e.currentTarget.dataset.phone);
wx.makePhoneCall({
phoneNumber: e.currentTarget.dataset.phone,
success: function () {
console.log('success');
},
fail: function (err) {
console.log(err);
}
})
},
tel: function (e) {
•
//添加过滤正则
var phone = e.currentTarget.dataset.phone.replace(/[^0-9]+/g,'')
•
wx.makePhoneCall({
•
phoneNumber: phone,
•
success: function () {
•
console.log('success');
•
},
•
fail: function (err) {
•
console.log(err);
•
}
•
})
•
},