问题修改

master
zhangdi 2 weeks ago
parent a4bc934ba3
commit d362e44e31
  1. 11
      pages/logistics/packaging.vue

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

Loading…
Cancel
Save