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

增加验证

上级 2089c08d
......@@ -122,18 +122,6 @@ export function requestFileInfo(url, datas) {
export function giveFilePostDataInfoForTrue(datas, url) {
const getUserInfo = () => {
let x = localStorage.getItem('user');
if (isJSON(x)) {
x = JSON.parse(x);
return x;
} else {
return {
groupsId: 'pub',
};
}
};
if (!window.CONFIG?.IS_SAFE) {
return {
datas,
......
......@@ -41,6 +41,9 @@ export const getUserInfo = () => {
let x = localStorage.getItem('user');
if(isJSON(x)){
x = JSON.parse(x);
if(!x.groupsId){
x.groupsId = 'pub';
}
return x;
}else{
return {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论