3
0
Fork 0
web-store-retail-h5/components/area-product-list/index.vue

230 lines
5.2 KiB
Vue

<template>
<view class="area-product-list">
<view class="area-header">
<view class="header-bg"></view>
<text class="area-title">{{ title }}</text>
<u-button
type="primary"
size="mini"
shape="circle"
:custom-style="{
background: '#ffffff',
border: 'none',
position: 'relative',
zIndex: 1,
height: '46rpx',
lineHeight: '46rpx',
width: 'fit-content',
padding: '0 24rpx',
margin: '0'
}"
@click="goToMore"
>
<view class="more-btn-content">
<text class="more-text">更多</text>
<u-icon name="arrow-right" color="#005bac" size="14"></u-icon>
</view>
</u-button>
</view>
<view class="product-container">
<view class="product-item" v-for="item in list" :key="item.pkWares" @click="handleProductClick(item)">
<image :src="item.cover1" class="product-image" mode="aspectFill" />
<view class="product-info">
<view class="product-name">{{ item.waresCode }}</view>
<view class="product-price-row">
<view class="product-price">
{{ formatPrice(item.waresPrice) }}
</view>
<u-button
type="primary"
size="mini"
shape="circle"
:custom-style="{
background: '#005bac',
padding: 0,
width: '48rpx',
height: '48rpx',
minWidth: '48rpx'
}"
@click.stop="handleAddToCart(item)"
>
<u-icon name="plus" color="#ffffff" size="12"></u-icon>
</u-button>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import { numberToCurrencyNo, isLocal, isLocaled } from '@/util/numberToCurrency'
export default {
props: {
title: {
type: String,
default: '热销专区'
},
list: {
type: Array,
default: () => [
{
pkWares: 17024,
cover1: "https://bd-qd.oss-cn-beijing.aliyuncs.com/test_01/20250406/c2aea04b-174d-4703-acab-c52d928371bd.jpg",
waresCode: "HZSLXSJ2",
waresPrice: "6000.0000",
specialArea: 25,
isSale: 0,
preSaleStatus: 0
},
{
pkWares: 17041,
cover1: "https://bd-qd.oss-cn-beijing.aliyuncs.com/test_01/20250406/c2aea04b-174d-4703-acab-c52d928371bd.jpg",
waresCode: "HZSLXSJ1",
waresPrice: "2000.0000",
specialArea: 25,
isSale: 0,
preSaleStatus: 0
},
{
pkWares: 17042,
cover1: "https://bd-qd.oss-cn-beijing.aliyuncs.com/test_01/20250406/c2aea04b-174d-4703-acab-c52d928371bd.jpg",
waresCode: "HZSLXSJ3",
waresPrice: "3999.0000",
specialArea: 25,
isSale: 0,
preSaleStatus: 0
}
]
},
specialAreaId: {
type: [Number, String],
default: '25'
}
},
methods: {
isLocaled,
formatPrice(price) {
// 使用numberToCurrencyNo和isLocal函数来格式化价格
return isLocal(numberToCurrencyNo(price));
},
goToMore() {
// 跳转到专区详情页面
uni.navigateTo({
url: `/pages/specialArea/index?id=${this.specialAreaId}`
});
},
handleProductClick(item) {
// 商品点击事件,可根据需求实现跳转或其他逻辑
this.$emit('product-click', item);
},
handleAddToCart(item) {
// 添加到购物车事件
this.$emit('add-cart', item);
}
}
};
</script>
<style lang="scss" scoped>
.area-product-list {
background-color: #ffffff;
padding: 30rpx;
padding-top: 0;
border-radius: 8px;
margin-bottom: 15px;
}
.area-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
position: relative;
padding: 20rpx 0;
height: 46rpx;
}
.header-bg {
position: absolute;
top: 0;
left: -30rpx;
right: -30rpx;
height: 100%;
background: linear-gradient(to bottom, #ADD8E6, #ffffff);
z-index: 0;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.area-title {
font-size: 32rpx;
font-weight: bold;
color: #333333;
position: relative;
z-index: 1;
}
.more-btn-content {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
flex-grow: 0;
}
.more-text {
font-size: 24rpx;
color: #005bac;
margin-right: 4rpx;
}
.product-container {
display: flex;
flex-wrap: wrap;
margin: 0 -10rpx;
padding-top: 15rpx;
}
.product-item {
width: 33.33%;
padding: 0 10rpx;
box-sizing: border-box;
margin-bottom: 30rpx;
}
.product-image {
width: 100%;
height: 200rpx;
border-radius: 8rpx;
background-color: #f5f5f5;
}
.product-info {
margin-top: 12rpx;
position: relative;
}
.product-name {
font-size: 28rpx;
color: #333;
margin-bottom: 8rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.product-price-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.product-price {
font-size: 32rpx;
font-weight: bold;
color: #005bac;
}
</style>