微信小程序拨打电话

call(){
  wx.makePhoneCall({
    phoneNumber: '4007-000-000', //仅为示例,并非真实的电话号码
    success: function() {
      console.log("拨打电话成功!")
    },
    fail: function() {
      console.log("拨打电话失败!")
    }
  })


},

你可能感兴趣的:(微信小程序,小程序)