自学内容网 自学内容网

微信小程序点击跳转打电话功能

wx.makePhoneCall

属性类型默认值必填说明
phoneNumberstring需要拨打的电话号码
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)
<view class="f16 mt20 flex align_center" wx:if="{{item.telephone}}">
    联系电话:<text>{{item.telephone?item.telephone:''}}</text>
    <van-icon wx:if="{{item.telephone}}" data-item="{{item}}" bind:tap="callPhone" name="phone" color="#00d59e" style="margin-left:20rpx" size="25" />
</view>
 callPhone(event) { //拨打电话
    var item = event.currentTarget.dataset.item;
    wx.showModal({
      title: '提示',
      content: '是否拨打' + item.telephone,
      success: (res) => {
        if (res.confirm) {
          wx.makePhoneCall({
            phoneNumber: item.telephone,
          })
        }
      }
    })
  },

 


原文地址:https://blog.csdn.net/XYX8958/article/details/143801193

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!