12345678910111213141516171819202122232425262728293031323334 |
- <!--pages/userData/index.wxml-->
- <van-nav-bar title="报名信息" class="nav-bar" border="{{false}}" bind:click-left="goBack" >
- <van-icon name="arrow-left" color="#FFFFFF" slot="left" />
- </van-nav-bar>
- <scroll-view class="scrollarea" scroll-y type="list">
- <view class="index_main">
- <Container>
- <view class="card">
- <view style="text-align: right;">
- <view style="width: 300rpx;display: inline-block;">
- <van-search bind:change="change" right-icon value="{{ value }}" shape="round" placeholder="" />
- </view>
- </view>
- <view class="list_bot" wx:for="{{list}}" wx:key="index">
- <image bind:tap="modify" data-index="{{index}}" class="list_left" src="../../images/edit.png" />
- <view class="list_center">
- <view>
- {{item.name}}
- <image wx:if="{{item.auditType == 'AdministratorReview' || item.auditType == 'ExpertReview' || item.auditType == 'ExpertReject' }}" class="tag" src="../../images/tg.png" />
- <image wx:if="{{item.auditType == 'ExpertReview'}}" class="tag" style="width: 67rpx;" src="../../images/jj.png" />
- </view>
- <view style="color: #555;">
- {{item.school + " " + item.articleGroup + " " + item.birthday}}
- </view>
- </view>
- <image bind:tap="delet" data-index="{{index}}" class="list_right" src="../../images/del.png" style="width: 29rpx;height: 29rpx;" />
- </view>
- <van-empty wx:if="{{!list.length}}" description="暂无数据" />
- </view>
- </Container>
- </view>
- </scroll-view>
|