代码提交

This commit is contained in:
黄少君
2023-11-17 20:55:32 +08:00
parent 35b43ffd97
commit c3e62f8922
73 changed files with 1808 additions and 781 deletions

View File

@ -51,7 +51,7 @@
</template>
<Empty
v-else
:iconSrc="emptyIcon"
:iconSrc="emptyCollectIcon"
>
这里空空如也~
</Empty>
@ -60,7 +60,10 @@
<!-- 加载完毕-->
<ListLoadOver v-if="loadend" />
</container>
</layout>
<ReturnTop :scroll-top="scrollTop" />
</template>
<script setup>
@ -72,9 +75,11 @@ import { useRouter } from "@/hooks/useRouter";
import Empty from "@/components/Empty/index.vue"
import ListLoadOver from "@/components/ListLoadOver/index.vue"
import ListLoadLoading from "@/components/ListLoadLoading/index.vue"
import { emptyCollectIcon } from "@/utils/images";
import ReturnTop from "@/components/ReturnTop/index.vue"
import { useScroll } from "@/hooks/useScroll";
import emptyIcon from "@/static/icon/empty/收藏.png"
const {scrollTop} = useScroll()
const {getParams, goBack} = useRouter()
const {keyword, refresh, sid, couponId, dataList, loadend, loading, listEmpty} = usePage(getProductList)