Files
barter-app/手太欠/优迪尔-小程序/pages/publicCourse/index.wxml
张慢慢 1d6e2451a7 [上传]
2021-06-02 17:25:52 +08:00

28 lines
1.1 KiB
Plaintext

<view class="stuFoot" wx:if="{{courseData.length > 0}}">
<!-- 列表 -->
<view class="uni-border-down stuList" wx:for="{{courseData}}" wx:key="courseData" bindtap="publicUrl" data-id="{{item.learn_course_id}}" data-stuId="{{item.course_id}}">
<view class="stuList-icon">
<image src="/static/img/stuList_icon_back.png"></image>
</view>
<view class="stuList-cont">
<view class="nowrap stuList-name">{{item.title}}</view>
<view class="stuList-more">查看课程<image src="/static/img/stuList_row.png"></image>
</view>
</view>
</view>
<!-- 下拉加载 -->
<view class="pagesLoding" wx:if="{{lodingStats}}">
<block wx:if="{{page.has_more}}">
<image class="pagesLoding-icon" src="/static/img/refresh_loding.gif" mode="widthFix"></image>加载中...
</block>
<block wx:else>
没有更多了~
</block>
</view>
</view>
<view class="pack-center pages-hint" wx:else>
<image src="/static/img/null_icon.png"></image>
<view>暂无数据</view>
</view>