纸通宝SAAS仓库
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.
 

30 lines
1.8 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 class="bg-white flex flex-justify van-hairline--bottom" style="height:80rpx;padding: 0rpx 32rpx" bindtap="showCalendar">
<view class="flex flex-center" bindtap="showCalendar">
<view style="height:30rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">收货信息</view>
</view>
<view class="flex flex-center" style="padding: 2rpx 0rpx">
<view class="text-black text-df" style="margin-right:8rpx">{{vdateString}}</view>
<van-icon name="{{show ? 'arrow-up' : 'arrow-down'}}" />
</view>
</view>
<view class="bg-white flex" style="height:140rpx;padding-top:24rpx;">
<view style="width:320rpx;padding-left:48rpx">
<view class="text-xxl text-bold" style="color:#278CC8">{{reportInfo.totalSettleWeight || 0}}</view>
<view class="text-black text-sm">重量(公斤)</view>
</view>
<view style="width:300rpx;">
<view class="text-xxl text-bold" style="color:#278CC8">{{formate.formateAmount(reportInfo.totalSettlePrice || 0)}}</view>
<view class="text-black text-sm">合计金额(元)</view>
</view>
</view>
<van-table headers="{{columns}}" data="{{ reportInfo.productReceiptReportList }}" height="{{ height }}" stripe="{{ true }}"/>
<van-calendar show="{{ show }}" type="range" row-height="50" color="#008AFF" z-index="22" min-date="{{ minDate }}" max-date="{{ maxDate }}" default-date="{{ vdate }}" title="日期范围选择" show-subtitle="{{ false }}" show-confirm="{{ false }}" bind:close="onClose" bind:confirm="onSelect"/>
<notification id="qn-notification"/>