Sfoglia il codice sorgente

调整登录验证码

daxiong.yang 7 anni fa
parent
commit
267b005d49
3 ha cambiato i file con 17 aggiunte e 3 eliminazioni
  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,8 +3,8 @@ import requestUrl from '../requestUrl'
3 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,3 +47,12 @@ export function treeDataTranslate (data, id = 'id', pid = 'parentId') {
47 47
export function getStringLength (s) {
48 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,12 +38,14 @@
38 38
39 39
<script>
40 40
  import API from '@/api'
41
  import { getUUID } from '@/utils'
41 42
  export default {
42 43
    data () {
43 44
      return {
44 45
        dataForm: {
45 46
          userName: '',
46 47
          password: '',
48
          uuid: '',
47 49
          captcha: ''
48 50
        },
49 51
        dataRule: {
@ -71,6 +73,7 @@
71 73
            var params = {
72 74
              'username': this.dataForm.userName,
73 75
              'password': this.dataForm.password,
76
              'uuid': this.dataForm.uuid,
74 77
              'captcha': this.dataForm.captcha
75 78
            }
76 79
            API.common.login(params).then(({data}) => {
@ -78,6 +81,7 @@
78 81
                this.$cookie.set('token', data.token)
79 82
                this.$router.replace({ name: 'home' })
80 83
              } else {
84
                this.getCaptcha()
81 85
                this.$message.error(data.msg)
82 86
              }
83 87
            })
@ -86,7 +90,8 @@
86 90
      },
87 91
      // 获取验证码
88 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
  }