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.
63 lines
3.7 KiB
63 lines
3.7 KiB
<!--pages/agent/detail/pound-info/pound-info.wxml-->
|
|
<wxs module="agent" src="../../../agent/index.wxs"></wxs>
|
|
<wxs module="formate" src="../../../../pages/formate.wxs"></wxs>
|
|
<view class="bg-white"
|
|
wx:if="{{item.weightnoteInfo && item.weightnoteInfo.id&&(orderInfo.activityId!=null||item.status>=53)}}"
|
|
style="padding: 24rpx 30rpx">
|
|
<view class="flex flex-justify text-sg">
|
|
<text class="text-black">结算单价</text>
|
|
<text class="text-gray">{{formate.formatePrice(item.weightnoteInfo.settleUtiPrice)}}元/吨</text>
|
|
</view>
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx">
|
|
<text class="text-black">净重</text>
|
|
<text class="text-gray">{{formate.formateWeight(item.weightnoteInfo.netWeight)}}吨</text>
|
|
</view>
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx" wx:if="{{item.weightnoteInfo.deductedPoint}}">
|
|
<text class="text-black">扣点</text>
|
|
<text class="text-gray">{{item.weightnoteInfo.deductedPoint}}%</text>
|
|
</view>
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx" wx:if="{{item.weightnoteInfo.settleWeight}}">
|
|
<text class="text-black">结算重量</text>
|
|
<text class="text-gray">{{formate.formateWeight(item.weightnoteInfo.settleWeight)}}吨</text>
|
|
</view>
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx">
|
|
<text class="text-black">代卖费</text>
|
|
<text class="text-gray">{{formate.formatePrice(item.unitSurcharge==null?0:item.unitSurcharge)}}元/吨</text>
|
|
</view>
|
|
<!-- <view class="flex flex-justify text-sg" style="margin-top:20rpx">
|
|
<text class="text-black">调节费</text>
|
|
<text class="text-gray">{{item.adjustMoney > 0 ? '+' : ''}}{{formate.formateAmount(item.adjustMoney)}}元</text>
|
|
</view> -->
|
|
</view>
|
|
<view class="bg-white" wx:if="{{item.weightnoteInfo && item.weightnoteInfo.id&&(orderInfo.activityId!=null||item.status>=53)}}">
|
|
<!--补贴与扣款-->
|
|
<van-collapse value="{{ activeNames }}" bind:change="onChange">
|
|
<van-collapse-item content-class="collapse-item" name="1">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-sg text-black">补贴与扣款</view>
|
|
<view class="text-df text-gray" style="padding-right:16rpx;">{{formate.formateAmount(item.totalOtherAmount==null?0:item.totalOtherAmount)}}元</view>
|
|
</view>
|
|
<view style="padding:24rpx 30rpx">
|
|
<view class="flex flex-justify text-sg" wx:for="{{ item.otherAmountDtoList }}" wx:for-item="cell" wx:for-index="cellIndex" wx:key="cellIndex" style="margin-top:{{cellIndex==0?0:24}}rpx">
|
|
<text class="text-black">{{cell.title}}</text>
|
|
<text class="text-gray">{{formate.formateAmount(cell.amount==null?0:cell.amount)}}元</text>
|
|
</view>
|
|
|
|
<view class="flex flex-justify text-sg" style="margin-top:24rpx;align-items: flex-start">
|
|
<text class="text-black" style="min-width:200rpx">总计</text>
|
|
<text class="text-gray">{{formate.formateAmount(item.totalOtherAmount==null?0:item.totalOtherAmount)}}元</text>
|
|
</view>
|
|
<view class="flex flex-justify text-sg" style="margin-top:24rpx;align-items: flex-end">
|
|
<text class="text-black" style="min-width:200rpx">备注</text>
|
|
<text class="text-gray">{{item.deductionNotes==null? '':item.deductionNotes}}</text>
|
|
</view>
|
|
</view>
|
|
</van-collapse-item>
|
|
</van-collapse>
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx;padding:0rpx 30rpx">
|
|
<text class="text-black">磅单图片</text>
|
|
</view>
|
|
<view style="margin-top:20rpx;padding:0rpx 30rpx 12rpx 30rpx">
|
|
<sudoku-image image-list="{{item.weightnoteInfo.imageUrls}}" square="{{true}}" clickable="{{true}}"></sudoku-image>
|
|
</view>
|
|
</view>
|