Skip to content

Commit

Permalink
fix(review): show 50 more records at once
Browse files Browse the repository at this point in the history
  • Loading branch information
ZTL-UwU committed Dec 9, 2023
1 parent da7023c commit 55b2aae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/manage/review.vue
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ onMounted(async () => {
<span class="self-center">
出于性能考虑,仅加载前 {{ showLength.unset }} 首歌
</span>
<UiButton variant="secondary" class="float-right ml-auto" @click="showLength.unset += 10">
<UiButton variant="secondary" class="float-right ml-auto" @click="showLength.unset += 50">
加载更多
</UiButton>
</UiAlertDescription>
Expand Down Expand Up @@ -305,7 +305,7 @@ onMounted(async () => {
<span class="self-center">
出于性能考虑,仅加载前 {{ showLength.approved }} 首歌
</span>
<UiButton variant="secondary" class="float-right ml-auto" @click="showLength.approved += 10">
<UiButton variant="secondary" class="float-right ml-auto" @click="showLength.approved += 50">
加载更多
</UiButton>
</UiAlertDescription>
Expand Down Expand Up @@ -342,7 +342,7 @@ onMounted(async () => {
<span class="self-center">
出于性能考虑,仅加载前 {{ showLength.rejected }} 首歌
</span>
<UiButton variant="secondary" class="float-right ml-auto" @click="showLength.rejected += 10">
<UiButton variant="secondary" class="float-right ml-auto" @click="showLength.rejected += 50">
加载更多
</UiButton>
</UiAlertDescription>
Expand Down

0 comments on commit 55b2aae

Please sign in to comment.