From dc840e2d67654781ebc9c7640e6c44a63a6d04d0 Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期五, 11 十二月 2020 09:44:37 +0800 Subject: [PATCH] 2020-12-11 1.注册、忘记密码、重置密码、点击返回到时候屏蔽检测错误提示。底部按钮使能效果优化修改。邮箱变密码输入问题修复。2.网络请求底层增加token过期检测刷新方法。3.更新控件库,iOS EditText取消默认密码输入方式。 --- HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPageBLL.cs | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPageBLL.cs b/HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPageBLL.cs index 9dfbe49..4cdd3c0 100644 --- a/HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPageBLL.cs +++ b/HDL_ON/UI/UI2/4-PersonalCenter/PersonalCenterPageBLL.cs @@ -161,7 +161,6 @@ { var regionId = (string)btnHomeName.Tag; dialog.Close(); - //DB_ResidenceData.residenceData.CurReginID = regionId; LoadEvent_ChangeCurHome(UserInfo.Current.regionList.Find((obj) => obj.RegionID == regionId)); LoadContentView(); }; @@ -200,7 +199,7 @@ foreach (var fileName in backuplist) { System.IO.FileInfo fileInfo = new System.IO.FileInfo(FileUtils.RootPath + fileName); - if (fileName == "headImage.png") + if (fileName.Contains(ImageUtlis.HEADIMAGE) || fileName == OnAppConfig.ConfigFile) { continue; } @@ -219,7 +218,7 @@ //鍒犻櫎鏈湴鏂囦欢 foreach (var fileName in backuplist) { - if (fileName == "headImage.png") + if (fileName.Contains(ImageUtlis.HEADIMAGE)) { continue; } @@ -231,7 +230,7 @@ DB_ResidenceData.residenceData.EixtAccount(); DB_ResidenceData.residenceData.CurReginID = homeTemp.RegionID; OnAppConfig.Instance.SaveUserConfig(); - DB_ResidenceData.InitRoomFunction(); + SpatialInfo.CurrentSpatial.InitRoomFunction(); DB_ResidenceData.residenceData.SaveResidenceData(); //鍒锋柊涓�娆′綇瀹呯綉鍏� new HttpServerRequest().GetHomeGatewayList(); @@ -240,6 +239,9 @@ { btnCurResidenceName.Text = DB_ResidenceData.residenceData.residecenInfo.Name; }); + + //鎼滅储缃戝叧 + DriverLayer.Control.Ins.SearchLoaclGateway(); } catch (Exception ex) { @@ -256,6 +258,7 @@ { waitPage.Hide(); waitPage.RemoveFromParent(); + MainPage.InitializationData(); }); } }) -- Gitblit v1.8.0