|
|
|
|
@ -57,7 +57,10 @@ |
|
|
|
|
<view class="stats-item"> |
|
|
|
|
<text class="stats-label">配送终点</text> |
|
|
|
|
<text class="stats-value" |
|
|
|
|
>{{ boxInfo.wcName }}{{ boxInfo.stationRegion?'-'+boxInfo.stationRegion:''}}</text |
|
|
|
|
>{{ boxInfo.wcName |
|
|
|
|
}}{{ |
|
|
|
|
boxInfo.stationRegion ? "-" + boxInfo.stationRegion : "" |
|
|
|
|
}}</text |
|
|
|
|
> |
|
|
|
|
</view> |
|
|
|
|
<!-- <view class="stats-item"> |
|
|
|
|
@ -128,7 +131,9 @@ |
|
|
|
|
<text class="order-part">{{ order.partCode }}</text> |
|
|
|
|
<text class="order-weight" |
|
|
|
|
>{{ |
|
|
|
|
order.actualWeighing >= 0 ? order.actualWeighing + "g" : 0 + "g" |
|
|
|
|
(order.actualWeighing >= 0) || (order.actualWeighing != null) |
|
|
|
|
? order.actualWeighing + "g" |
|
|
|
|
: 0 + "g" |
|
|
|
|
}} |
|
|
|
|
</text> |
|
|
|
|
</view> |
|
|
|
|
@ -349,7 +354,7 @@ export default { |
|
|
|
|
this.$u.api |
|
|
|
|
.boxBinding({ |
|
|
|
|
boxBarcode: this.activeBox, |
|
|
|
|
orderIdList: [this.cardCode] |
|
|
|
|
orderIdList: [this.cardCode], |
|
|
|
|
}) |
|
|
|
|
.then((bindRes) => { |
|
|
|
|
uni.showToast({ |
|
|
|
|
|