diff --git a/src/views/newMap/display/simulationMenu.vue b/src/views/newMap/display/simulationMenu.vue index d00c4092c..c4b81c816 100644 --- a/src/views/newMap/display/simulationMenu.vue +++ b/src/views/newMap/display/simulationMenu.vue @@ -62,15 +62,15 @@ export default { {label:'退出剧本', name:'quitScript', click:this.quitScript, isShow:true}, {label:'开始', name:'start', click:this.startSimulation, isShow:true}, // 暂停 {label:'按计划行车', name:'drivingPlan', click:this.drivingPlan, isShow:true}, - {label:'初始化', name:'drivingPlan', click:this.drivingPlan, isShow:true} + {label:'初始化', name:'initialize', click:this.initialize, isShow:true} ]}, {label:'设备操作', name:'deviceOprate', isShow:true, children:[ {label:'数字沙盘', name:'drivingPlan', click:this.drivingPlan, isShow:true}, - {label:'cctv视图', name:'drivingPlan', click:this.drivingPlan, isShow:true}, - {label:'故障设备', name:'drivingPlan', click:this.drivingPlan, isShow:true}, - {label:'司机视角', name:'drivingPlan', click:this.drivingPlan, isShow:true}, + {label:'cctv视图', name:'cctvView', click:this.cctvView, isShow:true}, + {label:'故障设备', name:'jlmap3dFault', click:this.jlmap3dFault, isShow:true}, + {label:'司机视角', name:'jlmap3dDriver', click:this.jlmap3dDriver, isShow:true}, {label:'设备视图', name:'jl3dmodel', click:this.jlmap3dmodel, isShow:false}, - {label:'IBP盘', name:'drivingPlan', click:this.drivingPlan, isShow:true} + {label:'IBP盘', name:'IBP', click:this.IBP, isShow:true} ]}, {label:'竞赛管理', name:'competitionManage', isShow:true, children:[ {label:'实操练习', name:'drivingPlan', click:this.drivingPlan, isShow:true}, @@ -345,6 +345,26 @@ export default { // 按计划行车 drivingPlan() { this.hideMenuList(); + }, + // 初始化 + initialize() { + this.hideMenuList(); + }, + // cctv视图 + cctvView() { + this.hideMenuList(); + }, + // ibp盘 + IBP() { + this.hideMenuList(); + }, + // 故障设备 + jlmap3dFault() { + this.hideMenuList(); + }, + // 司机视角 + jlmap3dDriver() { + this.hideMenuList(); } }