You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
4.3 KiB
85 lines
4.3 KiB
<!--xtends//statics/index/index.wxml-->
|
|
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">智能报表</view>
|
|
</cu-custom>
|
|
|
|
<view style="padding: 0rpx 28rpx;margin-top:24rpx">
|
|
<view class="bg-white" style="border-radius: 20rpx;padding: 24rpx 0rpx 12rpx 0rpx">
|
|
<van-grid column-num="4" border="{{fasle}}">
|
|
<van-grid-item text="采购报表" url="/xtends/statics/purchase-report/index">
|
|
<van-icon slot="icon" name="/assets/home/icon-employe.png" size="76rpx" />
|
|
</van-grid-item>
|
|
<van-grid-item text="销售报表" url="/xtends/statics/sale-report/index">
|
|
<van-icon slot="icon" name="/assets/home/icon-customer.png" size="76rpx" />
|
|
</van-grid-item>
|
|
<van-grid-item text="毛利报表" url="/xtends/statics/gross-report/index">
|
|
<van-icon slot="icon" name="/assets/home/icon-cate.png" size="76rpx" />
|
|
</van-grid-item>
|
|
<van-grid-item text="代卖报表" url="/xtends/statics/agent-report/index">
|
|
<van-icon slot="icon" name="/assets/home/icon-card.png" size="76rpx" />
|
|
</van-grid-item>
|
|
</van-grid>
|
|
</view>
|
|
</view>
|
|
|
|
<view style="padding: 0rpx 28rpx;margin-top:24rpx">
|
|
<view class="bg-white" style="border-radius: 20rpx;padding: 24rpx 0rpx">
|
|
<view class="flex flex-justify" style="padding: 0rpx 28rpx 8rpx 28rpx">
|
|
<view class="text-black text-sg text-bold">收货统计</view>
|
|
</view>
|
|
<view style="padding:0rpx 24rpx 0rpx 24rpx">
|
|
<canvas canvas-id="canvasColumn" id="canvasColumn" class="charts" bindtouchstart="touchColumn"></canvas>
|
|
</view>
|
|
<view class="flex flex-justify" style="padding:0rpx 30rpx">
|
|
<view class="text-black text-sg">收货总重量</view>
|
|
<view class="text-black text-sg">收货总金额</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view style="padding: 0rpx 28rpx;margin-top:24rpx">
|
|
<view class="bg-white" style="border-radius: 20rpx;padding: 24rpx 0rpx 8rpx 0rpx">
|
|
<view class="flex flex-justify" style="padding: 0rpx 28rpx">
|
|
<view class="text-black text-sg text-bold">出货统计</view>
|
|
<view class="flex flex-center" bindtap="showSheet" style="padding: 2rpx 0rpx">
|
|
<view class="text-black text-sm" style="margin-right:8rpx">{{vdateString}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="flex" style="padding: 16rpx 0rpx 8rpx 0rpx">
|
|
<view style="flex:1;padding:0rpx 32rpx;margin-right:12rpx">
|
|
<view class="flex flex-center" style="justify-content: flex-start">
|
|
<view style="height:24rpx;width:6rpx;background:#007AFF"></view>
|
|
<view class="text-black text-sm" style="margin-left: 12rpx">收货重量</view>
|
|
</view>
|
|
<view class="text-xxl text-bold" style="margin:12rpx 0rpx">{{formate.formateWeight(totalInfo.totalWeight || 0)}}吨</view>
|
|
</view>
|
|
<view style="flex:1;padding:0rpx 32rpx;margin-left:12rpx">
|
|
<view class="flex flex-center" style="justify-content: flex-start">
|
|
<view style="height:24rpx;width:6rpx;background:#FF8413"></view>
|
|
<view class="text-black text-sm" style="margin-left: 12rpx">收货金额</view>
|
|
</view>
|
|
<view class="text-xxl text-bold text-price" style="margin:12rpx 0rpx">{{formate.formateAmount(totalInfo.totalMoney || 0)}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="flex" style="padding: 16rpx 0rpx 8rpx 0rpx">
|
|
<view style="flex:1;padding:0rpx 32rpx;margin-right:12rpx">
|
|
<view class="flex flex-center" style="justify-content: flex-start">
|
|
<view style="height:24rpx;width:6rpx;background:#007AFF"></view>
|
|
<view class="text-black text-sm" style="margin-left: 12rpx">收货重量</view>
|
|
</view>
|
|
<view class="text-xxl text-bold" style="margin:12rpx 0rpx">{{formate.formateWeight(totalInfo.totalWeight || 0)}}吨</view>
|
|
</view>
|
|
<view style="flex:1;padding:0rpx 32rpx;margin-left:12rpx">
|
|
<view class="flex flex-center" style="justify-content: flex-start">
|
|
<view style="height:24rpx;width:6rpx;background:#FF8413"></view>
|
|
<view class="text-black text-sm" style="margin-left: 12rpx">收货金额</view>
|
|
</view>
|
|
<view class="text-xxl text-bold text-price" style="margin:12rpx 0rpx">{{formate.formateAmount(totalInfo.totalMoney || 0)}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="height:24rpx"></view>
|
|
|
|
<notification id="qn-notification"/>
|