fix layout

This commit is contained in:
jxxghp
2023-07-26 07:08:37 +08:00
parent 8917ea2a12
commit 4c7989cc66
7 changed files with 59 additions and 57 deletions
+9 -6
View File
@@ -123,13 +123,16 @@ async function fetchData({ done }: { done: any }) {
</script>
<template>
<VProgressCircular
<div
v-if="!isRefreshed"
size="48"
class="centered"
indeterminate
color="primary"
/>
class="mt-12 w-full text-center text-gray-500 text-sm flex flex-col items-center"
>
<VProgressCircular
size="48"
indeterminate
color="primary"
/>
</div>
<VInfiniteScroll
mode="intersect"
side="end"
+9 -10
View File
@@ -377,23 +377,22 @@ onBeforeMount(fetchData)
</VCol>
</VRow>
</VCard>
<VProgressCircular
v-if="!isRefreshed && !props.keyword"
size="48"
class="centered"
indeterminate
color="primary"
/>
<div
v-if="!isRefreshed && props.keyword"
class="top-centered mt-12 w-full text-center text-gray-500 text-sm flex flex-col items-center"
v-if="!isRefreshed"
class="mt-12 w-full text-center text-gray-500 text-sm flex flex-col items-center"
>
<VProgressCircular
v-if="!props.keyword"
size="48"
indeterminate
color="primary"
/>
<VProgressCircular
v-if="props.keyword"
class="mb-3"
color="primary"
:model-value="progressValue"
size="64"
width="7"
/>
<span>{{ progressText }}</span>
</div>