wx.makePhoneCall
可以在微信小程序里调用手机拨打电话的功能
传入phoneNumber
电话号码就可以拨打电话
wx.makePhoneCall的参数说明
index.wxml
<view>
<button bindtap='makecall'> 拨打电话 </button>
</view>
index.js
Page({
makecall: function(){
wx.makePhoneCall({
phoneNumber: '17300000000',
})
}
})