Commit e70e3d65 by 施宇

Merge branch 'lt_yaohaoyou' into Development

parents 5a214868 c39ce500
...@@ -20,10 +20,6 @@ ...@@ -20,10 +20,6 @@
type: String, type: String,
default: window.location.href default: window.location.href
}, },
currentUrl: {
type: String,
default:window.location.href
},
title: { title: {
type: String, type: String,
default: '好物分享给你,帮我助力,我们一起免费拿样品' default: '好物分享给你,帮我助力,我们一起免费拿样品'
...@@ -70,20 +66,27 @@ ...@@ -70,20 +66,27 @@
} }
} }
}, },
beforeCreate(){
let href = window.location.href;
if(href.indexOf('groupmessage') > -1 || href.indexOf('singlemessage') > -1 || href.indexOf('timeline') > -1){
href = href.replace(/\?from=(groupmessage|singlemessage|timeline)(\S*)#/, '#');
window.location.replace(href);
}
},
created() { created() {
//无需登录的情况下 //无需登录的情况下
let me = this;
if (!this.isLogin) { if (!this.isLogin) {
this.$store.dispatch({ this.$store.dispatch({
type: "wxShare", type: "wxShare",
current_url:me.currentUrl current_url:location.href
}); });
} }
else{ else{
if (util.getCookie("Yo4teW_uid")) { if (util.getCookie("Yo4teW_uid")) {
this.$store.dispatch({ this.$store.dispatch({
type: "wxShare", type: "wxShare",
current_url: me.currentUrl current_url:location.href
}); });
} }
} }
......
<template> <template>
<section class="oscilloscope"> <section class="oscilloscope">
<Header :title="title" :meaushow="meaushow" :bgcolor="bgcolor"></Header> <Header :title="title" :meaushow="meaushow" :bgcolor="bgcolor"></Header>
<wxShare :link="shareUrl" :isSbq="true" :isLogin="false" :currentUrl="currentUrl" title="DS1104示波器年中惊爆价3299,速抢!" desc="示波器年中狂欢,ZDS1104仅需3299,邀请好友还能拿奖励〜" imgUrl="http://img.ichunt.com/images/ichunt/self_sample/sbq-icon.jpg"></wxShare> <wxShare :link="shareUrl" :isSbq="true" :isLogin="false" title="DS1104示波器年中惊爆价3299,速抢!" desc="示波器年中狂欢,ZDS1104仅需3299,邀请好友还能拿奖励〜" imgUrl="http://img.ichunt.com/images/ichunt/self_sample/sbq-icon.jpg"></wxShare>
<div class="top-users"> <div class="top-users">
<ul :class="{'animate-ul':animate}"> <ul :class="{'animate-ul':animate}">
<li v-for="item in bannerData">{{item}}</li> <li v-for="item in bannerData">{{item}}</li>
...@@ -118,11 +118,11 @@ export default { ...@@ -118,11 +118,11 @@ export default {
meaushow: true, meaushow: true,
bgcolor: "#fafafa", bgcolor: "#fafafa",
animate:false, animate:false,
shareUrl: window.location.origin + window.location.pathname + ((util.getCookie("Yo4teW_uid"))?('#/oscilloscope?invitedId='+util.getCookie("Yo4teW_uid")):"#/oscilloscope"), shareUrl: window.location.origin + window.location.pathname + ((util.getCookie("Yo4teW_uid"))?('#/oscilloscope?invitedId='+util.getCookie("Yo4teW_uid")):"#/oscilloscope")
currentUrl:window.location.origin+window.location.pathname
}; };
}, },
created(){ created(){
console.log(this.shareUrl)
let {invitedId} = this.$route.query; let {invitedId} = this.$route.query;
if(invitedId){ if(invitedId){
SetCookie('sbqinvitedId',invitedId,1); SetCookie('sbqinvitedId',invitedId,1);
......
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 sign in to comment