72 lines
3.2 KiB
Plaintext
72 lines
3.2 KiB
Plaintext
<view>
|
|
<!-- https://blog.csdn.net/qq_25285531/article/details/130356253 -->
|
|
<view class="header">
|
|
<view class="nav" style='height: {{height*2 + 20}}px;padding-top:{{height-10}}px;'>
|
|
报表统计
|
|
</view>
|
|
<view class='time'>
|
|
<view class='timeSearch'>
|
|
<picker mode="date" bindchange="changeStartTime" class='startDay'>{{startDay}}</picker>
|
|
<image src="../images/arrow_down.png" class='arrowDown' />
|
|
</view>
|
|
<view class='timeSearch timeRight'>
|
|
<picker mode="date" bindchange="changeEndTime" class='endDay'>{{endDay}}</picker>
|
|
<image src="../images/arrow_down.png" class='arrowDown' />
|
|
</view>
|
|
</view>
|
|
<view class='bottomLine'></view>
|
|
<view class='money'>{{countData.allMoney}}</view>
|
|
<view class='moneyText'>总金额</view>
|
|
</view>
|
|
<view class='charts' hidden="{{!opacity}}">
|
|
<view>
|
|
<view class="pieContent">
|
|
<ec-canvas id="mychart-dom-pie" canvas-id="mychart-pie" ec="{{ ec }}"></ec-canvas>
|
|
</view>
|
|
<view class='walletDiscount listCount'>
|
|
<view class='tips'>
|
|
<view class='walletColor color tipsColor'></view>钱包特惠
|
|
</view>
|
|
<view>{{countData.walletCount }}笔订单</view>
|
|
<view class='everyMoney'>{{countData.walletMoney }}元</view>
|
|
</view>
|
|
<view class='creditCard listCount'>
|
|
<view class='tips'>
|
|
<view class='creditCardColor color tipsColor'></view>信用油卡
|
|
</view>
|
|
<view>{{countData.creditCardCount }}笔订单</view>
|
|
<view class='everyMoney'>{{countData.creditCardMoney }}元</view>
|
|
</view>
|
|
<view class='cardCount listCount'>
|
|
<view class='tips'>
|
|
<view class='cardColor color tipsColor'></view>电子油卡
|
|
</view>
|
|
<view>{{countData.cardCount }}笔订单</view>
|
|
<view class='everyMoney'>{{countData.cardMoney }}元</view>
|
|
</view>
|
|
<view class='wxCount listCount'>
|
|
<view class='tips'>
|
|
<view class='wxColor color tipsColor'></view>司机优惠
|
|
</view>
|
|
<view>{{countData.wxCount }}笔订单</view>
|
|
<view class='everyMoney'>{{countData.wxMoney }}元</view>
|
|
</view>
|
|
</view>
|
|
<view class='otherInfo'>
|
|
<view class='driverNum'>加油司机人数:{{countData.userCount}}人</view>
|
|
<view class='pieTips'>
|
|
<view class='wxColor color'></view><text>司机优惠</text>
|
|
<view class='cardColor color'></view><text>电子油卡</text>
|
|
<view class='walletColor color'></view><text>钱包特惠</text>
|
|
<view class='creditCardColor color'></view><text>信用油卡</text>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="emptyData" hidden="{{opacity}}">
|
|
<image class="emptyDataImg" src="{{picImg+'emptyData.png'}}" mode="aspectFill" />
|
|
<view class="emptyDataText">暂时还没有内容~</view>
|
|
</view>
|
|
|
|
</view> |