|  | @@ -12,6 +12,7 @@ import com.chad.library.adapter.base.module.BaseLoadMoreModule;
 | 
	
		
			
				|  |  |  import com.chad.library.adapter.base.module.LoadMoreModule;
 | 
	
		
			
				|  |  |  import com.chad.library.adapter.base.viewholder.BaseViewHolder;
 | 
	
		
			
				|  |  |  import com.cooleshow.base.utils.GlideUtils;
 | 
	
		
			
				|  |  | +import com.cooleshow.base.utils.StringUtils;
 | 
	
		
			
				|  |  |  import com.cooleshow.base.utils.TimeUtils;
 | 
	
		
			
				|  |  |  import com.cooleshow.base.utils.UiUtils;
 | 
	
		
			
				|  |  |  import com.cooleshow.teacher.R;
 | 
	
	
		
			
				|  | @@ -43,12 +44,19 @@ public class MineLiveCourseAdapter extends BaseQuickAdapter<MineLiveCourseListBe
 | 
	
		
			
				|  |  |          String timeStr = TextUtils.isEmpty(item.courseStartTime) ? "" : TimeUtils.date2String(TimeUtils.string2Date(item.courseStartTime), "yyyy-MM-dd HH:mm");
 | 
	
		
			
				|  |  |          //时间
 | 
	
		
			
				|  |  |          helper.setText(R.id.tv_time, "开课时间:" + timeStr);
 | 
	
		
			
				|  |  | +        //title
 | 
	
		
			
				|  |  | +        helper.setText(R.id.tv_title, item.courseGroupName);
 | 
	
		
			
				|  |  | +        //介绍
 | 
	
		
			
				|  |  | +        String courseIntroduce = item.courseIntroduce;
 | 
	
		
			
				|  |  | +        if (TextUtils.isEmpty(courseIntroduce)) {
 | 
	
		
			
				|  |  | +            courseIntroduce = "暂无介绍";
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        courseIntroduce = StringUtils.replaceSpace(courseIntroduce);
 | 
	
		
			
				|  |  | +        helper.setText(R.id.tv_des, courseIntroduce);
 | 
	
		
			
				|  |  |          //课程封面
 | 
	
		
			
				|  |  |          ImageView iv_bg = helper.getView(R.id.iv_bg);
 | 
	
		
			
				|  |  |          GlideUtils.INSTANCE.loadImage(getContext(), item.backgroundPic, iv_bg);
 | 
	
		
			
				|  |  | -        //课程组名称
 | 
	
		
			
				|  |  | -        TextView tv_course_name = helper.getView(R.id.tv_course_name);
 | 
	
		
			
				|  |  | -        tv_course_name.setText(item.courseGroupName);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          //学生购买人数
 | 
	
		
			
				|  |  |          TextView tv_student_count = helper.getView(R.id.tv_buy_num);
 | 
	
		
			
				|  |  |          tv_student_count.setText(UiUtils.getBuyNumTip(item.coursePrice, item.studentCount));
 |