Commit bd6749c9 by wangshuo

课程模块去学习参数传递

parent 17302ee5
...@@ -404,7 +404,7 @@ class YearCourse extends Component { ...@@ -404,7 +404,7 @@ class YearCourse extends Component {
<div className="coupon-course__footer"> <div className="coupon-course__footer">
{ {
item.is_buy == 1 && item.is_buy == 1 &&
<a onClick={this.toCourse} className="btn to-study">开始学习</a> <a onClick={() => this.toCourse(item.course_id)} className="btn to-study">开始学习</a>
} }
{ {
item.is_buy == 0 && item.is_buy == 0 &&
...@@ -440,7 +440,7 @@ class YearCourse extends Component { ...@@ -440,7 +440,7 @@ class YearCourse extends Component {
<div className="coupon-course__footer"> <div className="coupon-course__footer">
{ {
item.is_buy == 1 && item.is_buy == 1 &&
<a toCourse={this.toCourse} className="btn to-study">开始学习</a> <a onClick={() => this.toCourse(item.course_id)} className="btn to-study">开始学习</a>
} }
{ {
item.is_buy == 0 && item.is_buy == 0 &&
......
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