Skip to content

Commit

Permalink
fix: 修复问卷分组bug
Browse files Browse the repository at this point in the history
  • Loading branch information
skique committed Dec 2, 2024
1 parent 58a2c65 commit ca9a60b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions web/src/management/pages/list/components/SliderBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ const props = withDefaults(
const active = computed({
get: () => {
return props.activeValue
},
set: () => {}
return props.activeValue
},
set: () => {}
})
const emit = defineEmits(['select'])
Expand Down
2 changes: 0 additions & 2 deletions web/src/management/pages/list/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,7 @@ const fetchSurveyList = async (params?: any) => {
}
onMounted(() => {
fetchGroupList()
fetchSpaceList()
fetchSurveyList()
})
const modifyType = ref('add')
Expand Down
3 changes: 3 additions & 0 deletions web/src/management/styles/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
}
}
}
.el-message-box__status{
font-size: 24px;
}

0 comments on commit ca9a60b

Please sign in to comment.