|
|
|
@ -24,6 +24,47 @@ |
|
|
|
<text class="text-black">代卖费</text> |
|
|
|
<text class="text-gray">{{formate.formatePrice2(item.unitSurcharge==null?0:item.unitSurcharge)}}</text> |
|
|
|
</view> |
|
|
|
<!--补贴与扣款--> |
|
|
|
<view class="" style="margin-top:20rpx;width:104%"> |
|
|
|
<wux-accordion-group style="padding:0rpx"> |
|
|
|
<wux-accordion> |
|
|
|
<view slot="header" class="flex flex-justify" style="width: 100%"> |
|
|
|
<view class="flex"> |
|
|
|
<text class="text-sg text-black text-bold" style="margin-left: -32rpx">补贴与扣款</text> |
|
|
|
</view> |
|
|
|
<view class="text-df text-gray" style="padding-right:16rpx;">{{formate.formateAmount(item.totalOtherAmount==null?0:item.totalOtherAmount)}}元</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify text-sg"> |
|
|
|
<text class="text-black">运费补贴</text> |
|
|
|
<text class="text-gray">{{formate.formateAmount(item.freightSubsidies==null?0:item.freightSubsidies)}}元</text> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx"> |
|
|
|
<text class="text-black">其他补贴</text> |
|
|
|
<text class="text-gray">{{formate.formateAmount(item.otherSubsidies==null?0:item.otherSubsidies)}}元</text> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx;align-items: flex-start"> |
|
|
|
<text class="text-black" style="min-width:200rpx">违禁物品扣款</text> |
|
|
|
<text class="text-gray">{{formate.formateAmount(item.contrabandPenalty==null?0:item.contrabandPenalty)}}元</text> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx;align-items: flex-start"> |
|
|
|
<text class="text-black" style="min-width:200rpx">装车不规范扣款</text> |
|
|
|
<text class="text-gray">{{formate.formateAmount(item.nonStandardPenalty==null?0:item.nonStandardPenalty)}}元</text> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx;align-items: flex-start"> |
|
|
|
<text class="text-black" style="min-width:200rpx">其他扣款</text> |
|
|
|
<text class="text-gray">{{formate.formateAmount(item.otherPenalty==null?0:item.otherPenalty)}}元</text> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx;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:20rpx;align-items: flex-end"> |
|
|
|
<text class="text-black" style="min-width:200rpx">备注</text> |
|
|
|
<text class="text-gray">{{item.remark==null? '':item.remark}}</text> |
|
|
|
</view> |
|
|
|
</wux-accordion> |
|
|
|
</wux-accordion-group> |
|
|
|
</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> |
|
|
|
|