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

24478 团委h5-活动管理,点击签到记录显示请求错误admin

上级 18ded40e
......@@ -155,7 +155,9 @@ export async function giveBase16EnCode(datas, url) { // 全局加解密函数.
if (url.indexOf(item.api) > -1) {
for (let g of item.key) {
if (g === 'allValues' && typeof datas[g] !== 'undefined') {
datas = await countAllValues(datas, item); // 循环中 不要写await
datas = await countAllValues(datas, item);
// 循环中 不要写await 为什么?
// https://www.bilibili.com/video/BV1G5411o73g
datas = giveKey('allValues', datas);
} else {
......
......@@ -17,8 +17,7 @@ export function setLoginToUrl(url) {
export function clearToken() {
localStorage.removeItem('antd-username');
localStorage.removeItem('antd-pro-token-onestop');
return localStorage.removeItem('antd-pro-oauth2')
return localStorage.removeItem('antd-pro-token');
}
export function setUsername(username) {
if(typeof username === 'object'){
......@@ -30,12 +29,10 @@ export function getUsername() {
return localStorage.getItem('antd-username');
}
export function setToken(token) {
return localStorage.setItem('antd-pro-oauth2', token);
return localStorage.setItem('antd-pro-token', token);
}
export function getToken() {
return localStorage.getItem('antd-pro-oauth2');
return localStorage.getItem('antd-pro-token');
}
export function isJSON(str) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论