浏览代码

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

daxiongYang 7 年之前
父节点
当前提交
7f59d9b856
共有 1 个文件被更改,包括 1 次插入1 次删除
  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()