Commit 2f027a44 authored by zhangyanni's avatar zhangyanni

测试小程序分享

parent 7e9cc67c
......@@ -202,7 +202,7 @@
this.detailInfo.channelStartTime = this.detailInfo.channelStartTime.split(":")[0]+":"+this.detailInfo.channelStartTime.split(":")[1];
this.detailInfo.channelEndTime = this.detailInfo.channelEndTime.split(":")[0]+":"+this.detailInfo.channelEndTime.split(":")[1];
this.detailInfo.activityEndTime = this.detailInfo.activityEndTime.split(":")[0]+":"+this.detailInfo.activityEndTime.split(":")[1];
// this.isWeixinMini();
this.isWeixinMini();
}else{
this.$toast(res.msg);
}
......@@ -211,6 +211,20 @@
})
},
isWeixinMini(){
var isMini = /miniProgram/i.test(userAgent);
if(isMini){
wx.miniProgram.postMessage({
data: {
title: "您的好友邀请您参与"+that.detailInfo.channelTitle,
desc: that.detailInfo.channelTitle,
path: '/pages/sharepage/sharepage?shareUrl=' + JSON.stringfy({url: encodeURIComponent(document.location.href)}) //重点,share.js是小程序的页面中,从分享进入的h5的落地页
}
});
wx.miniProgram.navigateBack({delta: 1})
}
},
//分享
handleOpreation(){
var ua = navigator.userAgent.toLowerCase(),that = this;
......@@ -344,9 +358,9 @@
title: "您的好友邀请您参与"+that.detailInfo.channelTitle,
desc: that.detailInfo.channelTitle
};
wx.miniProgram.navigateTo({
url: '../pcweb/pcweb?data='+JSON.stringify(data)+'&webViewUrl='+JSON.stringfy({url: encodeURIComponent(document.location.href)})
});
// wx.miniProgram.navigateTo({
// url: '../pcweb/pcweb?data='+JSON.stringify(data)+'&webViewUrl='+JSON.stringfy({url: encodeURIComponent(document.location.href)})
// });
// wx.miniProgram.navigateTo({
//
// url: '/pages/empty/empty',
......@@ -354,14 +368,14 @@
// fail: function (err) { alert(JSON.stringify(err)) }
//
// })
// wx.miniProgram.postMessage({
// data: {
// title: "您的好友邀请您参与"+that.detailInfo.channelTitle,
// desc: that.detailInfo.channelTitle,
// path: '/pages/sharepage/sharepage?shareUrl=' + JSON.stringfy({url: encodeURIComponent(document.location.href)}) //重点,share.js是小程序的页面中,从分享进入的h5的落地页
// }
// });
// wx.miniProgram.navigateBack({delta: 1})
wx.miniProgram.postMessage({
data: {
title: "您的好友邀请您参与"+that.detailInfo.channelTitle,
desc: that.detailInfo.channelTitle,
path: '/pages/sharepage/sharepage?shareUrl=' + JSON.stringfy({url: encodeURIComponent(document.location.href)}) //重点,share.js是小程序的页面中,从分享进入的h5的落地页
}
});
wx.miniProgram.navigateBack({delta: 1})
}else{
this.dialogVisible = true;
this.popupVisible = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment