常熟吴彦祖 4 weeks ago
parent
commit
243fa2e96d
  1. 4
      src/views/modules/automatedWarehouse/callOutToStation.vue
  2. 5
      src/views/modules/automatedWarehouse/palletChangeStation.vue

4
src/views/modules/automatedWarehouse/callOutToStation.vue

@ -355,7 +355,9 @@ export default {
site: this.site
}).then(({ data }) => {
if (data.code === 0) {
this.areaOptions = data.rows || [];
// Z199CallZ199 - rqrq
const allOptions = data.rows || [];
this.areaOptions = allOptions.filter(area => area.areaId !== 'Z199');
} else {
this.areaOptions = [];
this.$alert('获取区域选项失败', '错误', {

5
src/views/modules/automatedWarehouse/palletChangeStation.vue

@ -296,7 +296,10 @@ export default {
site: this.site
}).then(({ data }) => {
if (data.code === 0) {
this.areaOptions = data.rows || [];
// this.areaOptions = data.rows || [];
// Z199Z199 - rqrq
const allOptions = data.rows || [];
this.areaOptions = allOptions.filter(area => area.areaId !== 'Z199');
} else {
this.areaOptions = [];
this.$alert('获取区域选项失败', '错误', {

Loading…
Cancel
Save