/* 选择部门 */ function selectDeptTree() { var deptId = $.common.isEmpty($("#treeId").val()) ? "100" : $("#treeId").val(); var url = ctx + "system/dept/selectDeptTree/" + deptId; var options = { title: '选择部门', width: "380", url: url, callBack: doSubmit }; $.modal.openOptions(options); } function doSubmit(index, layero){ var tree = layero.find("iframe")[0].contentWindow.$._tree; var body = layer.getChildFrame('body', index); $("#treeId").val(body.find('#treeId').val()); $("#treeName").val(body.find('#treeName').val()); layer.close(index); }