feat: 完成收藏页面配置,优化品牌和酒款卡片样式,修复取消关注功能

This commit is contained in:
davy 2025-04-07 21:12:12 +08:00
parent f76b79c7f9
commit df5985c05c

View File

@ -32,20 +32,27 @@
<view v-if="tabCur == 0" class="my-container">
<template v-if="favoriteBeerList.length > 0">
<scroll-view style="height: 100%;" enable-flex scroll-y @scrolltolower="changeBeerPage">
<view class="beer-grid">
<view class="beer-box" v-for="(item, index) in favoriteBeerList" :key="index" @click="toBeer(item)">
<view class="cover-box">
<image :src="item.cover" class="cover" mode="aspectFill"></image>
<view class="like">
<text class="cuIcon-likefill" style="color: #4E63E0"
@click.stop="cancelFavBeer(item)"></text>
<view class="beer-list">
<view class="beer-item" v-for="(item, index) in favoriteBeerList" :key="index" @click="toBeer(item)">
<view class="beerCard flex align-center">
<image :src="item.cover" class="beer-cover" mode="aspectFill"></image>
<view class="flex-1 beer-info">
<view class="beer-name">{{item.beerName}}</view>
<view class="beer-style">{{ item.beerStyles}}</view>
<view class="brand-info flex align-center">
<image :src="item.brandLogo" class="brand-logo" mode="aspectFill"></image>
<text class="brand-name">{{ item.brandName}}</text>
</view>
<view class="rating-info flex align-center">
<text class="rating">
<text class="cuIcon-favorfill"></text>
{{ item.beerOverallRating || '5.0'}}
</text>
<text class="review-count">{{item.beerReviewsCount || '0'}} 条评论</text>
</view>
</view>
<view class="info-box">
<view class="title">{{ item.beerName }}</view>
<view class="rating">
<text class="score">{{ item.beerOverallRating || '5' }}</text>
<text class="reviews">({{ item.beerReviewsCount || '0' }})</text>
<view class="action-box">
<image src="/static/heart-remove.svg" class="cancel-icon" mode="aspectFit" @click.stop="cancelFavBeer(item)"></image>
</view>
</view>
</view>
@ -54,29 +61,33 @@
</scroll-view>
</template>
<template v-else>
<view class="flex align-center justify-center"
style="height: 140rpx;width: 100%;color: #747783;font-size: 24rpx;">暂无关注的酒款</view>
<view class="empty-state">
<text class="cuIcon-like empty-icon"></text>
<text class="empty-text">暂无关注的酒款</text>
</view>
</template>
</view>
<view v-if="tabCur == 1" class="my-brandSide">
<template v-if="favoriteBreweryList.length > 0">
<scroll-view style="height: 100%;" scroll-y="true" @scrolltolower="changeBreweryPage">
<view class="brandSide-box" v-for="(item, index) in favoriteBreweryList" :key="index">
<view class="brand-info" @click="toBrand(item)">
<image :src="item.brandLogo" class="logo" mode="aspectFill" @error="handleImageError"></image>
<view class="brand-detail">
<scroll-view style="height: 100%;" scroll-y="true">
<view v-for="(item, index) in favoriteBreweryList" :key="index" class="brandSide-box" @tap="toBrand(item)">
<view class="flex align-center justify-start">
<image :src="item.brandLogo || '/static/default-brewery.png'" class="logo" mode="aspectFill" lazy-load></image>
<view class="info">
<view class="title">{{ item.brandName }}</view>
<view class="desc">{{ item.brandDesc }}</view>
<view class="desc">全系列{{item.productCount || 'XXX'}}款产品在售</view>
</view>
</view>
<view class="cu-btn radius bg-gray" @click.stop="cancelFavBrewery(item)">取消关注</view>
<view class="action-box">
<image src="/static/heart-remove.svg" class="cancel-icon" mode="aspectFit" @click.stop="cancelFavBrewery(item)"></image>
</view>
</view>
<view class="cu-load" :class="favoriteBreweryList.length == totalBrewery ? 'over' :'more'"></view>
</scroll-view>
</template>
<template v-else>
<view class="flex align-center justify-center"
style="height: 140rpx;width: 100%;color: #747783;font-size: 24rpx;">暂无关注的品牌</view>
<view class="empty-state">
<text class="empty-text">暂无关注的品牌</text>
</view>
</template>
</view>
</template>
@ -105,8 +116,13 @@
isVerified: false,
isVerifying: false,
tabCur: 0,
favoriteBeerList: [], //
favoriteBreweryList: [], //
scrollLeft: 0,
favoriteBeerList: [],
favoriteBreweryList: [],
totalBeer: 0,
totalBrewery: 0,
loading: false,
refreshing: false,
beerQuery: {
pageNum: 1,
pageSize: 10
@ -114,11 +130,7 @@
breweryQuery: {
pageNum: 1,
pageSize: 10
},
totalBeer: 0,
totalBrewery: 0,
loading: false,
refreshing: false
}
};
},
onShow() {
@ -245,8 +257,10 @@
//
this.checkLoginStatus()
},
// tab
tabSelect(e) {
this.tabCur = e.currentTarget.dataset.id
this.scrollLeft = (e.currentTarget.dataset.id - 1) * 60
},
//
getFavoriteBeerList() {
@ -265,97 +279,82 @@
this.refreshing = false
})
},
//
changeBeerPage() {
if (this.favoriteBeerList.length < this.totalBeer) {
this.beerQuery.pageNum++
this.getFavoriteBeerList()
}
},
//
//
getFavoriteBreweryList() {
if(this.loading) return
this.loading = true
listMyFavoriteBrewery(this.breweryQuery).then(res => {
console.log('品牌列表数据:', res.rows)
this.totalBrewery = res.total
if (res.rows && res.rows.length > 0) {
res.rows.forEach(it => {
// 使
this.favoriteBreweryList.push(it)
})
}
}).finally(() => {
this.loading = false
this.refreshing = false
this.favoriteBreweryList = res.rows || []
})
},
//
changeBreweryPage() {
if (this.favoriteBreweryList.length < this.totalBrewery) {
this.breweryQuery.pageNum++
this.getFavoriteBreweryList()
//
cancelFavBeer(item) {
uni.showModal({
title: '提示',
content: '确定取消收藏该酒款吗?',
success: (res) => {
if (res.confirm) {
favorBeer({
beerId: item.beerId,
status: 2
}).then(() => {
uni.showToast({
title: '取消成功',
icon: 'success'
})
//
this.favoriteBeerList = []
this.beerQuery.pageNum = 1
this.getFavoriteBeerList()
})
}
}
})
},
//
cancelFavBrewery(item) {
uni.showModal({
title: '提示',
content: '确定取消关注该品牌吗?',
success: (res) => {
if (res.confirm) {
favorBrewery({
breweryId: item.breweryId,
status: 2
}).then(() => {
uni.showToast({
title: '取消成功',
icon: 'success'
})
//
this.favoriteBreweryList = []
this.breweryQuery.pageNum = 1
this.getFavoriteBreweryList()
})
}
}
})
},
//
toBeer(item) {
uni.navigateTo({
url: "/pages/index/review?beerId=" + item.beerId
url: `/pages/index/review?beerId=${item.beerId}`
})
},
//
toBrand(item) {
uni.navigateTo({
url: '/pages/index/brandHome?breweryId=' + item.breweryId
url: `/pages/index/brand?breweryId=${item.breweryId}`
})
},
//
cancelFavBeer(item) {
let data = {
beerId: item.beerId,
status: 2
}
favorBeer(data).then(res => {
uni.showToast({
title: '取消收藏',
icon: 'none'
})
this.favoriteBeerList = []
this.beerQuery.pageNum = 1
this.getFavoriteBeerList()
})
},
//
cancelFavBrewery(item) {
let data = {
breweryId: item.breweryId,
status: 2
}
favorBrewery(data).then(res => {
uni.showToast({
title: '取消收藏',
icon: 'none'
})
this.favoriteBreweryList = []
this.breweryQuery.pageNum = 1
this.getFavoriteBreweryList()
})
},
//
onRefresh() {
this.refreshing = true
this.beerQuery.pageNum = 1
this.breweryQuery.pageNum = 1
this.favoriteBeerList = []
this.favoriteBreweryList = []
this.getFavoriteBeerList()
this.getFavoriteBreweryList()
},
//
handleImageError(e) {
const target = e.target;
target.src = '/static/default-brand.png'; //
handleImageError() {
console.log('图片加载失败');
},
//
changeBeerPage() {
if (this.loading) return;
if (this.favoriteBeerList.length >= this.totalBeer) return;
this.beerQuery.pageNum++;
this.getFavoriteBeerList();
}
}
}
@ -414,110 +413,137 @@
.my-container {
padding: 28rpx 36rpx;
margin-top: 88rpx; //
margin-top: 88rpx;
height: calc(100vh - 88rpx);
.beer-grid {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
margin: -14rpx; // margin
.beer-list {
.beer-item {
margin-bottom: 24rpx;
.beer-box {
width: calc((100% - 84rpx) / 3); //
margin: 14rpx; //
.beerCard {
border-radius: 12rpx;
background: #FFFFFF;
box-sizing: border-box;
display: flex;
flex-direction: column;
border-radius: 16rpx;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04);
overflow: hidden;
padding: 24rpx;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
.cover-box {
width: 100%;
padding-bottom: 144%; //
position: relative;
overflow: hidden;
&:active {
transform: scale(0.98);
}
.cover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
.beer-cover {
width: 144rpx;
height: 204rpx;
margin-right: 20rpx;
border-radius: 12rpx;
object-fit: cover;
}
.like {
position: absolute;
right: 16rpx;
bottom: 18rpx;
width: 48rpx;
height: 48rpx;
border-radius: 50%;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(4rpx);
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
display: flex;
justify-content: center;
align-items: center;
}
.beer-info {
.beer-name {
font-size: 32rpx;
color: #1E2019;
font-weight: 500;
margin-bottom: 12rpx;
}
.info-box {
padding: 12rpx;
.title {
font-size: 28rpx;
color: #19191B;
font-weight: 600;
margin-bottom: 8rpx;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.rating {
display: flex;
align-items: center;
.beer-style {
font-size: 24rpx;
color: rgba(30, 32, 25, 0.8);
margin-bottom: 12rpx;
}
.score {
color: #FFA033;
font-weight: 600;
.brand-info {
margin-bottom: 12rpx;
.brand-logo {
width: 30rpx;
height: 30rpx;
margin-right: 12rpx;
border-radius: 50%;
}
.brand-name {
font-size: 28rpx;
color: #1E2019;
}
}
.rating-info {
.rating {
background: #F5F5F5;
padding: 8rpx 16rpx;
border-radius: 16rpx;
color: #5F5F63;
font-size: 24rpx;
margin-right: 16rpx;
.cuIcon-favorfill {
color: #FFBC11;
font-size: 30rpx;
margin-right: 4rpx;
}
}
.reviews {
color: #999999;
font-size: 20rpx;
.review-count {
color: #5F5F63;
font-size: 24rpx;
}
}
}
.action-box {
display: flex;
align-items: center;
.cancel-icon {
width: 40rpx;
height: 40rpx;
margin-right: 32rpx;
color: #030303;
filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(0%) contrast(100%);
}
}
}
}
}
.empty-state {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60rpx;
.empty-image {
width: 240rpx;
height: 240rpx;
margin-bottom: 20rpx;
}
.empty-text {
color: #747783;
font-size: 28rpx;
}
}
}
.my-brandSide {
padding: 28rpx 36rpx;
margin-top: 88rpx; //
margin-top: 88rpx;
height: calc(100vh - 88rpx);
background: #F9F9F9;
.brandSide-box {
display: flex;
align-items: center;
justify-content: space-between;
padding: 32rpx 0;
border-bottom: 1rpx solid #F0F4F9;
.brand-info {
display: flex;
align-items: center;
flex: 1;
margin-right: 20rpx;
padding: 32rpx 24rpx;
margin-bottom: 24rpx;
background: #FFFFFF;
border-radius: 12rpx;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
.logo {
width: 108rpx;
@ -528,15 +554,15 @@
flex-shrink: 0;
}
.brand-detail {
.info {
flex: 1;
min-width: 0;
.title {
font-size: 28rpx;
font-size: 32rpx;
color: #19191B;
font-weight: 600;
margin-bottom: 12rpx;
font-weight: 500;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
@ -545,14 +571,31 @@
.desc {
font-size: 24rpx;
color: #9C9BA6;
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
}
.action-box {
.cancel-icon {
width: 40rpx;
height: 40rpx;
margin-right: 32rpx;
color: #030303;
filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(324deg) brightness(0%) contrast(100%);
}
}
}
.empty-state {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60rpx;
.empty-text {
color: #747783;
font-size: 28rpx;
}
}
}