| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>后台管理-登陆</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta http-equiv="Access-Control-Allow-Origin" content="*">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="format-detection" content="telephone=no">
- <link rel="icon" href="images/favicon.ico">
- <link rel="stylesheet" href="../lib/layui-v2.5.5/css/layui.css" media="all">
- <!--[if lt IE 9]>
- <script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
- <script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
- <![endif]-->
- <style>
- html, body {
- width: 100%;
- height: 100%;
- overflow: hidden
- }
- body {
- background: #1E9FFF;
- }
- body:after {
- content: '';
- background-repeat: no-repeat;
- background-size: cover;
- -webkit-filter: blur(3px);
- -moz-filter: blur(3px);
- -o-filter: blur(3px);
- -ms-filter: blur(3px);
- filter: blur(3px);
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: -1;
- }
- .layui-container {
- width: 100%;
- height: 100%;
- overflow: hidden
- }
- .admin-login-background {
- width: 360px;
- height: 300px;
- position: absolute;
- left: 50%;
- top: 40%;
- margin-left: -180px;
- margin-top: -100px;
- }
- .logo-title {
- text-align: center;
- letter-spacing: 2px;
- padding: 14px 0;
- }
- .logo-title h1 {
- color: #1E9FFF;
- font-size: 25px;
- font-weight: bold;
- }
- .login-form {
- background-color: #fff;
- border: 1px solid #fff;
- border-radius: 3px;
- padding: 14px 20px;
- box-shadow: 0 0 8px #eeeeee;
- }
- .login-form .layui-form-item {
- position: relative;
- }
- .login-form .layui-form-item label {
- position: absolute;
- left: 1px;
- top: 1px;
- width: 38px;
- line-height: 36px;
- text-align: center;
- color: #d2d2d2;
- }
- .login-form .layui-form-item input {
- padding-left: 36px;
- }
- .captcha {
- width: 60%;
- display: inline-block;
- }
- .captcha-img {
- display: inline-block;
- width: 34%;
- float: right;
- }
- .captcha-img img {
- height: 34px;
- border: 1px solid #e6e6e6;
- height: 36px;
- width: 100%;
- }
- </style>
- </head>
- <body>
- <div class="layui-container">
- <div class="admin-login-background">
- <div class="layui-form login-form" lay-filter="login-form">
- <form class="layui-form" action="">
- <div class="layui-form-item logo-title">
- <h1>廉政档案系统</h1>
- </div>
- <div class="layui-form-item">
- <label class="layui-icon layui-icon-username"></label>
- <input type="text" name="account" lay-verify="required|account" placeholder="用户名或者邮箱"
- autocomplete="off" class="layui-input" value="">
- </div>
- <div class="layui-form-item">
- <label class="layui-icon layui-icon-password"></label>
- <input type="password" name="password" lay-verify="required|password" placeholder="密码"
- autocomplete="off" class="layui-input" value="">
- </div>
- <div class="layui-form-item">
- <label class="layui-icon layui-icon-vercode"></label>
- <input type="text" name="captcha" lay-verify="required|captcha" placeholder="图形验证码"
- autocomplete="off" class="layui-input verification captcha" value="">
- <div class="captcha-img" style="cursor:pointer">
- <img id="captchaPic">
- </div>
- </div>
- <div class="layui-form-item">
- <input type="checkbox" id="rememberMe" name="rememberMe" value="" lay-skin="primary" title="记住密码">
- </div>
- <div class="layui-form-item">
- <button class="layui-btn layui-btn layui-btn-normal layui-btn-fluid" lay-submit=""
- lay-filter="login">登 入
- </button>
- </div>
- </form>
- </div>
- </div>
- </div>
- <script src="./lib/jquery-3.4.1/jquery-3.4.1.min.js" charset="utf-8"></script>
- <script src="./lib/layui-v2.5.5/layui.js" charset="utf-8"></script>
- <script src="./lib/jq-module/jquery.particleground.min.js" charset="utf-8"></script>
- <script src="./js/lay-config.js?v=1.0.4" charset="utf-8"></script>
- <script>
- layui.use(['form', 'http'], function () {
- var form = layui.form,
- http = layui.http,
- $ = layui.jquery,
- layer = layui.layer;
- // 登录过期的时候,跳出ifram框架
- if (top.location != self.location) top.location = self.location;
- // 粒子线条背景
- $(document).ready(function () {
- $('.layui-container').particleground({
- dotColor: '#7ec7fd',
- lineColor: '#7ec7fd'
- });
- });
- let readCachePassword = function (){
- let a = layui.data('rememberMe')
- if (a){
- form.val("login-form", a.data);
- form.render();
- }
- }
- // 生成验证码
- let generatePictureCaptcha = function () {
- http.get('system/auth/generatePictureCaptcha', {}, true, res => {
- $("#captchaPic").prop('src',res.data)
- })
- }
- // 进行登录操作
- form.on('submit(login)', function (data) {
- data = data.field;
- if (data.account == '') {
- layer.msg('用户名不能为空');
- return false;
- }
- if (data.password == '') {
- layer.msg('密码不能为空');
- return false;
- }
- if (data.captcha == '') {
- layer.msg('验证码不能为空');
- return false;
- }
- let rememberMe = {
- account: data.account,
- password: data.password,
- rememberMe: $("#rememberMe").prop('checked')
- }
- if (rememberMe.rememberMe) {
- // 勾选记住密码
- layui.data('rememberMe', {
- key: 'data',
- value: rememberMe
- })
- }else {
- layui.data('rememberMe', null)
- }
- http.login(data)
- return false;
- });
- // 点击验证码刷新
- $("#captchaPic").click(function () {
- generatePictureCaptcha()
- })
- readCachePassword()
- generatePictureCaptcha()
- });
- </script>
- </body>
- </html>
|