You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
916 B
21 lines
916 B
5 years ago
|
<navigator class="bg{{data.id%7}} course" url="/course/pages/course/course?course_id={{data.id}}" bindlongpress="showAction">
|
||
|
<view wx:if="{{data.sticky}}" class="sticky"></view>
|
||
5 years ago
|
<view class="header">
|
||
5 years ago
|
<mp-icon class="action" icon="more" catchtap="showAction" type="field" color="white"/>
|
||
5 years ago
|
</view>
|
||
5 years ago
|
<view class="body">
|
||
5 years ago
|
<image class="avatar" src="{{eduImgDir}}{{data.avatar_url}}" />
|
||
5 years ago
|
<view class="course-info">
|
||
5 years ago
|
<view class="course-name">{{data.name}}</view>
|
||
5 years ago
|
<view class="info">
|
||
|
<text class="school">{{data.school}}</text>
|
||
|
<text>{{data.creator}}</text> </view>
|
||
|
<view class="detail">
|
||
5 years ago
|
<mp-icon icon="group-detail" size="14" color="white"/>
|
||
5 years ago
|
<text class="detail-num">{{data.course_members_count}}</text>
|
||
|
<iconfont type="visit-num" size="14"/>
|
||
|
<text class="detail-num">{{data.visits}}</text>
|
||
|
</view>
|
||
5 years ago
|
</view>
|
||
|
</view>
|
||
|
</navigator>
|