|
|
|
@ -30,7 +30,7 @@ |
|
|
|
<text wx:if="{{item.status != 1 && item.factoryCustomerMobile}}">-{{item.factoryCustomerMobile}}</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="text-df" wx:if="{{item.status == 1}}">定价</view> |
|
|
|
<view class="text-df" wx:if="{{item.status == 1}}">待定价</view> |
|
|
|
<view class="text-df" wx:elif="{{item.status == 2}}">待过皮重</view> |
|
|
|
<view class="text-df" style="color:#FF5368" wx:elif="{{item.status == 3}}">待审核</view> |
|
|
|
<view class="text-df" style="color:#FA541C" wx:elif="{{item.status == 4}}">待付款</view> |
|
|
|
@ -41,27 +41,27 @@ |
|
|
|
</view> |
|
|
|
<view style="position:relative"> |
|
|
|
<view class="flex flex-justify" style="margin-top:12rpx" wx:if="{{item.productName}}"> |
|
|
|
<view class="text-sm text-black">品类:</view> |
|
|
|
<view class="text-sm text-black" style="margin-left:80rpx">品类:</view> |
|
|
|
<view class="text-sm text-black">{{item.productName}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="margin-top:12rpx" wx:if="{{item.totalWeight}}"> |
|
|
|
<view class="text-sm text-black">毛重(公斤):</view> |
|
|
|
<view class="text-sm text-black">{{item.totalWeight}}</view> |
|
|
|
<view class="flex flex-justify" style="margin-top:12rpx"> |
|
|
|
<view class="text-sm text-black" style="margin-left:80rpx">毛重(公斤):</view> |
|
|
|
<view class="text-sm text-black">{{item.totalWeight || '- -'}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="margin-top:12rpx" wx:if="{{item.settleWeight}}"> |
|
|
|
<view class="text-sm text-black">结算重量(公斤):</view> |
|
|
|
<view class="text-sm text-black">{{item.settleWeight}}</view> |
|
|
|
<view class="flex flex-justify" style="margin-top:12rpx"> |
|
|
|
<view class="text-sm text-black" style="margin-left:80rpx">结算重量(公斤):</view> |
|
|
|
<view class="text-sm text-black">{{item.settleWeight || '- -'}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="margin-top:12rpx" wx:if="{{item.unitPrice}}"> |
|
|
|
<view class="text-sm text-black">单价(元/公斤):</view> |
|
|
|
<view class="text-sm text-black">{{item.unitPrice}}</view> |
|
|
|
<view class="flex flex-justify" style="margin-top:12rpx"> |
|
|
|
<view class="text-sm text-black" style="margin-left:80rpx">单价(元/公斤):</view> |
|
|
|
<view class="text-sm text-black">{{item.unitPrice || '- -'}}</view> |
|
|
|
</view> |
|
|
|
<view class="flex flex-justify" style="margin-top:12rpx" wx:if="{{item.settlePrice}}"> |
|
|
|
<view class="text-sm text-black">结算金额(元):</view> |
|
|
|
<view class="text-sm text-black">{{item.settlePrice}}</view> |
|
|
|
<view class="flex flex-justify" style="margin-top:12rpx"> |
|
|
|
<view class="text-sm text-black" style="margin-left:80rpx">结算金额(元):</view> |
|
|
|
<view class="text-sm text-black">{{item.settlePrice || '- -'}}</view> |
|
|
|
</view> |
|
|
|
<image class="item-icon" src="/assets/image/icon-finish.png" wx:if="{{item.status == 5}}"></image> |
|
|
|
<!-- <image class="item-icon" src="/assets/image/icon-delete.png" wx:if="{{item.status == 6}}"></image> --> |
|
|
|
<image class="item-icon" src="/assets/image/icon-delete.png" wx:if="{{item.status == 6}}"></image> |
|
|
|
</view> |
|
|
|
<view class="flex" style="justify-content: flex-end;margin-top:16rpx"> |
|
|
|
<van-button round plain type="default" custom-style="height:64rpx;width:180rpx" data-id="{{item.id}}" |
|
|
|
|