From fbdb48dc08f1d67861b9c2d77b2905678ce200b5 Mon Sep 17 00:00:00 2001 From: fan Date: Wed, 20 Sep 2023 14:51:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=90=E9=83=BD=E4=B8=89=E5=8F=B7=E7=BA=BF?= =?UTF-8?q?=E7=8E=B0=E5=9C=B0=E4=BB=BF=E7=9C=9F=E6=8E=A7=E5=88=B6=E6=9D=83?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E9=97=AE=E9=A2=98=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/jmapNew/theme/chengdu_03/menus/menuButton.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/jmapNew/theme/chengdu_03/menus/menuButton.vue b/src/jmapNew/theme/chengdu_03/menus/menuButton.vue index 3b021eb83..bc55f7cd9 100644 --- a/src/jmapNew/theme/chengdu_03/menus/menuButton.vue +++ b/src/jmapNew/theme/chengdu_03/menus/menuButton.vue @@ -423,21 +423,21 @@ export default { break; case 'center': operate.cmdType = CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_CENTER_CONTROL; - // delete operate.over; + delete operate.over; operate.subType = 'center'; operate.param = {stationCodes: [model.code]}; operate.code = model.code; break; case 'emergency': operate.cmdType = CMD.ControlConvertMenu.CMD_CM_EMERGENCY_STATION_CONTROL; - // delete operate.over; + delete operate.over; operate.subType = 'emergency'; operate.param = {stationCodes: [model.code]}; operate.code = model.code; break; case 'interconnected': operate.cmdType = CMD.ControlConvertMenu.CMD_CM_EMERGENCY_STATION_CONTROL; - // delete operate.over; + delete operate.over; operate.subType = 'interconnected'; operate.param = {stationCodes: [model.code]}; operate.code = model.code; @@ -447,7 +447,7 @@ export default { this.$store.dispatch('trainingNew/next', operate).then(({ valid, response }) => { // 判断是否需要 弹窗密码框 // const operate = Object.assign({}, operate); - if (subType == 'center ' || subType == 'emergency' || subType == 'interconnected' ) { + if (subType == 'center' || subType == 'emergency' || subType == 'interconnected' ) { operate['operateNext'] = operate.operation = this.Command.close.password.operation; if (subType == 'center') { operate['nextCmdType'] = CMD.ControlConvertMenu.CMD_CM_APPLY_FOR_CENTER_CONTROL;