wx.makePhoneCall可以在微信小程序里调用手机拨打电话的功能
传入phoneNumber电话号码就可以拨打电话

wx.makePhoneCall的参数说明

image.png

  1. index.wxml
  2. <view>
  3. <button bindtap='makecall'> 拨打电话 </button>
  4. </view>
  1. index.js
  2. Page({
  3. makecall: function(){
  4. wx.makePhoneCall({
  5. phoneNumber: '17300000000',
  6. })
  7. }
  8. })

image.png