This commit is contained in:
parent
712d027ae3
commit
226efdacc2
|
@ -41,6 +41,23 @@ namespace FineUIPro.Web.common
|
|||
//获取HSSE数据
|
||||
var hsseData = Task.Run(() => mainSevice.GetHsseDataAsync()).Result;
|
||||
|
||||
//安全云视频【待汇总】待配置
|
||||
string video_Url = string.Empty;
|
||||
var sysSet16 = (from x in Funs.DB.Sys_Set where x.SetName == "视频监控地址" select x).ToList().FirstOrDefault();
|
||||
if (sysSet16 != null)
|
||||
{
|
||||
video_Url = sysSet16.SetValue;
|
||||
}
|
||||
var sysSet17 = (from x in Funs.DB.Sys_Set where x.SetName == "视频监控密码" select x).ToList().FirstOrDefault();
|
||||
if (sysSet17 != null)
|
||||
{
|
||||
video_Url = video_Url + "#/screen?username=admin&password=" + Funs.EncryptionPassword(sysSet17.SetValue);
|
||||
}
|
||||
else
|
||||
{
|
||||
video_Url = "";
|
||||
}
|
||||
|
||||
//班前会
|
||||
var classMeetingList = HSSEData_HSSEService.GetProjectClassMeeting(projectId);
|
||||
//周前会
|
||||
|
|
Loading…
Reference in New Issue