123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <template>
- <div class="login-container">
- <div class="login-from-box">
- <el-form
- class="login-form"
- ref="loginForm"
- autocomplete="on"
- :model="loginForm"
- :rules="loginRules"
- label-position="left"
- >
- <h3 class="title">{{ systemName }}</h3>
- <el-form-item prop="username">
- <span class="svg-container svg-container_login">
- <svg-icon icon-class="user" />
- </span>
- <el-input
- name="username"
- type="text"
- clearable
- v-model="loginForm.username"
- autocomplete="on"
- placeholder="用户名"
- />
- </el-form-item>
- <el-form-item prop="password">
- <span class="svg-container svg-container_login">
- <svg-icon icon-class="password"></svg-icon>
- </span>
- <el-input
- name="password"
- :type="pwdType"
- clearable
- @keyup.enter.native="handleLogin()"
- v-model="loginForm.password"
- autocomplete="on"
- placeholder="密码"
- ></el-input>
- <span class="show-pwd" @click="showPwd()">
- <svg-icon :icon-class="pwdType === 'password' ? 'eye' : 'eye-open'" />
- </span>
- </el-form-item>
- <el-form-item prop="captchaCode">
- <span class="svg-container svg-container_login">
- <svg-icon icon-class="eye"></svg-icon>
- </span>
- <el-input
- v-model="loginForm.captchaCode"
- auto-complete="off"
- placeholder="请输入验证码"
- style="width: 63%"
- clearable
- @keyup.enter.native="handleLogin"
- ></el-input>
- <div class="login-code">
- <img :src="codeUrl" @click="getCode" class="login-code-img" />
- </div>
- </el-form-item>
- <div class="login-btn">
- <button type="button" class="btn" @click="handleLogin()">立即登录</button>
- </div>
- <div class="tips">
- <!-- <span>Copyright © 2020-2024 <a target="_blank" href="https://www.fuint.cn">fuint.cn</a> 延禾技术 All Rights Reserved.</span> -->
- </div>
- </el-form>
- </div>
- </div>
- </template>
- <script>
- import { useUserStore } from '@/store/user'
- import { useRouter } from '@/hooks/use-router'
- import { getCodeImg } from '@/api/login'
- const { login } = useUserStore()
- const router = useRouter()
- export default {
- data() {
- return {
- systemName: this.$t('app.title'),
- loading: false,
- loginForm: { uuid: '', username: '', password: '', captchaCode: '' },
- codeUrl: '',
- pwdType: 'password',
- loginRules: {
- username: [{ required: true, trigger: 'blur', message: '请输入您的账号' }],
- password: [{ required: true, trigger: 'blur', message: '请输入您的密码' }],
- captchaCode: [
- { required: true, trigger: 'change', message: '请输入验证码' },
- { min: 4, max: 6, message: '请输入正确验证码', trigger: 'blur' },
- ],
- },
- }
- },
- created() {
- console.log(this.$t)
- this.getCode()
- },
- methods: {
- getCode() {
- const app = this
- getCodeImg().then((res) => {
- app.codeUrl = res.data.captcha
- app.loginForm.uuid = res.data.uuid
- })
- },
- showPwd() {
- if (this.pwdType === 'password') {
- this.pwdType = ''
- } else {
- this.pwdType = 'password'
- }
- },
- handleLogin() {
- const app = this
- app.$refs.loginForm.validate((valid) => {
- if (valid) {
- app.loading = true
- login(app.loginForm)
- .then(() => {
- app.loading = false
- console.log('登录成功了!')
- app.$router.push({ path: '/cashier' }).catch(() => {})
- router.push({ path: '/' }).catch((err) => {
- console.log('跳转失败...', err)
- })
- console.log('登录成功了...')
- })
- .catch(() => {
- app.loading = false
- })
- } else {
- console.log('error submit!!')
- return false
- }
- })
- },
- },
- }
- </script>
- <style rel="stylesheet/scss" lang="scss" scoped>
- // 定义新的配色变量
- $primary-color: #a9b1b8; // 主色调,蓝色
- $secondary-color: #eabc48; // 次色调,深蓝色
- $light-gray: #f5f5f5; // 浅灰色
- $dark-gray: #9f8787; // 深灰色
- $background-color: #161212; // 背景色,灰色
- /* reset element-ui css */
- .login-container {
- position: fixed;
- height: 100%;
- width: 100%;
- top: 0;
- left: 0;
- background: linear-gradient(to bottom right, $primary-color, $secondary-color);
- background-position: center;
- color: #ffffff;
- ::v-deep .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;
- &:-webkit-autofill {
- -webkit-box-shadow: 0 0 0px 1000px $background-color inset !important;
- -webkit-text-fill-color: $light-gray !important;
- }
- }
- }
- ::v-deep .el-form-item {
- border: 1px solid rgba(255, 255, 255, 0.3);
- background: rgba(0, 0, 0, 0.1);
- border-radius: 5px;
- color: #454545;
- }
- .login-from-box {
- position: relative;
- .login-form {
- position: absolute;
- left: 0;
- right: 0;
- width: 520px;
- padding: 35px 35px 15px 35px;
- margin: 150px auto;
- align-items: center;
- color: white;
- background-color: rgba(63, 63, 63, 0.373);
- border-radius: 10px;
- .login-btn {
- .btn {
- position: relative;
- width: 100%;
- padding: 6px 0;
- margin: 10px 0 36px 0;
- font-size: 1.2em;
- color: white;
- background: linear-gradient(to right, $primary-color, $secondary-color);
- border: none;
- outline: none;
- cursor: pointer;
- overflow: hidden;
- transition: 0.5s;
- &::before {
- position: absolute;
- content: '';
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: linear-gradient(120deg, transparent, hsla(207, 90%, 72%, 0.5), transparent);
- transform: translateX(-100%);
- transition: 0.5s;
- }
- &:hover::before {
- transform: translateX(100%);
- }
- }
- }
- .login-code {
- // width: 100px;
- height: 100%;
- float: right;
- img {
- cursor: pointer;
- vertical-align: middle;
- height: 48px;
- height: 100%;
- border-radius: 1px;
- }
- }
- }
- .tips {
- font-size: 14px;
- color: $light-gray;
- margin-bottom: 10px;
- text-align: center;
- }
- .svg-container {
- padding: 6px 5px 6px 15px;
- color: $dark-gray;
- vertical-align: middle;
- width: 30px;
- display: inline-block;
- &_login {
- font-size: 20px;
- }
- }
- .title {
- font-size: 26px;
- font-weight: 400;
- color: $light-gray;
- margin: 0px auto 20px 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;
- }
- }
- }
- </style>
|