Commit bfb8d3c0 by yuananting

fix:线上课学习详情弹窗序号调整

parent 5b5c23ae
......@@ -56,7 +56,7 @@ class LearningDetailModal extends React.Component {
<div className="course-wrap">
<div className="course-ware" key={index}>
<div className="course-ware__index">{`${
index > 9 ? index + 1 : `0${index + 1}`
index < 9 ? `0${index + 1}` : index + 1
} `}</div>
<img
className="course-ware__img"
......
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