wx.makePhoneCall
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
phoneNumber | string | 是 | 需要拨打的电话号码 | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
<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,
})
}
}
})
},