This commit is contained in:
aaron 2025-03-22 22:11:59 +08:00
parent bd0d987468
commit 1a313b2632

View File

@ -227,7 +227,7 @@ export default defineComponent({
const fetchCommunityList = async () => { const fetchCommunityList = async () => {
try { try {
communityLoading.value = true communityLoading.value = true
const res = await request.get('/api/community') const res = await request.get('/api/community?limit=1000')
if (res.code === 200 && res.data) { if (res.code === 200 && res.data) {
communityOptions.value = res.data.items || [] communityOptions.value = res.data.items || []
} }