123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
- <title>登录页面 - IMCS管控系统</title>
- <link rel="icon" href="favicon.ico" type="image/ico">
- <meta name="keywords" content="IMCS管控系统">
- <meta name="description" content="IMCS管控系统。">
- <meta name="author" content="yinqi">
- <link href="css/bootstrap.min.css" rel="stylesheet">
- <link href="css/materialdesignicons.min.css" rel="stylesheet">
- <link href="css/style.min.css" rel="stylesheet">
- <style>
- .lyear-wrapper {
- position: relative;
- }
- .lyear-login {
- display: flex !important;
- min-height: 100vh;
- align-items: center !important;
- justify-content: center !important;
- }
- .lyear-login:after{
- content: '';
- min-height: inherit;
- font-size: 0;
- }
- .login-center {
- background: #fff;
- min-width: 29.25rem;
- padding: 2.14286em 3.57143em;
- border-radius: 3px;
- margin: 2.85714em;
- }
- .login-header {
- margin-bottom: 1.5rem !important;
- }
- .login-center .has-feedback.feedback-left .form-control {
- padding-left: 38px;
- padding-right: 12px;
- }
- .login-center .has-feedback.feedback-left .form-control-feedback {
- left: 0;
- right: auto;
- width: 38px;
- height: 38px;
- line-height: 38px;
- z-index: 4;
- color: #dcdcdc;
- }
- .login-center .has-feedback.feedback-left.row .form-control-feedback {
- left: 15px;
- }
- .choose-enterprise{
- border:1px solid #ddd;
- text-align: center;
- font-size:20px;
- padding:20px;
- margin-bottom:10px;
- }
- .choose-enterprise:hover{
- border:1px solid #abcdef;
- cursor:pointer;
- }
- </style>
- </head>
- <body>
- <div class="row lyear-wrapper" style="background-image: url(images/login-bg-2.jpg); background-size: cover;">
- <div class="lyear-login">
- <div class="login-center" style="padding:15px;">
- <div class="login-header text-center">
- <img src="" style="height:40px;line-height:40px;" /><span style="font-size:1.2em;line-height:40px;">WMS智能仓储系统</span>
- </div>
- <form action="#!" method="post" id="form">
- <div class="choose-enterprise">选择企业</div>
- <div class="choose-enterprise">选择企业</div>
- </form>
- <hr>
- <footer class="col-sm-12 text-center">
- <div style="text-align:center;background:white;">
- <div style="width:100%;margin:0 auto; padding:20px 0;">
- </div>
- </div>
- </footer>
- </div>
- </div>
- </div>
- <script type="text/javascript" src="js/jquery.min.js"></script>
- <script type="text/javascript" src="js/bootstrap.min.js"></script>
- <script type="text/javascript">
- function init(){
- $.ajax({
- url:"/admin/user/login/getUserChooseEnterprise",
- dataType:"JSON",
- success:function(resp){
- if(resp.status != 0){
- window.location.href="/";
- return;
- }
- $("#form").empty();
- for(let i=0;i<resp.data.length;i++){
- let item = resp.data[i];
- let div = $("<div class='choose-enterprise'>"+item.name+"</div>");
- bindClick(div,item);
- $("#form").append(div);
- }
- }
- });
- }
- function bindClick(div,enterprise){
- div.click(function(){
- $.ajax({
- url:"/admin/user/login/userChooseEnterprise",
- dataType:"JSON",
- data:{
- enterpriseId:enterprise.id
- },
- success:function(resp){
- window.location.href="/";
- }
- });
- });
- }
- init();
- </script>
- </body>
- </html>
|