| | |
| | | table = layui.table; |
| | | }); |
| | | |
| | | showDeptSelect(); |
| | | |
| | | //初始化渲染播放列表 |
| | | renderList(); |
| | | }); |
| | | |
| | | |
| | | /** |
| | | * 弹出切换库区列表 |
| | | */ |
| | | function showDeptSelect() { |
| | | if(showDeptList === "N"){ |
| | | $("#deptList").css('display', 'none'); |
| | | } |
| | | if(showDeptList === "Y"){ |
| | | $("#deptList").css('display', 'block'); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 弹出切换库区列表 |
| | | */ |
| | | function showDepotAreaSelect() { |
| | | layer.open({ |
| | | type: 2, |
| | | title: '选择库区', |
| | | area: ['400px', '650px'], |
| | | offset: ['50px', '170px'], |
| | | shade: 0, |
| | | content: "/com.fzzy.igds.SelectDept.d", |
| | | closeBtn: 1 |
| | | }); |
| | | } |
| | | |
| | | /** |
| | | * |
| | | * @param id |
| | | * @returns {boolean} |
| | | */ |
| | | function onDeptAreaChange(id) { |
| | | window.location.href = "./security/video-dept?type=" + type + "&deptId=" + id; |
| | | return true; |
| | | } |
| | | |
| | | /** |
| | | * 渲染监控列表 |
| | | */ |