1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="container main">
- <view class="zero one">
- <input type="text" value="{{searchInfo.name}}" bindconfirm="search" placeholder="请输入关键词" />
- </view>
- <view class="zero 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">{{item.user_name}}</view>
- <view class="other">
- <view class="other_1">
- <text>赛事名称:</text>
- <text>{{item.match_name}}</text>
- </view>
- <view class="other_1">
- <text>是否支付报名费:</text>
- <text>{{item.pay_status=='0'?'待支付':item.pay_status=='1'?'已支付':'支付失败'}}</text>
- </view>
- <view class="other_1">
- <text>是否转发朋友圈:</text>
- <text>{{item.has_turn=='0'?'未转发':'已转发'}}</text>
- </view>
- </view>
- <view class="btn">
- <button type="primary" size="mini" bindtap="toView" data-item="{{item}}">详细信息</button>
- <button type="primary" size="mini" bindtap="toEdit" data-item="{{item}}">信息维护</button>
- <button type="warn" size="mini" bindtap="toRefund" data-item="{{item}}">退款</button>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </mobile-main>
- <e-dialog dialog="{{dialog}}" bind:toClose="toClose">
- <view slot="info">
- <view class="dialog_one" wx:if="{{dialog.type=='1'}}">
- <view class="one_1">
- <text>报名用户:</text>
- <text>{{info.user_name||'暂无昵称'}}</text>
- </view>
- <view class="one_1">
- <text>赛事名称:</text>
- <text>{{info.match_name||'暂无'}}</text>
- </view>
- <view class="one_1">
- <text>赛事组别:</text>
- <text>{{info.grouping_name||'暂无'}}</text>
- </view>
- <view class="one_1">
- <text>组别项目:</text>
- <text>{{info.project_name||'暂无'}}</text>
- </view>
- <view class="one_1">
- <text>是否转发了朋友圈:</text>
- <text>{{info.has_turn=='0'?'未转发':'已转发'}}</text>
- </view>
- <view class="one_1">
- <text>支付状态:</text>
- <text>{{info.pay_status=='0'?'待支付':info.pay_status=='1'?'已支付':'支付失败'}}</text>
- </view>
- </view>
- <view class="dialog_two" wx:elif="{{dialog.type=='2'}}">
- {{form}}
- </view>
- </view>
- </e-dialog>
|