|
@@ -1,5 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="login-container">
|
|
<div class="login-container">
|
|
|
|
|
+
|
|
|
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form" auto-complete="on"
|
|
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form" auto-complete="on"
|
|
|
label-position="left">
|
|
label-position="left">
|
|
|
|
|
|
|
@@ -45,9 +46,13 @@
|
|
|
<el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;"
|
|
<el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;"
|
|
|
@click.native.prevent="handleLogin">登录
|
|
@click.native.prevent="handleLogin">登录
|
|
|
</el-button>
|
|
</el-button>
|
|
|
|
|
+ </el-form>
|
|
|
|
|
|
|
|
|
|
+ <!-- 底部 -->
|
|
|
|
|
+ <div class="el-login-footer">
|
|
|
|
|
+ <span>Copyright © 2023 重庆市柏玮熠科技有限公司 All Rights Reserved.</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
- </el-form>
|
|
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -238,5 +243,18 @@ $light_gray: #eee;
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
user-select: none;
|
|
user-select: none;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ .el-login-footer {
|
|
|
|
|
+ height: 40px;
|
|
|
|
|
+ line-height: 40px;
|
|
|
|
|
+ position: fixed;
|
|
|
|
|
+ bottom: 0;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+ font-family: Arial;
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ letter-spacing: 1px;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|