123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!-- 统计信息 -->
- <view class="info">
- <view class="date flexB">
- <view style="width:50%;">
- <view class="flexA" bindtap="start">
- <text>开始时间:{{starTime}}</text>
- <van-icon name="underway-o" />
- </view>
- <view class="flexA" bindtap="end" style="margin-top:20rpx;">
- <text>结束时间:{{endTime}}</text>
- <van-icon name="underway-o" />
- </view>
- </view>
- <view style="font-size:28rpx;margin-right:20rpx;">{{list.days}}天</view>
- </view>
- <view class="list">
- <view class="income">
- <view class="flexB title">
- <text>收入明细</text>
- <text>总收入:{{list.totalProfit}}</text>
- </view>
- <view class="flex">
- <text>普通订单收入:{{list.orderTotalProfit}}</text>
- <text>日租订单收入:{{list.orderRentTotalProfit}}</text>
- </view>
- <view class="flex">
- <text>订单调度费:{{list.orderDispatchTotalProfit}}</text>
- <text>日租订单调度费:{{list.orderRentDispatchTotalProfit}}</text>
- </view>
- <view class="flex">
- <text>待支付订单:{{list.wiatPayTotal}}</text>
- </view>
- </view>
- <view class="income">
- <view class="flexB title">
- <text>用户明细</text>
- <!-- <text>总用户:{{list.userTotal}}</text> -->
- </view>
- <view class="flex">
- <text>新增认证用户:{{list.userTotal}}</text>
- <text>总缴纳押金用户:{{list.userDepositTotal}}</text>
- </view>
- </view>
- <view class="income">
- <view class="flexB title">
- <text>订单明细</text>
- <text>总订单数:{{list.orderRentTotal+list.orderTotal}}</text>
- </view>
- <view class="flex">
- <text>普通订单:{{list.orderTotal}}</text>
- <text>日租订单:{{list.orderRentTotal}}</text>
- </view>
- <view class="flex">
- <text>待支付订单:{{list.wiatNum}}</text>
- </view>
- </view>
- <view class="bike">
- <view>
- <text>投放车辆</text>
- <text>{{list.bikeTotal}}</text>
- </view>
- </view>
- </view>
- <view class="cover" wx:if="{{showCal}}"></view>
- <calendar bindmyevent="onMyEvent" id='calendar'></calendar>
- </view>
|