index.wxml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="container main">
  3. <view class="zero one">
  4. <input type="text" value="{{searchInfo.name}}" bindconfirm="search" placeholder="请输入关键词" />
  5. </view>
  6. <view class="zero two">
  7. <scroll-view scroll-y="true" class="scroll-view">
  8. <view class="list-scroll-view">
  9. <view class="list" wx:for="{{list}}" wx:key="item">
  10. <view class="name">{{item.match_name}}</view>
  11. <view class="other">
  12. <view class="other_1">
  13. <text>是否支付报名费:</text>
  14. <text>{{item.pay_status=='0'?'待支付':item.pay_status=='1'?'已支付':'支付失败'}}</text>
  15. </view>
  16. <view class="other_1">
  17. <text>是否转发朋友圈:</text>
  18. <text>{{item.has_turn=='0'?'未转发':'已转发'}}</text>
  19. </view>
  20. </view>
  21. <view class="btn">
  22. <button type="primary" size="mini" bindtap="toView" data-item="{{item}}">详细信息</button>
  23. <button type="primary" size="mini" bindtap="toTeam" data-item="{{item}}">组队申请</button>
  24. <button type="primary" size="mini" bindtap="toTeam" data-item="{{item}}" wx:if="{{item.pay_status=='1'&&item.project_type=='双打'}}">组队申请</button>
  25. </view>
  26. </view>
  27. </view>
  28. </scroll-view>
  29. </view>
  30. </view>
  31. </mobile-main>
  32. <e-dialog dialog="{{dialog}}" bind:toClose="toClose">
  33. <view slot="info">
  34. <view class="dialog_one" wx:if="{{dialog.type=='1'}}">
  35. <view class="one_1">
  36. <text>报名用户:</text>
  37. <text>{{info.user_name||'暂无昵称'}}</text>
  38. </view>
  39. <view class="one_1">
  40. <text>赛事名称:</text>
  41. <text>{{info.match_name||'暂无'}}</text>
  42. </view>
  43. <view class="one_1">
  44. <text>赛事组别:</text>
  45. <text>{{info.grouping_name||'暂无'}}</text>
  46. </view>
  47. <view class="one_1">
  48. <text>组别项目:</text>
  49. <text>{{info.project_name||'暂无'}}</text>
  50. </view>
  51. <view class="one_1">
  52. <text>是否转发了朋友圈:</text>
  53. <text>{{info.has_turn=='0'?'未转发':'已转发'}}</text>
  54. </view>
  55. <view class="one_1">
  56. <text>支付状态:</text>
  57. <text>{{info.pay_status=='0'?'待支付':info.pay_status=='1'?'已支付':'支付失败'}}</text>
  58. </view>
  59. </view>
  60. </view>
  61. </e-dialog>