Commit 7e96d9a8 authored by zhangyanni's avatar zhangyanni

ceshi

parent 2148c54a
......@@ -90,7 +90,8 @@
url:"",
disabledFlag:0,
popupVisible:false,
dialogVisible:false
dialogVisible:false,
config:{}
}
},
......@@ -202,9 +203,10 @@
//分享
handleOpreation(){
var ua = navigator.userAgent.toLowerCase();
var ua = navigator.userAgent.toLowerCase(),that = this;
if(ua.match(/MicroMessenger/i)=="micromessenger") {
this.shareFunc();
that.shareFunc();
} else {
this.dialogVisible = false;
this.popupVisible = true;
......@@ -227,9 +229,11 @@
shareFunc(){
let params = {
appUrl:window.location.href //document.location.href.split("#")[0]+"/?#"+document.location.href.split("#")[1]
};
},that = this;
api.getConfigAxios(params).then((res)=>{
if(res.code==0){
this.detailInfo.shareTitle = this.detailInfo.channelTitle;
this.detailInfo.url = document.location.href;
this.config = res.result;
wx.config({
debug:true,// 是否开启调试模式
......@@ -304,9 +308,25 @@
}
})
});
wx.miniProgram.getEnv(function(res) {
if(res.miniprogram){
wx.miniProgram.postMessage({
data: that.detailInfo
})
// true代表在小程序里
}else{
that.dialogVisible = true;
that.popupVisible = false;
//false代表在公众号里
}
})
this.dialogVisible = true;
this.popupVisible = false;
}else{
this.$toast(res.msg);
}
......
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