72 lines
1.8 KiB
Plaintext
72 lines
1.8 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<title>客服系统</title>
|
|
<link rel="stylesheet" href="/layui/css/layui.css">
|
|
<style>
|
|
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
.layui-fluid {
|
|
height: calc(100% - 110px);
|
|
padding: 0;
|
|
}
|
|
|
|
.layui-layout-admin .footer-demo {
|
|
position: static;
|
|
height: auto;
|
|
line-height: 30px;
|
|
}
|
|
|
|
.layui-layout-admin .footer-demo {
|
|
height: 50px;
|
|
padding: 5px 0;
|
|
}
|
|
|
|
.layui-layout-admin .layui-footer {
|
|
position: fixed;
|
|
left: 200px;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 44px;
|
|
line-height: 44px;
|
|
padding: 0 15px;
|
|
background-color: #eee;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
bottom: 0;
|
|
padding: 10px 0;
|
|
line-height: 30px;
|
|
text-align: center;
|
|
color: #666;
|
|
font-weight: 300;
|
|
width: 100%;
|
|
border-top: 1px solid #e9e9e9;
|
|
}
|
|
|
|
.layui-foot-main {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
</style>
|
|
<script>
|
|
var data = {
|
|
username:'<%= username %>'
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<ul class="layui-nav" lay-filter="nav-admin">
|
|
<li class="layui-nav-item admin-index"><a href="/admin">我的对话</a></li>
|
|
<!--<li class="layui-nav-item admin-users"><a href="/admin/users">访客</a></li>-->
|
|
<li class="layui-nav-item admin-setup"><a href="/admin/setup">设置</a></li>
|
|
<li class="layui-nav-item"><a href="##">切换工号</a></li>
|
|
</ul>
|
|
|