码迷,mamicode.com
首页 > 微信 > 详细

小程序拨打电话

时间:2020-01-13 12:35:21      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:span   page   this   tar   line   cal   ndt   color   hot   

index.wxml
<view class="hotLine" bindtap="callPhone" data-phone="{{mobile}}">{{mobile}}</view>


index.js
Page({

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

小程序拨打电话

标签:span   page   this   tar   line   cal   ndt   color   hot   

原文地址:https://www.cnblogs.com/pycmsj/p/12186479.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!