Commit 7ae1fd71 by xuzhenghua

Merge branch 'new-ml-class' of https://gitlab.julyedu.com/baiguangyao/mr-julyedu into dev

parents 5bad60df 81ac03a9
...@@ -219,8 +219,9 @@ class ML extends Component { ...@@ -219,8 +219,9 @@ class ML extends Component {
// 旧版本 无论购买未购买 都跳转到 未购买的详情页; 如果是已购买就提示更新APP // 旧版本 无论购买未购买 都跳转到 未购买的详情页; 如果是已购买就提示更新APP
return ( return (
<div> <div>
{ {
isPay === 0 && ( isPay === 0 && buyTry === 0 && (
<PythonDes <PythonDes
backwardVersion={backwardVersion} backwardVersion={backwardVersion}
isWxloginFun={this.isWxloginFun.bind(this)} isWxloginFun={this.isWxloginFun.bind(this)}
...@@ -232,7 +233,7 @@ class ML extends Component { ...@@ -232,7 +233,7 @@ class ML extends Component {
) )
} }
{ {
(isPay === 1 && !getParam('version')) && <PythonStudy isAppUpdate={isAppUpdate} buyTry={buyTry}/> ((isPay === 1 || buyTry === 1) && !getParam('version')) && <PythonStudy isAppUpdate={isAppUpdate} buyTry={buyTry}/>
} }
{ {
......
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