statistics.wxml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!-- 统计信息 -->
  2. <view class="info">
  3. <view class="date">
  4. <view style="width:70%;">
  5. <view class="flexA" bindtap="choice">
  6. <text>开始时间:{{timeShowS}}</text>
  7. <van-icon name="underway-o" />
  8. </view>
  9. <view class="flexA" style="margin-top:20rpx;">
  10. <text>结束时间:{{timeShowE}}</text>
  11. <van-icon name="underway-o" />
  12. </view>
  13. </view>
  14. <view class="dates">已查询{{list.days}}天</view>
  15. </view>
  16. <view class="list">
  17. <view class="income">
  18. <view class="flexB title">
  19. <text>收入明细</text>
  20. <text class="state">总收入:{{list.totalProfit}}</text>
  21. </view>
  22. <view class="flex">
  23. <text>普通订单收入:{{list.orderTotalProfit}}</text>
  24. <text>订单调度费:{{list.orderDispatchTotalProfit}}</text>
  25. <!-- <text>日租订单收入:{{list.orderRentTotalProfit}}</text> -->
  26. </view>
  27. <!-- <view class="flex"> -->
  28. <!-- <text>日租订单调度费:{{list.orderRentDispatchTotalProfit}}</text> -->
  29. <!-- </view> -->
  30. <view class="flex">
  31. <text>待支付订单:{{list.wiatPayTotal}}</text>
  32. </view>
  33. </view>
  34. <view class="income">
  35. <view class="flexB title">
  36. <text>用户明细</text>
  37. <!-- <text>总用户:{{list.userTotal}}</text> -->
  38. </view>
  39. <view class="flex">
  40. <text>新增认证用户:{{list.userTotal}}</text>
  41. <text>总缴纳押金用户:{{list.userDepositTotal}}</text>
  42. </view>
  43. </view>
  44. <view class="income">
  45. <view class="flexB title">
  46. <text>订单明细</text>
  47. <text class="state">总订单数:{{list.orderRentTotal+list.orderTotal}}</text>
  48. </view>
  49. <view class="flex">
  50. <text>普通订单:{{list.orderTotal}}</text>
  51. <text>待支付订单:{{list.wiatNum}}</text>
  52. <!-- <text>日租订单:{{list.orderRentTotal}}</text> -->
  53. </view>
  54. <!-- <view class="flex">
  55. </view> -->
  56. </view>
  57. <view class="bike">
  58. <view>
  59. <text>投放车辆</text>
  60. <text>{{list.bikeTotal}}</text>
  61. </view>
  62. </view>
  63. </view>
  64. <view class="cover" wx:if="{{showCal}}" bindtap="closeCal"></view>
  65. <view class="calendar" wx:if="{{showCal}}">
  66. <view class="section">
  67. <view class="title flex-box">
  68. <view bindtap="past">
  69. <text class="iconfont icon-zuo"></text>
  70. </view>
  71. <view class="title">{{currentShow}}</view>
  72. <view bindtap="future">
  73. <text class="iconfont icon-you"></text>
  74. </view>
  75. </view>
  76. <view class="week flex-box">
  77. <view wx:for="{{week}}" wx:key="{{item}}" class="weekday">{{item}}</view>
  78. </view>
  79. <view class="days flex-box">
  80. <view wx:for="{{days}}" wx:key="{{item}}" class="day" data-today="{{item.today}}" bindtap="select">
  81. <view class="circle {{item.today == today ? 'now' : (item.sign ? 'sign' : '')}}">
  82. <view> {{item.day}} </view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. </view>
  88. </view>