|
|
|
@ -210,7 +210,7 @@ export default { |
|
|
|
if (data.code === 0) { |
|
|
|
// 后端返回正确的6位栈板码,赋值给输入框 - rqrq |
|
|
|
this.palletCode = data.row.palletId; |
|
|
|
|
|
|
|
|
|
|
|
// 如果栈板被调用,提示并清空 - rqrq |
|
|
|
if (data.row.callingFlag === 'Y') { |
|
|
|
this.$alert('栈板被调用,请选择其他栈板', '提示', { |
|
|
|
@ -296,7 +296,10 @@ export default { |
|
|
|
site: this.site |
|
|
|
}).then(({ data }) => { |
|
|
|
if (data.code === 0) { |
|
|
|
this.areaOptions = data.rows || []; |
|
|
|
// this.areaOptions = data.rows || []; |
|
|
|
// 过滤掉Z199区域,位置不允许选择Z199 - rqrq |
|
|
|
const allOptions = data.rows || []; |
|
|
|
this.areaOptions = allOptions.filter(area => area.areaId !== 'Z199'); |
|
|
|
} else { |
|
|
|
this.areaOptions = []; |
|
|
|
this.$alert('获取区域选项失败', '错误', { |
|
|
|
|