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.
38 lines
2.0 KiB
38 lines
2.0 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.formatePrice2(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.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" 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">
|
|
<text class="text-black">代卖费</text>
|
|
<text class="text-gray">{{formate.formatePrice2(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 class="flex flex-justify text-sg" style="margin-top:20rpx">
|
|
<text class="text-black">磅单图片</text>
|
|
</view>
|
|
<view style="margin-top:20rpx">
|
|
<sudoku-image image-list="{{item.weightnoteInfo.imageUrls}}" square="{{true}}" clickable="{{true}}">
|
|
</sudoku-image>
|
|
</view>
|
|
</view>
|