Commit 6c118570 by wangshuo

Merge branch '11-11-formal' into dev

parents 9ab88978 3dd04d46
...@@ -27,10 +27,16 @@ class BlessingGetPrize extends Component { ...@@ -27,10 +27,16 @@ class BlessingGetPrize extends Component {
} }
componentDidMount () { componentDidMount () {
const _this = this;
setTimeout(function(){
const {history, uid} = _this.props;
if(!uid) {
history.push('/passport')
}else{
http.get(`${API.home}/sys/lottery_result?id=${getParam('id')}`).then(res => { http.get(`${API.home}/sys/lottery_result?id=${getParam('id')}`).then(res => {
const {code, msg, data} = res.data; const {code, msg, data} = res.data;
if(code === 200) { if(code === 200) {
this.setState({ _this.setState({
...data.info, ...data.info,
prize_data: data.prize_data.slice(0, 6), prize_data: data.prize_data.slice(0, 6),
}) })
...@@ -39,6 +45,8 @@ class BlessingGetPrize extends Component { ...@@ -39,6 +45,8 @@ class BlessingGetPrize extends Component {
} }
}); });
} }
}, 100);
}
showAddress = (bool) => { showAddress = (bool) => {
const {history, uid} = this.props; const {history, uid} = this.props;
......
...@@ -33,10 +33,10 @@ class FormalDraw extends Component { ...@@ -33,10 +33,10 @@ class FormalDraw extends Component {
http.get(`${API.home}/sys/activity/prize_data`) http.get(`${API.home}/sys/activity/prize_data`)
.then(res => { .then(res => {
const {data, code, msg} = res.data const {data, code, msg} = res.data
const oneDay = data.list.filter(item => item.date === data.value.today)
const activeIndex = oneDay[0]['son'].findIndex(item => item.status == 3)
if (code == 200) { if (code == 200) {
const {today} = data.value const {today} = data.value
const oneDay = data.list.filter(item => item.date === data.value.today)
const activeIndex = oneDay[0]['son'].findIndex(item => item.status == 3)
this.setState({ this.setState({
tabs: data.list.map(item => ({title: item.date})), tabs: data.list.map(item => ({title: item.date})),
today, today,
......
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