Commit 19f0e7af by 张卓

第三方分享链接需要带mixid

parent ccf2dba7
...@@ -62,6 +62,8 @@ export default { ...@@ -62,6 +62,8 @@ export default {
//分享页面去掉登录态 //分享页面去掉登录态
if (url.indexOf("sessionid") > -1) { if (url.indexOf("sessionid") > -1) {
url = url.split("?")[0] + "?mixid=" + this.shopId; url = url.split("?")[0] + "?mixid=" + this.shopId;
}else if(url.indexOf('getMixId') > -1) {//分享链接需要带mixid
url = forUrlAddKey(url,{mixid: this.shopId})
} }
this.shareUrl = url ; this.shareUrl = url ;
console.log(this.shareUrl, "index12"); console.log(this.shareUrl, "index12");
......
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