12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <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.match_name}}</view>
- <view class="other">
- <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="toTeam" data-item="{{item}}">组队申请</button>
- <button type="primary" size="mini" bindtap="toTeam" data-item="{{item}}" wx:if="{{item.pay_status=='1'&&item.project_type=='双打'}}">组队申请</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>
- </e-dialog>
|