Commit 7164dca8 by zhanghaozhe

全局入口

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