index.vue 7.6 KB
<template>
  <div class="login-container">
    <el-form
      ref="loginForm"
      :model="loginForm"
      :rules="loginRules"
      class="login-form"
      auto-complete="on"
      label-position="left"
    >
      <div class="title-container">
        <h3 class="title">{{ $t("system.systemName") }}</h3>
        <!-- <h3 class="title">长沙华恒ECS系统</h3> -->
      </div>
      <el-form-item prop="username">
        <span class="svg-container">
          <svg-icon icon-class="user" />
        </span>
        <el-input
          ref="username"
          v-model="loginForm.username"
          placeholder="username"
          name="username"
          type="text"
          tabindex="1"
          auto-complete="on"
        />
      </el-form-item>

      <el-form-item prop="password">
        <span class="svg-container">
          <svg-icon icon-class="password" />
        </span>
        <el-input
          :key="passwordType"
          ref="password"
          v-model="loginForm.password"
          :type="passwordType"
          placeholder="password"
          name="password"
          tabindex="2"
          auto-complete="on"
          @keyup.enter.native="handleLogin"
        />
        <span class="show-pwd" @click="showPwd">
          <svg-icon
            :icon-class="passwordType === 'password' ? 'eye' : 'eye-open'"
          />
        </span>
      </el-form-item>

      <el-form-item prop="language" class="language" v-show="true">
        <span class="svg-container">
          <svg-icon icon-class="language" />
        </span>
        <el-select v-model="value" placeholder="请选择语言">
          <el-option
            v-for="item in options"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          />
        </el-select>
      </el-form-item>

      <el-button
        :loading="loading"
        type="primary"
        style="width: 100%; margin-bottom: 30px"
        @click.native.prevent="handleLogin"
        >{{ $t("system.login") }}</el-button
      >

      <div class="tips">
        <!-- <span style="margin-right:20px;">username: admin</span>
        <span> password: any</span> -->
      </div>
    </el-form>
    <div class="fixed-footer">
      <copyright />
    </div>
  </div>
</template>

<script>
import { Copyright } from "@/layout/components";
import { getPermissionData } from "@/router/index";
import {
  getDictWithDetailsLangs,
  changeBackstageCultureInfo,
} from "@/api/common";
export default {
  name: "Login",
  components: {
    Copyright,
  },
  data() {
    // 从 localStorage 中读取当前语言,默认为 'zh'
    const initialLang = localStorage.getItem("lang") || "zh";
    return {
      loginForm: {
        username: "admin",
        password: "123456",
      },
      loginRules: {},
      loading: false,
      passwordType: "password",
      redirect: undefined,
      options: [
        {
          value: "zh",
          label: "中文",
        },
        {
          value: "en",
          label: "英语",
        },
      ],
      value: initialLang,
    };
  },
  watch: {
    value(newVal) {
      // 将当前语言存储到 localStorage 中
      localStorage.setItem("lang", newVal);
      this.$i18n.locale = newVal;
      var lang = "";
      if (newVal === "zh") {
        lang = "zh-CN";
      } else if (newVal === "en") {
        lang = "en-US";
      }
      changeBackstageCultureInfo(lang).then((response) => {});
    },
    $route: {
      handler: function (route) {
        this.redirect = route.query && route.query.redirect;
      },
      immediate: true,
    },
  },
  mounted() {
    localStorage.removeItem("sys_menu_per_data");
  },
  methods: {
    showPwd() {
      if (this.passwordType === "password") {
        this.passwordType = "";
      } else {
        this.passwordType = "password";
      }
      this.$nextTick(() => {
        this.$refs.password.focus();
      });
    },
    handleLogin() {
      this.$refs.loginForm.validate((valid) => {
        if (valid) {
          this.loading = true;
          // console.log(this.loginForm)
          this.$store
            .dispatch("user/login", this.loginForm)
            .then(() => {
              // console.log('登录成功')
              //   debugger;
              getPermissionData(() => {
                this.$router.push({ path: "/" });
                history.go(0);
                this.loading = false;
              });
            })
            .catch((e) => {
              this.$message.error(e);
              this.loading = false;
            });
        }
      });
    },
  },
};
</script>

<style lang="scss">
/* 修复input 背景不协调 和光标变色 */
/* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */

$bg: #283443;
$light_gray: #fff;
$cursor: #fff;

@supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
  .login-container .el-input input {
    color: $cursor;
  }
}

/* reset element-ui css */
.login-container {
  .el-input {
    display: inline-block;
    height: 47px;
    width: 85%;

    input {
      background: transparent;
      border: 0px;
      -webkit-appearance: none;
      border-radius: 0px;
      padding: 12px 5px 12px 15px;
      color: $light_gray;
      height: 47px;
      caret-color: $cursor;

      &:-webkit-autofill {
        box-shadow: 0 0 0px 1000px $bg inset !important;
        -webkit-text-fill-color: $cursor !important;
      }
    }
  }

  .el-form-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    color: #454545;
  }
}
</style>

<style lang="scss" scoped>
::v-deep .el-select {
  width: 85%;
  min-width: 200px;

  .el-input__inner {
    width: 100%;
    padding-right: 90px;
  }

  .el-input__suffix {
    right: -68px;
    left: auto;
    position: absolute;
  }

  .el-select-dropdown__item {
    text-align: right;
    padding-right: 30px;
  }
}

.el-form-item__content {
  position: relative;
}

$bg: #2d3a4b;
$dark_gray: #889aa4;
// $light_gray: #eee;
// $light_gray: #fff;
$light_gray: rgba(184, 27, 43, 0.6);

.login-container {
  min-height: 100%;
  width: 100%;
  // background-color: $bg;
  // 使用背景图片
  background-image: url("../../assets/images/bg.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  .login-form {
    position: relative;
    width: 520px;
    max-width: 100%;
    // padding: 160px 35px 0;
    padding: 30px 35px 0;
    margin: 0px auto;
    overflow: hidden;
    // background-color: #d9ecff;
    // background-color:rgba(184, 27, 43, 0.1);
    background-color: rgba(224, 247, 250, 0.6);
    border-radius: 10px;
  }

  .tips {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;

    span {
      &:first-of-type {
        margin-right: 16px;
      }
    }
  }

  .svg-container {
    padding: 6px 5px 6px 15px;
    color: $dark_gray;
    vertical-align: middle;
    width: 30px;
    display: inline-block;
  }

  .title-container {
    position: relative;

    .title {
      font-size: 26px;
      color: $light_gray;
      margin: 0px auto 40px auto;
      text-align: center;
      font-weight: bold;
    }
  }

  .show-pwd {
    position: absolute;
    right: 10px;
    top: 7px;
    font-size: 16px;
    color: $dark_gray;
    cursor: pointer;
    user-select: none;
  }
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  transition: width 0.28s;
}

.fixed-footer div {
  background-color: transparent;
  color: #fff;
}
</style>
<style>
.language .el-input {
  width: 100% !important;
}
</style>