sign.wxml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.user_name}}</view>
  11. <view class="other">
  12. <view class="other_1">
  13. <text>赛事名称:</text>
  14. <text>{{item.match_name}}</text>
  15. </view>
  16. <view class="other_1">
  17. <text>是否支付报名费:</text>
  18. <text>{{item.pay_status=='0'?'待支付':item.pay_status=='1'?'已支付':'支付失败'}}</text>
  19. </view>
  20. <view class="other_1">
  21. <text>是否转发朋友圈:</text>
  22. <text>{{item.has_turn=='0'?'未转发':'已转发'}}</text>
  23. </view>
  24. </view>
  25. <view class="btn">
  26. <button type="primary" size="mini" bindtap="toView" data-item="{{item}}">详细信息</button>
  27. <button type="primary" size="mini" bindtap="toEdit" data-item="{{item}}">信息维护</button>
  28. <button type="warn" size="mini" bindtap="toRefund" data-item="{{item}}">退款</button>
  29. </view>
  30. </view>
  31. </view>
  32. </scroll-view>
  33. </view>
  34. </view>
  35. </mobile-main>
  36. <e-dialog dialog="{{dialog}}" bind:toClose="toClose">
  37. <view slot="info">
  38. <view class="dialog_one" wx:if="{{dialog.type=='1'}}">
  39. <view class="one_1">
  40. <text>报名用户:</text>
  41. <text>{{info.user_name||'暂无昵称'}}</text>
  42. </view>
  43. <view class="one_1">
  44. <text>赛事名称:</text>
  45. <text>{{info.match_name||'暂无'}}</text>
  46. </view>
  47. <view class="one_1">
  48. <text>赛事组别:</text>
  49. <text>{{info.grouping_name||'暂无'}}</text>
  50. </view>
  51. <view class="one_1">
  52. <text>组别项目:</text>
  53. <text>{{info.project_name||'暂无'}}</text>
  54. </view>
  55. <view class="one_1">
  56. <text>是否转发了朋友圈:</text>
  57. <text>{{info.has_turn=='0'?'未转发':'已转发'}}</text>
  58. </view>
  59. <view class="one_1">
  60. <text>支付状态:</text>
  61. <text>{{info.pay_status=='0'?'待支付':info.pay_status=='1'?'已支付':'支付失败'}}</text>
  62. </view>
  63. </view>
  64. <view class="dialog_two" wx:elif="{{dialog.type=='2'}}">
  65. {{form}}
  66. </view>
  67. </view>
  68. </e-dialog>