czt
23 小时以前 85c867db36989f6ec7fe3962fad72665bc97d2ed
fzzy-igdss-web/src/main/resources/static/security/video-list-dept.js
@@ -50,10 +50,50 @@
        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;
}
/**
 * 渲染监控列表
 */