From d9feb1d52963982a89a6e6d741a9b841042ce0b6 Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期五, 22 七月 2022 17:22:41 +0800
Subject: [PATCH] 毫米波传感器,温控一体化
---
HDL_ON/UI/UI2/2-Classification/ClassificaitionPublicBLL.cs | 83 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 83 insertions(+), 0 deletions(-)
diff --git a/HDL_ON/UI/UI2/2-Classification/ClassificaitionPublicBLL.cs b/HDL_ON/UI/UI2/2-Classification/ClassificaitionPublicBLL.cs
index 2cb9b13..1af093e 100644
--- a/HDL_ON/UI/UI2/2-Classification/ClassificaitionPublicBLL.cs
+++ b/HDL_ON/UI/UI2/2-Classification/ClassificaitionPublicBLL.cs
@@ -171,6 +171,89 @@
}
#endregion
}
+ //鏇存柊姣背娉紶鎰熷櫒鐘舵��
+ else if(SPK.SenesorMegahealth == updataFunction.spk)
+ {
+ if (cTag == updataFunction.sid + "_SenesorMegahealth_Status")
+ {
+ try
+ {
+ Button btnStatus = (fcView.GetChildren(j) as Button);
+
+ var tempStatus = updataFunction.attributes.Find((sta) => sta.key == FunctionAttributeKey.TargetStatus);
+ if (tempStatus != null)
+ {
+
+ switch (tempStatus.state)
+ {//0绌猴紝1璧帮紝2璺戯紝3鍧愶紝4璺屽�掞紝5绔�
+ case "0":
+ btnStatus.TextID = StringId.SensorNormalState;
+ btnStatus.TextColor = CSS_Color.MainColor;
+ break;
+ case "1":
+ btnStatus.TextID = StringId.SomeoneIn;
+ break;
+ case "2":
+ if (updataFunction.extSet.labModel)
+ {
+ btnStatus.TextID = StringId.SomeoneRunning;
+ }
+ else
+ {
+ btnStatus.TextID = StringId.Someone;
+ }
+ btnStatus.TextColor = CSS_Color.WarningColor;
+ break;
+ case "3":
+ if (updataFunction.extSet.labModel)
+ {
+ btnStatus.TextID = StringId.SomeoneSitting;
+ }
+ else
+ {
+ btnStatus.TextID = StringId.Someone;
+ }
+ btnStatus.TextColor = CSS_Color.WarningColor;
+ break;
+ case "4":
+ btnStatus.TextID = StringId.SomeoneFell;
+ btnStatus.TextColor = CSS_Color.WarningColor;
+ break;
+ case "5":
+ if (updataFunction.extSet.labModel)
+ {
+ btnStatus.TextID = StringId.SomeoneStanding;
+ }
+ else
+ {
+ btnStatus.TextID = StringId.Someone;
+ }
+ btnStatus.TextColor = CSS_Color.WarningColor;
+ break;
+ }
+
+ }
+
+
+ }
+ catch (Exception ex)
+ {
+ MainPage.Log($"{this.GetType()} error 3 : {ex.Message}");
+ }
+ }
+ }
+ //鏇存柊娓╂帶鍣ㄧ姸鎬�
+ else if(SPK.HvacCac == updataFunction.spk)
+ {
+ if (cTag == updataFunction.sid + "_Humidity")
+ {
+ (fcView.GetChildren(j) as Button).Text = updataFunction.GetAttrState(FunctionAttributeKey.RoomHumidity) + "%";
+ }
+ else if (cTag == updataFunction.sid + "_Temp")
+ {
+ (fcView.GetChildren(j) as Button).Text = updataFunction.GetAttrState(FunctionAttributeKey.RoomTemp) + "掳C";
+ }
+ }
}
}
}
--
Gitblit v1.8.0