studentList.wxml 742 B

123456789101112
  1. <view class="student-list">
  2. <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">
  3. <van-icon name="search" slot="right-icon" size="18" bindtap="onSearch" />
  4. </van-search>
  5. <van-cell-group wx:if="{{studentList.length>0}}">
  6. <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>
  7. </van-cell-group>
  8. <view class="empty" wx:else>
  9. <van-empty/>
  10. <text>暂无学员</text>
  11. </view>
  12. </view>