12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!-- 统计信息 -->
- <view class="info">
- <view class="date">
- <view style="width:70%;">
- <view class="flexA" bindtap="choice">
- <text>开始时间:{{timeShowS}}</text>
- <van-icon name="underway-o" />
- </view>
- <view class="flexA" style="margin-top:20rpx;">
- <text>结束时间:{{timeShowE}}</text>
- <van-icon name="underway-o" />
- </view>
- </view>
- <view class="dates">已查询{{list.days}}天</view>
- </view>
- <view class="list">
- <view class="income">
- <view class="flexB title">
- <text>收入明细</text>
- <text class="state">总收入:{{list.totalProfit}}</text>
- </view>
- <view class="flex">
- <text>普通订单收入:{{list.orderTotalProfit}}</text>
- <text>订单调度费:{{list.orderDispatchTotalProfit}}</text>
- <!-- <text>日租订单收入:{{list.orderRentTotalProfit}}</text> -->
- </view>
- <!-- <view class="flex"> -->
- <!-- <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 class="state">总订单数:{{list.orderRentTotal+list.orderTotal}}</text>
- </view>
- <view class="flex">
- <text>普通订单:{{list.orderTotal}}</text>
- <text>待支付订单:{{list.wiatNum}}</text>
- <!-- <text>日租订单:{{list.orderRentTotal}}</text> -->
- </view>
- <!-- <view class="flex">
- </view> -->
- </view>
- <view class="bike">
- <view>
- <text>投放车辆</text>
- <text>{{list.bikeTotal}}</text>
- </view>
- </view>
- </view>
- <view class="cover" wx:if="{{showCal}}" bindtap="closeCal"></view>
- <view class="calendar" wx:if="{{showCal}}">
- <view class="section">
- <view class="title flex-box">
- <view bindtap="past">
- <text class="iconfont icon-zuo"></text>
- </view>
- <view class="title">{{currentShow}}</view>
- <view bindtap="future">
- <text class="iconfont icon-you"></text>
- </view>
- </view>
- <view class="week flex-box">
- <view wx:for="{{week}}" wx:key="{{item}}" class="weekday">{{item}}</view>
- </view>
- <view class="days flex-box">
- <view wx:for="{{days}}" wx:key="{{item}}" class="day" data-today="{{item.today}}" bindtap="select">
- <view class="circle {{item.today == today ? 'now' : (item.sign ? 'sign' : '')}}">
- <view> {{item.day}} </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
|