11
WXL
2024-03-20 1e487a42549384f6e937a5c7d557563aedafec2c
src/views/login.vue
@@ -96,7 +96,7 @@
  data() {
    return {
      codeUrl: "",
      cookiePassword: "",
      cookiePassword: "",
      loginForm: {
        username: "",
        password: "",
@@ -120,7 +120,7 @@
      },
      loading: false,
      // 验证码开关
      captchaOnOff: false,
      captchaOnOff: true,
      // 注册开关
      register: false,
      redirect: undefined
@@ -187,7 +187,7 @@
            })
            .catch(() => {
              this.loading = false;
              this.$message.error("登陆失败请重试。");
              // this.$message.error("登陆失败请重试。");
              if (this.captchaOnOff) {
                this.getCode();
              }
@@ -205,6 +205,15 @@
  justify-content: center;
  align-items: center;
  height: 100%;
  background-position: center center;
/* 背景图不平铺 */
background-repeat: no-repeat;
/* 当内容高度大于图片高度时,背景图像的位置相对于viewport固定 */
background-attachment: fixed;
/* 让背景图基于容器大小伸缩 */
background-size: cover;
/* 设置背景颜色,背景图加载过程中会显示背景色 */
background-color: #464646;
  background-image: url("../assets/images/login-bgc.jpg");
  background-size: cover;
}