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

获取用户的 groupsId 错误

上级 20026e83
......@@ -192,7 +192,14 @@ export const getListByTreeList = (params = {}) => {
};
export const getOneStopMyInfo = (params = {}) => {
return uaaRequest('/UserApi/getMy', params);
return uaaRequest('/UserApi/getMy', params).then((res) => {
if (res) {
if(!res.groupsId){
res.groupsId = 'pub';
}
localStorage.setItem('user', JSON.stringify(res));
}
});
};
export function getOneStopActiveMenus(key) {
......@@ -206,14 +213,7 @@ export function getOnestopKey(key = '', formKey = 'key_list', formValue = 'value
getOneStopActiveMenus()
.then((res) => {
});
getOneStopMyInfo({})
.then((res) => {
if (res) {
localStorage.setItem('user', JSON.stringify(res));
}
});
getOneStopMyInfo({});
return fetchTableData({
dataObjId: config.onestopConfigDataObjId || '1248169933162938368',
pageNo: 1,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论