Commit 64f51b0f by zhanghaozhe

红包统计

parent c86d3c6b
...@@ -46,8 +46,6 @@ class App extends Component { ...@@ -46,8 +46,6 @@ class App extends Component {
this.setNavigationRecord(this.props.location) this.setNavigationRecord(this.props.location)
window.addEventListener('beforeunload', this.removeShareCodeCookie)
//平台信息 //平台信息
cookie.set('plat', '5', {domain: '.julyedu.com'}) cookie.set('plat', '5', {domain: '.julyedu.com'})
...@@ -174,7 +172,7 @@ class App extends Component { ...@@ -174,7 +172,7 @@ class App extends Component {
let payload let payload
if (res.data.code === 200) { if (res.data.code === 200) {
//移除红包统计cookie //移除红包统计cookie
cookie.remove('share_code', {path: '/', domain: '.julyedu.com'}) this.removeShareCodeCookie()
const { const {
msg, data: { msg, data: {
avatar_file: avatar, avatar_file: avatar,
...@@ -210,6 +208,8 @@ class App extends Component { ...@@ -210,6 +208,8 @@ class App extends Component {
transformWxUser = res => { transformWxUser = res => {
let data = res.data let data = res.data
if (data.errno == 200) { if (data.errno == 200) {
//移除红包统计cookie
this.removeShareCodeCookie()
let {uid, token, avatar_file: avatar, uname: username,} = data.data let {uid, token, avatar_file: avatar, uname: username,} = data.data
return { return {
......
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