This commit is contained in:
李超 2025-09-18 10:20:02 +08:00
parent 00038e4ff0
commit 6bc1c3c7e1
1 changed files with 23 additions and 7 deletions

View File

@ -14,6 +14,28 @@ namespace FineUIPro.Web.common
{ {
public partial class main_new0 : PageBase public partial class main_new0 : PageBase
{ {
protected string VideoURL
{
get
{
return ConfigurationManager.AppSettings["Video_URL"] ;
}
}
protected string PassWord
{
get
{
var sysSet17 = (from x in Funs.DB.Sys_Set where x.SetName == "视频监控密码" select x).ToList().FirstOrDefault();
if (sysSet17 != null)
{
return Funs.EncryptionPassword(sysSet17.SetValue);
}
return "";
}
}
public static List<Model.Solution_LargerHazard> LargerHazard = new List<Model.Solution_LargerHazard>(); public static List<Model.Solution_LargerHazard> LargerHazard = new List<Model.Solution_LargerHazard>();
/// <summary> /// <summary>
@ -166,13 +188,7 @@ namespace FineUIPro.Web.common
} }
} }
protected string VideoURL
{
get
{
return ConfigurationManager.AppSettings["Video_URL"] + "#/screen";
}
}
#region #region
protected void getProjectInfo() protected void getProjectInfo()