- <view class="student-list">
- <van-search placeholder="请输入搜索关键词" input-align="center" shape="round" focus="true" bind:change="onSearch" left-icon="" bind:cancel="onCancel" value="{{ searchValue }}" use-right-icon-slot="true">
- <van-icon name="search" slot="right-icon" size="18" bindtap="onSearch" />
- </van-search>
- <van-cell-group wx:if="{{studentList.length>0}}">
- <van-cell wx:for="{{studentList}}" title="{{className}}——{{item.name}}" is-link url="/teacher/pages/workList/workList?studentId={{item.id}}&className={{className}}&studentName={{item.name}}"></van-cell>
- </van-cell-group>
- <view class="empty" wx:else>
- <van-empty/>
- <text>暂无学员</text>
- </view>
- </view>
|