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