按钮绑定在页面内发起转发事件onShareApp:(注意这里是button 并且给他设置了open-type=”share” 属性)
按钮绑定拨打电话的bind_tal事件:()
// 点击事件触发page执行转发的函数
onShareApp:function(){
this.onShareAppMessage()
},
// 在page定义转发函数
onShareAppMessage: function () {
return {
title: ‘采购物资信息’,
desc: ‘采购物资信息分享!’,
path: ‘/pages/index/pur_details/pur_details’
}
},
// 拨打电话
bind_tal:function(){
wx.makePhoneCall({
phoneNumber: ‘1340000’ //仅为示例,并非真实的电话号码
})
}
######################################################################
js文件
放在page里
calling: function (e) {
wx.makePhoneCall({
phoneNumber: e.currentTarget.dataset.replyPhone,
success: function () {
console.log(“拨打电话成功!”)
},
fail: function () {
console.log(“拨打电话失败!”)
}
})
},
wxml文件