Commit 22731cf5 by caoyanzhi

update: 请求参数

parent f8bb7c07
...@@ -45,7 +45,7 @@ export default { ...@@ -45,7 +45,7 @@ export default {
}, },
methods: { methods: {
getMenuList() { getMenuList() {
getRequest('/haoban-manage3-web/get-haoban-menu', { requestProject: 'haoban-manage-web' }).then(res => { getRequest('/haoban-manage3-web/get-haoban-menu', {}).then(res => {
const { errorCode, result } = res.data || []; const { errorCode, result } = res.data || [];
if (errorCode != 1) { if (errorCode != 1) {
errorMsg.errorMsg(res.data); errorMsg.errorMsg(res.data);
......
...@@ -168,7 +168,6 @@ export default { ...@@ -168,7 +168,6 @@ export default {
that.brandListData.forEach(ele => { that.brandListData.forEach(ele => {
if (ele.enterpriseId == val) { if (ele.enterpriseId == val) {
that.activeBrand = ele.enterpriseId; that.activeBrand = ele.enterpriseId;
sessionStorage.setItem('userInfoBrandId', val);
} }
}); });
that.getLoginData(); that.getLoginData();
......
...@@ -203,7 +203,6 @@ export default { ...@@ -203,7 +203,6 @@ export default {
let that = this; let that = this;
that.activeBrand = id; that.activeBrand = id;
that.activeGroup = groupId; that.activeGroup = groupId;
sessionStorage.setItem('userInfoBrandId', id);
this.getInfo(id); this.getInfo(id);
that.getExpired(); // 到期通知 that.getExpired(); // 到期通知
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment