This commit is contained in:
parent
5b4de0a5e6
commit
092624c8ef
|
|
@ -0,0 +1,45 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>首页</title>
|
||||||
|
<link href="css/global.css" rel="stylesheet">
|
||||||
|
<style>
|
||||||
|
.home-container {
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-box {
|
||||||
|
background: #fff;
|
||||||
|
padding: 20px;
|
||||||
|
border-radius: 4px;
|
||||||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-title {
|
||||||
|
font-size: 24px;
|
||||||
|
color: #333;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.welcome-content {
|
||||||
|
color: #666;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="home-container">
|
||||||
|
<div class="welcome-box">
|
||||||
|
<div class="welcome-title">欢迎使用甘肃分包评价系统</div>
|
||||||
|
<div class="welcome-content">
|
||||||
|
<p>这里是系统首页,您可以在这里查看系统概览和重要信息。</p>
|
||||||
|
<p>通过左侧菜单可以访问系统的各项功能。</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||||
|
|
@ -24,12 +24,12 @@
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all .2s;
|
transition: all .2s;
|
||||||
-webkit-transition: all .2s;
|
-webkit-transition: all .2s;
|
||||||
margin-left: 5px!important;
|
margin-left: 5px !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="layui-layout layui-layout-admin" style="border-bottom: solid 5px #1aa094;">
|
<div class="layui-layout layui-layout-admin" style="border-bottom: solid 5px #1aa094;">
|
||||||
<!-- 标题栏 -->
|
<!-- 标题栏 -->
|
||||||
<div class="layui-header header header-demo">
|
<div class="layui-header header header-demo">
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
</div>
|
</div>
|
||||||
<ul class="layui-nav" pc>
|
<ul class="layui-nav" pc>
|
||||||
<li class="layui-nav-item">
|
<li class="layui-nav-item">
|
||||||
<!-- <a href='javascript:;' lay-id="-997" data-url="pages/notice/noticePubList.html"><i class="fa fa-envelope-o" aria-hidden="true" title="公告" unreadNotice></i></a>-->
|
<!-- <a href='javascript:;' lay-id="-997" data-url="pages/notice/noticePubList.html"><i class="fa fa-envelope-o" aria-hidden="true" title="公告" unreadNotice></i></a>-->
|
||||||
</li>
|
</li>
|
||||||
<li class="layui-nav-item" pc>
|
<li class="layui-nav-item" pc>
|
||||||
<a href="javascript:;" class="admin-header-user">
|
<a href="javascript:;" class="admin-header-user">
|
||||||
|
|
@ -53,13 +53,15 @@
|
||||||
</a>
|
</a>
|
||||||
<dl class="layui-nav-child">
|
<dl class="layui-nav-child">
|
||||||
<dd>
|
<dd>
|
||||||
<a href='javascript:;' lay-id="-999" data-url="pages/user/updateMyself.html"><i class="fa fa-user-circle" aria-hidden="true"></i> 个人信息</a>
|
<a href='javascript:;' lay-id="-999" data-url="pages/user/updateMyself.html"><i
|
||||||
|
class="fa fa-user-circle" aria-hidden="true"></i> 个人信息</a>
|
||||||
</dd>
|
</dd>
|
||||||
<!-- <dd>-->
|
<!-- <dd>-->
|
||||||
<!-- <a href='javascript:;' lay-id="-998" data-url="pages/user/updateHeadImg.html"><i class="fa fa-drupal" aria-hidden="true"></i> 头像</a>-->
|
<!-- <a href='javascript:;' lay-id="-998" data-url="pages/user/updateHeadImg.html"><i class="fa fa-drupal" aria-hidden="true"></i> 头像</a>-->
|
||||||
<!-- </dd>-->
|
<!-- </dd>-->
|
||||||
<dd>
|
<dd>
|
||||||
<a href="javascript:;" onclick="logout()"><i class="fa fa-sign-out" aria-hidden="true"></i> 退出</a>
|
<a href="javascript:;" onclick="logout()"><i class="fa fa-sign-out"
|
||||||
|
aria-hidden="true"></i> 退出</a>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</li>
|
</li>
|
||||||
|
|
@ -77,14 +79,14 @@
|
||||||
<div class="layui-body" style="bottom: 0;border-left: solid 2px #1AA094;" id="admin-body">
|
<div class="layui-body" style="bottom: 0;border-left: solid 2px #1AA094;" id="admin-body">
|
||||||
<div class="layui-tab admin-nav-card layui-tab-brief" lay-allowClose="true" lay-filter="admin-tab">
|
<div class="layui-tab admin-nav-card layui-tab-brief" lay-allowClose="true" lay-filter="admin-tab">
|
||||||
<ul class="layui-tab-title">
|
<ul class="layui-tab-title">
|
||||||
<li class="layui-this">
|
<li class="layui-this" lay-id="home">
|
||||||
<i class="fa fa-dashboard" aria-hidden="true"></i>
|
<i class="fa fa-home" aria-hidden="true"></i>
|
||||||
<cite></cite>
|
<cite>首页</cite>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="layui-tab-content" style="min-height: 150px; padding: 5px 0 0 0;">
|
<div class="layui-tab-content" style="min-height: 150px; padding: 5px 0 0 0;">
|
||||||
<div class="layui-tab-item layui-show">
|
<div class="layui-tab-item layui-show">
|
||||||
<iframe src=""></iframe>
|
<iframe src="home.html" frameborder="0"></iframe>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue