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/RoomListManage/RoomEditPage.cs |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomEditPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomEditPage.cs
index f954078..4d72666 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomEditPage.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/RoomListManage/RoomEditPage.cs
@@ -135,12 +135,26 @@
         int rowCount = 1;
         Action backAction;
 
-        public RoomEditPage(Room r, int tId,Action action)
+        /// <summary>
+        /// 鍒犻櫎鎴块棿浜嬩欢
+        /// 2020-12-02 瑙e喅鍒犻櫎鎴块棿鍚庯紝鐣岄潰涓嶅埛鏂板垹闄ゆ埧闂撮棶棰�
+        /// </summary>
+        Action deleteAction;
+
+        /// <summary>
+        /// 
+        /// </summary>
+        /// <param name="r"></param>
+        /// <param name="tId"></param>
+        /// <param name="action"></param>
+        /// <param name="delAction">鍒犻櫎鎴块棿浜嬩欢</param>
+        public RoomEditPage(Room r, int tId, Action action, Action delAction)
         {
             bodyView = this;
             room = r;
             pageTitleId = tId;
             backAction = action;
+            this.deleteAction = delAction;
         }
 
         public void LoadPage()
@@ -170,12 +184,15 @@
                 Width = Application.GetRealWidth(343),
                 Height = Application.GetRealWidth(192),//2020-12-01 鎴块棿鍥剧墖姣斾緥鏀瑰洖16:9
                 //UnSelectedImagePath = room.backgroundImage,
-                ImagePath = room.backgroundImage,
+                //ImagePath = room.backgroundImage,
                 Radius = (uint)Application.GetRealWidth(12),
                 //Radius = (uint)Application.GetRealWidth(6),
             };
             roomBgView.AddChidren(btnRoomBg);
 
+            //2020-12-03 淇敼鍥剧墖鍔犺浇鏂规硶
+            ImageUtlis.Current.LoadLocalOrNetworkImages(room.backgroundImage, btnRoomBg);
+
             //鎴块棿淇℃伅缂栬緫鍖哄煙
             roomInfoView = new VerticalScrolViewLayout()
             {

--
Gitblit v1.8.0