statistics1.wxml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!-- 统计信息 -->
  2. <view class="info">
  3. <view class="date flexB">
  4. <view style="width:50%;">
  5. <view class="flexA" bindtap="start">
  6. <text>开始时间:{{starTime}}</text>
  7. <van-icon name="underway-o" />
  8. </view>
  9. <view class="flexA" bindtap="end" style="margin-top:20rpx;">
  10. <text>结束时间:{{endTime}}</text>
  11. <van-icon name="underway-o" />
  12. </view>
  13. </view>
  14. <view style="font-size:28rpx;margin-right:20rpx;">{{list.days}}天</view>
  15. </view>
  16. <view class="list">
  17. <view class="income">
  18. <view class="flexB title">
  19. <text>收入明细</text>
  20. <text>总收入:{{list.totalProfit}}</text>
  21. </view>
  22. <view class="flex">
  23. <text>普通订单收入:{{list.orderTotalProfit}}</text>
  24. <text>日租订单收入:{{list.orderRentTotalProfit}}</text>
  25. </view>
  26. <view class="flex">
  27. <text>订单调度费:{{list.orderDispatchTotalProfit}}</text>
  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>总订单数:{{list.orderRentTotal+list.orderTotal}}</text>
  48. </view>
  49. <view class="flex">
  50. <text>普通订单:{{list.orderTotal}}</text>
  51. <text>日租订单:{{list.orderRentTotal}}</text>
  52. </view>
  53. <view class="flex">
  54. <text>待支付订单:{{list.wiatNum}}</text>
  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}}"></view>
  65. <calendar bindmyevent="onMyEvent" id='calendar'></calendar>
  66. </view>