Skip to content

Commit

Permalink
fix; 修改我的空间验收问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Liang-Yaxin committed Oct 22, 2024
1 parent 22e1b89 commit 211907d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions web/src/management/pages/list/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ const activeValue = computed(() => {
return MenuType.PersonalGroup
} else if(menuType.value === MenuType.SpaceGroup) {
return MenuType.SpaceGroup
} else {
return ''
}
})
Expand Down
2 changes: 1 addition & 1 deletion web/src/management/stores/workSpace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const useWorkSpaceStore = defineStore('workSpace', () => {
if (res.code === CODE_MAP.SUCCESS) {
const { list, allList, total, notTotal } = res.data
let allTotal = notTotal
let group = list.map((item: GroupItem) => {
const group = list.map((item: GroupItem) => {
allTotal += item.surveyTotal
return {
id: item._id,
Expand Down

0 comments on commit 211907d

Please sign in to comment.