index.wxml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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}}--[{{item.order_no}}]</view>
  11. <view class="other">
  12. <view class="other_1">
  13. <text>支付金额:</text>
  14. <text>{{item.money}}</text>
  15. </view>
  16. <view class="other_1">
  17. <text>支付类型:</text>
  18. <text>{{item.type}}</text>
  19. </view>
  20. </view>
  21. <view class="btn">
  22. <button type="primary" size="mini" bindtap="toView" data-item="{{item}}">详细信息</button>
  23. </view>
  24. </view>
  25. </view>
  26. </scroll-view>
  27. </view>
  28. </view>
  29. </mobile-main>
  30. <e-dialog dialog="{{dialog}}" bind:toClose="toClose">
  31. <view slot="info">
  32. <view class="dialog_one" wx:if="{{dialog.type=='1'}}">
  33. <view class="one_1">
  34. <text>支付订单号:</text>
  35. <text>{{info.order_no||'暂无'}}</text>
  36. </view>
  37. <view class="one_1">
  38. <text>支付用户:</text>
  39. <text>{{info.user_name||'暂无'}}</text>
  40. </view>
  41. <view class="one_1">
  42. <text>支付金额:</text>
  43. <text>{{info.money||'暂无'}}</text>
  44. </view>
  45. <view class="one_1">
  46. <text>支付类型:</text>
  47. <text>{{info.type||'暂无'}}</text>
  48. </view>
  49. <view class="one_1">
  50. <text>支付状态:</text>
  51. <text>{{info.status=='0'?'待支付':info.status=='1'?'已支付':'支付失败'}}</text>
  52. </view>
  53. <view class="one_1">
  54. <text>支付时间:</text>
  55. <text>{{info.time||'暂无'}}</text>
  56. </view>
  57. <view class="one_1">
  58. <text>支付说明:</text>
  59. <text>{{info.desc||'暂无'}}</text>
  60. </view>
  61. </view>
  62. </view>
  63. </e-dialog>