提交 e4618efd authored 作者: 何守志's avatar 何守志

heshouzhi:延迟1秒加载

上级 954679a1
......@@ -38,10 +38,10 @@ export default {
{
console.log(tokenId);
yield call(setToken, tokenId);// 这里的yield ,跟C#中的await一样
yield put(routerRedux.push('/Home'));
yield put(routerRedux.push('/Home'))
}else
{
yield put(routerRedux.push('/Login'));
yield put(routerRedux.push('/Login'))
}
},
},
......
......@@ -28,6 +28,7 @@ class IndexPage extends React.Component{
super(props);
this.ti = this.ti.bind(this);
}
//手机号判断
telCheck=(event)=>{
const tel=event.target.value;
......
......@@ -6,7 +6,10 @@ class MiddleSelectPage extends React.Component{
componentDidMount() {
const { dispatch } = this.props;
console.info(this.props);
dispatch({ type: 'middleSelect/checkOpenID',payload: {}});
setTimeout(function () {
dispatch({ type: 'middleSelect/checkOpenID',payload: {}})
},1000);
}
render(){
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论