This commit is contained in:
1173117610@qq.com 2026-05-11 11:27:07 +08:00
parent 803a0dbcc0
commit a863ec31b3
3 changed files with 459 additions and 4 deletions

View File

@ -17,6 +17,12 @@
"style": { "style": {
"navigationStyle": "custom" "navigationStyle": "custom"
} }
},
{
"path": "pages/category/category_detail",
"style": {
"navigationStyle": "custom"
}
} }
], ],
"globalStyle": { "globalStyle": {

View File

@ -28,7 +28,7 @@
<swiper class="sub-swiper" :duration="300" @change="onSubSwiperChange"> <swiper class="sub-swiper" :duration="300" @change="onSubSwiperChange">
<swiper-item v-for="(group, gIdx) in groupedSubCategories" :key="gIdx"> <swiper-item v-for="(group, gIdx) in groupedSubCategories" :key="gIdx">
<view class="sub-grid"> <view class="sub-grid">
<view class="sub-item" v-for="(sub, idx) in group" :key="idx" @click="selectSub(sub.second_category)"> <view class="sub-item" v-for="(sub, idx) in group" :key="idx" @click="selectSub(sub)">
<image class="sub-icon" :src="sub.img_url" mode="aspectFit"></image> <image class="sub-icon" :src="sub.img_url" mode="aspectFit"></image>
<text class="sub-text">{{ sub.cate_name.trim() }}</text> <text class="sub-text">{{ sub.cate_name.trim() }}</text>
</view> </view>
@ -221,9 +221,14 @@
onSubSwiperChange(e) { onSubSwiperChange(e) {
this.subCurrentIndex = e.detail.current; this.subCurrentIndex = e.detail.current;
}, },
selectSub(sonId) { selectSub(sub) {
this.currentSonId = sonId; const name = encodeURIComponent(sub.cate_name.trim());
this.getProducts(true); const catId = this.currentCatId;
const secondCat = sub.second_category;
uni.navigateTo({
url: `/pages/category/category_detail?cate_name=${name}&id=${catId}&second_category=${secondCat}`
});
}, },
changeSort(type) { changeSort(type) {
if (type === 3 && this.sortType === 3) { if (type === 3 && this.sortType === 3) {

View File

@ -0,0 +1,444 @@
<template>
<view class="detail-page-container">
<!-- 沉浸式顶部标题栏 -->
<view class="nav-header">
<view class="status-bar" :style="{ height: statusBarHeight + 'px' }"></view>
<view class="header-content">
<view class="back-area" @click="goBack">
<text class="back-icon"></text>
</view>
<view class="title-area">
<text class="title-text">{{ cateName }}</text>
</view>
<view class="placeholder-area"></view>
</view>
</view>
<scroll-view scroll-y class="scroll-content" @scrolltolower="loadMore">
<!-- 占位适配固定头部 -->
<view class="header-placeholder" :style="{ height: (statusBarHeight + 44) + 'px' }"></view>
<!-- 排序筛选栏 -->
<view class="filter-bar">
<view class="filter-item" :class="{ 'active': sortType === 1 }" @click="changeSort(1)">综合</view>
<view class="filter-item" :class="{ 'active': sortType === 2 }" @click="changeSort(2)">销量</view>
<view class="filter-item" :class="{ 'active': sortType === 3 }" @click="changeSort(3)">
价格
<view class="price-arrows">
<text class="up" :class="{ 'hl': sortType === 3 && priceOrder === 'asc' }"></text>
<text class="down" :class="{ 'hl': sortType === 3 && priceOrder === 'desc' }"></text>
</view>
</view>
</view>
<!-- 商品列表 (横向单列风格) -->
<view class="goods-list">
<view class="goods-item" v-for="(goods, idx) in goodsList" :key="idx" @click="goToDetail(goods.id)">
<view class="g-img-left">
<image class="goods-img" :src="goods.image" mode="aspectFill"></image>
</view>
<view class="goods-info">
<view class="goods-title-row">
<image src="https://img-haodanku-com.cdn.fudaiapp.com/FlyOSTvjC3LjrkUoJ0NPxx1qnGz4" class="platform-icon"></image>
<text class="title-text">{{ goods.title }}</text>
</view>
<!-- 标签组 -->
<view class="labels-row" v-if="goods.labels && goods.labels.length > 0">
<text class="label-tag" v-for="(label, lIdx) in goods.labels.slice(0, 2)" :key="lIdx">{{ label }}</text>
</view>
<view class="goods-price-section">
<view class="price-main">
<text class="price-tip">{{ goods.couponValue > 0 ? '券后' : '抢购价' }}</text>
<text class="price-symbol"></text>
<text class="price-integer">{{ goods.finalPrice }}</text>
<view class="coupon-box" v-if="goods.couponValue > 0">
<text class="coupon-icon"></text>
<text class="coupon-txt">{{ goods.couponValue }}</text>
</view>
</view>
</view>
<view class="goods-bottom-info">
<text class="sales">已售{{ goods.sales }}</text>
<text class="split-line">|</text>
<text class="shop-name">店铺{{ goods.shopName }}</text>
</view>
</view>
</view>
</view>
<view class="loading-status">
<view v-if="loading" class="loading-text">加载中...</view>
<view v-else-if="goodsList.length === 0" class="empty-text">暂无相关商品</view>
<view v-else-if="finished" class="finished-text">-- 已经到底啦 --</view>
</view>
<view class="footer-placeholder"></view>
</scroll-view>
</view>
</template>
<script>
export default {
data() {
return {
statusBarHeight: 44,
cateName: '分类详情',
mainCatId: '',
secondCategory: '', // ID
goodsList: [],
page: 1,
sortType: 1, // 1:, 2:, 3:
priceOrder: 'desc',
loading: false,
finished: false
}
},
onLoad(options) {
const sysInfo = uni.getSystemInfoSync();
this.statusBarHeight = sysInfo.statusBarHeight || 44;
if (options.cate_name) this.cateName = decodeURIComponent(options.cate_name);
if (options.id) this.mainCatId = options.id;
if (options.second_category) this.secondCategory = options.second_category;
this.getProducts(true);
},
methods: {
goBack() {
uni.navigateBack();
},
getProducts(refresh = false) {
if (refresh) {
this.page = 1;
this.finished = false;
this.goodsList = [];
}
if (this.loading || this.finished) return;
this.loading = true;
// (0:, 3:, 8:, 9:)
let sortParam = 0;
if (this.sortType === 2) {
sortParam = 3;
} else if (this.sortType === 3) {
sortParam = this.priceOrder === 'asc' ? 8 : 9;
}
uni.request({
url: `https://api.cmspro.haodanku.com/find/allItemList?category_id=${this.mainCatId}&son_category=${encodeURIComponent(this.secondCategory)}&page=${this.page}&sort=${sortParam}&page_size=20&cid=qOstW90`,
success: (res) => {
if (res.data && res.data.code === 200 && res.data.data && res.data.data.item_info) {
const list = res.data.data.item_info.map(item => ({
id: item.id,
image: item.itempic,
title: item.itemshorttitle,
finalPrice: item.itemendprice,
couponValue: item.couponmoney || 0,
sales: item.itemsale >= 10000 ? (item.itemsale / 10000).toFixed(1) + '万' : item.itemsale,
shopType: item.shoptype === 'B' ? '天猫' : '淘宝',
shopName: item.shopname,
labels: item.label || []
}));
if (list.length === 0) {
this.finished = true;
} else {
this.goodsList = [...this.goodsList, ...list];
this.page++;
if (list.length < 20) {
this.finished = true;
}
}
} else {
this.finished = true;
}
},
complete: () => {
this.loading = false;
}
});
},
changeSort(type) {
if (type === 3 && this.sortType === 3) {
this.priceOrder = this.priceOrder === 'asc' ? 'desc' : 'asc';
} else {
this.sortType = type;
if (type === 3) this.priceOrder = 'desc';
}
this.getProducts(true);
},
loadMore() {
this.getProducts();
},
goToDetail(id) {
uni.navigateTo({
url: `/pages/detail/detail?id=${id}`
});
}
}
}
</script>
<style scoped>
.detail-page-container {
width: 100%;
height: 100vh;
background-color: #f5f6f8;
display: flex;
flex-direction: column;
}
/* 顶部导航 */
.nav-header {
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: #ffffff;
z-index: 100;
box-shadow: 0 2rpx 10rpx rgba(0,0,0,0.05);
}
.header-content {
height: 44px;
display: flex;
align-items: center;
padding: 0 30rpx;
}
.back-area {
width: 60rpx;
display: flex;
align-items: center;
}
.back-icon {
font-size: 36rpx;
color: #333;
font-weight: bold;
}
.title-area {
flex: 1;
text-align: center;
}
.title-text {
font-size: 32rpx;
color: #333;
font-weight: bold;
}
.placeholder-area {
width: 60rpx;
}
.scroll-content {
flex: 1;
height: 100%;
}
.header-placeholder {
width: 100%;
}
/* 筛选栏 */
.filter-bar {
display: flex;
background: #ffffff;
height: 88rpx;
align-items: center;
border-bottom: 1rpx solid #f1f1f1;
position: sticky;
top: 0;
z-index: 90;
}
.filter-item {
flex: 1;
text-align: center;
font-size: 28rpx;
color: #666;
display: flex;
align-items: center;
justify-content: center;
}
.filter-item.active {
color: #ff416c;
font-weight: bold;
}
.price-arrows {
display: flex;
flex-direction: column;
margin-left: 6rpx;
line-height: 1;
}
.price-arrows text {
font-size: 16rpx;
color: #ccc;
}
.price-arrows text.hl {
color: #ff416c;
}
/* 商品列表 */
.goods-list {
padding: 0;
background: #ffffff;
}
.goods-item {
display: flex;
padding: 24rpx;
border-bottom: 1rpx solid #f8f8f8;
background: #ffffff;
}
.g-img-left {
flex-shrink: 0;
width: 240rpx;
height: 240rpx;
border-radius: 12rpx;
overflow: hidden;
background: #f0f0f0;
}
.goods-img {
width: 100%;
height: 100%;
}
.goods-info {
flex: 1;
margin-left: 20rpx;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 4rpx 0;
}
.goods-title-row {
display: flex;
align-items: flex-start;
line-height: 1.4;
}
.platform-icon {
width: 32rpx;
height: 32rpx;
margin-top: 6rpx;
margin-right: 8rpx;
flex-shrink: 0;
}
.title-text {
font-size: 26rpx;
color: #333;
font-weight: 500;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 1;
}
.labels-row {
display: flex;
flex-wrap: wrap;
margin-top: 12rpx;
}
.label-tag {
font-size: 20rpx;
color: #ff416c;
background: #fff5f7;
border: 1rpx solid #ffd6de;
padding: 2rpx 12rpx;
border-radius: 20rpx;
margin-right: 12rpx;
margin-bottom: 8rpx;
}
.goods-price-section {
margin-top: auto;
padding-bottom: 8rpx;
}
.price-main {
display: flex;
align-items: baseline;
}
.price-tip {
font-size: 24rpx;
color: #ff416c;
margin-right: 4rpx;
}
.price-symbol {
font-size: 24rpx;
color: #ff416c;
font-weight: bold;
}
.price-integer {
font-size: 40rpx;
color: #ff416c;
font-weight: bold;
margin-right: 12rpx;
}
.coupon-box {
display: flex;
align-items: center;
background: #ff416c;
border-radius: 4rpx;
overflow: hidden;
height: 32rpx;
}
.coupon-icon {
font-size: 20rpx;
color: #ffffff;
background: rgba(255,255,255,0.2);
padding: 0 6rpx;
height: 100%;
display: flex;
align-items: center;
}
.coupon-txt {
font-size: 20rpx;
color: #ffffff;
padding: 0 8rpx;
}
.goods-bottom-info {
display: flex;
align-items: center;
font-size: 22rpx;
color: #999;
margin-top: 8rpx;
}
.split-line {
margin: 0 10rpx;
color: #eee;
}
.loading-status {
text-align: center;
padding: 40rpx 0;
font-size: 24rpx;
color: #999;
}
.footer-placeholder {
height: 40rpx;
}
</style>