|
@@ -1,21 +1,21 @@
|
|
|
<mobile-main frameStyle="{{frameStyle}}" bind:back="back">
|
|
|
<view slot="info" class="container main">
|
|
|
<view class="one">
|
|
|
- <van-search value="{{ searchName }}" bind:search="onSearch" placeholder="请输入组队名称" />
|
|
|
+ <van-search value="{{ searchName }}" bind:search="onSearch" placeholder="请输入用户姓名" />
|
|
|
</view>
|
|
|
<view class="two">
|
|
|
<scroll-view scroll-y="true" class="scroll-view">
|
|
|
<view class="list-scroll-view">
|
|
|
<view class="list" wx:for="{{list}}" wx:key="item">
|
|
|
- <view class="name textOver">{{item.name||'暂无'}}</view>
|
|
|
+ <view class="name ">{{item.name||'暂无'}}</view>
|
|
|
<view class="other">
|
|
|
- <view class="other_1"><text>用户类型:</text><text>{{item.type=='-1'?'管理员':item.type=='0'?'个人用户':item.type=='1'?'裁判用户':'暂无'}}</text></view>
|
|
|
+ <view class="other_1 textOver"><text>赛事名称:</text><text>{{item.title}}</text></view>
|
|
|
<view class="other_1"><text>是否转发了朋友圈:</text><text>{{item.has_turn=='0'?'未转发':'已转发'}}</text></view>
|
|
|
<view class="other_1"><text>支付状态:</text><text>{{item.pay_status=='0'?'待支付':item.pay_status=='1'?'已支付':'支付失败'}}</text></view>
|
|
|
</view>
|
|
|
<view class="btn">
|
|
|
<button size="mini" type="primary" bindtap="toView" data-id="{{item._id}}">详情</button>
|
|
|
- <button size="mini" type="primary" bindtap="toCheck" data-id="{{item._id}}">审核</button>
|
|
|
+ <button size="mini" type="primary" bindtap="toCheck" data-id="{{item._id}}">维护</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -27,34 +27,34 @@
|
|
|
<view slot="info">
|
|
|
<view class="dialog_one" wx:if="{{dialog.type=='1'}}">
|
|
|
<view class="one_1">
|
|
|
- <text class="text">头像:</text>
|
|
|
- <image class="image" src="{{info.icon[0].url}}"></image>
|
|
|
- </view>
|
|
|
- <view class="one_1">
|
|
|
- <text class="text">用户名:</text>
|
|
|
+ <text class="text">报名用户:</text>
|
|
|
<text class="text1">{{info.name||'暂无昵称'}}</text>
|
|
|
</view>
|
|
|
<view class="one_1">
|
|
|
- <text class="text">电话:</text>
|
|
|
- <text class="text1">{{info.phone||'暂无'}}</text>
|
|
|
- </view>
|
|
|
- <view class="one_1">
|
|
|
- <text class="text">性别:</text>
|
|
|
- <text class="text1">{{info.gender||'暂无'}}</text>
|
|
|
+ <text class="text">赛事名称:</text>
|
|
|
+ <text class="text1">{{info.title||'暂无'}}</text>
|
|
|
</view>
|
|
|
<view class="one_1">
|
|
|
- <text class="text">身份证号:</text>
|
|
|
- <text class="text1">{{info.card||'暂无'}}</text>
|
|
|
+ <text class="text">是否转发了朋友圈:</text>
|
|
|
+ <text class="text1">{{info.has_turn=='0'?'未转发':'已转发'}}</text>
|
|
|
</view>
|
|
|
<view class="one_1">
|
|
|
- <text class="text">状态:</text>
|
|
|
- <text class="text1">{{info.pay_status=='0'?'待支付':info.status=='1'?'已支付':'支付失败'}}</text>
|
|
|
+ <text class="text">支付状态:</text>
|
|
|
+ <text class="text1">{{info.pay_status=='0'?'待支付':info.pay_status=='1'?'已支付':'支付失败'}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="dialog_two" wx:elif="{{dialog.type=='2'}}">
|
|
|
<form bindsubmit="onSubmit">
|
|
|
<view class="content">
|
|
|
- <view class="label textOver">状态</view>
|
|
|
+ <view class="label textOver">赛事分组</view>
|
|
|
+ <view class="value">
|
|
|
+ <picker mode="selector" bindchange="statusChange" name="status" value="{{info.status}}" range-key="label" range="{{statusList}}">
|
|
|
+ <view class="input">{{info.pay_status=='0'?'待支付':info.status=='1'?'已支付':'支付失败'}}</view>
|
|
|
+ </picker>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="content">
|
|
|
+ <view class="label textOver">组内项目</view>
|
|
|
<view class="value">
|
|
|
<picker mode="selector" bindchange="statusChange" name="status" value="{{info.status}}" range-key="label" range="{{statusList}}">
|
|
|
<view class="input">{{info.pay_status=='0'?'待支付':info.status=='1'?'已支付':'支付失败'}}</view>
|