statistics.wxml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. </view>
  25. <view class="flex">
  26. <text>日租订单收入(含调度费):{{list.orderRentTotalProfit}}</text>
  27. </view>
  28. <view class="flex">
  29. <text style="width:50%;">订单调度费:{{list.orderDispatchTotalProfit}}</text>
  30. <text style="width:50%;">日租订单调度费:{{list.orderRentDispatchTotalProfit}}</text>
  31. </view>
  32. <view class="flex">
  33. <text>待支付订单:{{list.wiatPayTotal}}</text>
  34. </view>
  35. </view>
  36. <view class="income">
  37. <view class="flexB title">
  38. <text>用户明细</text>
  39. <text class="state">总用户:{{list.userTotal}}</text>
  40. </view>
  41. <view class="flexB small">
  42. <text>新增认证用户:{{list.userTotalCardOk}}</text>
  43. <text>总缴纳押金用户:{{list.userDepositTotal}}</text>
  44. </view>
  45. </view>
  46. <view class="income">
  47. <view class="flexB title">
  48. <text>订单明细</text>
  49. <text class="state">总订单数:{{list.orderRentTotal+list.orderTotal}}</text>
  50. </view>
  51. <view class="flexB small">
  52. <text>普通订单:{{list.orderTotal}}</text>
  53. <text>待支付订单:{{list.wiatNum}}</text>
  54. </view>
  55. <view class="flex">
  56. <text>日租订单:{{list.orderRentTotal}}</text>
  57. </view>
  58. </view>
  59. <view class="income">
  60. <view class="flexB title">
  61. <text>活动明细</text>
  62. <text class="state">活动收益:{{list.activityTotalProfit}}</text>
  63. </view>
  64. <view class="flexB small">
  65. <text>充值订单收益:{{list.rechargeOrderTotalProfit}}</text>
  66. <text>免押金卡收益:{{list.depositCardTotalProfit}}</text>
  67. </view>
  68. <view class="flex">
  69. <text>骑行卡收益:{{list.riddingCardOrderTotalProfit}}</text>
  70. </view>
  71. </view>
  72. <view class="bike">
  73. <view>
  74. <text>投放车辆</text>
  75. <text>{{list.bikeTotal}}</text>
  76. </view>
  77. </view>
  78. </view>
  79. <view class="cover" wx:if="{{showCal}}" bindtap="closeCal"></view>
  80. <view class="calendar" wx:if="{{showCal}}">
  81. <view class="section">
  82. <view class="title flex-box">
  83. <view bindtap="past">
  84. <text class="iconfont icon-zuo"></text>
  85. </view>
  86. <view class="title">{{currentShow}}</view>
  87. <view bindtap="future">
  88. <text class="iconfont icon-you"></text>
  89. </view>
  90. </view>
  91. <view class="week flex-box">
  92. <view wx:for="{{week}}" wx:key="{{item}}" class="weekday">{{item}}</view>
  93. </view>
  94. <view class="days flex-box">
  95. <view wx:for="{{days}}" wx:key="{{item}}" class="day" data-today="{{item.today}}" bindtap="select">
  96. <view class="circle {{item.today == today ? 'now' : (item.sign ? 'sign' : '')}}">
  97. <view> {{item.day}} </view>
  98. </view>
  99. </view>
  100. </view>
  101. </view>
  102. </view>
  103. </view>