Micro letter applet contact customer service and make calls

 

dial number

html

        <image class="aqwe" src="/images/dianhuas.png" data-tell="{{item.phone}}" bindtap="tell"></image>

js

 tell:function(e){
    console.log(e)
    var tell = e.currentTarget.dataset.tell
    wx.makePhoneCall({
      phoneNumber:tell+''//仅为示例,并非真实的电话号码
    })
  },

 

Contact Customer Service 

<button open-type="contact" class='contant' bindcontact="handleContact">

<image class='aqwe' src='/images/kfu.png'></image>

</button>
Published 12 original articles · won praise 1 · views 199

Guess you like

Origin blog.csdn.net/ws072488/article/details/103418277