index.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!--pages/userData/index.wxml-->
  2. <van-nav-bar title="报名信息" class="nav-bar" border="{{false}}" bind:click-left="goBack" >
  3. <van-icon name="arrow-left" color="#FFFFFF" slot="left" />
  4. </van-nav-bar>
  5. <scroll-view class="scrollarea" scroll-y type="list">
  6. <view class="index_main">
  7. <Container>
  8. <view class="card">
  9. <view style="text-align: right;">
  10. <view style="width: 300rpx;display: inline-block;">
  11. <van-search bind:change="change" right-icon value="{{ value }}" shape="round" placeholder="" />
  12. </view>
  13. </view>
  14. <view class="list_bot" wx:for="{{list}}" wx:key="index">
  15. <image bind:tap="modify" data-index="{{index}}" class="list_left" src="../../images/edit.png" />
  16. <view class="list_center">
  17. <view>
  18. {{item.name}}
  19. <image wx:if="{{item.auditType == 'AdministratorReview' || item.auditType == 'ExpertReview' || item.auditType == 'ExpertReject' }}" class="tag" src="../../images/tg.png" />
  20. <image wx:if="{{item.auditType == 'ExpertReview'}}" class="tag" style="width: 67rpx;" src="../../images/jj.png" />
  21. </view>
  22. <view style="color: #555;">
  23. {{item.school + " " + item.articleGroup + " " + item.birthday}}
  24. </view>
  25. </view>
  26. <image bind:tap="delet" data-index="{{index}}" class="list_right" src="../../images/del.png" style="width: 29rpx;height: 29rpx;" />
  27. </view>
  28. <van-empty wx:if="{{!list.length}}" description="暂无数据" />
  29. </view>
  30. </Container>
  31. </view>
  32. </scroll-view>