小程序拨打电话

index.wxml
{{mobile}}


index.js
Page({

  /**
   * 页面的初始数据
   */
  data: {
    mobile:'1008611'
  },
  callPhone(e){
     var mobile = e.currentTarget.dataset.phone; 
     var that = this;
     wx.makePhoneCall({
       phoneNumber: mobile,
       success:function(){},
     })
  },
})

你可能感兴趣的:(小程序拨打电话)