feat: 优化beerCoin页面加载更多功能,提升用户体验 - 优化标签切换时的加载效果,避免闪动 - 完善加载更多功能和状态展示 - 添加加载动画和友好提示 - 优化页面整体样式和交互

This commit is contained in:
davy 2025-04-04 14:25:25 +08:00
parent 17cb5edb5c
commit 2fdbba6fa0

View File

@ -1,326 +1,545 @@
<template>
<view class="page-content">
<!-- :style="{'padding-top': statusBaeHeight + 60 + 'px'}" -->
<view class="flex" style="padding-top: 24rpx;">
<view class="left" @click="toPage">
<view>品牌啤酒币</view>
<view class="flex justify-between align-end" style="margin-bottom: 26rpx;">
<text class="fs-20">{{coinList.length}}家品牌方</text>
<view class="num">
{{ totalCoin}}
<text class="cuIcon-rechargefill xl"
style="color:#FEE034;font-size: 30rpx;margin-left: 10rpx;"></text>
<view class="page-container">
<!-- 顶部币种展示 -->
<view class="coin-section">
<view class="coin-box left-box">
<view class="title">通用啤酒币</view>
<view class="amount-row">
<text class="amount">{{commonCoin}}</text>
<text class="cuIcon-rechargefill coin-icon"></text>
</view>
<view class="desc">*用于抵扣任意品牌啤酒币</view>
</view>
<swiper class="coin-box right-box"
:current="currentBrandIndex"
@change="onSwiperChange"
:duration="500"
circular
>
<swiper-item v-for="(item, index) in sortedBrandCoins" :key="index">
<view class="brand-content">
<view class="brand-header">
<image class="brand-logo" :src="item.logo" mode="aspectFill"></image>
<text class="title">{{item.name}}</text>
</view>
<view class="amount-row">
<text class="amount">{{item.balance}}</text>
<text class="cuIcon-rechargefill coin-icon"></text>
</view>
<view class="desc">{{item.exchangeCount}}款热门商品可兑换</view>
</view>
</swiper-item>
</swiper>
</view>
<!-- 标签栏 -->
<view class="tab-section" :class="{'fixed': isTabFixed}">
<view
class="tab-item"
:class="{'active': curTag === index}"
v-for="(item, index) in ['全部', '关注厂牌', '人气排名', '最新发布']"
:key="index"
@click="changeTag(index)"
>{{item}}</view>
</view>
<!-- 商品列表 -->
<view class="goods-list">
<view
class="goods-item"
v-for="(item, index) in goodsList"
:key="index"
@click="toDetail(item)"
>
<image class="goods-image" :src="item.goodsCover" mode="aspectFill"></image>
<view class="goods-title text-cut">{{item.goodsName}}</view>
<view class="goods-price">
<view class="price-left">
<text class="price-num">{{item.redeemedNum}}</text>
<text class="cuIcon-rechargefill coin-icon"></text>
</view>
<text class="brand-name">{{item.brandName}}</text>
</view>
</view>
<view class="text-right fs-20" style="color: #979797;">多品牌累计数量</view>
</view>
<view class="right">
<view>通用啤酒币</view>
<view class="num text-right" style="margin-bottom: 26rpx;">
{{commonCoin}}
<text class="cuIcon-rechargefill xl"
style="color:#FEE034;font-size: 30rpx;margin-left: 10rpx;"></text>
<!-- 加载更多 -->
<view class="load-more">
<template v-if="goodsList.length > 0">
<view v-if="loading" class="loading">
<text class="cuIcon-loading2 iconfont-spin"></text>
<text class="loading-text">加载中...</text>
</view>
<view class="text-right fs-20" style="color: #979797;">用于抵扣任意品牌啤酒币</view>
</view>
</view>
<view class="flex justify-start" style="margin-bottom: 28rpx;margin-top: 28rpx;">
<view class="text-sm tag" :class="{'active-tag': curTag == 0}" @click="changeTag(0)">热门推荐</view>
<view class="text-sm tag" :class="{'active-tag': curTag == 1}" @click="changeTag(1)">关注厂牌</view>
<view class="text-sm tag" :class="{'active-tag': curTag == 2}" @click="changeTag(2)">人气优先</view>
</view>
<view class="goods-container">
<scroll-view scroll-y enable-flex class="flex justify-start flex-wrap" style="height: 100%;"
lower-threshold="20" @scrolltolower="pageChange">
<view class="goods-item" v-for="(item, index) in goodsList" :key="index" @click="toDetail(item)">
<view class="cover-box">
<image :src="item.goodsCover" class="cover"></image>
<!-- <view class="like">
<text v-if="index % 2 == 0" class="cuIcon-like" style="color: #1E2019"></text>
<text v-else class="cuIcon-likefill" style="color: pink"></text>
</view> -->
</view>
<view class="title">
<text>{{ item.goodsName }}</text>
</view>
<view class="flex justify-between align-center" style="padding:26rpx 16rpx">
<view class="flex align-center">
<text class="num">{{ item.redeemedNum}}</text>
<image src="@/static/beerCoin.png" style="width: 30rpx;height: 30rpx;margin-left: 20rpx;">
</image>
</view>
<!-- <text style="color: #979797;font-size: 20rpx;">青岛啤酒</text> -->
</view>
</view>
<view class="cu-load" style="width: 100%;"
:class="loading?'loading': goodsList.length == total ? 'over' :'more'"></view>
</scroll-view>
<text v-else-if="isLoadAll" class="no-more">已经没有更多啦~</text>
<text v-else class="pull-tip">上拉加载更多</text>
</template>
<text v-else-if="!loading" class="empty">暂无数据</text>
</view>
</view>
</template>
<script>
import {
getGoodsList,
getStoreCoinBalance,
<style lang="scss" scoped>
/* 页面容器样式 */
.page-container {
min-height: 100vh;
background: #F6F7FB;
box-sizing: border-box;
padding: 24rpx;
}
/* 顶部币种展示区域 */
.coin-section {
display: flex;
justify-content: space-between;
margin-bottom: 24rpx;
/* 币种卡片通用样式 */
.coin-box {
background: #FFFFFF;
border-radius: 16rpx;
padding: 24rpx;
box-sizing: border-box;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04); //
border: 1rpx solid rgba(242, 242, 242, 0.8); //
/* 币种标题样式 */
.title {
font-size: 28rpx;
color: #333333;
font-weight: 600;
line-height: 20rpx;
margin-bottom: 16rpx;
}
/* 币种数量行样式 */
.amount-row {
margin-bottom: 26rpx;
display: flex;
align-items: center;
/* 数量文字样式 */
.amount {
font-size: 48rpx;
color: #1A1A1A;
font-weight: 600;
}
/* 币种图标样式 */
.coin-icon {
color: #FFD700;
font-size: 30rpx;
margin-left: 10rpx;
}
}
/* 底部描述文字样式 */
.desc {
font-size: 20rpx;
font-weight: normal;
line-height: 130%;
color: #606060;
}
}
/* 左侧通用啤酒币卡片样式 */
.left-box {
width: 298rpx;
height: 180rpx;
background: #FFFFFF;
}
/* 右侧品牌啤酒币轮播卡片样式 */
.right-box {
width: 382rpx;
height: 180rpx;
background: #FFFFFF;
/* 品牌内容容器 */
.brand-content {
height: 100%;
/* 品牌标题区域 */
.brand-header {
display: flex;
align-items: center;
margin-bottom: 16rpx;
/* 品牌logo样式 */
.brand-logo {
width: 36rpx;
height: 36rpx;
border-radius: 8rpx;
margin-right: 12rpx;
}
}
}
}
}
/* 标签栏样式 */
.tab-section {
display: flex;
margin-bottom: 28rpx;
padding: 24rpx;
background: #FFFFFF;
z-index: 99;
width: 100%;
box-sizing: border-box;
/* 固定定位状态样式 */
&.fixed {
position: fixed;
left: 0;
right: 0;
top: 0;
margin-bottom: 0;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04);
}
/* 标签项样式 */
.tab-item {
width: 144rpx;
height: 64rpx;
line-height: 64rpx;
font-size: 24rpx;
font-weight: 500;
text-align: center;
color: #666666;
background: #F9F9F9;
border-radius: 12rpx;
margin-right: 16rpx;
/* 激活状态样式 */
&.active {
color: #FFFFFF;
background: #D42E78;
}
&:last-child {
margin-right: 0;
}
}
}
/* 商品列表样式 */
.goods-list {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: v-bind('isTabFixed ? "112rpx" : "0"');
/* 商品项样式 */
.goods-item {
width: 336rpx;
background: #FFFFFF;
border-radius: 16rpx;
margin-bottom: 24rpx;
overflow: hidden;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04); //
/* 商品图片样式 */
.goods-image {
width: 100%;
height: 258rpx;
background: #F5F5F5;
}
/* 商品标题样式 */
.goods-title {
padding: 16rpx;
font-size: 24rpx;
color: #1A1A1A;
font-weight: 600;
}
/* 商品价格区域样式 */
.goods-price {
padding: 16rpx;
display: flex;
justify-content: space-between;
align-items: center;
/* 价格左侧区域 */
.price-left {
display: flex;
align-items: center;
/* 价格数字样式 */
.price-num {
font-size: 32rpx;
color: #1A1A1A;
font-weight: bold;
}
/* 价格图标样式 */
.coin-icon {
color: #FFD700;
font-size: 24rpx;
margin-left: 12rpx;
}
}
/* 品牌名称样式 */
.brand-name {
font-size: 20rpx;
color: #808080;
background: #F6F7FB;
padding: 4rpx 12rpx;
border-radius: 20rpx;
}
}
}
}
/* 加载更多提示样式 */
.load-more {
text-align: center;
padding: 24rpx;
color: #999999;
font-size: 24rpx;
.loading {
display: flex;
align-items: center;
justify-content: center;
.iconfont-spin {
animation: loading-rotate 1s linear infinite;
margin-right: 8rpx;
}
.loading-text {
color: #666666;
}
}
.no-more {
color: #999999;
}
.pull-tip {
color: #666666;
}
.empty {
color: #999999;
font-size: 28rpx;
}
}
@keyframes loading-rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* 文本截断样式 */
.text-cut {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
</style>
<script>
import { getGoodsList, getStoreCoinBalance } from '@/api/bar.js'
} from '@/api/bar.js'
export default {
data() {
return {
statusBaeHeight: 40,
curTag: 0,
tabCur: 0,
loading: false,
goodsList: [],
queryForm: {
pageNum: 1,
pageSize: 4
pageSize: 10,
status: 0
},
total: 0,
totalCoin: 0,
commonCoin: 0,
coinList:[]
};
currentBrandIndex: 0,
sortedBrandCoins: [
{
id: 1,
name: '青岛啤酒',
logo: '/static/images/brand1.png',
balance: 120,
exchangeCount: 5
},
{
id: 2,
name: '百威啤酒',
logo: '/static/images/brand2.png',
balance: 80,
exchangeCount: 3
},
{
id: 3,
name: '雪花啤酒',
logo: '/static/images/brand3.png',
balance: 50,
exchangeCount: 2
}
],
isTabFixed: false,
statusBarHeight: 0,
tabOffsetTop: 160, //
isLoadAll: false, //
}
},
onLoad() {
// setTimeout(() => {
// uni.setNavigationBarColor({
// frontColor: '#000000',
// backgroundColor: '#FFFFFF',
// animation: {
// duration: 400,
// timingFunc: 'easeIn'
// }
// })
// }, 500)
// this.statusBaeHeight = uni.getWindowInfo.statusBarHeight
this.getGoodsListFun()
},
onShow() {
this.getStoreCoinBalanceFun()
},
methods: {
tabSelect(e) {
console.log(e)
this.tabCur = e.currentTarget.dataset.id;
},
changeTag(key) {
this.curTag = key
this.queryForm.status = key
this.queryForm.pageNum = 1
this.goodsList = []
//
const systemInfo = uni.getSystemInfoSync()
this.statusBarHeight = systemInfo.statusBarHeight
this.getGoodsListFun()
},
toPage() {
uni.navigateTo({
url: "/pagesCoin/coinCollect"
})
onShow() {
this.getStoreCoinBalanceFun()
},
//
toDetail(item) {
uni.navigateTo({
url: "/pagesCoin/goodsDetail?id=" + item.id + "&breweryId=" + item.breweryId
})
//
onPageScroll(e) {
this.isTabFixed = e.scrollTop >= this.tabOffsetTop
},
//
getGoodsListFun() {
this.loading = true
uni.showLoading({
mask: true
})
getGoodsList(this.queryForm).then(res => {
// this.goodsList = this.goodsList.concat(res.rows)
//
onReachBottom() {
this.loadMore()
},
methods: {
//
async changeTag(tag) {
if (this.curTag === tag) return
try {
//
const params = {
pageNum: 1,
pageSize: 10,
status: tag
}
const res = await getGoodsList(params)
// UI
this.curTag = tag
this.queryForm = params
this.total = res.total
if (res.rows && res.rows.length > 0) {
res.rows.forEach(it => {
this.goodsList.push(it)
this.goodsList = res.rows || []
this.isLoadAll = this.goodsList.length >= this.total //
} catch (error) {
uni.showToast({
title: '加载失败',
icon: 'none'
})
}
// for (let i = 0; i < 20; i++) {
// this.goodsList.push(res.rows[0])
// }
this.loading = false
uni.hideLoading()
}).catch(() => {
this.loading = false
uni.hideLoading()
})
},
//
pageChange() {
console.log('翻页')
if(this.goodsList.length < this.total) {
this.queryForm.pageNum++
this.getGoodsListFun()
//
onSwiperChange(e) {
this.currentBrandIndex = e.detail.current
},
//
async getGoodsListFun() {
if (this.loading) return
this.loading = true
try {
const res = await getGoodsList(this.queryForm)
this.total = res.total
//
if (this.queryForm.pageNum > 1) {
this.goodsList.push(...(res.rows || []))
} else {
this.goodsList = res.rows || []
this.isLoadAll = false //
}
//
if (this.goodsList.length >= this.total) {
this.isLoadAll = true
}
} catch (error) {
uni.showToast({
title: '加载失败',
icon: 'none'
})
} finally {
this.loading = false
}
},
//
//
getStoreCoinBalanceFun() {
//
const token = uni.getStorageSync('token')
if (!token) {
//
this.coinList = []
this.totalCoin = 0
const userInfo = uni.getStorageSync('userInfo')
if (!token || !userInfo || userInfo.isVerified !== 1) {
this.sortedBrandCoins = []
this.commonCoin = 0
return
}
getStoreCoinBalance().then(res => {
console.log(res)
// balance
if(res.data && res.data.length > 0) {
this.coinList = res.data.filter(it => it.breweryId != 0)
this.totalCoin = this.coinList.reduce((total, item) => {
return total + item.balance
}, 0)
let common = res.data.filter(it => it.breweryId == 0)
if(common && common.length > 0) {
this.commonCoin = common[0].balance
if (res.data?.length > 0) {
//
const commonCoin = res.data.find(it => it.breweryId == 0)
this.commonCoin = commonCoin?.balance || 0
//
// TODO:
const brandCoins = res.data.filter(it => it.breweryId != 0)
if (brandCoins.length > 0) {
// 使使
this.sortedBrandCoins = this.sortedBrandCoins.map((brand, index) => {
const realData = brandCoins[index]
return {
...brand,
balance: realData?.balance || brand.balance
}
}).sort((a, b) => b.balance - a.balance)
}
} else {
//
this.coinList = []
this.totalCoin = 0
this.sortedBrandCoins = []
this.commonCoin = 0
}
}).catch(err => {
console.error('获取啤酒币余额失败:', err)
//
this.coinList = []
this.totalCoin = 0
}).catch(() => {
this.sortedBrandCoins = []
this.commonCoin = 0
})
},
//
toDetail(item) {
uni.navigateTo({
url: `/pagesCoin/goodsDetail?id=${item.id}&breweryId=${item.breweryId}`
})
},
//
async loadMore() {
//
if (this.loading || this.isLoadAll || this.goodsList.length === 0) return
//
if (this.goodsList.length < this.total) {
this.queryForm.pageNum++
await this.getGoodsListFun()
} else {
this.isLoadAll = true
}
},
}
}
</script>
<style lang="scss" scoped>
.page-content {
background: #F2F2F2;
padding: 0rpx 32rpx 32rpx;
display: flex;
flex-direction: column;
height: 100vh;
.fs-20 {
font-size: 20rpx;
}
.num {
font-size: 48rpx;
color: #3D3D3D;
}
.left {
width: 382rpx;
height: 196rpx;
border-radius: 12rpx;
background: #FFFFFF;
box-sizing: border-box;
border: 1px solid rgba(242, 242, 242, 0.902);
margin-right: 18rpx;
padding: 24rpx 24rpx;
}
.right {
width: 286rpx;
height: 196rpx;
border-radius: 12rpx;
opacity: 1;
background: #FFFFFF;
box-sizing: border-box;
border: 1px solid rgba(242, 242, 242, 0.902);
padding: 24rpx 14rpx;
}
.tab {
color: #A5A7B9;
margin-bottom: 18rpx;
}
.active {
color: #1E2019;
}
.tag {
background-color: transparent;
border-radius: 12rpx;
padding: 12rpx 30rpx;
border: 1px solid #0B0E26;
margin-right: 24rpx;
}
.active-tag {
background-color: #39E5B1;
font-weight: bold;
border: 1px solid #39E5B1;
}
.goods-container {
// flex: 1;
// overflow-y: auto;
// padding-bottom: constant(safe-area-inset-bottom);
// padding-bottom: env(safe-area-inset-bottom);
.goods-item {
// width: 334rpx;
width: 48%;
height: 605rpx;
border-radius: 12rpx;
background: #fff;
box-sizing: border-box;
// border: 1px solid rgba(242, 242, 242, 0.702);
margin-right: 20rpx;
margin-bottom: 20rpx;
&:nth-child(2n) {
margin-right: 0;
}
.cover-box {
// width: 334rpx;
width: 100%;
height: 440rpx;
border-radius: 30rpx 30rpx 0 0;
position: relative;
.cover {
width: 100%;
height: 100%;
border-radius: 30rpx 30rpx 0 0;
}
.like {
position: absolute;
right: 16rpx;
bottom: 18rpx;
width: 48rpx;
height: 48rpx;
border-radius: 50%;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
}
}
.title {
padding: 16rpx 14rpx;
font-size: 24rpx;
border-bottom: 1px solid #D8D8D8;
color: #3D3D3D;
}
}
}
}
</style>