This commit is contained in:
Captain.B 2020-02-20 15:19:11 +08:00
parent 681db17d4c
commit 2ededed640
1 changed files with 4 additions and 4 deletions

View File

@ -56,10 +56,10 @@
data() { data() {
return { return {
organizationList: [ organizationList: [
{ index: '7-1', name: '组织1'}, {index: '7-1', name: '组织1'},
], ],
workspaceList: [ workspaceList: [
{ index: '2-1', name: '无工作空间'}, {index: '2-1', name: '无工作空间'},
], ],
currentUserInfo: {}, currentUserInfo: {},
currentUserId: JSON.parse(Cookies.get(TokenKey)).id, currentUserId: JSON.parse(Cookies.get(TokenKey)).id,
@ -100,7 +100,7 @@
} }
}, },
initMenuData() { initMenuData() {
this.$get("/organization/list/userorg/" + this.currentUserId,response => { this.$get("/organization/list/userorg/" + this.currentUserId, response => {
this.organizationList = response.data; this.organizationList = response.data;
}) })
this.$get("/workspace/list/userworkspace/" + this.currentUserId, response => { this.$get("/workspace/list/userworkspace/" + this.currentUserId, response => {
@ -121,7 +121,7 @@
let user = {}; let user = {};
user.id = this.currentUserInfo.id; user.id = this.currentUserInfo.id;
user.lastSourceId = data.id; user.lastSourceId = data.id;
this.$post("/user/update", user); this.$post("/user/switch/source/" + user.lastSourceId, {});
window.location.reload(); window.location.reload();
} }
} }