mall-app-t/pages/index/product.vue

70 lines
1.6 KiB
Vue
Raw Normal View History

2024-05-22 15:42:13 +08:00
<template>
2024-05-27 00:51:03 +08:00
<pb-layout title="产品" navbar="normal" tabbar="/pages/index/product" :bgStyle="bgStyle" opacityBgUi="bg-white"
color="black">
<view v-if="StaticRange.pagination.total > 0" class="goods-list ss-m-t-20">
<view class="ss-p-l-20 ss-p-r-20" v-for="item in state.pagination.list" :key="item.id">
<p-goods-column size="lg" :data="item" :topRadius="10" bottomRadius="10"
@click="peach.$router.go('/pages/goods/index', { id: item.id })" />
</view>
</view>
<uni-load-more v-if="StaticRange.pagination.total > 0" :status="StaticRange.loadStatus" :content-text="{
contentdown: '上拉加载更多'
}" @click="loadMore" />
<p-empty v-if="StaticRange.pagination.total === 0" icon="/static/soldout-empty.png" text="暂无产品" />
</pb-layout>
2024-05-22 15:42:13 +08:00
</template>
<script setup>
2024-05-27 00:51:03 +08:00
import { ref } from 'vue'
import { onLoad, onReachBottom } from '@dcloudio/uni-app'
import peach from '@/peach'
import _ from 'lodash'
import { resetPagination } from '@/peach/util'
2024-05-22 15:42:13 +08:00
const bgStyle = {
2024-05-27 00:51:03 +08:00
backgroundImage: '',
backgroundColor: '',
description: '',
}
const state = ref({
pagination: {
list: [],
total: 0,
pageNo: 1,
pageSize: 6
}
})
function emptyList() {
resetPagination(state.value.pagination)
}
function onSearch() {
emptyList()
getList()
2024-05-22 15:42:13 +08:00
}
2024-05-27 00:51:03 +08:00
function getList() {
}
function loadMore() {
if (state.value.loadStatus === 'noMore') {
return
}
state.value.pagination.pageNo++
getList()
}
onLoad(async (options) => {
getList()
})
onReachBottom(() => {
loadMore()
})
2024-05-22 15:42:13 +08:00
</script>