abstract:Home Home .header{width:100%;line-height:50px;height:50px;background:#2E6D04;color: #fff;}
.header .title{margin-left: 20px;font-size:20px; float: left;}
.header .userinfo{float: right;margin-right:10px;}
.userinfo a{color: #fff;}
.menu{width:200px;background:#333744;position: absolute;}
.main{position:absolute;left:200px;right:0px;}
.layui-collapse{border:none;}
.layui-colla-item{border-top:none;}
.layui-colla-title{background: #42485b;color: #fff;}
.layui-colla-content{border-top:none;padding: 0px;}
文章--后台管理系统
admin[系统管理员] 退出
layui.use(['element', 'layer'], function(){
var element = layui.element;
layer = layui.layer;
$=layui.jquery
resetMenuHeight()
});
function logout(){
layer.confirm('你确定要退出吗?', {
icon:3,
btn: ['确定', '取消'] //可以无限个按钮
}, function(index, layero){
//按钮【按钮一】的回调
}, function(index){
//按钮【按钮二】的回调
});
}
//重置菜单栏高度
function resetMenuHeight(){
var height = document.documentElement.clientHeight-50;
$("#menu").height(height)
}
// 菜单点击事件
function menuFire(obj){
var src = $(obj).attr('src')
$('iframe').attr('src',src)
}
// 设置主操作页面高度
function resetMainHeight(obj){
var height = parent.document.documentElement.clientHeight-50;
$(obj).parent('div').height(height)
}
Correcting teacher:韦小宝Correction time:2019-02-14 10:50:14
Teacher's summary:写的很不错 但是我看课程是layui文件上传啊 你这写的就是后台菜单页啊 没有涉及到上传啊