HDL Home App 第二版本 旧平台金堂用 正在使用
黄学彪
2019-12-02 4c40f503acf2bcf90d294cc439ef46ba259b9c60
ZigbeeApp/Shared/Phone/UserCenter/Device/DoorLock/DoorLockHistoryLogForm.cs
@@ -98,13 +98,10 @@
            //主线程的异步会阻塞主线程,导致界面有段时间会白屏,所以这样子让界面先出来
            //然后再刷新数据
            HdlThreadLogic.Current.RunThread(() =>
            HdlThreadLogic.Current.RunMainInThread(() =>
            {
                Application.RunOnMainThread(() =>
                {
                    //初始化记录列表
                    this.InitLogListInfo();
                });
                //初始化记录列表
                this.InitLogListInfo();
            });
        }
@@ -167,6 +164,11 @@
            btnScreeningIcon.Gravity = Gravity.CenterVertical;
            btnScreeningIcon.UnSelectedImagePath = "Item/ScreeningType.png";
            frameTitle.AddChidren(btnScreeningIcon, ChidrenBindMode.NotBind);
            btnScreeningIcon.ButtonClickEvent += (sender, e) =>
            {
                //显示类型筛选界面
                this.ShowDoorLockScreeningTypeForm();
            };
            //底线
            frameTitle.AddBottomLine();
@@ -313,7 +315,7 @@
            }
            else
            {
                btnIcon.UnSelectedImagePath = "Item/UnLockSuccess.png";
                btnIcon.UnSelectedImagePath = "Item/UnLockFail.png";
            }
            //信息
@@ -510,6 +512,7 @@
            List<string> listUser = null;
            if (listSearchUserId.Contains("-1") == false)
            {
                listUser = new List<string>();
                listUser.AddRange(listSearchUserId);
                //移除其他,因为云端固定会给
                listUser.Remove("");
@@ -519,6 +522,7 @@
            List<int> listLock = null;
            if (listSearchLockId.Contains(-1) == false)
            {
                listLock = new List<int>();
                listLock.AddRange(listSearchLockId);
            }