From 62b75c37e4771c15509c98a21293cd38b64133ab Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Thu, 26 May 2022 09:48:07 +0800 Subject: [PATCH] bug --- src/saas/AppCountryAlbum/AlbumDetail.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/saas/AppCountryAlbum/AlbumDetail.vue b/src/saas/AppCountryAlbum/AlbumDetail.vue index 37f93710..ad86a63f 100644 --- a/src/saas/AppCountryAlbum/AlbumDetail.vue +++ b/src/saas/AppCountryAlbum/AlbumDetail.vue @@ -179,6 +179,8 @@ getList () { if (this.isMore) return + + this.$loading() this.$http.post(`/api/appalbumphoto/DetailByAlbumID`, null, { params: { albumId: this.id, @@ -196,6 +198,7 @@ if (res.data.records.length < 10) { this.isMore = true + uni.hideLoading() return false } @@ -206,6 +209,8 @@ this.coverImg = res.data.records[0].photoUrl } } + + uni.hideLoading() }) } },