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