wxr
2020-06-16 f6fd8acd7c53c44187e70b4709443318a628f4b5
HDL_ON/UI/UI0-Public/AppUnlockPage.cs
@@ -8,7 +8,6 @@
    public static class AppUnlockPage
    {
        static DateTime unlockTime = DateTime.MinValue;
        static Dialog Dialog;
        static void LoadOption()
        {
           
@@ -18,6 +17,7 @@
            //1:验证指纹
            if (MainPage.LoginUser.appUnlockType.Contains("3"))
            {
                LoadGesturePage();
                TouchIDUtils.Instance.showTouchIDWithDescribe(null, Language.StringByID(StringId.PleaseVerifyTheFingerprint));
                TouchIDUtils.Instance.OnHDLTouchIDStateBackEvent = (sender1, e) =>
                {
@@ -70,8 +70,11 @@
            }
        }
        public static void LoadPage()
        {
            LoadOption();
        }
        static void LoadGesturePage()
        {
            if (unlockTime.AddSeconds(60) > DateTime.Now || MainPage.LoginUser.appUnlockPasswrod == "" || MainPage.LoginUser.appUnlockPage.Count == 0)
            {
@@ -147,7 +150,6 @@
                    MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
                }
            };
            LoadOption();
        }
    }