diff --git a/src/saas/AppCountryAlbum/AlbumDetail.vue b/src/saas/AppCountryAlbum/AlbumDetail.vue index 363fccd3..dea8115e 100644 --- a/src/saas/AppCountryAlbum/AlbumDetail.vue +++ b/src/saas/AppCountryAlbum/AlbumDetail.vue @@ -137,9 +137,9 @@ }, getTotalInfo (id) { - this.$http.post(`/api/appalbumphoto/photoDetail?id=${id}`).then(res => { + this.$http.post(`/api/appalbumphoto/photoDetail?id=${id}&size=1000`).then(res => { if (res.code === 0) { - this.totalInfo = res.data + this.totalInfo = res.data.records } }) },