小程序实现拨打电话

小程序实现拨打电话_第1张图片

//wxml

电话:{{shopNumber}}

 //js

  data: {
    shopNumber:'0730-2153554'

  },
  makePhoneCall:function(){
    wx.makePhoneCall({
      phoneNumber: this.data.shopNumber,
      success:function(){
        console.log('拨打成功')
      },
      fail:function(){
        console.log('拨打失败')
      }
    })
  },

 

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