From efad979b6fae76fb37a4de7e94e6bac0a85cb72c Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期二, 30 十一月 2021 13:14:28 +0800
Subject: [PATCH] 2021-11-30 1.修复乐橙Android,没调用拒接接口问题。

---
 HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalPage.cs |   37 ++++++++++++++++++++++++++++++++++---
 1 files changed, 34 insertions(+), 3 deletions(-)

diff --git a/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalPage.cs b/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalPage.cs
index 510234f..9a624ea 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalPage.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/EnvironmentalScience/EnvironmentalPage.cs
@@ -285,7 +285,9 @@
                             deviceId = sensor.deviceId,
                             roomIds = sensor.roomIds,
                             attributes = new List<FunctionAttributes> { new FunctionAttributes { key = "value", state = seTemp.state, curValue = seTemp.curValue }
-                            ,new FunctionAttributes { key = "spk"} }
+                            , new FunctionAttributes {key = "spk",state = seTemp.key,curValue = seTemp.key } 
+                            //,new FunctionAttributes { key = "spk"}
+                        }
                         };
                         switch (seTemp.key)
                         {
@@ -528,7 +530,7 @@
                     btnTitle.Text = Language.StringByID(StringId.Temp) + "(掳C)";
                     break;
                 case SPK.SensorTVOC:
-                    btnTitle.Text = "TVOC(mg/m3)";
+                    btnTitle.Text = "TVOC(PPB)";
                     break;
                 case SPK.SensorCO2:
                     btnTitle.Text = "CO2(PPM)";
@@ -801,6 +803,9 @@
                                     case "tvoc":
                                         newTemp.spk = SPK.SensorTVOC;
                                         break;
+                                    case "hcho":
+                                        newTemp.spk = SPK.SensorHcho;
+                                        break;
                                 }
                                 if(!string.IsNullOrEmpty(newTemp.spk))
                                 {
@@ -826,10 +831,36 @@
                                     {
                                         if (btn.Tag != null)
                                         {
+                                            FunctionAttributes attr = updateTemp.GetAttribute(FunctionAttributeKey.Value);
+                                            if(attr == null)
+                                            {
+                                                switch(updateTemp.spk)
+                                                {
+                                                    case SPK.SensorCO2:
+                                                        attr = updateTemp.GetAttribute(FunctionAttributeKey.Co2);
+                                                        break;
+                                                    case SPK.SensorTemperature:
+                                                        attr = updateTemp.GetAttribute(FunctionAttributeKey.Temperature);
+                                                        break;
+                                                    case SPK.SensorTVOC:
+                                                        attr = updateTemp.GetAttribute(FunctionAttributeKey.Tvoc);
+                                                        break;
+                                                    case SPK.SensorPm25:
+                                                        attr = updateTemp.GetAttribute(FunctionAttributeKey.Pm25);
+                                                        break;
+                                                    case SPK.SensorHcho:
+                                                        attr = updateTemp.GetAttribute(FunctionAttributeKey.Hcho);
+                                                        break;
+                                                    case SPK.SensorHumidity:
+                                                        attr = updateTemp.GetAttribute(FunctionAttributeKey.Humidity);
+                                                        break;
+                                                }
+                                            }
+
                                             var tag = btn.Tag.ToString();
                                             if (tag == "SensorValues")
                                             {
-                                                (btn as Button).Text = updateTemp.GetAttrState(FunctionAttributeKey.Value);
+                                                (btn as Button).Text = attr.state;// updateTemp.GetAttrState(FunctionAttributeKey.Value);
                                             }
                                             else if (tag == "SensorLevel")
                                             {

--
Gitblit v1.8.0