1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <view class="container">
- <!-- 顶部学生信息 -->
- <view class="head-view">
- <view class="head-left">
- <view class="head-img-view" wx:for="{{userItems}}" wx:key="index" data-id="{{item.studentId}}" bindtap="changeStu" wx:if="{{curStu.orgId == item.orgId}}">
- <image class="{{curStu.studentId == item.studentId ? 'curStu' : 'stuHead'}}" src="{{item.imageUrl}}"></image>
- </view>
- </view>
- <view class="head-right">
- <view class="section">
- <picker bindchange="bindPickerChange" value="{{index}}" range="{{orgItems}}" range-key="orgName">
- <view class="picker">
- {{orgItems[index].orgName}}
- </view>
- </picker>
- </view>
- </view>
- </view>
- <!-- end -->
- <!-- 轮播图 -->
- <view class="swiper">
- <swiper class="banner" autoplay circular interval="3000">
- <block wx:for="{{bannerList}}" wx:key="index">
- <swiper-item class="banner-box" >
- <image lazy-load mode="aspectFill" class="bb-image" src="{{item.imageUrl}}"></image>
- </swiper-item>
- </block>
- </swiper>
- </view>
- <!-- end -->
- <!-- 课程数据 -->
- <view class="class-view">
- <view class="title">课程数据</view>
- <view class="class-list">
- <view class="class-box" wx:for="{{classList}}" wx:key="index" data-url="{{item.url}}" bindtap="toPage">
- <view class="class-img">
- <image src="{{item.img}}"></image>
- </view>
- <view class="class-detail">
- <view class="class-num">{{item.num}}</view>
- <view class="class-title">{{item.title}}</view>
- </view>
- </view>
- </view>
- </view>
- <!-- end -->
- <!-- 我的应用 -->
- <view class="app-view">
- <view class="title">我的应用</view>
- <view class="app-list">
- <view class="app-box" wx:for="{{appList}}" wx:key="index" data-url="{{item.url}}" bindtap="toPage">
- <view class="app-img">
- <image src="{{item.img}}"></image>
- </view>
- <view class="app-title">{{item.title}}</view>
- </view>
- </view>
- </view>
- <!-- end -->
- <!-- 学生秀 -->
- <view class="show-view">
- <view class="title-view">
- <view class="title">学生秀</view>
- <view class="more" bindtap="getMoreShow">更多</view>
- </view>
- <showView list="{{stuShowList}}" bind:callThumbsUp="doThumbsUp"></showView>
- <view class="reset-btn" bindtap="queryStudentShow">换一批</view>
- </view>
- <!-- end -->
- <!-- 老师秀 -->
- <view class="show-view">
- <view class="title-view">
- <view class="title">老师秀</view>
- <view class="more" bindtap="getMoreShow">更多</view>
- </view>
- <showView list="{{teaShowList}}" bind:callThumbsUp="doThumbsUp"></showView>
- <view class="reset-btn" bindtap="queryTeacherShow">换一批</view>
- </view>
- <!-- end -->
- </view>
|