标签判断增加报警设备

5_7_地图同步
songwenxuan 2024-03-30 09:26:59 +08:00
parent e1d012af1f
commit 5a032f4bed
1 changed files with 2 additions and 2 deletions

View File

@ -3040,14 +3040,14 @@ export default {
// create by liu jun (PS:[if]) // create by liu jun (PS:[if])
if (item && item.list && item.list.length > 0) { if (item && item.list && item.list.length > 0) {
if (item.label === '消防管控') { if (item.label === '消防管控') {
if (e.label === '消防救援队') { if (e.label === '消防救援队' && e.label === '报警设备') {
if (this.gangkouActive === '00005') { if (this.gangkouActive === '00005') {
return true return true
} else { } else {
return !(this.CORP_INFO_ID && this.CORP_INFO_ID !== '') return !(this.CORP_INFO_ID && this.CORP_INFO_ID !== '')
} }
} }
if (e.label !== '消防救援队') { if (e.label !== '消防救援队' && e.label !== '报警设备') {
return (this.CORP_INFO_ID && this.CORP_INFO_ID !== '') return (this.CORP_INFO_ID && this.CORP_INFO_ID !== '')
} }
} }