标签:ext 技术 oca token bind cat 简单 vue account
继续完善项目
相关代码
mutations: {
setQz (state, qz) {
state.qz = qz
}
},
actions: {
// 通过cookie的数据 异步刷新用户的强智基本信息
updataQzInfo (context) {
// 通过保存的cook来给params赋值
const params = {
xh: this.state.qz.user.useraccount,
pwd: this.state.qz.user.userpasswd,
method: ‘authUser‘
}
qz.getQzInfo(params).then(res => {
if (res.token === ‘-1‘) {
console.log(‘密码错误或学号错误:‘ + res.token)
// this.$router.push(‘/xhbind‘) 报错当前的url
VueCookies.set(‘re_url‘, window.location.href)
window.location.href = ‘/xhbind‘
} else {
context.commit(‘setQz‘, res)
}
})
}
}
标签:ext 技术 oca token bind cat 简单 vue account
原文地址:https://www.cnblogs.com/chang1024/p/12601887.html