SpringBlade 可以通过url地址直接访问页面
简单点,可以这么改
setStore({name: 'token', content: state.token, type: 'session'})
改为
setStore({name: 'token', content: state.token});
setStore({name: 'token', content: state.token, type: 'session'})
改为
setStore({name: 'token', content: state.token});