|
|
|
@ -34,26 +34,11 @@ |
|
|
|
</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 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:20}}px;font-size:30rpx"> |
|
|
|
<text class="text-black">{{cell.title}}</text> |
|
|
|
<text class="text-gray">{{formate.formateAmount(cell.amount==null?0:item.amount)}}元</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> |
|
|
|
|