From 83f5dcf34d961ac18cf393a21687bf5aca199181 Mon Sep 17 00:00:00 2001
From: chenqiyang <1406175257@qq.com>
Date: 星期五, 11 三月 2022 09:26:50 +0800
Subject: [PATCH] 引入全视通dll库
---
ZigbeeApp/Shared/Phone/Login/Logic/AccountLogic.cs | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/ZigbeeApp/Shared/Phone/Login/Logic/AccountLogic.cs b/ZigbeeApp/Shared/Phone/Login/Logic/AccountLogic.cs
old mode 100755
new mode 100644
index b87c37b..35cc3f0
--- a/ZigbeeApp/Shared/Phone/Login/Logic/AccountLogic.cs
+++ b/ZigbeeApp/Shared/Phone/Login/Logic/AccountLogic.cs
@@ -38,7 +38,7 @@
/// <returns></returns>
public bool CheckEmail(string email)
{
- var regex= new Regex(CommonPage.EmailRegexStr);
+ var regex= new Regex(CommonPage.EmailRegexStr);
return regex.IsMatch(email);
}
@@ -116,6 +116,14 @@
};
var requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(requestObj);
var revertObj = RequestHttpsZigbeeAsync("ProcessRange/ReceiveAppLatAndLon", System.Text.Encoding.UTF8.GetBytes(requestJson));
+
+ if (UserCenter.UserCenterResourse.HideOption.WriteGpsPoint == 1)
+ {
+ string flage = revertObj == null ? "false" : revertObj.StateCode;
+ string txtvalue = "lon:" + lon + " lat:" + lat + " " + flage;
+ HdlMessageLogic.Current.ShowMassage(ShowMsgType.Tip, txtvalue);
+ UserCenter.HdlLogLogic.Current.WriteLog(-1, "缁忕含搴︿笂鎶� " + txtvalue);
+ }
}
catch { }
}
--
Gitblit v1.8.0