|
@@ -37,7 +37,7 @@
|
|
|
<img :src="codeUrl" @click="getCode" class="login-code-img"/>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
- <el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;">记住密码</el-checkbox>
|
|
|
+ <el-checkbox v-model="loginForm.rememberMe" style="margin:0px 0px 25px 0px;font-weight: bold;">记住密码</el-checkbox>
|
|
|
<el-form-item style="width:100%;">
|
|
|
<el-button
|
|
|
:loading="loading"
|
|
@@ -56,7 +56,7 @@
|
|
|
</el-form>
|
|
|
<!-- 底部 -->
|
|
|
<div class="el-login-footer">
|
|
|
- <span>Copyright © 2018-2023 ruoyi.vip All Rights Reserved.</span>
|
|
|
+ <span></span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -161,18 +161,23 @@ export default {
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
height: 100%;
|
|
|
- background-image: url("../assets/images/login-background.jpg");
|
|
|
+ background-image: url("../assets/images/login-background.png");
|
|
|
background-size: cover;
|
|
|
}
|
|
|
.title {
|
|
|
margin: 0px auto 30px auto;
|
|
|
text-align: center;
|
|
|
- color: #707070;
|
|
|
+ font-size: 30px;
|
|
|
+ font-weight: bold;
|
|
|
+ background: linear-gradient(to right, #00C9FF, #92FE9D); /* 蓝绿色渐变 */
|
|
|
+ -webkit-background-clip: text;
|
|
|
+ background-clip: text;
|
|
|
+ color: transparent;
|
|
|
}
|
|
|
|
|
|
.login-form {
|
|
|
border-radius: 6px;
|
|
|
- background: #ffffff;
|
|
|
+ background: rgba(255, 255, 255, 0.5);;
|
|
|
width: 400px;
|
|
|
padding: 25px 25px 5px 25px;
|
|
|
.el-input {
|