12345678910111213141516171819202122232425262728293031323334 |
- <view class="practicalCourse {{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=='待完成'||obj.status=='已报名'?'':'type_end'}}">{{obj.status}}</text>
- </view>
- <view data-code="{{obj.c_code}}" bindtap="signUp">
- <image class="isimg" src="{{obj.img_href}}" lazy-load></image>
- <view class="flex_between titleView">
- <text class="ys-font16 title">{{obj.c_name}}</text>
- <text class="color96 people">{{obj.pcount}}人已报名</text>
- </view>
- <view class="flex_between desc">
- <view class="descInfo">
- <view class="color96 time">时间:{{obj.startdate}}</view>
- <view class="color96 address">地址:{{obj.address}}</view>
- </view>
- <view class="ys-font16 signUp {{obj.learningStatus=='立即报名'||obj.learningStatus=='查看报名'?'':'signUp_dis'}}">{{obj.learningStatus}}</view>
- </view>
- </view>
- <!-- 底部 -->
- <view wx:if="{{showBot}}" class="flex_between bot" bindtap="lookBack">
- <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>
|