修改物流问题

master
zhangdi 5 days ago
parent 118f2e4f13
commit d35be57ebb
  1. 2
      pages/logistics/delivery.vue
  2. 4
      pages/logistics/packaging.vue

@ -486,7 +486,7 @@ export default {
detailsFn() { detailsFn() {
this.showDetails = true; this.showDetails = true;
this.$u.api this.$u.api
.boxbarcodeDetails({ boxBarcode: this.boxData.boxBarcode }) .boxbarcodeDetails({ boxBarcode: this.boxData.boxBarcode,isDetail:false })
.then((res) => { .then((res) => {
this.yieldOrderList = res.data.yieldOrderList; this.yieldOrderList = res.data.yieldOrderList;
}); });

@ -266,7 +266,7 @@ export default {
const code = this.boxCode.trim(); const code = this.boxCode.trim();
if (!code) return; if (!code) return;
this.$u.api this.$u.api
.boxbarcodeDetails({ boxBarcode: this.boxCode }) .boxbarcodeDetails({ boxBarcode: this.boxCode,isDetail:false })
.then((res) => { .then((res) => {
this.boxInfo = res.data; this.boxInfo = res.data;
if (this.boxInfo.yieldOrderList == null) { if (this.boxInfo.yieldOrderList == null) {
@ -440,7 +440,7 @@ export default {
// //
refreshBoxInfo() { refreshBoxInfo() {
this.$u.api this.$u.api
.boxbarcodeDetails({ boxBarcode: this.activeBox }) .boxbarcodeDetails({ boxBarcode: this.activeBox,isDetail:false })
.then((res) => { .then((res) => {
this.boxInfo = res.data; this.boxInfo = res.data;
if (this.boxInfo.yieldOrderList == null) { if (this.boxInfo.yieldOrderList == null) {

Loading…
Cancel
Save