You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
2.3 KiB

  1. <view class='list'>
  2. <view class='clearfix'>
  3. <text class='fl'>账单编号:</text>
  4. <text class='fr'>{{detailData.merchantId}}</text>
  5. </view>
  6. <view class='clearfix'>
  7. <text class='fl'>账单类型:</text>
  8. <text class='fr'>{{detailData.billTypeName}}</text>
  9. </view>
  10. <view class='clearfix'>
  11. <text class='fl'>账单周期:</text>
  12. <text class='fr'>{{detailData.starttime}}至{{detailData.endtime}}</text>
  13. </view>
  14. <view class='clearfix'>
  15. <text class='fl'>应付金额:</text>
  16. <text class='fr'>{{detailData.receivePay}}</text>
  17. </view>
  18. <view class='clearfix'>
  19. <text class='fl'>已付金额:</text>
  20. <text class='fr'>{{detailData.pay}}</text>
  21. </view>
  22. <view class='clearfix'>
  23. <text class='fl'>欠费金额:</text>
  24. <button wx:if="{{!flag}}" class='fr' hover-class="actives" bindtap="gotopay">去缴费</button>
  25. <text class='fr'>{{detailData.owe}}
  26. </text>
  27. </view>
  28. <view class='clearfix'>
  29. <text class='fl'>账单备注:</text>
  30. <text class='fr'>{{detailData.remark}}</text>
  31. </view>
  32. <view class='clearfix'>
  33. <text class='fl'>商户名称:</text>
  34. <text class='fr'>{{detailData.merchantName}}</text>
  35. </view>
  36. <view class='clearfix'>
  37. <text class='fl'>商户联系信息:</text>
  38. <text class='fr'>{{detailData.merchantLinkPerson}}</text>
  39. </view>
  40. <view class='clearfix'>
  41. <text class='fl'>手机号:</text>
  42. <text>
  43. <text style="color:#409eff;margin-left:20rpx;" class='fr' data-phone="{{detailData.merchantPhone}}" bindtap="makePhoneCall">拨打</text>
  44. <text class='fr'>{{detailData.merchantPhone}}</text>
  45. </text>
  46. </view>
  47. </view>
  48. <view class="btn">
  49. <button hover-class="actives" bindtap="goBack">返回</button>
  50. </view>
  51. <view class='clearfix'>
  52. <text class='fl'>账单历史</text>
  53. </view>
  54. <view class="table">
  55. <view class="tr bg-w">
  56. <view class="th">操作用户</view>
  57. <view class="th">手机号</view>
  58. <view class="th">操作描述</view>
  59. <view class="th">日期</view>
  60. <view class="th">备注</view>
  61. </view>
  62. <block wx:for="{{list}}" wx:key="index">
  63. <view class="tr">
  64. <view class="td">{{item.userName}}</view>
  65. <view class="td">{{item.phone}}</view>
  66. <view class="td">{{item.details}}</view>
  67. <view class="td">{{item.createtime}}</view>
  68. <view class="td">{{item.remark}}</view>
  69. </view>
  70. </block>
  71. </view>