欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 文旅 > 八卦 > 微信小程序点击跳转打电话功能

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

2024/11/30 6:48:42 来源:https://blog.csdn.net/XYX8958/article/details/143801193  浏览:    关键词:微信小程序点击跳转打电话功能

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,})}}})},

 

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com