mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-uniapp.git
synced 2026-08-06 10:57:25 +08:00
- 将多个组件转换为 `<script setup>` 语法,提升可读性和性能 - 优化状态管理和事件处理逻辑,简化代码结构 - 更新样式和布局以适应新组件结构 - 添加新功能和修复已知问题,提升用户体验
449 lines
10 KiB
Vue
449 lines
10 KiB
Vue
<template>
|
|
<view class="index">
|
|
<user-point />
|
|
<view class="index-head">
|
|
<!-- #ifdef H5 -->
|
|
<view class="list-scroll-content list-scroll-content-h5">
|
|
<view class="index-head-navs">
|
|
<view
|
|
class="index-head-nav"
|
|
v-for="(ele, index) in categoryIndexData"
|
|
:key="index"
|
|
:class="{ 'index-head-nav-active': tabIndex == index }"
|
|
@click="setCat(index)"
|
|
>
|
|
{{ ele.name }}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- #endif -->
|
|
<!-- #ifndef H5 -->
|
|
<scroll-view scroll-x class="list-scroll-content" :scroll-left="currentLeft" scroll-with-animation>
|
|
<view class="index-head-navs">
|
|
<view class="index-head-nav" v-for="(ele, index) in categoryIndexData" :key="index"
|
|
:class="{ 'index-head-nav-active': tabIndex == index }" @click="setCat(index)">
|
|
{{ ele.name }}
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|
|
<!-- #endif -->
|
|
</view>
|
|
|
|
<!-- #ifdef H5 -->
|
|
<view class="tab-content-h5">
|
|
<view class="index-items">
|
|
<view
|
|
class="index-item"
|
|
v-for="(item, key) in categoryIndexData[tabIndex].goods"
|
|
:key="item.id || key"
|
|
@click="toGoods(item)"
|
|
>
|
|
<view class="index-item-img">
|
|
<image
|
|
class="index-item-image"
|
|
:src="item.thumbnail"
|
|
mode="aspectFit"
|
|
lazy-load
|
|
></image>
|
|
</view>
|
|
<view class="index-item-info">
|
|
<view class="index-item-title">{{ item.goodsName || item.promotionName || '' }}</view>
|
|
<view class="index-item-price">
|
|
<view class="point">
|
|
<text class="point-num">{{ item.points != null ? item.points : 0 }}</text>
|
|
<text class="point-unit">积分</text>
|
|
</view>
|
|
<text class="tipsMkt">¥{{ unitPrice(item.originalPrice) }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<uni-load-more
|
|
:status="categoryIndexData[tabIndex].loadStatus"
|
|
@clickLoadMore="loadMore"
|
|
></uni-load-more>
|
|
</view>
|
|
<!-- #endif -->
|
|
|
|
<!-- #ifndef H5 -->
|
|
<swiper :current="tabIndex" class="swiper-box" @change="ontabchange" duration="300">
|
|
<swiper-item v-for="(nav, index) in categoryIndexData" :key="index" class="swiper-item">
|
|
<scroll-view class="scroll-v" enableBackToTop="true" scroll-with-animation scroll-y @scrolltolower="loadMore">
|
|
<view class="index-items">
|
|
<view class="index-item" v-for="(item, key) in nav.goods" :key="item.id || key" @click="toGoods(item)">
|
|
<view class="index-item-img">
|
|
<image
|
|
class="index-item-image"
|
|
:src="item.thumbnail"
|
|
mode="aspectFit"
|
|
lazy-load
|
|
></image>
|
|
</view>
|
|
<view class="index-item-info">
|
|
<view class="index-item-title">{{ item.goodsName || item.promotionName || '' }}</view>
|
|
<view class="index-item-price">
|
|
<view class="point">
|
|
<text class="point-num">{{ item.points != null ? item.points : 0 }}</text>
|
|
<text class="point-unit">积分</text>
|
|
</view>
|
|
<text class="tipsMkt">¥{{ unitPrice(item.originalPrice) }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<uni-load-more :status="nav.loadStatus"></uni-load-more>
|
|
</scroll-view>
|
|
</swiper-item>
|
|
</swiper>
|
|
<!-- #endif -->
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, watch } from 'vue'
|
|
import {
|
|
onLoad,
|
|
onShow,
|
|
onPullDownRefresh,
|
|
onReachBottom,
|
|
onPageScroll,
|
|
} from '@dcloudio/uni-app'
|
|
import { getPointsCategory, getPointsGoods } from '@/api/promotions.js'
|
|
import userPoint from './user.vue'
|
|
import { unitPrice } from '@/utils/filters.js'
|
|
|
|
interface CategoryTab {
|
|
categoryId: number | string
|
|
name: string
|
|
loadStatus: string
|
|
goods: any[]
|
|
params: {
|
|
pageNumber: number
|
|
pageSize: number
|
|
pointsGoodsCategoryId: number | string
|
|
}
|
|
}
|
|
|
|
function createDefaultCategory(): CategoryTab[] {
|
|
return [
|
|
{
|
|
categoryId: 0,
|
|
name: '全部',
|
|
loadStatus: 'more',
|
|
goods: [],
|
|
params: {
|
|
pageNumber: 1,
|
|
pageSize: 10,
|
|
pointsGoodsCategoryId: '',
|
|
},
|
|
},
|
|
]
|
|
}
|
|
|
|
const tabIndex = ref(0)
|
|
const categoryIndexData = ref<CategoryTab[]>(createDefaultCategory())
|
|
const currentLeft = ref(0)
|
|
const flag = ref(true)
|
|
|
|
onLoad(() => {})
|
|
|
|
async function onPullDownRefreshHandler() {
|
|
// #ifndef H5
|
|
categoryIndexData.value[tabIndex.value].goods = []
|
|
categoryIndexData.value[tabIndex.value].params.pageNumber = 1
|
|
categoryIndexData.value[tabIndex.value].loadStatus = 'more'
|
|
loadGoods()
|
|
// #endif
|
|
}
|
|
|
|
onPullDownRefresh(onPullDownRefreshHandler)
|
|
|
|
// #ifndef H5
|
|
onPageScroll((e) => {
|
|
if (e.scrollTop < -40 && flag.value) {
|
|
flag.value = false
|
|
categoryIndexData.value[tabIndex.value].goods = []
|
|
categoryIndexData.value[tabIndex.value].params.pageNumber = 1
|
|
categoryIndexData.value[tabIndex.value].loadStatus = 'more'
|
|
uni.startPullDownRefresh()
|
|
loadGoods()
|
|
}
|
|
})
|
|
// #endif
|
|
|
|
watch(tabIndex, () => {
|
|
if (
|
|
categoryIndexData.value[tabIndex.value].goods.length == 0 &&
|
|
categoryIndexData.value[tabIndex.value].params.pageNumber == 1
|
|
) {
|
|
loadGoods()
|
|
}
|
|
})
|
|
|
|
onShow(async () => {
|
|
categoryIndexData.value = createDefaultCategory()
|
|
|
|
const response = await getPointsCategory()
|
|
|
|
if (response.data.success) {
|
|
const navData = response.data.result.records
|
|
navData.forEach((item: any) => {
|
|
categoryIndexData.value.push({
|
|
categoryId: item.id,
|
|
goods: [],
|
|
loadStatus: 'more',
|
|
name: item.name,
|
|
params: {
|
|
pageNumber: 1,
|
|
pageSize: 10,
|
|
pointsGoodsCategoryId: item.id,
|
|
},
|
|
})
|
|
})
|
|
}
|
|
|
|
loadGoods()
|
|
})
|
|
|
|
function toGoods(item: any) {
|
|
uni.navigateTo({
|
|
url: `/pages/promotion/point/detail?id=${item.id}`,
|
|
})
|
|
}
|
|
|
|
async function loadGoods() {
|
|
const index = tabIndex.value
|
|
|
|
const response = await getPointsGoods(categoryIndexData.value[index].params)
|
|
if (response.data.success) {
|
|
categoryIndexData.value[index].goods.push(
|
|
...response.data.result.records
|
|
)
|
|
if (response.data.result.records.length < 10) {
|
|
categoryIndexData.value[index].loadStatus = 'noMore'
|
|
}
|
|
setTimeout(() => {
|
|
flag.value = true
|
|
}, 3000)
|
|
}
|
|
|
|
// #ifndef H5
|
|
uni.stopPullDownRefresh()
|
|
// #endif
|
|
}
|
|
|
|
function setCat(type: number) {
|
|
tabIndex.value = type
|
|
}
|
|
|
|
function ontabchange(e: any) {
|
|
tabIndex.value = e.detail.current
|
|
if (e.detail.current > 3) {
|
|
currentLeft.value = (e.detail.current - 3) * 70
|
|
} else {
|
|
currentLeft.value = 0
|
|
}
|
|
}
|
|
|
|
function loadMore() {
|
|
if (categoryIndexData.value[tabIndex.value].loadStatus !== 'more') {
|
|
return
|
|
}
|
|
categoryIndexData.value[tabIndex.value].params.pageNumber++
|
|
loadGoods()
|
|
}
|
|
|
|
// #ifdef H5
|
|
onReachBottom(() => {
|
|
if (categoryIndexData.value[tabIndex.value].loadStatus !== 'more') {
|
|
return
|
|
}
|
|
loadMore()
|
|
})
|
|
// #endif
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
page {
|
|
height: 100%;
|
|
}
|
|
.tipsMkt {
|
|
flex-shrink: 0;
|
|
color: #c0c4cc;
|
|
font-size: 24rpx !important;
|
|
text-decoration: line-through;
|
|
margin-left: 12rpx;
|
|
}
|
|
|
|
|
|
.index {
|
|
height: 100vh;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
|
|
// #ifdef H5
|
|
height: auto;
|
|
min-height: 100vh;
|
|
overflow: visible;
|
|
// #endif
|
|
}
|
|
|
|
.index-head {
|
|
background: #fff;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.list-scroll-content {
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
height: 100rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.index-head-navs {
|
|
width: 100%;
|
|
height: 92rpx;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.index-head-nav {
|
|
padding-bottom: 8rpx;
|
|
margin: 20rpx;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
white-space: nowrap;
|
|
font-size: 30rpx;
|
|
color: #333;
|
|
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
&-active {
|
|
border-bottom: 4rpx solid $light-color;
|
|
}
|
|
}
|
|
|
|
// #ifdef H5
|
|
.list-scroll-content-h5 {
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
.index-head-navs {
|
|
display: inline-flex;
|
|
min-width: 100%;
|
|
}
|
|
}
|
|
|
|
.tab-content-h5 {
|
|
padding-bottom: 40rpx;
|
|
}
|
|
// #endif
|
|
|
|
.swiper-box {
|
|
flex: 1;
|
|
min-height: 0;
|
|
|
|
.scroll-v {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.index-items {
|
|
padding: 20rpx 20rpx 0;
|
|
background-color: #f7f7f7;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.index-item {
|
|
width: calc(50% - 9rpx);
|
|
background-color: #fff;
|
|
margin-bottom: 20rpx;
|
|
border-radius: 16rpx;
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.index-item-img {
|
|
width: 100%;
|
|
height: 320rpx;
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.index-item-image {
|
|
width: 100%;
|
|
height: 320rpx;
|
|
display: block;
|
|
}
|
|
|
|
.index-item-info {
|
|
position: relative;
|
|
z-index: 1;
|
|
flex: 1;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.index-item-title {
|
|
font-size: 26rpx;
|
|
color: #333;
|
|
padding: 16rpx 20rpx 0;
|
|
line-height: 1.4;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.index-item-price {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 28rpx;
|
|
color: #ff3c2a;
|
|
padding: 12rpx 20rpx 20rpx;
|
|
|
|
.point {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: baseline;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.point-num {
|
|
font-size: 42rpx;
|
|
font-weight: bold;
|
|
color: #ff3c2a;
|
|
line-height: 1;
|
|
}
|
|
|
|
.point-unit {
|
|
margin-left: 6rpx;
|
|
font-size: 24rpx;
|
|
color: #ff3c2a;
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
</style>
|
|
<style lang="scss">
|
|
/* #ifdef H5 */
|
|
page {
|
|
height: auto;
|
|
min-height: 100vh;
|
|
overflow-y: auto;
|
|
}
|
|
/* #endif */
|
|
</style>
|