parent
6b5f7aa4b8
commit
d38a21d162
@ -0,0 +1,34 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>后台登录-企业员工管理系统</title>
|
||||||
|
<meta name="renderer" content="webkit|ie-comp|ie-stand">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="viewport" content="width=device-width,user-scalable=yes, minimum-scale=0.4, initial-scale=0.8,target-densitydpi=low-dpi" />
|
||||||
|
<meta http-equiv="Cache-Control" content="no-siteapp" />
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="css/front.css">
|
||||||
|
<link rel="stylesheet" href="css/stylesheets.css">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body class="login-bg">
|
||||||
|
<div class="login">
|
||||||
|
<div class="message">企业员工管理系统-管理登录</div>
|
||||||
|
<div id="darkbannerwrap"></div>
|
||||||
|
<form method="post" class="layui-form" action="login">
|
||||||
|
<input name="loginname" placeholder="用户名" value="" type="text" lay-verify="required" class="layui-input" >
|
||||||
|
<hr class="hr15">
|
||||||
|
<input name="password" lay-verify="required" placeholder="密码" type="password" class="layui-input">
|
||||||
|
<hr class="hr15">
|
||||||
|
<select class="layui-input" name="tip" >
|
||||||
|
<option value="1">管理员</option>
|
||||||
|
<option value="2">用户</option>
|
||||||
|
</select>
|
||||||
|
<br>
|
||||||
|
<input value="登录" lay-submit lay-filter="login" style="width:100%;" type="submit">
|
||||||
|
<hr class="hr20" >
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,15 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: 'iconfont';
|
||||||
|
src: url('../fonts/iconfont.eot');
|
||||||
|
src: url('../fonts/iconfont.eot?#iefix') format('embedded-opentype'),
|
||||||
|
url('../fonts/iconfont.woff') format('woff'),
|
||||||
|
url('../fonts/iconfont.ttf') format('truetype'),
|
||||||
|
url('../fonts/iconfont.svg#iconfont') format('svg');
|
||||||
|
}
|
||||||
|
.iconfont{
|
||||||
|
font-family:"iconfont" !important;
|
||||||
|
font-size:16px;font-style:normal;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-webkit-text-stroke-width: 0.2px;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
@ -0,0 +1,390 @@
|
|||||||
|
@charset "utf-8";
|
||||||
|
*{
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
|
||||||
|
}
|
||||||
|
a{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
html{
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
overflow-x:hidden;
|
||||||
|
overflow-y:auto;
|
||||||
|
}
|
||||||
|
body{
|
||||||
|
width: 100%;
|
||||||
|
min-height: 100%;
|
||||||
|
}
|
||||||
|
.login-bg{
|
||||||
|
background:url(../img/background.png) no-repeat center;
|
||||||
|
background-size: cover;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.login{
|
||||||
|
margin: 120px auto 0 auto;
|
||||||
|
min-height: 420px;
|
||||||
|
max-width: 420px;
|
||||||
|
padding: 40px;
|
||||||
|
background-color: #ffffff;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
border-radius: 4px;
|
||||||
|
/* overflow-x: hidden; */
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.login a.logo{
|
||||||
|
display: block;
|
||||||
|
height: 58px;
|
||||||
|
width: 167px;
|
||||||
|
margin: 0 auto 30px auto;
|
||||||
|
background-size: 167px 42px;
|
||||||
|
}
|
||||||
|
.login .message {
|
||||||
|
margin: 10px 0 0 -58px;
|
||||||
|
padding: 18px 10px 18px 60px;
|
||||||
|
background: #189F92;
|
||||||
|
position: relative;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.login #darkbannerwrap {
|
||||||
|
background: url(../img/aiwrap.png);
|
||||||
|
width: 18px;
|
||||||
|
height: 10px;
|
||||||
|
margin: 0 0 20px -58px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login input[type=text],
|
||||||
|
.login input[type=file],
|
||||||
|
.login input[type=password],
|
||||||
|
.login input[type=email], select {
|
||||||
|
border: 1px solid #DCDEE0;
|
||||||
|
vertical-align: middle;
|
||||||
|
border-radius: 3px;
|
||||||
|
height: 50px;
|
||||||
|
padding: 0px 16px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #555555;
|
||||||
|
outline:none;
|
||||||
|
width:100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.login input[type=text]:focus,
|
||||||
|
.login input[type=file]:focus,
|
||||||
|
.login input[type=password]:focus,
|
||||||
|
.login input[type=email]:focus, select:focus {
|
||||||
|
border: 1px solid #27A9E3;
|
||||||
|
}
|
||||||
|
.login input[type=submit],
|
||||||
|
.login input[type=button]{
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
padding: 12px 24px;
|
||||||
|
margin: 0px;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 24px;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
vertical-align: middle;
|
||||||
|
cursor: pointer;
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #189F92;
|
||||||
|
border-radius: 3px;
|
||||||
|
border: none;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
outline:none;
|
||||||
|
width:100%;
|
||||||
|
}
|
||||||
|
.login hr {
|
||||||
|
background: #fff url() 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
.login hr.hr15 {
|
||||||
|
height: 15px;
|
||||||
|
border: none;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.login hr.hr20 {
|
||||||
|
height: 20px;
|
||||||
|
border: none;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-footer{padding: 30px 0; line-height: 30px; text-align: center; background-color: #eee; color: #666; font-weight: 300;}
|
||||||
|
body .layui-layout-admin .footer-demo{height: auto; padding: 15px 0; line-height: 26px;}
|
||||||
|
.welcome-footer a{padding: 0 5px;}
|
||||||
|
|
||||||
|
table th, table td {
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer{
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0px;
|
||||||
|
width: 100%;
|
||||||
|
background-color: #222;
|
||||||
|
border-top: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
|
line-height: 41px;
|
||||||
|
color: #fff;
|
||||||
|
/*padding-left: 10px;*/
|
||||||
|
}
|
||||||
|
.footer .copyright{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container{
|
||||||
|
width: 100%;
|
||||||
|
height: 45px;
|
||||||
|
background-color: #222;
|
||||||
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
||||||
|
}
|
||||||
|
.container .logo a{
|
||||||
|
float: left;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 18px;
|
||||||
|
padding-left: 20px;
|
||||||
|
line-height: 45px;
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
.container .right{
|
||||||
|
background-color:rgba(0,0,0,0);
|
||||||
|
float: right;
|
||||||
|
|
||||||
|
}
|
||||||
|
.container .left_open{
|
||||||
|
height: 45px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.container .left_open i{
|
||||||
|
display: block;
|
||||||
|
background: rgba(255,255,255,0.1) url() 0 0 no-repeat;
|
||||||
|
color: #fff;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
line-height: 32px;
|
||||||
|
border-radius: 3px;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 7px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.container .left_open i:hover{
|
||||||
|
background: rgba(255,255,255,0.3) url() 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container .left{
|
||||||
|
background-color:rgba(0,0,0,0);
|
||||||
|
float: left;
|
||||||
|
|
||||||
|
}
|
||||||
|
.container .layui-nav-item{
|
||||||
|
line-height: 45px;
|
||||||
|
}
|
||||||
|
.container .layui-nav-more{
|
||||||
|
top: 20px;
|
||||||
|
}
|
||||||
|
.container .layui-nav-child{
|
||||||
|
top: 50px;
|
||||||
|
}
|
||||||
|
.container .layui-nav-child i{
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
.layui-nav .layui-nav-item a{
|
||||||
|
color: #fff;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.layui-nav .layui-nav-child a{
|
||||||
|
color: #333;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.left-nav{
|
||||||
|
position: absolute;
|
||||||
|
top: 46px;
|
||||||
|
bottom: 42px;
|
||||||
|
left: 0;
|
||||||
|
z-index: 2;
|
||||||
|
padding-top: 10px;
|
||||||
|
background-color: #EEEEEE;
|
||||||
|
width: 220px;
|
||||||
|
max-width: 220px;
|
||||||
|
overflow: auto;
|
||||||
|
overflow-x:hidden;
|
||||||
|
border-right: 1px solid #e5e5e5;
|
||||||
|
|
||||||
|
/*width: 0px;*/
|
||||||
|
}
|
||||||
|
.left-nav #nav li{
|
||||||
|
border-bottom: 1px solid #e5e5e5;
|
||||||
|
}
|
||||||
|
.left-nav #nav li:hover > a{
|
||||||
|
/*color: blue;*/
|
||||||
|
}
|
||||||
|
.left-nav #nav .current{
|
||||||
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
.left-nav #nav li a{
|
||||||
|
font-size: 14px;
|
||||||
|
padding: 10px 15px 10px 20px;
|
||||||
|
display: block;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.left-nav #nav li a cite{
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left-nav #nav li .sub-menu{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.left-nav #nav li .opened{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.left-nav #nav li .opened:hover{
|
||||||
|
/*background: #fff url() 0 0 no-repeat;*/
|
||||||
|
}
|
||||||
|
.left-nav #nav li .opened .current{
|
||||||
|
|
||||||
|
}
|
||||||
|
.left-nav #nav li .sub-menu li:hover{
|
||||||
|
/*color: blue;*/
|
||||||
|
/*background: #fff url() 0 0 no-repeat;*/
|
||||||
|
}
|
||||||
|
.left-nav #nav li .sub-menu li a{
|
||||||
|
padding: 12px 15px 12px 30px;
|
||||||
|
font-size: 14px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.left-nav #nav li .sub-menu li .sub-menu li a{
|
||||||
|
padding-left: 45px;
|
||||||
|
}
|
||||||
|
.left-nav #nav li .sub-menu li a:hover{
|
||||||
|
color: #148cf1;
|
||||||
|
}
|
||||||
|
.left-nav #nav li .sub-menu li a i{
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.left-nav #nav li a i{
|
||||||
|
padding-right: 10px;
|
||||||
|
line-height: 14px;
|
||||||
|
}
|
||||||
|
.left-nav #nav li .nav_right{
|
||||||
|
float: right;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
.x-slide_left {
|
||||||
|
width: 17px;
|
||||||
|
height: 61px;
|
||||||
|
background: url(../images/icon.png) 0 0 no-repeat;
|
||||||
|
position: absolute;
|
||||||
|
top: 200px;
|
||||||
|
left: 221px;
|
||||||
|
cursor: pointer;
|
||||||
|
z-index: 3;
|
||||||
|
}
|
||||||
|
.page-content{
|
||||||
|
position: absolute;
|
||||||
|
top: 46px;
|
||||||
|
right: 0;
|
||||||
|
bottom: 42px;
|
||||||
|
left: 221px;
|
||||||
|
overflow: hidden;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.page-content-bg{
|
||||||
|
position: absolute;
|
||||||
|
top: 46px;
|
||||||
|
right: 0;
|
||||||
|
bottom: 42px;
|
||||||
|
left: 221px;
|
||||||
|
background: rgba(0,0,0,0.5); url() 0 0 no-repeat;
|
||||||
|
overflow: hidden;
|
||||||
|
z-index: 100;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-content .tab{
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background: #EFEEF0 url() 0 0 no-repeat;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-title{
|
||||||
|
/*padding-top: 5px;*/
|
||||||
|
height: 35px;
|
||||||
|
background: #EFEEF0 url() 0 0 no-repeat;
|
||||||
|
position: relative;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-title li.home i{
|
||||||
|
padding-right: 5px;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-title li.home .layui-tab-close{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-title li{
|
||||||
|
line-height: 35px;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-title .layui-this:after{
|
||||||
|
height: 36px;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-title li .layui-tab-close{
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-title .layui-this{
|
||||||
|
background: #fff url() 0 0 no-repeat;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-bar{
|
||||||
|
height:34px;
|
||||||
|
line-height: 35px;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-content{
|
||||||
|
position: absolute;
|
||||||
|
top: 36px;
|
||||||
|
bottom: 0px;
|
||||||
|
width: 100%;
|
||||||
|
background: #fff url() 0 0 no-repeat;
|
||||||
|
padding: 0px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-content .layui-tab-item{
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
}
|
||||||
|
.page-content .layui-tab-content .layui-tab-item iframe{
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
}
|
||||||
|
.x-admin-carousel,.layui-carousel,.x-admin-carousel>[carousel-item]>* {
|
||||||
|
background-color:#fff
|
||||||
|
}
|
||||||
|
|
||||||
|
.x-admin-backlog .x-admin-backlog-body {
|
||||||
|
display:block;
|
||||||
|
padding:10px 15px;
|
||||||
|
background-color:#f8f8f8;
|
||||||
|
color:#999;
|
||||||
|
border-radius:2px;
|
||||||
|
transition:all .3s;
|
||||||
|
-webkit-transition:all .3s
|
||||||
|
}
|
||||||
|
.x-admin-backlog-body h3 {
|
||||||
|
padding-bottom:10px;
|
||||||
|
font-size:12px
|
||||||
|
}
|
||||||
|
.x-admin-backlog-body p cite {
|
||||||
|
font-style:normal;
|
||||||
|
font-size:30px;
|
||||||
|
font-weight:300;
|
||||||
|
color:#009688
|
||||||
|
}
|
||||||
|
.x-admin-backlog-body:hover {
|
||||||
|
background-color:#CFCFCF;
|
||||||
|
color:#888
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 315 KiB |
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,196 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>工作台</title>
|
||||||
|
<meta name="renderer" content="webkit|ie-comp|ie-stand">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="viewport" content="width=device-width,user-scalable=yes, minimum-scale=0.4, initial-scale=0.8,target-densitydpi=low-dpi" />
|
||||||
|
<meta http-equiv="Cache-Control" content="no-siteapp" />
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="css/front.css">
|
||||||
|
<link rel="stylesheet" href="css/stylesheets.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- 顶部开始 -->
|
||||||
|
<div class="container">
|
||||||
|
<div class="logo"><a href="./index.html">人事管理系统</a></div>
|
||||||
|
|
||||||
|
<ul class="layui-nav right" lay-filter="">
|
||||||
|
<li class="layui-nav-item">
|
||||||
|
<dl class="layui-nav-child"> <!-- 二级菜单 -->
|
||||||
|
<dd><a onclick="x_admin_show('个人信息','#')">个人信息</a></dd>
|
||||||
|
<dd><a onclick="x_admin_show('切换帐号','#'">切换帐号</a></dd>
|
||||||
|
<dd><a href="#">退出</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
<li class="layui-nav-item to-index"><a>欢迎登录</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- 顶部结束 -->
|
||||||
|
<!-- 中部开始 -->
|
||||||
|
<!-- 左侧菜单开始 -->
|
||||||
|
<div class="left-nav">
|
||||||
|
<div id="side-nav">
|
||||||
|
<ul id="nav">
|
||||||
|
<li>
|
||||||
|
<a href="javascript:;">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>用户管理</cite>
|
||||||
|
<i class="iconfont nav_right"></i>
|
||||||
|
</a>
|
||||||
|
<ul class="sub-menu">
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>用户列表</cite>
|
||||||
|
|
||||||
|
</a>
|
||||||
|
</li >
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>添加用户</cite>
|
||||||
|
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="javascript:;">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>部门管理</cite>
|
||||||
|
<i class="iconfont nav_right"></i>
|
||||||
|
</a>
|
||||||
|
<ul class="sub-menu">
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>部门列表</cite>
|
||||||
|
</a>
|
||||||
|
</li >
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>添加部门</cite>
|
||||||
|
</a>
|
||||||
|
</li >
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="javascript:;">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>职位管理</cite>
|
||||||
|
<i class="iconfont nav_right"></i>
|
||||||
|
</a>
|
||||||
|
<ul class="sub-menu">
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>职位列表</cite>
|
||||||
|
</a>
|
||||||
|
</li >
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>添加职位</cite>
|
||||||
|
</a>
|
||||||
|
</li >
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="javascript:;">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>员工管理</cite>
|
||||||
|
<i class="iconfont nav_right"></i>
|
||||||
|
</a>
|
||||||
|
<ul class="sub-menu">
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>员工列表</cite>
|
||||||
|
</a>
|
||||||
|
</li >
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>添加员工</cite>
|
||||||
|
</a>
|
||||||
|
</li >
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="javascript:;">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>公告管理</cite>
|
||||||
|
<i class="iconfont nav_right"></i>
|
||||||
|
</a>
|
||||||
|
<ul class="sub-menu">
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>公告查询</cite>
|
||||||
|
</a>
|
||||||
|
</li >
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>添加公告</cite>
|
||||||
|
</a>
|
||||||
|
</li >
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="javascript:;">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>下载中心</cite>
|
||||||
|
<i class="iconfont nav_right"></i>
|
||||||
|
</a>
|
||||||
|
<ul class="sub-menu">
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>文档查询</cite>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a _href="#">
|
||||||
|
<i class="iconfont"></i>
|
||||||
|
<cite>上传文档</cite>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 左侧菜单结束 -->
|
||||||
|
<!-- 右侧主体开始 -->
|
||||||
|
<div class="page-content">
|
||||||
|
<div class="layui-tab tab" lay-filter="xbs_tab" lay-allowclose="false">
|
||||||
|
<ul class="layui-tab-title">
|
||||||
|
<li class="home"><i class="layui-icon"></i>我的桌面</li>
|
||||||
|
</ul>
|
||||||
|
<div class="layui-tab-content">
|
||||||
|
<div class="layui-tab-item layui-show">
|
||||||
|
<iframe src="mainpage.html" frameborder="0" scrolling="yes"></iframe>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="page-content-bg"></div>
|
||||||
|
<!-- 右侧主体结束 -->
|
||||||
|
<!-- 中部结束 -->
|
||||||
|
<!-- 底部开始 -->
|
||||||
|
<div class="footer">
|
||||||
|
<div class="copyright">Copyright ©2024 企业员工管理系统</div>
|
||||||
|
</div>
|
||||||
|
<!-- 底部结束 -->
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,10 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title></title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<img src="https://jquery.com/wp-content/themes/jquery/content/books/learning-jquery-4th-ed.jpg"/>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in new issue