This commit is contained in:
jxxghp
2024-09-18 08:29:06 +08:00
parent 8e7be239ee
commit e6b6d3ca27

View File

@@ -145,7 +145,7 @@ const dropdownItems = ref([
} }
" "
/> />
<VList lines="two"> <VList lines="two" v-if="historyList.length > 0">
<VInfiniteScroll mode="intersect" side="end" :items="historyList" class="overflow-hidden" @load="loadHistory"> <VInfiniteScroll mode="intersect" side="end" :items="historyList" class="overflow-hidden" @load="loadHistory">
<template #loading> <template #loading>
<LoadingBanner /> <LoadingBanner />
@@ -204,6 +204,7 @@ const dropdownItems = ref([
</template> </template>
</VInfiniteScroll> </VInfiniteScroll>
</VList> </VList>
<VCardText v-if="historyList.length === 0" class="text-center"> 没有已完成的订阅 </VCardText>
</VCard> </VCard>
<!-- 进度框 --> <!-- 进度框 -->
<ProgressDialog v-if="progressDialog" v-model="progressDialog" :text="progressText" /> <ProgressDialog v-if="progressDialog" v-model="progressDialog" :text="progressText" />