Commit 7164dca8 by zhanghaozhe

全局入口

parent b9f86e57
......@@ -35,6 +35,10 @@ class App extends Component {
firstLoad = true
state = {
isShowActivityEntry: true
}
componentWillMount() {
if (!getParam('version')) {
if (!cookie.get('qimoClientIdedu')) {
......@@ -46,6 +50,8 @@ class App extends Component {
}
componentDidMount() {
Date.now() > new Date(2020,3,1) && this.setState({isShowActivityEntry: false})
this.umengStatistic()
//平台信息
!getParam('version') && cookie.set('plat', '5', {domain: '.julyedu.com'})
......@@ -317,9 +323,12 @@ class App extends Component {
render() {
return <>
<Routes/>
<Link className={'year19-index'} to="/box/boxActive">
<img src="https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/treasure-active/m/global-entry.png" alt=""/>
</Link>
{
this.state.isShowActivityEntry &&
<Link className={'year19-index'} to="/box/boxActive">
<img src="https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/treasure-active/m/global-entry.png" alt=""/>
</Link>
}
</>
}
}
......
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