Commit 3d54b358 by wangshuo

跳转到优惠券时参数添加

parent 3ab39396
......@@ -14,6 +14,7 @@
.idea/
# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
......
......@@ -38,7 +38,12 @@ function OrderList(props) {
arrow="horizontal"
onClick={() => { }}
>
<Link to='/coupons'>
<Link to={{
pathname: '/coupons',
state: {
from: '/order',
course_id: course_id,
}}}>
<Flex justify='between'>
<span style={{ color: '#333', fontSize: '15px' }}>优惠券</span>
<span style={{ fontSize: '14px', color: '#999999' }}>{!coupon_desc ? (coupon_num === 0 ? '无' : `${coupon_num}张可用`) : (coupon_desc)}</span>
......
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