diff --git a/src/views/trainingPlatform/simulation.vue b/src/views/trainingPlatform/simulation.vue index 7b5bdee1b..b81f629cf 100644 --- a/src/views/trainingPlatform/simulation.vue +++ b/src/views/trainingPlatform/simulation.vue @@ -29,7 +29,7 @@ - + @@ -68,6 +68,7 @@ export default { return { loading: false, param: '', + canLiji: false, collapse: '1', subsetList: [], subsetMap: {}, @@ -307,7 +308,11 @@ export default { initMapSystem() { queryMapFunctionList({mapId: this.$route.params.mapId, detail: true}).then(resp => { this.systemList = resp.data; + this.canLiji = false; this.systemList.forEach(item => { + if (item.name === '综合演练') { + this.canLiji = true; + } if (item.subset && this.subsetList.includes(item.subset) && item.name !== '实训室') { this.subsetMap[item.subset].push(item); } else if (item.subset && item.name !== '实训室') {