|  | @@ -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.UiUtils;
 | 
	
		
			
				|  |  |  import com.cooleshow.teacher.R;
 | 
	
		
			
				|  |  |  import com.cooleshow.teacher.bean.MineLiveCourseListBean;
 | 
	
		
			
				|  |  |  import com.cooleshow.teacher.bean.MineVideoCourseListBean;
 | 
	
	
		
			
				|  | @@ -47,13 +48,14 @@ public class MineVideoCourseAdapter extends BaseQuickAdapter<VideoCourseListBean
 | 
	
		
			
				|  |  |          TextView tv_teacher_name = helper.getView(R.id.tv_teacher_name);
 | 
	
		
			
				|  |  |          tv_teacher_name.setText(item.username);
 | 
	
		
			
				|  |  |          TextView tv_price = helper.getView(R.id.tv_price);
 | 
	
		
			
				|  |  | -        String price = "¥" + item.lessonPrice + "/" + item.lessonCount + "课时";
 | 
	
		
			
				|  |  | -        tv_price.setText(price);
 | 
	
		
			
				|  |  | +        tv_price.setText(UiUtils.getVideoCoursePriceText(item.lessonPrice, item.lessonCount));
 | 
	
		
			
				|  |  |          TextView tv_buy_num = helper.getView(R.id.tv_buy_num);
 | 
	
		
			
				|  |  |          if (TextUtils.equals(item.auditStatus, "PASS")) {
 | 
	
		
			
				|  |  |              tv_buy_num.setText(item.countStudent + "人已购买");
 | 
	
		
			
				|  |  |              tv_buy_num.setVisibility(View.VISIBLE);
 | 
	
		
			
				|  |  | +            helper.setVisible(R.id.view_line2, true);
 | 
	
		
			
				|  |  |          } else {
 | 
	
		
			
				|  |  | +            helper.setVisible(R.id.view_line2, false);
 | 
	
		
			
				|  |  |              tv_buy_num.setVisibility(View.GONE);
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 |