| 
 | 
 
 本帖最后由 szj 于 2018-11-19 09:50 编辑  
 
 
 
 
 
下面是关于弹框的具体代码: 
 
function zTreeOnClick(event, treeId, treeNode) { 
            //location.href="roleController.do?roleListByOrgId&orgId=" + treeNode.id; 
             
            $.dialog.setting.zIndex = getzIndex(); 
                 
                $.dialog({ 
                        content : 'url:roleController.do?roleListByOrgId&orgId=' + treeNode.id, 
                        zIndex : getzIndex(), 
                        title : '角色列表', 
                        lock : true, 
                        width : '400px', 
                        height : '350px', 
                        opacity : 0.4, 
                        button : [ { 
                                name : '<t:mutiLang langKey="common.confirm"/>' 
                                /* callback : callbackDepartmentSelect, 
                                focus : true */ 
                        }, { 
                                name : '<t:mutiLang langKey="common.cancel"/>' 
                                /* callback : function() { 
                                } */ 
                        } ] 
                }).zindex(); 
        };  
 
 |   
 
 
 
 |