jiankong
This commit is contained in:
parent
00038e4ff0
commit
6bc1c3c7e1
|
@ -14,6 +14,28 @@ namespace FineUIPro.Web.common
|
|||
{
|
||||
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>();
|
||||
|
||||
/// <summary>
|
||||
|
@ -166,13 +188,7 @@ namespace FineUIPro.Web.common
|
|||
}
|
||||
}
|
||||
|
||||
protected string VideoURL
|
||||
{
|
||||
get
|
||||
{
|
||||
return ConfigurationManager.AppSettings["Video_URL"] + "#/screen";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#region 加载项目信息
|
||||
protected void getProjectInfo()
|
||||
|
|
Loading…
Reference in New Issue