【功能修复】秒杀装修重构
parent
27af994667
commit
9521d4b557
|
@ -1,4 +1,4 @@
|
||||||
import request from "@/sheep/request";
|
import request from '@/sheep/request';
|
||||||
|
|
||||||
const SeckillApi = {
|
const SeckillApi = {
|
||||||
// 获得秒杀时间段列表
|
// 获得秒杀时间段列表
|
||||||
|
@ -16,6 +16,17 @@ const SeckillApi = {
|
||||||
return request({ url: 'promotion/seckill-activity/page', method: 'GET', params });
|
return request({ url: 'promotion/seckill-activity/page', method: 'GET', params });
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// 获得秒杀活动列表,基于活动编号数组
|
||||||
|
getSeckillActivityListByIds: (ids) => {
|
||||||
|
return request({
|
||||||
|
url: '/promotion/seckill-activity/list-by-ids',
|
||||||
|
method: 'GET',
|
||||||
|
params: {
|
||||||
|
ids,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获得秒杀活动明细
|
* 获得秒杀活动明细
|
||||||
* @param {number} id 秒杀活动编号
|
* @param {number} id 秒杀活动编号
|
||||||
|
@ -25,9 +36,9 @@ const SeckillApi = {
|
||||||
return request({
|
return request({
|
||||||
url: 'promotion/seckill-activity/get-detail',
|
url: 'promotion/seckill-activity/get-detail',
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
params: { id }
|
params: { id },
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
|
|
||||||
export default SeckillApi;
|
export default SeckillApi;
|
||||||
|
|
|
@ -145,7 +145,6 @@
|
||||||
import sheep from '@/sheep';
|
import sheep from '@/sheep';
|
||||||
import CombinationApi from '@/sheep/api/promotion/combination';
|
import CombinationApi from '@/sheep/api/promotion/combination';
|
||||||
import SpuApi from '@/sheep/api/product/spu';
|
import SpuApi from '@/sheep/api/product/spu';
|
||||||
import spu from '@/sheep/api/product/spu';
|
|
||||||
|
|
||||||
// 布局类型
|
// 布局类型
|
||||||
const LayoutTypeEnum = {
|
const LayoutTypeEnum = {
|
||||||
|
|
|
@ -1,182 +1,325 @@
|
||||||
<!-- 装修组件 - 秒杀 -->
|
<!-- 装修商品组件:【拼团】商品卡片 -->
|
||||||
<template>
|
<template>
|
||||||
<view>
|
<!-- 商品卡片 -->
|
||||||
<!-- 样式一:三列 - 上图下文 -->
|
<view>
|
||||||
<view v-if="layoutType === 'threeCol'" class="goods-sm-box ss-flex ss-flex-wrap" :style="[{ margin: '-' + data.space + 'rpx' }]">
|
<!-- 布局1. 单列大图(上图,下内容)-->
|
||||||
<view v-for="product in productList" :key="product.id" class="goods-card-box" :style="[{padding: data.space + 'rpx',},]">
|
<view
|
||||||
<s-goods-column
|
v-if="layoutType === LayoutTypeEnum.ONE_COL_BIG_IMG && state.spuList.length"
|
||||||
class="goods-card" size="sm"
|
class="goods-sl-box"
|
||||||
:goodsFields="goodsFields"
|
>
|
||||||
:tagStyle="badge"
|
<view
|
||||||
:data="product"
|
class="goods-box"
|
||||||
:titleColor="data.fields.name?.color"
|
v-for="item in state.spuList"
|
||||||
:topRadius="data.borderRadiusTop"
|
:key="item.id"
|
||||||
:bottomRadius="data.borderRadiusBottom"
|
:style="[{ marginBottom: data.space * 2 + 'rpx' }]"
|
||||||
@click="sheep.$router.go('/pages/goods/seckill', { id: props.data.activityId, })">
|
>
|
||||||
</s-goods-column>
|
<s-goods-column
|
||||||
</view>
|
class=""
|
||||||
</view>
|
size="sl"
|
||||||
<!-- 样式二:一列 - 左图右文 -->
|
:goodsFields="data.fields"
|
||||||
<view class="goods-box" v-if="layoutType === 'oneCol'">
|
:tagStyle="data.badge"
|
||||||
<view class="goods-list" v-for="(product, index) in productList" :key="index"
|
:data="item"
|
||||||
:style="[{ marginBottom: space + 'px' }]">
|
:titleColor="data.fields.name?.color"
|
||||||
<s-goods-column
|
:subTitleColor="data.fields.introduction.color"
|
||||||
class="goods-card"
|
:topRadius="data.borderRadiusTop"
|
||||||
size="lg"
|
:bottomRadius="data.borderRadiusBottom"
|
||||||
:goodsFields="goodsFields"
|
@click="sheep.$router.go('/pages/goods/groupon', { id: item.activityId })"
|
||||||
:seckillTag="true"
|
>
|
||||||
:tagStyle="badge"
|
<!-- 购买按钮 -->
|
||||||
:data="product"
|
<template v-slot:cart>
|
||||||
:titleColor="data.fields.name?.color"
|
<button class="ss-reset-button cart-btn" :style="[buyStyle]">
|
||||||
:subTitleColor="data.fields.introduction?.color"
|
{{ btnBuy.type === 'text' ? btnBuy.text : '' }}
|
||||||
:topRadius="data.borderRadiusTop"
|
</button>
|
||||||
:bottomRadius="data.borderRadiusBottom"
|
</template>
|
||||||
@click="sheep.$router.go('/pages/goods/seckill', { id: props.data.activityId, })">
|
</s-goods-column>
|
||||||
<template v-slot:cart>
|
</view>
|
||||||
<button class="ss-reset-button cart-btn" :style="[buyStyle]">
|
</view>
|
||||||
{{ btnBuy?.type === 'text' ? btnBuy.text : '立即秒杀' }}
|
|
||||||
</button>
|
<!-- 布局2. 单列小图(左图,右内容) -->
|
||||||
</template>
|
<view
|
||||||
</s-goods-column>
|
v-if="layoutType === LayoutTypeEnum.ONE_COL_SMALL_IMG && state.spuList.length"
|
||||||
</view>
|
class="goods-lg-box"
|
||||||
</view>
|
>
|
||||||
</view>
|
<view
|
||||||
|
class="goods-box"
|
||||||
|
:style="[{ marginBottom: data.space + 'px' }]"
|
||||||
|
v-for="item in state.spuList"
|
||||||
|
:key="item.id"
|
||||||
|
>
|
||||||
|
<s-goods-column
|
||||||
|
class="goods-card"
|
||||||
|
size="lg"
|
||||||
|
:goodsFields="data.fields"
|
||||||
|
:data="item"
|
||||||
|
:tagStyle="data.badge"
|
||||||
|
:titleColor="data.fields.name?.color"
|
||||||
|
:subTitleColor="data.fields.introduction.color"
|
||||||
|
:topRadius="data.borderRadiusTop"
|
||||||
|
:bottomRadius="data.borderRadiusBottom"
|
||||||
|
@tap="sheep.$router.go('/pages/goods/groupon', { id: item.activityId })"
|
||||||
|
>
|
||||||
|
<!-- 购买按钮 -->
|
||||||
|
<template v-slot:cart>
|
||||||
|
<button class="ss-reset-button cart-btn" :style="[buyStyle]">
|
||||||
|
{{ btnBuy.type === 'text' ? btnBuy.text : '' }}
|
||||||
|
</button>
|
||||||
|
</template>
|
||||||
|
</s-goods-column>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 布局3. 双列(每一列:上图,下内容)-->
|
||||||
|
<view
|
||||||
|
v-if="layoutType === LayoutTypeEnum.TWO_COL && state.spuList.length"
|
||||||
|
class="goods-md-wrap ss-flex ss-flex-wrap ss-col-top"
|
||||||
|
>
|
||||||
|
<view class="goods-list-box">
|
||||||
|
<view
|
||||||
|
class="left-list"
|
||||||
|
:style="[{ paddingRight: data.space + 'rpx', marginBottom: data.space + 'px' }]"
|
||||||
|
v-for="item in state.leftSpuList"
|
||||||
|
:key="item.id"
|
||||||
|
>
|
||||||
|
<s-goods-column
|
||||||
|
class="goods-md-box"
|
||||||
|
size="md"
|
||||||
|
:goodsFields="data.fields"
|
||||||
|
:tagStyle="data.badge"
|
||||||
|
:data="item"
|
||||||
|
:titleColor="data.fields.name?.color"
|
||||||
|
:subTitleColor="data.fields.introduction.color"
|
||||||
|
:topRadius="data.borderRadiusTop"
|
||||||
|
:bottomRadius="data.borderRadiusBottom"
|
||||||
|
:titleWidth="330 - marginLeft - marginRight"
|
||||||
|
@click="sheep.$router.go('/pages/goods/groupon', { id: item.activityId })"
|
||||||
|
@getHeight="calculateGoodsColumn($event, 'left')"
|
||||||
|
>
|
||||||
|
<!-- 购买按钮 -->
|
||||||
|
<template v-slot:cart>
|
||||||
|
<button class="ss-reset-button cart-btn" :style="[buyStyle]">
|
||||||
|
{{ btnBuy.type === 'text' ? btnBuy.text : '' }}
|
||||||
|
</button>
|
||||||
|
</template>
|
||||||
|
</s-goods-column>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="goods-list-box">
|
||||||
|
<view
|
||||||
|
class="right-list"
|
||||||
|
:style="[{ paddingLeft: data.space + 'rpx', marginBottom: data.space + 'px' }]"
|
||||||
|
v-for="item in state.rightSpuList"
|
||||||
|
:key="item.id"
|
||||||
|
>
|
||||||
|
<s-goods-column
|
||||||
|
class="goods-md-box"
|
||||||
|
size="md"
|
||||||
|
:goodsFields="data.fields"
|
||||||
|
:tagStyle="data.badge"
|
||||||
|
:data="item"
|
||||||
|
:titleColor="data.fields.name?.color"
|
||||||
|
:subTitleColor="data.fields.introduction.color"
|
||||||
|
:topRadius="data.borderRadiusTop"
|
||||||
|
:bottomRadius="data.borderRadiusBottom"
|
||||||
|
:titleWidth="330 - marginLeft - marginRight"
|
||||||
|
@click="sheep.$router.go('/pages/goods/groupon', { id: item.activityId })"
|
||||||
|
@getHeight="calculateGoodsColumn($event, 'right')"
|
||||||
|
>
|
||||||
|
<!-- 购买按钮 -->
|
||||||
|
<template v-slot:cart>
|
||||||
|
<button class="ss-reset-button cart-btn" :style="[buyStyle]">
|
||||||
|
{{ btnBuy.type === 'text' ? btnBuy.text : '' }}
|
||||||
|
</button>
|
||||||
|
</template>
|
||||||
|
</s-goods-column>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
/**
|
/**
|
||||||
* 秒杀商品列表
|
* 商品卡片
|
||||||
*
|
*/
|
||||||
* @property {Array} list 商品列表
|
import { computed, onMounted, reactive, ref } from 'vue';
|
||||||
*/
|
import sheep from '@/sheep';
|
||||||
import {
|
import SeckillApi from '@/sheep/api/promotion/seckill';
|
||||||
computed,
|
import SpuApi from '@/sheep/api/product/spu';
|
||||||
onMounted,
|
|
||||||
reactive,
|
|
||||||
ref
|
|
||||||
} from 'vue';
|
|
||||||
import sheep from '@/sheep';
|
|
||||||
import SeckillApi from "@/sheep/api/promotion/seckill";
|
|
||||||
import SpuApi from "@/sheep/api/product/spu";
|
|
||||||
|
|
||||||
// 接收参数
|
// 布局类型
|
||||||
const props = defineProps({
|
const LayoutTypeEnum = {
|
||||||
// 装修数据
|
// 单列大图
|
||||||
data: {
|
ONE_COL_BIG_IMG: 'oneColBigImg',
|
||||||
type: Object,
|
// 双列
|
||||||
default: () => ({}),
|
TWO_COL: 'twoCol',
|
||||||
},
|
// 单列小图
|
||||||
// 装修样式
|
ONE_COL_SMALL_IMG: 'oneColSmallImg',
|
||||||
styles: {
|
};
|
||||||
type: Object,
|
|
||||||
default: () => ({}),
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
// 设置相关信息是否显示
|
|
||||||
const goodsFields = reactive({
|
|
||||||
// 商品价格
|
|
||||||
price: { show: true },
|
|
||||||
// 库存
|
|
||||||
stock: { show: true },
|
|
||||||
// 商品名称
|
|
||||||
name: { show: true },
|
|
||||||
// 商品介绍
|
|
||||||
introduction: { show: true },
|
|
||||||
// 市场价
|
|
||||||
marketPrice: { show: true },
|
|
||||||
// 销量
|
|
||||||
salesCount: { show: true },
|
|
||||||
});
|
|
||||||
|
|
||||||
let {
|
|
||||||
layoutType,
|
|
||||||
badge,
|
|
||||||
btnBuy,
|
|
||||||
space,
|
|
||||||
} = props.data;
|
|
||||||
let {
|
|
||||||
marginLeft,
|
|
||||||
marginRight
|
|
||||||
} = props.styles;
|
|
||||||
|
|
||||||
// 购买按钮样式
|
const state = reactive({
|
||||||
const buyStyle = computed(() => {
|
spuList: [],
|
||||||
let btnBuy = props.data.btnBuy;
|
leftSpuList: [],
|
||||||
if (btnBuy?.type === 'text') {
|
rightSpuList: [],
|
||||||
return {
|
});
|
||||||
background: `linear-gradient(to right, ${btnBuy.bgBeginColor}, ${btnBuy.bgEndColor})`,
|
const props = defineProps({
|
||||||
};
|
data: {
|
||||||
}
|
type: Object,
|
||||||
if (btnBuy?.type === 'img') {
|
default() {},
|
||||||
return {
|
},
|
||||||
width: '54rpx',
|
styles: {
|
||||||
height: '54rpx',
|
type: Object,
|
||||||
background: `url(${sheep.$url.cdn(btnBuy.imgUrl)}) no-repeat`,
|
default() {},
|
||||||
backgroundSize: '100% 100%',
|
},
|
||||||
};
|
});
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// 商品列表
|
const { layoutType, btnBuy, activityIds } = props.data || {};
|
||||||
const productList = ref([]);
|
const { marginLeft, marginRight } = props.styles || {};
|
||||||
// 查询秒杀活动商品
|
|
||||||
onMounted(async () => {
|
// 购买按钮样式
|
||||||
// todo:@owen 与Yudao结构不一致,待重构
|
const buyStyle = computed(() => {
|
||||||
const {
|
if (btnBuy.type === 'text') {
|
||||||
data: activity
|
// 文字按钮:线性渐变背景颜色
|
||||||
} = await SeckillApi.getSeckillActivity(props.data.activityId);
|
return {
|
||||||
const {
|
background: `linear-gradient(to right, ${btnBuy.bgBeginColor}, ${btnBuy.bgEndColor})`,
|
||||||
data: spu
|
};
|
||||||
} = await SpuApi.getSpuDetail(activity.spuId)
|
}
|
||||||
// 循环活动信息,赋值秒杀最低价格
|
if (btnBuy.type === 'img') {
|
||||||
activity.products.forEach((product) => {
|
// 图片按钮
|
||||||
spu.price = Math.min(spu.price, product.seckillPrice); // 设置 SPU 的最低价格
|
return {
|
||||||
});
|
width: '54rpx',
|
||||||
// 将活动库存赋值给商品库存
|
height: '54rpx',
|
||||||
spu.stock = activity.stock
|
background: `url(${sheep.$url.cdn(btnBuy.imgUrl)}) no-repeat`,
|
||||||
// 活动总库存 - 活动库存 = 销量
|
backgroundSize: '100% 100%',
|
||||||
spu.salesCount = activity.totalStock - activity.stock
|
};
|
||||||
productList.value = [spu];
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//region 商品瀑布流布局
|
||||||
|
// 下一个要处理的商品索引
|
||||||
|
let count = 0;
|
||||||
|
// 左列的高度
|
||||||
|
let leftHeight = 0;
|
||||||
|
// 右列的高度
|
||||||
|
let rightHeight = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 计算商品在左列还是右列
|
||||||
|
* @param height 商品的高度
|
||||||
|
* @param where 添加到哪一列
|
||||||
|
*/
|
||||||
|
function calculateGoodsColumn(height = 0, where = 'left') {
|
||||||
|
// 处理完
|
||||||
|
if (!state.spuList[count]) return;
|
||||||
|
// 增加列的高度
|
||||||
|
if (where === 'left') leftHeight += height;
|
||||||
|
if (where === 'right') rightHeight += height;
|
||||||
|
// 添加到矮的一列
|
||||||
|
if (leftHeight <= rightHeight) {
|
||||||
|
state.leftSpuList.push(state.spuList[count]);
|
||||||
|
} else {
|
||||||
|
state.rightSpuList.push(state.spuList[count]);
|
||||||
|
}
|
||||||
|
// 计数
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
|
||||||
|
//endregion
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据商品编号列表,获取商品列表
|
||||||
|
* @param ids 商品编号列表
|
||||||
|
* @return {Promise<undefined>} 商品列表
|
||||||
|
*/
|
||||||
|
async function getSeckillActivityDetailList(ids) {
|
||||||
|
const { data } = await SeckillApi.getSeckillActivityListByIds(ids);
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据商品编号,获取商品详情
|
||||||
|
* @param ids 商品编号列表
|
||||||
|
* @return {Promise<undefined>} 商品列表
|
||||||
|
*/
|
||||||
|
async function getSpuDetail(ids) {
|
||||||
|
const { data: spu } = await SpuApi.getSpuDetail(ids);
|
||||||
|
return spu;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 初始化
|
||||||
|
onMounted(async () => {
|
||||||
|
// 加载活动列表
|
||||||
|
const activityList = await getSeckillActivityDetailList(activityIds.join(','));
|
||||||
|
// 循环获取活动商品SPU详情并添加到spuList
|
||||||
|
for (const activity of activityList) {
|
||||||
|
state.spuList.push(await getSpuDetail(activity.spuId));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 循环活动列表
|
||||||
|
activityList.forEach((activity) => {
|
||||||
|
// 提取活动价格
|
||||||
|
const seckillPrice = activity.seckillPrice || Infinity;
|
||||||
|
// 查找对应的 spu 并更新价格
|
||||||
|
const spu = state.spuList.find((spu) => activity.spuId === spu.id);
|
||||||
|
if (spu) {
|
||||||
|
// 赋值最低价格
|
||||||
|
spu.price = Math.min(seckillPrice, spu.price);
|
||||||
|
// 赋值活动ID,为了点击跳转详情页
|
||||||
|
spu.activityId = activity.id;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 只有双列布局时需要
|
||||||
|
if (layoutType === LayoutTypeEnum.TWO_COL) {
|
||||||
|
// 分列
|
||||||
|
calculateGoodsColumn();
|
||||||
|
}
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.header-box {
|
.goods-md-wrap {
|
||||||
height: 100rpx;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.goods-list {
|
.goods-list-box {
|
||||||
position: relative;
|
width: 50%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
&:nth-last-child(1) {
|
.left-list {
|
||||||
margin-bottom: 0 !important;
|
&:nth-last-child(1) {
|
||||||
}
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.cart-btn {
|
.right-list {
|
||||||
position: absolute;
|
&:nth-last-child(1) {
|
||||||
bottom: 10rpx;
|
margin-bottom: 0 !important;
|
||||||
right: 20rpx;
|
}
|
||||||
z-index: 11;
|
}
|
||||||
height: 50rpx;
|
}
|
||||||
line-height: 50rpx;
|
|
||||||
padding: 0 20rpx;
|
|
||||||
border-radius: 25rpx;
|
|
||||||
font-size: 24rpx;
|
|
||||||
color: #fff;
|
|
||||||
background: linear-gradient(90deg, #ff6600 0%, #fe832a 100%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.goods-sm-box {
|
.goods-box {
|
||||||
margin: 0 auto;
|
&:nth-last-of-type(1) {
|
||||||
box-sizing: border-box;
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.goods-card-box {
|
.goods-md-box,
|
||||||
flex-shrink: 0;
|
.goods-sl-box,
|
||||||
overflow: hidden;
|
.goods-lg-box {
|
||||||
width: 33.3%;
|
position: relative;
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
.cart-btn {
|
||||||
}
|
position: absolute;
|
||||||
</style>
|
bottom: 18rpx;
|
||||||
|
right: 20rpx;
|
||||||
|
z-index: 11;
|
||||||
|
height: 50rpx;
|
||||||
|
line-height: 50rpx;
|
||||||
|
padding: 0 20rpx;
|
||||||
|
border-radius: 25rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue