From 193d68dedf75522509e1118b20468132016ab429 Mon Sep 17 00:00:00 2001 From: wxr <wxr@hdlchina.com.cn> Date: 星期四, 12 九月 2024 09:04:26 +0800 Subject: [PATCH] Update ClassificationPageBLL.cs --- HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs b/HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs index 7c6cfa8..3b9f99e 100644 --- a/HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs +++ b/HDL_ON/UI/UI2/2-Classification/ClassificationPageBLL.cs @@ -405,6 +405,14 @@ { switch (functionCategory) { + case ShowFunction.FreshAir: + List<Function> faList = new List<Function>(); + foreach (var f in FunctionList.List.GetAirFreshList()) + { + faList.Add(f); + } + Control.Ins.SwtichFunctions(onoff == "on", faList); + break; case ShowFunction.AC: List<Function> acList = new List<Function>(); foreach(var f in FunctionList.List.GetAcList()) -- Gitblit v1.8.0