From 11c021feb8fb459bfff5c06da03e975b2e6892db Mon Sep 17 00:00:00 2001 From: zyy <1787816799@qq.com> Date: Thu, 23 Jul 2020 13:16:45 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=B1=8F=E8=94=BD=E9=97=A8?= =?UTF-8?q?=E7=BB=98=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/jmapNew/shape/Psd/ESafeDoor.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/jmapNew/shape/Psd/ESafeDoor.js b/src/jmapNew/shape/Psd/ESafeDoor.js index 137ef37ed..5d799db38 100644 --- a/src/jmapNew/shape/Psd/ESafeDoor.js +++ b/src/jmapNew/shape/Psd/ESafeDoor.js @@ -170,8 +170,8 @@ class ESafeDoor extends Group { } hide() { - this.stand1 && this.stand1.hide(); - this.stand2 && this.stand2.hide(); + this.stand1 && this.stand1.setStyle('fill', style.transparentColor); + this.stand2 && this.stand2.setStyle('fill', style.transparentColor); this.safeL && this.safeL.hide(); this.safeC && this.safeC.hide(); this.safeR && this.safeR.hide(); @@ -179,8 +179,8 @@ class ESafeDoor extends Group { this.safeB && this.safeB.hide(); } show() { - this.stand1 && this.stand1.show(); - this.stand2 && this.stand2.show(); + this.stand1 && this.stand1.setStyle('fill', style.StationStand.safetyDoor.defaultColor); + this.stand2 && this.stand2.setStyle('fill', style.StationStand.safetyDoor.defaultColor); this.safeL && this.safeL.show(); this.safeC && this.safeC.show(); this.safeR && this.safeR.show();