Browse Source

调整登录验证码

daxiong.yang 7 years ago
parent
commit
267b005d49
3 changed files with 17 additions and 3 deletions
  1. 2 2
      src/api/modules/common.js
  2. 9 0
      src/utils/index.js
  3. 6 1
      src/views/login/index.vue

+ 2 - 2
src/api/modules/common.js

3
import requestParam from '../requestParam'
3
import requestParam from '../requestParam'
4
4
5
// 获取验证码
5
// 获取验证码
6
export function captcha () {
7
  return requestUrl('/captcha.jpg?t=' + new Date().getTime())
6
export function captcha (uuid) {
7
  return requestUrl(`/captcha.jpg?uuid=${uuid}`)
8
}
8
}
9
9
10
// 登录
10
// 登录

+ 9 - 0
src/utils/index.js

47
export function getStringLength (s) {
47
export function getStringLength (s) {
48
  return s.replace(/[\u4e00-\u9fa5\uff00-\uffff]/g, '**').length
48
  return s.replace(/[\u4e00-\u9fa5\uff00-\uffff]/g, '**').length
49
}
49
}
50
51
/**
52
 * 获取uuid
53
 */
54
export function getUUID () {
55
  return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
56
    return (c === 'x' ? (Math.random() * 16 | 0) : ('r&0x3' | '0x8')).toString(16)
57
  })
58
}

+ 6 - 1
src/views/login/index.vue

38
38
39
<script>
39
<script>
40
  import API from '@/api'
40
  import API from '@/api'
41
  import { getUUID } from '@/utils'
41
  export default {
42
  export default {
42
    data () {
43
    data () {
43
      return {
44
      return {
44
        dataForm: {
45
        dataForm: {
45
          userName: '',
46
          userName: '',
46
          password: '',
47
          password: '',
48
          uuid: '',
47
          captcha: ''
49
          captcha: ''
48
        },
50
        },
49
        dataRule: {
51
        dataRule: {
71
            var params = {
73
            var params = {
72
              'username': this.dataForm.userName,
74
              'username': this.dataForm.userName,
73
              'password': this.dataForm.password,
75
              'password': this.dataForm.password,
76
              'uuid': this.dataForm.uuid,
74
              'captcha': this.dataForm.captcha
77
              'captcha': this.dataForm.captcha
75
            }
78
            }
76
            API.common.login(params).then(({data}) => {
79
            API.common.login(params).then(({data}) => {
78
                this.$cookie.set('token', data.token)
81
                this.$cookie.set('token', data.token)
79
                this.$router.replace({ name: 'home' })
82
                this.$router.replace({ name: 'home' })
80
              } else {
83
              } else {
84
                this.getCaptcha()
81
                this.$message.error(data.msg)
85
                this.$message.error(data.msg)
82
              }
86
              }
83
            })
87
            })
86
      },
90
      },
87
      // 获取验证码
91
      // 获取验证码
88
      getCaptcha () {
92
      getCaptcha () {
89
        this.captchaPath = API.common.captcha()
93
        this.dataForm.uuid = getUUID()
94
        this.captchaPath = API.common.captcha(this.dataForm.uuid)
90
      }
95
      }
91
    }
96
    }
92
  }
97
  }