From 1265d531759b5565e9f641b17045896b52dfdba8 Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期四, 03 十二月 2020 18:37:47 +0800 Subject: [PATCH] 2020-12-03 1.主页增加未读消息查询和提示处理。2.房间和场景背景上传和下载和读取方法修改处理。3.头像上传和下载方案修改处理。4.增加子账号头像下载。5.Loading 调用方法修复。6.封装ImageUtlis 图片上传和下载管理工具类 7.读取本地住宅增加判空处理。 --- HDL_ON/UI/UI2/3-Intelligence/Scene/SetSceneLocationPage.cs | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/HDL_ON/UI/UI2/3-Intelligence/Scene/SetSceneLocationPage.cs b/HDL_ON/UI/UI2/3-Intelligence/Scene/SetSceneLocationPage.cs index 5346fda..67ceca9 100644 --- a/HDL_ON/UI/UI2/3-Intelligence/Scene/SetSceneLocationPage.cs +++ b/HDL_ON/UI/UI2/3-Intelligence/Scene/SetSceneLocationPage.cs @@ -9,14 +9,14 @@ { FrameLayout bodyView; VerticalScrolViewLayout contentView; - Function scene; + Scene scene; Button lastButton; Action backAction; - public SetSceneLocationPage(Function function, Action action) + public SetSceneLocationPage(Scene s, Action action) { backAction = action; bodyView = this; - scene = function; + scene = s; } public void LoadPage() @@ -67,7 +67,7 @@ Tag = "ChooseIcon" }; roomView.AddChidren(btnChoose); - if(scene.roomIdList.Contains(room.sid)) + if(scene.roomIds.Contains(room.sid)) { btnChoose.IsSelected = true; lastButton = btnChoose; @@ -104,8 +104,8 @@ } lastButton = btn; btn.IsSelected = true; - scene.roomIdList = new System.Collections.Generic.List<string>(); - scene.roomIdList.Add(room.sid); + scene.roomIds = new System.Collections.Generic.List<string>(); + scene.roomIds.Add(room.sid); this.RemoveFromParent(); backAction(); }; -- Gitblit v1.8.0