fix: fix the bug of the play view

This commit is contained in:
Rogee
2024-12-13 11:34:09 +08:00
parent 1f8371b878
commit 7c52823610
5 changed files with 23 additions and 6 deletions

View File

@@ -4,15 +4,15 @@
<van-back-top bottom="80" />
<van-list v-model:loading="loading" :finished="finished" finished-text="没有更多了" offset="100" @load="loadData">
<van-list style="padding-bottom: 3em" v-model:loading="loading" :finished="finished" finished-text="没有更多了"
offset="100" @load="loadData">
<list-item-card v-for="item in items" :key="item" :item="item" :bought="bought" />
</van-list>
</template>
<script>
import { defineComponent, ref, onMounted } from "vue";
import ListItemCard from "@/components/ListItemCard.vue";
import request from "@/utils/request";
import { defineComponent, ref } from "vue";
export default defineComponent({
props: {