|
|
|
@ -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('获取区域选项失败', '错误', { |
|
|
|
|