From efcffde735fa65ae34bae0bcc86313b74ed0e36c Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期一, 20 五月 2024 13:47:38 +0800
Subject: [PATCH] 优化离线数据

---
 HDL_ON/UI/UI2/3-Intelligence/Automation/InputPushText.cs |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/HDL_ON/UI/UI2/3-Intelligence/Automation/InputPushText.cs b/HDL_ON/UI/UI2/3-Intelligence/Automation/InputPushText.cs
index b05e5c7..a5daaa1 100644
--- a/HDL_ON/UI/UI2/3-Intelligence/Automation/InputPushText.cs
+++ b/HDL_ON/UI/UI2/3-Intelligence/Automation/InputPushText.cs
@@ -69,11 +69,19 @@
             appPush.frameLayout.Radius = (uint)Application.GetRealHeight(12);
             appPush.btnText.TextID = StringId.apptuisong;
             appPush.btnText.X = Application.GetRealWidth(12);
+            if (MainPage.NoLoginMode)
+            {
+                appPush.btnNextIcon.Visible = false;
+            }
             viewLayout.AddChidren(appPush.FLayoutView());
             //瀹氫箟涓�涓眬閮ㄨ处鍙峰垪琛ㄧ敤鏉ヨ褰曢�変腑鏁版嵁;
             List<string> selectedAccountList = new List<string>();
             appPush.btnClick.MouseUpEventHandler += (sender, e) =>
             {
+                if (MainPage.NoLoginMode)
+                {
+                    return;
+                }
                 var userList = new List<HDL_ON.Entity.ResidenceMemberInfo>();
                 Loading loading = new Loading();
                 this.AddChidren(loading);
@@ -82,7 +90,7 @@
                 {
                     try
                     {
-                         userList = Send.GetResidenceMemberAccount();
+                         userList = Send.Current.GetResidenceMemberAccount();
                      
                     }
                     catch { }

--
Gitblit v1.8.0