123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!-- 统计信息 -->
- <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>
- </view>
- <view class="flex">
- <text>日租订单收入(含调度费):{{list.orderRentTotalProfit}}</text>
- </view>
- <view class="flex">
- <text style="width:50%;">订单调度费:{{list.orderDispatchTotalProfit}}</text>
- <text style="width:50%;">日租订单调度费:{{list.orderRentDispatchTotalProfit}}</text>
- </view>
- <view class="flex">
- <text>待支付订单:{{list.wiatPayTotal}}</text>
- </view>
- </view>
- <view class="income">
- <view class="flexB title">
- <text>用户明细</text>
- <text class="state">总用户:{{list.userTotal}}</text>
- </view>
- <view class="flexB small">
- <text>新增认证用户:{{list.userTotalCardOk}}</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="flexB small">
- <text>普通订单:{{list.orderTotal}}</text>
- <text>待支付订单:{{list.wiatNum}}</text>
- </view>
- <view class="flex">
- <text>日租订单:{{list.orderRentTotal}}</text>
- </view>
- </view>
- <view class="income">
- <view class="flexB title">
- <text>活动明细</text>
- <text class="state">活动收益:{{list.activityTotalProfit}}</text>
- </view>
- <view class="flexB small">
- <text>充值订单收益:{{list.rechargeOrderTotalProfit}}</text>
- <text>免押金卡收益:{{list.depositCardTotalProfit}}</text>
- </view>
- <view class="flex">
- <text>骑行卡收益:{{list.riddingCardOrderTotalProfit}}</text>
- </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>
|