From 8060dedbec31cc9dbc33adae91b94b8a977c7163 Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期一, 30 十一月 2020 21:22:55 +0800
Subject: [PATCH] 2020-11-30 1.增加极光推送。2.住宅相关接口增加签名校验。 3.增加消息中心页面。4.UI优化。5.裁剪选取图片优化。

---
 HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs |   50 +++++++++++++++++++++++++-------------------------
 1 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs b/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs
index 91a039c..2b6108e 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPage.cs
@@ -59,20 +59,20 @@
             headPortraitView.AddChidren(btnMemberName);
 
             #region RoomList
-            FrameLayout contentView = new FrameLayout()
+            VerticalScrolViewLayout roomListView = new VerticalScrolViewLayout()
             {
                 Y = Application.GetRealHeight(138),
-                Height = Application.GetRealHeight(485),
-                BackgroundColor = CSS_Color.MainBackgroundColor,
+                Height = Application.GetRealHeight(471),
+                //BackgroundColor = CSS_Color.MainBackgroundColor,
             };
-            bodyView.AddChidren(contentView);
+            bodyView.AddChidren(roomListView);
 
             var titleView = new FrameLayout()
             {
                 BackgroundColor = CSS_Color.MainBackgroundColor,
                 Height = Application.GetRealWidth(44),
             };
-            contentView.AddChidren(titleView);
+            roomListView.AddChidren(titleView);
 
             var btnTitle = new Button()
             {
@@ -92,15 +92,15 @@
                 Height = Application.GetRealHeight(1),
                 BackgroundColor = CSS_Color.DividingLineColor,
             };
-            contentView.AddChidren(btnLine);
+            roomListView.AddChidren(btnLine);
 
             //---------------------------------------------
-            var roomListView = new VerticalScrolViewLayout()
-            {
-                Y = btnLine.Bottom,
-                Height = Application.GetRealHeight(440),
-            };
-            contentView.AddChidren(roomListView);
+            //var roomListView = new VerticalScrolViewLayout()
+            //{
+            //    Y = btnLine.Bottom,
+            //    Height = Application.GetRealHeight(440),
+            //};
+            //contentView.AddChidren(roomListView);
 
             //List<Function> funss = new List<Function>();
             //if (memberInfo.CurResidenceShareDate.Count > 0)
@@ -207,20 +207,20 @@
                 }
             }
 
-            if (DB_ResidenceData.rooms.Count > 10)
-            {
-                roomListView.ScrollEnabled = true;
-            }
-            else
-            {
-                roomListView.ScrollEnabled = false;
+            //if (DB_ResidenceData.rooms.Count > 10)
+            //{
+            //    roomListView.ScrollEnabled = true;
+            //}
+            //else
+            //{
+            //    roomListView.ScrollEnabled = false;
 
-                roomListView.AddChidren(new Button()
-                {
-                    Height = Application.GetRealWidth(441),
-                    BackgroundColor = CSS_Color.BackgroundColor,
-                });
-            }
+            //    roomListView.AddChidren(new Button()
+            //    {
+            //        Height = Application.GetRealWidth(441),
+            //        BackgroundColor = CSS_Color.BackgroundColor,
+            //    });
+            //}
             #endregion
 
             btnDelMember = new Button()

--
Gitblit v1.8.0