常熟吴彦祖 3 months ago
parent
commit
7e7718eb50
  1. 6
      src/views/modules/automatedWarehouse/palletAssembly.vue

6
src/views/modules/automatedWarehouse/palletAssembly.vue

@ -491,7 +491,7 @@ export default {
this.positionOptions = data.positions || []; this.positionOptions = data.positions || [];
// palletTypeautoSort // palletTypeautoSort
this.loadPalletInfo();
this.loadPalletInfo(data.palletId);
this.refreshTable(); this.refreshTable();
}) })
} else { } else {
@ -504,10 +504,10 @@ export default {
}, },
// //
loadPalletInfo() {
loadPalletInfo(palletId) {
getPalletInfo({ getPalletInfo({
site: this.site, site: this.site,
palletId: this.palletCode
palletId: palletId
}).then(({ data }) => { }).then(({ data }) => {
if (data.code === 0) { if (data.code === 0) {
const palletInfo = data.row || {}; const palletInfo = data.row || {};

Loading…
Cancel
Save