From 69d4483b7c54660d1563f4ac110ca6da864b93d5 Mon Sep 17 00:00:00 2001
From: JLChen <551775569@qq.com>
Date: 星期三, 03 二月 2021 11:27:48 +0800
Subject: [PATCH] 2021-02-03 1.显示设备列表标题
---
HDL_ON/UI/UI1-Login/LoginPageBLL.cs | 66 +++++++++++++++++++++++++++++++++
1 files changed, 66 insertions(+), 0 deletions(-)
diff --git a/HDL_ON/UI/UI1-Login/LoginPageBLL.cs b/HDL_ON/UI/UI1-Login/LoginPageBLL.cs
index 63c32fc..e526391 100644
--- a/HDL_ON/UI/UI1-Login/LoginPageBLL.cs
+++ b/HDL_ON/UI/UI1-Login/LoginPageBLL.cs
@@ -6,6 +6,8 @@
using Shared;
using HDL_ON.Entity;
using HDL_ON.DAL.Server;
+using System.Security.Cryptography;
+using System.Text;
namespace HDL_ON.UI.UI1Login
{
@@ -840,6 +842,12 @@
//2020-12-22 澧炲姞鐐瑰嚮闅愯棌閿洏浜嬩欢
Application.HideSoftInput();
+
+#if DEBUG
+ TestEZSDK();
+ return;
+#endif
+
//鍒ゆ柇鏄惁鍚屾剰浜嗛殣绉佹斂绛�
if (CheckPrivacyPolicy() == false) return;
@@ -862,6 +870,59 @@
};
}
+
+ void TestESVideo()
+ {
+
+#if __Android__
+#else
+ //EZSDK.IOS.EZSDK.Go2EZvizMonitor();
+ Shared.ESVideoInfo eSVideoInfo = new Shared.ESVideoInfo();
+ eSVideoInfo.DeviceName = "瀹ゅ鏈�88";
+ eSVideoInfo.ESVideoUUID = "JJY000019VPLLF";
+ eSVideoInfo.ESRoomID = 801;
+ eSVideoInfo.RoomName = "0801";
+ Shared.ESVideo.ShowESVideoMonitor(eSVideoInfo);
+ return;
+#endif
+
+ }
+
+ /// <summary>
+ ///
+ /// </summary>
+ /// <param name="signstr"></param>
+ /// <returns></returns>
+ static string SignMD5Encrypt(string s)
+ {
+ byte[] sign = MD5.Create().ComputeHash(UTF8Encoding.UTF8.GetBytes(s));
+ string signstr = string.Empty;
+ foreach (byte item in sign)
+ {
+ signstr += item.ToString("X2");
+ }
+ return signstr.ToLower();
+ }
+
+ void TestEZSDK()
+ {
+
+#if __Android__
+#else
+ //璁剧疆瀛愯处鍙稟ccessToken鏂规
+ EZSDK.IOS.EZSDK.SetEZAccessToken("ra.cekz6j9y1zg7mqgj3rmb099p49fuf6w3-9keosamseq-00wktld-brmhuciz1");
+
+ EZSDK.IOS.EZSDK.Go2EZvizMonitor();
+
+
+ //var psw = SignMD5Encrypt("1aa98a90489b4838b966b57018b4b04b#123456");
+
+ //Utlis.WriteLine("MD5 psw: " + psw);
+ return;
+#endif
+
+ }
+
/// <summary>
/// 蹇樿瀵嗙爜
/// </summary>
@@ -872,6 +933,11 @@
//2020-12-22 澧炲姞鐐瑰嚮闅愯棌閿洏浜嬩欢
Application.HideSoftInput();
+#if DEBUG
+ TestESVideo();
+ return;
+#endif
+
//鍒ゆ柇鏄惁鍚屾剰浜嗛殣绉佹斂绛�
if (CheckPrivacyPolicy() == false) return;
--
Gitblit v1.8.0