123456789101112131415161718192021222324252627282930313233 |
- <view class="regularCourse {{isList?'is_list':''}}">
- <!-- 头部 -->
- <view class="ys-font12 head">
- <text class="name">{{isTitle}}</text>
- <text class="tag">奖励</text>
- <text class="color96 credit">{{obj.credit}}学分 | </text>
- <text class="color96 credit" decode="{{true}}"> {{obj.scholarships}}</text>
- <image class="jb-icon" src="https://yuesuo.yueguanjia.com/MiniProgram/images/jinbi.png" />
- <text class="type {{obj.status!='已完成'?'':'type_end'}}">{{obj.status}}</text>
- </view>
- <!-- 中部 -->
- <view class="flex_between content" data-="{{obj.c_code}}" data-id="{{obj.id}}" bindtap="goDetail">
- <view class="left">
- <view class="one">
- <text wx:if="{{obj.status!='已完成'}}" class="cricel"></text>
- <text class="ys-font16 title">{{obj.c_name}}</text>
- </view>
- <view class="color96 two">{{obj.c_desc}}</view>
- <text class="color96 people">{{obj.pcount}}人已学</text>
- </view>
- <image class="rightImg" lazy-load src="{{obj.img_list_href}}"></image>
- </view>
- <!-- 底部 -->
- <view wx:if="{{showBot}}" class="flex_between bot" bindtap="lookMore">
- <text class="color96">更多</text>
- <view class="imglistright">
- <text class="color96">查看往期</text>
- <image src="https://yuesuo.yueguanjia.com/MiniProgram/images/littlegrey.png"></image>
- </view>
- </view>
- </view>
|