Commit d48f3305 by wangshuo

单集购买

parent caa7ef26
...@@ -88,8 +88,14 @@ class Single extends Component { ...@@ -88,8 +88,14 @@ class Single extends Component {
} }
// 特价购买全集 // 特价购买全集
toBuyAll = () => { toBuyAll = (vcourseId) => {
http.get(`${API['base-api']}/m/cart/addtopreorder/${vcourseId}`).then((res) => {
if (res.data.errno === 0) {
this.props.history.push("/order?id=" + res.data.data[0], {type: 1});
} else {
Toast.info(res.data.msg, 2);
}
})
} }
// 0元购买全集 // 0元购买全集
zerobuyReceive = () => { zerobuyReceive = () => {
...@@ -187,7 +193,7 @@ class Single extends Component { ...@@ -187,7 +193,7 @@ class Single extends Component {
<div className="dec">· 3天内购买全集,可直接抵扣该集费用,{this.props.nowPrice}元购买。</div> <div className="dec">· 3天内购买全集,可直接抵扣该集费用,{this.props.nowPrice}元购买。</div>
<div className="dec">· 超过3天,按照未购集数/全部集数等比例计费,{this.props.laterPrice}元购买全集。</div> <div className="dec">· 超过3天,按照未购集数/全部集数等比例计费,{this.props.laterPrice}元购买全集。</div>
<Link to={`/play/video?id=${this.props.vcourseId}&video_id=${videoID}`} className='btn btn-18B4ED'>开始学习</Link> <Link to={`/play/video?id=${this.props.vcourseId}&video_id=${videoID}`} className='btn btn-18B4ED'>开始学习</Link>
<div className='btn btn-FF4000' onclick={this.toBuyAll()}>{this.props.nowPrice}购买全集 <div className='btn btn-FF4000' onClick={()=>{this.toBuyAll(this.props.vcourseId)}}>{this.props.nowPrice}购买全集
</div> </div>
</div> </div>
} }
......
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