|
@@ -293,7 +293,13 @@ const handleHideCommunicationSupport = () => {
|
|
|
const findChecked = (dataList, name) => {
|
|
|
let index = 0;
|
|
|
dataList.forEach((item) => {
|
|
|
- if (!['易涝隐患点', '省政务无人机', '铁塔运行监测', '通讯保障', '救援队伍', '重点车辆'].includes(item.name) && item.name !== name && !item.isVideo && item.path === '2' && !!item.checked) {
|
|
|
+ if (
|
|
|
+ !['易涝隐患点', '省政务无人机', '铁塔运行监测', '通讯保障', '救援队伍', '重点车辆', '附近视频'].includes(item.name) &&
|
|
|
+ item.name !== name &&
|
|
|
+ !item.isVideo &&
|
|
|
+ item.path === '2' &&
|
|
|
+ !!item.checked
|
|
|
+ ) {
|
|
|
index++;
|
|
|
}
|
|
|
if (item.children && item.children.length > 0) {
|