diff --git a/src/views/deliveryman/List.vue b/src/views/deliveryman/List.vue index bdb3bb9..0c5eaee 100644 --- a/src/views/deliveryman/List.vue +++ b/src/views/deliveryman/List.vue @@ -227,7 +227,7 @@ export default defineComponent({ const fetchCommunityList = async () => { try { 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) { communityOptions.value = res.data.items || [] }