student.wxml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <van-search
  2. value="{{ key }}"
  3. placeholder="请输入搜索关键词"
  4. use-action-slot
  5. bind:search="onSearch"
  6. bind:change="onChange"
  7. class="search"
  8. >
  9. <view slot="action" class="search-right">
  10. <view bind:tap="onSearch">搜索</view>
  11. </view>
  12. </van-search>
  13. <view class="container">
  14. <edu-loadmore isEmpty="{{rows.length == 0}}" isRefresh="{{isRefresh}}" isLoading="{{isLoading}}"
  15. isComplete="{{noMore}}">
  16. <view class='card' wx:for="{{rows}}" wx:key="index">
  17. <view class="base-info">
  18. <van-image width="69rpx" height="69rpx" fit="cover" round src="{{item.picUrl}}" class="student-avater"/>
  19. <view class="user-info">
  20. <view class="user-base">
  21. <view class="user-name">{{item.name}}</view>
  22. <view class="user-tag user-tag1" wx:if="{{myStuId == item.id}}">
  23. {{item.teamJobName || '学员'}}(我)
  24. </view>
  25. <view class="user-tag user-tag2" wx:if="{{myStuId != item.id}}">
  26. {{item.teamJobName || '学员'}}
  27. </view>
  28. <view class="space"></view>
  29. <van-icon name="/images/ic_student_tel.png" size="33rpx" wx:if="{{item.phone}}"
  30. bind:tap="callPhone" data-phone="{{item.phone}}"/>
  31. <view class="user-tel" bind:tap="callPhone" data-phone="{{item.phone}}">{{item.phone || ""}}
  32. </view>
  33. </view>
  34. <view class="user-other">
  35. {{sexs[item.sex]}} {{item.nationName || "未知"}}
  36. {{item.teamName}}({{item.groupName ? item.groupName : '未分组'}})
  37. </view>
  38. </view>
  39. </view>
  40. <view class="other-info">
  41. <view class="user-job">
  42. <view class="other-tag">
  43. <van-icon name="/images/ic_student_job.png" size="24rpx"/>
  44. <view class="other-tag-txt">职务</view>
  45. </view>
  46. <view class="other-content">{{item.jobName || "未知"}}</view>
  47. </view>
  48. <view class="divide"></view>
  49. <view class="space" bind:tap="sleep" data-item="{{item}}">
  50. <view class="other-tag">
  51. <van-icon name="/images/ic_student_sleep.png" size="24rpx"/>
  52. <view class="other-tag-txt">住宿安排</view>
  53. </view>
  54. <view class="other-tag-txt other-txt">查看详细
  55. <van-icon name="arrow"/>
  56. </view>
  57. </view>
  58. </view>
  59. </view>
  60. </edu-loadmore>
  61. </view>