在使用uniapp开发微信小程序的时候,经常需要调用打电话功能。
下面我们来讲解一下如何实现该功能,效果图请看下图:
代码部分:
<!-- h5部分 -->
<button @click="playphone()"></button>
<!-- JS部分 -->
playphone(){
uni.makePhoneCall({
// 手机号 这里可以直接写号码如 12345 也可以写获取号码的字段如this.mobile
phoneNumber: this.mobile,
// 成功回调
success: (res) => {
console.log('调用成功!')
},
// 失败回调
fail: (res) => {
console.log('调用失败!')
}
});
},