Browse Source

移除登录成功token失效时间!

daxiongYang 7 years ago
parent
commit
7f59d9b856
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/common/login.vue

+ 1 - 1
src/views/common/login.vue

@ -80,7 +80,7 @@
80 80
              })
81 81
            }).then(({data}) => {
82 82
              if (data && data.code === 0) {
83
                this.$cookie.set('token', data.token, { expires: `${data.expire || 0}s` })
83
                this.$cookie.set('token', data.token)
84 84
                this.$router.replace({ name: 'home' })
85 85
              } else {
86 86
                this.getCaptcha()