| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <template>
- <div class="login-container">
- <el-row class="window-login">
- <el-col :span="9">
- <div id="u35">
- <div id="u37">
- <div id="u39">
- <div id="u39_text" class="text ">
- <span></span>
- </div>
- </div>
- <div id="u38">
- <div id="u38_text" class="text">
- <p style="font-size:20px;line-height:normal;">
- <span style="font-family:'FZXBSJW--GB1-0', 'FZXiaoBiaoSong-B05S', sans-serif;font-weight:400;">
- 牵引供电维护管理信息化系统
- </span>
- </p>
- <p style="font-size:14px;line-height:24px;margin-top: 5px">
- <span style="font-family:'Helvetica', sans-serif;font-weight:400;">
- Information System Platform
- </span>
- </p>
- </div>
- </div>
- </div>
- </div>
- </el-col>
- <el-col :span="15">
- <el-form
- ref="loginForm"
- :model="loginForm"
- :rules="loginRules"
- class="login-form"
- auto-complete="on"
- label-position="left"
- >
- <div class="title-container" style="margin-top:45px;margin-bottom: 80px">
- <h2 class="title">用户登录 <span style="font-size: 15px">USER LOGIN</span></h2>
- </div>
- <el-form-item prop="username">
- <el-input
- ref="username"
- v-model="loginForm.username"
- placeholder="请输入用户名"
- name="username"
- prefix-icon="el-icon-s-check"
- type="text"
- tabindex="1"
- auto-complete="on"
- size="medium"
- />
- </el-form-item>
- <el-form-item prop="password" style="position: relative">
- <el-input
- :key="passwordType"
- ref="password"
- v-model="loginForm.password"
- :type="passwordType"
- placeholder="请输入密码"
- name="password"
- prefix-icon="el-icon-lock"
- tabindex="2"
- auto-complete="on"
- />
- <span class="show-pwd" style="position: absolute;right: 12px;top: 8px;" @click="showPwd">
- <svg-icon :icon-class="passwordType === 'password' ? 'eye' : 'eye-open'" />
- </span>
- </el-form-item>
- <el-form-item >
- <el-input
- ref="code"
- v-model="loginForm.code"
- style="width: 70%;vertical-align:middle"
- placeholder="请输入验证码"
- prefix-icon="el-icon-lock"
- tabindex="2"
- auto-complete="on"
- @keyup.enter.native="handleLogin"
- />
- <img :src="imgSrc" alt="" style="margin-left:5%;width: 25%;height: 45px;vertical-align:middle;" @click="captchaImage">
- </el-form-item>
- <el-form-item>
- <el-tooltip class="item" effect="dark" content="请联系管理员重置密码" placement="top">
- <el-button type="text" style="float: right;padding:0">忘记密码?</el-button>
- </el-tooltip>
- </el-form-item>
- <el-button
- type="primary"
- style="width:100%;margin-bottom:30px;"
- @click.native.prevent="handleLogin"
- ><h2 style="margin: 5px;color: white">登 录</h2>
- </el-button>
- </el-form>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { captchaImage } from '@/api/user'
- export default {
- name: 'Login',
- data() {
- return {
- loginForm: {
- username: 'railway',
- password: 'admin123',
- code: '',
- uuid: ''
- },
- loginRules: {
- username: [{ required: true, trigger: 'blur', message: '请输入用户名' }],
- password: [{ required: true, trigger: 'blur', message: '请输入密码' }],
- code: [{ required: true, trigger: 'blur', message: '请输入验证码' }]
- },
- loading: false,
- passwordType: 'password',
- redirect: undefined,
- imgSrc: ''
- }
- },
- watch: {
- $route: {
- handler: function(route) {
- this.redirect = route.query && route.query.redirect
- },
- immediate: true
- }
- },
- created() {
- this.captchaImage()
- },
- methods: {
- captchaImage() {
- captchaImage({ type: 'math' }).then(res => {
- const url = window.URL.createObjectURL(res)
- this.imgSrc = url
- })
- },
- 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
- this.$store.dispatch('user/login', this.loginForm).then(() => {
- this.$router.push({ path: this.redirect || '/' })
- this.loading = false
- }).catch(() => {
- this.loading = false
- })
- } else {
- console.log('error submit!!')
- return false
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .login-container {
- .el-form {
- width: 90%;
- margin: 0 auto;
- .el-input__inner{
- height: 50px;
- }
- }
- }
- </style>
- <style lang="css" scoped>
- .login-container {
- min-height: 100%;
- width: 100%;
- overflow: hidden;
- }
- .window-login {
- overflow: hidden;
- border-radius: 15px;
- margin: 0 auto;
- margin-top: 9%;
- width: 800px;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
- }
- #u35 {
- width: 100%;
- height: 540px;
- font-family: '微软雅黑', sans-serif;
- font-weight: 400;
- font-style: normal;
- background-image: url(https://axure-file.lanhuapp.com/83ee941a-8080-4603-ab36-dc56ce561371__b332944a16cd91abd30b3a70f019b96f.svg);
- }
- #u37 {
- width: 100%;
- height: 100%;
- background-image: url(https://axure-file.lanhuapp.com/83ee941a-8080-4603-ab36-dc56ce561371__3da133640c87c7921faf320a11a3196b.svg);
- background-position: left top;
- background-repeat: no-repeat;
- background-attachment: scroll;
- background-size: 1440px 712px;
- background-origin: border-box;
- border: none;
- }
- #u38 {
- height: 60px;
- color: #FFFFFF;
- }
- #u38 p {
- margin: 0;
- }
- #u38 .text {
- text-align: center;
- padding: 2px 2px 2px 2px;
- box-sizing: border-box;
- width: 100%;
- }
- #u38_text {
- word-wrap: break-word;
- text-transform: none;
- }
- #u39 {
- position: relative;
- margin: 0 auto;
- width: 50px;
- height: 100px;
- display: flex;
- font-family: 'Font Awesome 5 Pro Solid', 'Font Awesome 5 Pro Regular', 'Font Awesome 5 Pro', sans-serif;
- font-weight: 900;
- font-style: normal;
- font-size: 72px;
- color: #FFFFFF;
- }
- #u39 .text {
- position: absolute;
- align-self: center;
- padding: 0;
- box-sizing: border-box;
- width: 100%;
- }
- #u39_text {
- word-wrap: break-word;
- text-transform: none;
- }
- </style>
|