From 71fd5b743d0c5e46ba686449e7f855e91a688886 Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期五, 24 三月 2023 17:29:57 +0800
Subject: [PATCH] 修改tip最大宽度
---
HDL_ON/DAL/Server/HttpServerRequest.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/HDL_ON/DAL/Server/HttpServerRequest.cs b/HDL_ON/DAL/Server/HttpServerRequest.cs
index 3b85c15..f87a034 100644
--- a/HDL_ON/DAL/Server/HttpServerRequest.cs
+++ b/HDL_ON/DAL/Server/HttpServerRequest.cs
@@ -546,8 +546,7 @@
{
if (DB_ResidenceData.Instance.CurrentRegion.id != "")
{
- DB_ResidenceData.Instance.CurrentRegion = null;
- Shared.Application.RunOnMainThread(() =>
+ Shared.Application.RunOnMainThread(() =>StringId
{
MainPage.GoUserPage(false);
});
@@ -3195,11 +3194,12 @@
/// </summary>
/// <param name="spk"></param>
/// <returns></returns>
- public ResponsePackNew AddGroupControl()
+ public ResponsePackNew AddGroupControl(List<GroupControl> groupControls)
{
Dictionary<string, object> d = new Dictionary<string, object>();
d.Add("homeId", DB_ResidenceData.Instance.CurrentRegion.id);
d.Add("gatewayId", DB_ResidenceData.Instance.HomeGateway.gatewayId);
+ d.Add("infos", groupControls);
var requestJson = HttpUtil.GetSignRequestJson(d);
var pack = HttpUtil.RequestHttpsPostFroHome(NewAPI.Api_Post_GetGroupControlListByHome, requestJson);
return pack;
--
Gitblit v1.8.0