From cf6e90f17266301d5c4566c4f4902a80336cdfd3 Mon Sep 17 00:00:00 2001 From: fan Date: Thu, 29 Dec 2022 15:40:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BD=E8=B5=9B=E7=BA=BF=E8=B7=AF=20=3D>=20?= =?UTF-8?q?=E7=AB=99=E9=81=A5=E6=8E=A7=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../theme/race_01/menus/menuDialog/stationControl.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jmapNew/theme/race_01/menus/menuDialog/stationControl.vue b/src/jmapNew/theme/race_01/menus/menuDialog/stationControl.vue index 97cf7f68f..34e1bf3f2 100644 --- a/src/jmapNew/theme/race_01/menus/menuDialog/stationControl.vue +++ b/src/jmapNew/theme/race_01/menus/menuDialog/stationControl.vue @@ -235,21 +235,21 @@ export default { }, // 请求遥控 conterCommit() { - commitOperate(menuOperate.StationControl.requestCentralControl, {stationCodes:[this.stationCode]}, 0).then((data)=>{ + commitOperate(menuOperate.StationControl.requestCentralControl, {stationCodes:[this.stationCode]}, 1).then((data)=>{ this.doClose(); this.$refs.twoConfirmation.doShow(data.operate, '确认将如下操作区域的控制模式由站控转为遥控:\n' + this.stationName); }); }, // 请求站控 requestCommit() { - commitOperate(menuOperate.StationControl.requestStationControl, {stationCodes:[this.stationCode]}, 0).then((data)=>{ + commitOperate(menuOperate.StationControl.requestStationControl, {stationCodes:[this.stationCode]}, 1).then((data)=>{ this.doClose(); this.$refs.twoConfirmation.doShow(data.operate, '确认将如下操作区域的控制模式由中控转为站控:\n' + this.stationName); }); }, // 紧急站控 emergencyCommit() { - commitOperate(menuOperate.StationControl.emergencyStationControl, {stationCodes:[this.stationCode]}, 0).then((data)=>{ + commitOperate(menuOperate.StationControl.emergencyStationControl, {stationCodes:[this.stationCode]}, 1).then((data)=>{ this.doClose(); this.$refs.twoConfirmation.doShow(data.operate, '确认将如下操作区域的控制模式由中控转为站控:\n' + this.stationName); });