提交 8b27954b authored 作者: 钟是志's avatar 钟是志

token函数优化

上级 916a50d0
......@@ -29,11 +29,13 @@ export function setToken(value, time) {
export function getToken() {
const x = localStorage.getItem('antd-pro-token-onestop');
if (x && x.length > 11) {
setCookie('token', x, 1);
return x;
}
const y = localStorage.getItem('antd-pro-token');
if (y && y.length > 11) {
return y;
setCookie('token', x, 1);
return y;
}
return null;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论