From 66a9965c44ecc32a6696abca876ab9d1cd091584 Mon Sep 17 00:00:00 2001 From: gxc <guoxuecheng@guoxuechengdeMacBook-Pro.local> Date: 星期五, 28 二月 2020 15:25:13 +0800 Subject: [PATCH] 2020.2.28 --- ZigbeeApp/Shared/Phone/UserCenter/Device/Bind/BindInfo.cs | 52 +--------------------------------------------------- 1 files changed, 1 insertions(+), 51 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/Device/Bind/BindInfo.cs b/ZigbeeApp/Shared/Phone/UserCenter/Device/Bind/BindInfo.cs index c2a79dc..8d2b2fd 100755 --- a/ZigbeeApp/Shared/Phone/UserCenter/Device/Bind/BindInfo.cs +++ b/ZigbeeApp/Shared/Phone/UserCenter/Device/Bind/BindInfo.cs @@ -20,52 +20,6 @@ /// </summary> public static List<CommonDevice> oldTargetList = new List<CommonDevice>(); - public static async System.Threading.Tasks.Task<int> RemoveTargets(BindObj.BindListResponseObj bindDevice, Panel currentKey) - { - var delDevice = new BindObj.DelDeviceBindData(); - delDevice.DeviceAddr = currentKey.DeviceAddr; - delDevice.Epoint = currentKey.DeviceEpoint; - - if (bindDevice.BindType == 0 || bindDevice.BindType == 1) - { - var removeDevice = new BindObj.RemoveBindListObj(); - removeDevice.BindCluster = bindDevice.BindCluster; - removeDevice.BindType = 0; - removeDevice.BindMacAddr = bindDevice.BindMacAddr; - removeDevice.BindEpoint = bindDevice.BindEpoint; - delDevice.RemoveBindList.Add(removeDevice); - } - else if (bindDevice.BindType == 2) - { - var removeDevice = new BindObj.RemoveBindListObj(); - removeDevice.BindCluster = bindDevice.BindCluster; - removeDevice.BindType = 1; - removeDevice.BindScenesId = bindDevice.BindScenesId; - delDevice.RemoveBindList.Add(removeDevice); - } - var delResult = await currentKey.DelDeviceBindAsync(delDevice); - foreach (var re in delResult.delDeviceBindResponseData.RemoveBindList) - { - switch (re.Result) - { - case 0: - return 0; - break; - case 4: - - if (delResult.removeBindResultResponseData != null) - { - if (delResult.removeBindResultResponseData.Result == 0) - { - return 0; - } - } - break; - } - } - return -1; - } - /// <summary> /// 妫�娴嬭璁惧鑳藉惁鏄剧ず /// </summary> @@ -189,7 +143,7 @@ /// <returns></returns> public static string GetCurrentSelectFloorId() { - var dicFloor = Common.Room.CurrentRoom.GetFloorSortList(); + var dicFloor = Common.Room.CurrentRoom.GetFloorSortList();// foreach (var floorId in dicFloor.Keys) { //绗竴涓ゼ灞� @@ -422,11 +376,7 @@ } } } - return dicCheck; } - - - } } -- Gitblit v1.8.0