WJC
2019-10-24 528c105b3aea0e6e00477365f16f57c1e3d7eb1c
ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Logic/HdlPanelLogic.cs
@@ -64,7 +64,7 @@
            Panel.KeyNum keyNum = (Panel.KeyNum)panel.DeviceEpoint;
            var result = await panel.GetPanelColorInfoAsync(keyNum);
            //共通错误检测
            string error = UserCenterLogic.CheckCommonErrorCode(result);
            string error = HdlCheckLogic.Current.CheckCommonErrorCode(result);
            if (error != null)
            {
                this.ShowErrorMsg(error);
@@ -132,7 +132,7 @@
            var result = await panel.GetPanelSwitchLevelAsync();
            panel = null;
            //共通错误检测
            string error = UserCenterLogic.CheckCommonErrorCode(result);
            string error = HdlCheckLogic.Current.CheckCommonErrorCode(result);
            if (error != null)
            {
                this.ShowErrorMsg(error);
@@ -167,7 +167,7 @@
            var result = await panel.SetKeyLevelAsync(directionsLevel, backlightLevel);
            panel = null;
            //共通错误检测
            string error = UserCenterLogic.CheckCommonErrorCode(result);
            string error = HdlCheckLogic.Current.CheckCommonErrorCode(result);
            if (error != null)
            {
                this.ShowTipMsg(error);
@@ -223,7 +223,7 @@
            panel = null;
            //共通错误检测
            string error = UserCenterLogic.CheckCommonErrorCode(result);
            string error = HdlCheckLogic.Current.CheckCommonErrorCode(result);
            if (error != null)
            {
                this.ShowErrorMsg(error);
@@ -262,7 +262,7 @@
            var result = await panel.SetKeyModeAsync(modeEnable, modeTime, level);
            panel = null;
            //共通错误检测
            string error = UserCenterLogic.CheckCommonErrorCode(result);
            string error = HdlCheckLogic.Current.CheckCommonErrorCode(result);
            if (error != null)
            {
                this.ShowErrorMsg(error);
@@ -320,7 +320,7 @@
            panel = null;
            //共通错误检测
            string error = UserCenterLogic.CheckCommonErrorCode(result);
            string error = HdlCheckLogic.Current.CheckCommonErrorCode(result);
            if (error != null)
            {
                this.ShowErrorMsg(error);
@@ -452,7 +452,7 @@
        {
            var result = await panel.GetPanelPrivateFunctionsAsync(parameter);
            //共通错误检测
            string error = UserCenterLogic.CheckCommonErrorCode(result);
            string error = HdlCheckLogic.Current.CheckCommonErrorCode(result);
            if (error != null)
            {
                this.ShowErrorMsg(error);
@@ -488,7 +488,7 @@
        {
            var result = await panel.ConfigureHdlKeyValueAsync((Panel.KeyMode)i_value);
            //共通错误检测
            string error = UserCenterLogic.CheckCommonErrorCode(result);
            string error = HdlCheckLogic.Current.CheckCommonErrorCode(result);
            if (error != null)
            {
                this.ShowErrorMsg(error);