45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
<!-- 头部 -->
|
|
<view class="stuTop">
|
|
<image class="stuTop-back" src="/static/img/studentIndex.jpg"></image>
|
|
<view class="stuTop-cont">
|
|
<image class="stuTop-head" src="{{uesrData.cover}}"></image>
|
|
<view class="stuTop-text">
|
|
<view class="nowrap stuTop-name">{{uesrData.nickname}}</view>
|
|
<view class="nowrap stuTop-tips">班主任:{{uesrData.parent}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 列表 -->
|
|
<view class="spaceTabar">
|
|
<view class="stuFoot" wx:if="{{listArr.length > 0}}">
|
|
<navigator hover-class="none" url="/pages/publicCourse/index?type=stu&levelid={{item.level_id}}"
|
|
class="uni-border-down stuList" wx:for="{{listArr}}" wx:key="listArr">
|
|
<view class="stuList-icon">
|
|
<image src="/static/img/stuList_icon_play.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>
|
|
</navigator>
|
|
|
|
<!-- 下拉加载 -->
|
|
<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>
|
|
</view>
|
|
|
|
<!-- 底部菜单 -->
|
|
<userTabBar atPagesUrl="/pages/stuIndex/index"></userTabBar> |