Commit da7eb068 by xuzhenghua

bug

parent 399c2cfb
...@@ -130,7 +130,7 @@ class FormalDraw extends Component { ...@@ -130,7 +130,7 @@ class FormalDraw extends Component {
lotteryFunc = (status, id) => { lotteryFunc = (status, id) => {
const {hasError} = this.props.user const {hasError} = this.props.user
if (hasError) { if (hasError && status != 4) {
this.props.toLogin() this.props.toLogin()
return return
} }
...@@ -138,6 +138,8 @@ class FormalDraw extends Component { ...@@ -138,6 +138,8 @@ class FormalDraw extends Component {
this.draw(id) this.draw(id)
} else if (status == 2) { } else if (status == 2) {
this.subscribe(id) this.subscribe(id)
} else if (status == 4) {
location.href = `/prize-winner-list?tid=${id}`
} }
} }
......
...@@ -421,6 +421,11 @@ class BlessingPreheat extends Component { ...@@ -421,6 +421,11 @@ class BlessingPreheat extends Component {
} }
getMyPrizeRecord = () => { getMyPrizeRecord = () => {
const isLoginnew = !this.props.user.hasError
const {history} = this.props
if (!isLoginnew) {
history.push('/passport')
}else{
http.get(`${API.home}/sys/activity/my_lotteries`) http.get(`${API.home}/sys/activity/my_lotteries`)
.then(res => { .then(res => {
const {code, data, msg} = res.data const {code, data, msg} = res.data
...@@ -457,6 +462,7 @@ class BlessingPreheat extends Component { ...@@ -457,6 +462,7 @@ class BlessingPreheat extends Component {
} }
}) })
} }
}
submitAddress = debounce(() => { submitAddress = debounce(() => {
http.post(`${API.home}/sys/collect_info`, { http.post(`${API.home}/sys/collect_info`, {
......
...@@ -124,7 +124,8 @@ class Live extends Component { ...@@ -124,7 +124,8 @@ class Live extends Component {
}) })
} }
}) })
} else { } else if(data.errno == 4030 || data.errno == 4040){
}else {
Toast.info(data.msg, 2, null, false) Toast.info(data.msg, 2, null, 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