commit
ea98ba45ca
11
pages.json
11
pages.json
|
@ -120,6 +120,17 @@
|
||||||
"group": "商品"
|
"group": "商品"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"path": "point",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "积分商品"
|
||||||
|
},
|
||||||
|
"meta": {
|
||||||
|
"sync": true,
|
||||||
|
"title": "积分商品",
|
||||||
|
"group": "商品"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"path": "list",
|
"path": "list",
|
||||||
"style": {
|
"style": {
|
||||||
|
|
|
@ -0,0 +1,77 @@
|
||||||
|
<!-- 页面 -->
|
||||||
|
<template>
|
||||||
|
<s-layout title="积分商城">
|
||||||
|
<view class="ss-p-20">
|
||||||
|
<view v-for="item in state.pagination.data" :key="item.id" class="ss-m-b-20">
|
||||||
|
<s-point-card
|
||||||
|
size="sl"
|
||||||
|
:data="item"
|
||||||
|
priceColor="#FF3000"
|
||||||
|
@tap="sheep.$router.go('/pages/goods/point', { id: item.id })"
|
||||||
|
></s-point-card>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<s-empty
|
||||||
|
v-if="state.pagination.total === 0"
|
||||||
|
icon="/static/goods-empty.png"
|
||||||
|
text="暂无积分商品"
|
||||||
|
></s-empty>
|
||||||
|
<uni-load-more
|
||||||
|
v-if="state.pagination.total > 0"
|
||||||
|
:status="state.loadStatus"
|
||||||
|
:content-text="{
|
||||||
|
contentdown: '上拉加载更多',
|
||||||
|
}"
|
||||||
|
@tap="loadmore"
|
||||||
|
/>
|
||||||
|
</s-layout>
|
||||||
|
</template>
|
||||||
|
<script setup>
|
||||||
|
import sheep from '@/sheep';
|
||||||
|
import { onLoad, onReachBottom } from '@dcloudio/uni-app';
|
||||||
|
import { reactive } from 'vue';
|
||||||
|
import _ from 'lodash';
|
||||||
|
|
||||||
|
const state = reactive({
|
||||||
|
pagination: {
|
||||||
|
data: [],
|
||||||
|
current_page: 1,
|
||||||
|
total: 1,
|
||||||
|
last_page: 1,
|
||||||
|
},
|
||||||
|
loadStatus: '',
|
||||||
|
});
|
||||||
|
async function getData(page = 1, list_rows = 5) {
|
||||||
|
state.loadStatus = 'loading';
|
||||||
|
let res = await sheep.$api.app.scoreShop.list({
|
||||||
|
list_rows,
|
||||||
|
page,
|
||||||
|
});
|
||||||
|
if (res.error === 0) {
|
||||||
|
let couponlist = _.concat(state.pagination.data, res.data.data);
|
||||||
|
state.pagination = {
|
||||||
|
...res.data,
|
||||||
|
data: couponlist,
|
||||||
|
};
|
||||||
|
if (state.pagination.current_page < state.pagination.last_page) {
|
||||||
|
state.loadStatus = 'more';
|
||||||
|
} else {
|
||||||
|
state.loadStatus = 'noMore';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 加载更多
|
||||||
|
function loadmore() {
|
||||||
|
if (state.loadStatus !== 'noMore') {
|
||||||
|
getData(state.pagination.current_page + 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 上拉加载更多
|
||||||
|
onReachBottom(() => {
|
||||||
|
loadmore();
|
||||||
|
});
|
||||||
|
onLoad(() => {
|
||||||
|
getData();
|
||||||
|
});
|
||||||
|
</script>
|
|
@ -0,0 +1,525 @@
|
||||||
|
<!-- 秒杀商品详情 -->
|
||||||
|
<template>
|
||||||
|
<s-layout :onShareAppMessage="shareInfo" navbar="goods">
|
||||||
|
<!-- 标题栏 -->
|
||||||
|
<detailNavbar />
|
||||||
|
<!-- 骨架屏 -->
|
||||||
|
<detailSkeleton v-if="state.skeletonLoading" />
|
||||||
|
<!-- 下架/售罄提醒 -->
|
||||||
|
<s-empty
|
||||||
|
v-else-if="state.goodsInfo === null || state.goodsInfo.activity_type !== PromotionActivityTypeEnum.POINT.type"
|
||||||
|
text="活动不存在或已结束"
|
||||||
|
icon="/static/soldout-empty.png"
|
||||||
|
showAction
|
||||||
|
actionText="再逛逛"
|
||||||
|
actionUrl="/pages/goods/list"
|
||||||
|
/>
|
||||||
|
<block v-else>
|
||||||
|
<view class="detail-swiper-selector">
|
||||||
|
<!-- 商品图轮播 -->
|
||||||
|
<su-swiper
|
||||||
|
class="ss-m-b-14"
|
||||||
|
isPreview
|
||||||
|
:list="state.goodsSwiper"
|
||||||
|
dotStyle="tag"
|
||||||
|
imageMode="widthFix"
|
||||||
|
dotCur="bg-mask-40"
|
||||||
|
:seizeHeight="750"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- 价格+标题 -->
|
||||||
|
<view class="title-card ss-m-y-14 ss-m-x-20 ss-p-x-20 ss-p-y-34">
|
||||||
|
<view class="price-box ss-flex ss-row-between ss-m-b-18">
|
||||||
|
<view class="ss-flex">
|
||||||
|
<view class="price-text ss-m-r-16">
|
||||||
|
{{ getShowPriceText }}
|
||||||
|
</view>
|
||||||
|
<view class="tig ss-flex ss-col-center">
|
||||||
|
<view class="tig-icon ss-flex ss-col-center ss-row-center">
|
||||||
|
<text class="cicon-alarm"></text>
|
||||||
|
</view>
|
||||||
|
<view class="tig-title">积分价</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="ss-flex ss-row-between ss-m-b-60">
|
||||||
|
<view class="origin-price ss-flex ss-col-center" v-if="state.goodsInfo.marketPrice">
|
||||||
|
原价
|
||||||
|
<view class="origin-price-text">
|
||||||
|
{{ fen2yuan(state.selectedSku.marketPrice || state.goodsInfo.marketPrice) }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="title-text ss-line-2 ss-m-b-6">{{ state.goodsInfo.name || '' }}</view>
|
||||||
|
<view class="subtitle-text ss-line-1">{{ state.goodsInfo.introduction }}</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 功能卡片 -->
|
||||||
|
<view class="detail-cell-card detail-card ss-flex-col">
|
||||||
|
<detail-cell-sku :sku="state.selectedSku" @tap="state.showSelectSku = true" />
|
||||||
|
</view>
|
||||||
|
<!-- 规格与数量弹框 -->
|
||||||
|
<s-select-seckill-sku
|
||||||
|
v-model="state.goodsInfo"
|
||||||
|
:show="state.showSelectSku"
|
||||||
|
:single-limit-count="activity.singleLimitCount"
|
||||||
|
@buy="onBuy"
|
||||||
|
@change="onSkuChange"
|
||||||
|
@close="state.showSelectSku = false"
|
||||||
|
/>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<!-- 评价 -->
|
||||||
|
<detail-comment-card class="detail-comment-selector" :goodsId="state.goodsInfo.id" />
|
||||||
|
<!-- 详情 -->
|
||||||
|
<detail-content-card class="detail-content-selector" :content="state.goodsInfo.description" />
|
||||||
|
|
||||||
|
<!-- 详情tabbar -->
|
||||||
|
<detail-tabbar v-model="state.goodsInfo">
|
||||||
|
<view class="buy-box ss-flex ss-col-center ss-p-r-20">
|
||||||
|
<button
|
||||||
|
class="ss-reset-button origin-price-btn ss-flex-col"
|
||||||
|
v-if="state.goodsInfo.marketPrice"
|
||||||
|
@tap="sheep.$router.go('/pages/goods/index', { id: state.goodsInfo.id })"
|
||||||
|
>
|
||||||
|
<view>
|
||||||
|
<view class="btn-price">{{ fen2yuan(state.goodsInfo.marketPrice) }}</view>
|
||||||
|
<view>原价购买</view>
|
||||||
|
</view>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="ss-reset-button btn-box ss-flex-col"
|
||||||
|
@tap="state.showSelectSku = true"
|
||||||
|
:class="
|
||||||
|
state.goodsInfo.stock != 0
|
||||||
|
? 'check-btn-box'
|
||||||
|
: 'disabled-btn-box'
|
||||||
|
"
|
||||||
|
:disabled="state.goodsInfo.stock === 0"
|
||||||
|
>
|
||||||
|
<view class="price-text">
|
||||||
|
{{getShowPriceText}}
|
||||||
|
</view>
|
||||||
|
<view v-if="state.goodsInfo.stock === 0">已售罄</view>
|
||||||
|
<view v-else>立即兑换</view>
|
||||||
|
</button>
|
||||||
|
</view>
|
||||||
|
</detail-tabbar>
|
||||||
|
</block>
|
||||||
|
</s-layout>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { computed, reactive, ref, unref } from 'vue';
|
||||||
|
import { onLoad, onPageScroll } from '@dcloudio/uni-app';
|
||||||
|
import sheep from '@/sheep';
|
||||||
|
import { isEmpty } from 'lodash-es';
|
||||||
|
import { fen2yuan, formatGoodsSwiper } from '@/sheep/hooks/useGoods';
|
||||||
|
import detailNavbar from './components/detail/detail-navbar.vue';
|
||||||
|
import detailCellSku from './components/detail/detail-cell-sku.vue';
|
||||||
|
import detailTabbar from './components/detail/detail-tabbar.vue';
|
||||||
|
import detailSkeleton from './components/detail/detail-skeleton.vue';
|
||||||
|
import detailCommentCard from './components/detail/detail-comment-card.vue';
|
||||||
|
import detailContentCard from './components/detail/detail-content-card.vue';
|
||||||
|
import SpuApi from '@/sheep/api/product/spu';
|
||||||
|
import { PromotionActivityTypeEnum } from '@/sheep/util/const';
|
||||||
|
import PointApi from '@/sheep/api/promotion/point';
|
||||||
|
|
||||||
|
const headerBg = sheep.$url.css('/static/img/shop/goods/seckill-bg.png');
|
||||||
|
const btnBg = sheep.$url.css('/static/img/shop/goods/seckill-btn.png');
|
||||||
|
const disabledBtnBg = sheep.$url.css('/static/img/shop/goods/activity-btn-disabled.png');
|
||||||
|
const seckillBg = sheep.$url.css('/static/img/shop/goods/seckill-tip-bg.png');
|
||||||
|
const grouponBg = sheep.$url.css('/static/img/shop/goods/groupon-tip-bg.png');
|
||||||
|
|
||||||
|
onPageScroll(() => {
|
||||||
|
});
|
||||||
|
const state = reactive({
|
||||||
|
skeletonLoading: true,
|
||||||
|
goodsInfo: {},
|
||||||
|
showSelectSku: false,
|
||||||
|
goodsSwiper: [],
|
||||||
|
selectedSku: {},
|
||||||
|
showModel: false,
|
||||||
|
total: 0,
|
||||||
|
price: '',
|
||||||
|
});
|
||||||
|
|
||||||
|
// 规格变更
|
||||||
|
function onSkuChange(e) {
|
||||||
|
state.selectedSku = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 立即购买
|
||||||
|
function onBuy(sku) {
|
||||||
|
sheep.$router.go('/pages/order/confirm', {
|
||||||
|
data: JSON.stringify({
|
||||||
|
order_type: 'goods',
|
||||||
|
buy_type: 'point',
|
||||||
|
pointActivityId: activity.value.id,
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
skuId: sku.id,
|
||||||
|
count: sku.count,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 分享信息
|
||||||
|
// TODO puhui999: 下次 fix
|
||||||
|
const shareInfo = computed(() => {
|
||||||
|
if (isEmpty(unref(activity))) return {};
|
||||||
|
return sheep.$platform.share.getShareInfo(
|
||||||
|
{
|
||||||
|
title: activity.value.name,
|
||||||
|
image: sheep.$url.cdn(state.goodsInfo.picUrl),
|
||||||
|
params: {
|
||||||
|
page: '4',
|
||||||
|
query: activity.value.id,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'goods', // 商品海报
|
||||||
|
title: activity.value.name, // 商品标题
|
||||||
|
image: sheep.$url.cdn(state.goodsInfo.picUrl), // 商品主图
|
||||||
|
price: state.goodsInfo.price, // 商品价格
|
||||||
|
marketPrice: state.goodsInfo.marketPrice, // 商品原价
|
||||||
|
},
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
const activity = ref();
|
||||||
|
|
||||||
|
const getShowPriceText = computed(() => {
|
||||||
|
let priceText = `${activity.value.point}积分${!activity.value.price ? '' : `+¥${fen2yuan(activity.value.price)}`}`;
|
||||||
|
if (!isEmpty(state.selectedSku)) {
|
||||||
|
const sku = state.selectedSku;
|
||||||
|
priceText = `${sku.point}积分${!sku.pointPrice ? '' : `+¥${fen2yuan(sku.pointPrice)}`}`;
|
||||||
|
}
|
||||||
|
return priceText;
|
||||||
|
});
|
||||||
|
|
||||||
|
// 查询活动
|
||||||
|
const getActivity = async (id) => {
|
||||||
|
const { data } = await PointApi.getPointActivity(id);
|
||||||
|
activity.value = data;
|
||||||
|
// 查询商品
|
||||||
|
await getSpu(data.spuId);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 查询商品
|
||||||
|
const getSpu = async (id) => {
|
||||||
|
const { data } = await SpuApi.getSpuDetail(id);
|
||||||
|
data.activity_type = PromotionActivityTypeEnum.POINT.type;
|
||||||
|
state.goodsInfo = data;
|
||||||
|
state.goodsInfo.stock = Math.min(data.stock, activity.value.stock);
|
||||||
|
// 处理轮播图
|
||||||
|
state.goodsSwiper = formatGoodsSwiper(state.goodsInfo.sliderPicUrls);
|
||||||
|
|
||||||
|
// 价格、库存使用活动的
|
||||||
|
data.skus.forEach((sku) => {
|
||||||
|
const product = activity.value.products.find((product) => product.skuId === sku.id);
|
||||||
|
if (product) {
|
||||||
|
sku.point = product.point;
|
||||||
|
sku.pointPrice = product.price;
|
||||||
|
sku.stock = Math.min(sku.stock, product.stock);
|
||||||
|
// 设置限购数量
|
||||||
|
sku.limitCount = product.count;
|
||||||
|
} else {
|
||||||
|
// 找不到可能是没配置
|
||||||
|
sku.stock = 0;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
state.skeletonLoading = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
onLoad((options) => {
|
||||||
|
// 非法参数
|
||||||
|
if (!options.id) {
|
||||||
|
state.goodsInfo = null;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询活动
|
||||||
|
getActivity(options.id);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.disabled-btn-box[disabled] {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail-card {
|
||||||
|
background-color: $white;
|
||||||
|
margin: 14rpx 20rpx;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 价格标题卡片
|
||||||
|
.title-card {
|
||||||
|
width: 710rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
// height: 320rpx;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
background-image: v-bind(headerBg);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
|
||||||
|
.price-box {
|
||||||
|
.price-text {
|
||||||
|
font-size: 30rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #fff;
|
||||||
|
line-height: normal;
|
||||||
|
font-family: OPPOSANS;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.origin-price {
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #fff;
|
||||||
|
opacity: 0.7;
|
||||||
|
|
||||||
|
.origin-price-text {
|
||||||
|
text-decoration: line-through;
|
||||||
|
|
||||||
|
font-family: OPPOSANS;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: '¥';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tig {
|
||||||
|
border: 2rpx solid #ffffff;
|
||||||
|
border-radius: 4rpx;
|
||||||
|
width: 126rpx;
|
||||||
|
height: 38rpx;
|
||||||
|
|
||||||
|
.tig-icon {
|
||||||
|
width: 40rpx;
|
||||||
|
height: 40rpx;
|
||||||
|
margin-left: -2rpx;
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 4rpx 0 0 4rpx;
|
||||||
|
|
||||||
|
.cicon-alarm {
|
||||||
|
font-size: 32rpx;
|
||||||
|
color: #fc6e6f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tig-title {
|
||||||
|
width: 86rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: normal;
|
||||||
|
color: #ffffff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.countdown-title {
|
||||||
|
font-size: 26rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.countdown-time {
|
||||||
|
font-size: 26rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #ffffff;
|
||||||
|
|
||||||
|
.countdown-h {
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-family: OPPOSANS;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #ffffff;
|
||||||
|
padding: 0 4rpx;
|
||||||
|
height: 40rpx;
|
||||||
|
background: rgba(#000000, 0.1);
|
||||||
|
border-radius: 6rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.countdown-num {
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-family: OPPOSANS;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #ffffff;
|
||||||
|
width: 40rpx;
|
||||||
|
height: 40rpx;
|
||||||
|
background: rgba(#000000, 0.1);
|
||||||
|
border-radius: 6rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.discounts-box {
|
||||||
|
.discounts-tag {
|
||||||
|
padding: 4rpx 10rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
border-radius: 4rpx;
|
||||||
|
color: var(--ui-BG-Main);
|
||||||
|
// background: rgba(#2aae67, 0.05);
|
||||||
|
background: var(--ui-BG-Main-tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
.discounts-title {
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: var(--ui-BG-Main);
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cicon-forward {
|
||||||
|
color: var(--ui-BG-Main);
|
||||||
|
font-size: 24rpx;
|
||||||
|
line-height: normal;
|
||||||
|
margin-top: 4rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-text {
|
||||||
|
font-size: 30rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 42rpx;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle-text {
|
||||||
|
font-size: 26rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #ffffff;
|
||||||
|
line-height: 42rpx;
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 购买
|
||||||
|
.buy-box {
|
||||||
|
.check-btn-box {
|
||||||
|
width: 248rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-left: -36rpx;
|
||||||
|
background-image: v-bind(btnBg);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
color: #ffffff;
|
||||||
|
line-height: normal;
|
||||||
|
border-radius: 0px 40rpx 40rpx 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disabled-btn-box {
|
||||||
|
width: 248rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-left: -36rpx;
|
||||||
|
background-image: v-bind(disabledBtnBg);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
color: #999999;
|
||||||
|
line-height: normal;
|
||||||
|
border-radius: 0px 40rpx 40rpx 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-price {
|
||||||
|
font-family: OPPOSANS;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: '¥';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.origin-price-btn {
|
||||||
|
width: 236rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
background: rgba(#ff5651, 0.1);
|
||||||
|
color: #ff6000;
|
||||||
|
border-radius: 40rpx 0px 0px 40rpx;
|
||||||
|
line-height: normal;
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
|
||||||
|
.no-original {
|
||||||
|
font-size: 28rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-title {
|
||||||
|
font-size: 28rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//秒杀卡片
|
||||||
|
.seckill-box {
|
||||||
|
background: v-bind(seckillBg) no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.groupon-box {
|
||||||
|
background: v-bind(grouponBg) no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
//活动卡片
|
||||||
|
.activity-box {
|
||||||
|
width: 100%;
|
||||||
|
height: 80rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin-bottom: 10rpx;
|
||||||
|
|
||||||
|
.activity-title {
|
||||||
|
font-size: 26rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #ffffff;
|
||||||
|
line-height: 42rpx;
|
||||||
|
|
||||||
|
.activity-icon {
|
||||||
|
width: 38rpx;
|
||||||
|
height: 38rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.activity-go {
|
||||||
|
width: 70rpx;
|
||||||
|
height: 32rpx;
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 16rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #ff6000;
|
||||||
|
font-size: 24rpx;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.model-box {
|
||||||
|
.title {
|
||||||
|
font-size: 36rpx;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
font-size: 26rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
image {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -294,6 +294,7 @@
|
||||||
combinationActivityId: state.orderPayload.combinationActivityId,
|
combinationActivityId: state.orderPayload.combinationActivityId,
|
||||||
combinationHeadId: state.orderPayload.combinationHeadId,
|
combinationHeadId: state.orderPayload.combinationHeadId,
|
||||||
seckillActivityId: state.orderPayload.seckillActivityId,
|
seckillActivityId: state.orderPayload.seckillActivityId,
|
||||||
|
pointActivityId: state.orderPayload.pointActivityId,
|
||||||
});
|
});
|
||||||
if (code !== 0) {
|
if (code !== 0) {
|
||||||
return;
|
return;
|
||||||
|
@ -324,6 +325,7 @@
|
||||||
combinationActivityId: state.orderPayload.combinationActivityId,
|
combinationActivityId: state.orderPayload.combinationActivityId,
|
||||||
combinationHeadId: state.orderPayload.combinationHeadId,
|
combinationHeadId: state.orderPayload.combinationHeadId,
|
||||||
seckillActivityId: state.orderPayload.seckillActivityId,
|
seckillActivityId: state.orderPayload.seckillActivityId,
|
||||||
|
pointActivityId: state.orderPayload.pointActivityId,
|
||||||
});
|
});
|
||||||
if (code !== 0) {
|
if (code !== 0) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -19,15 +19,15 @@
|
||||||
<view class="num">{{ orderInfo.pickUpVerifyCode }}</view>
|
<view class="num">{{ orderInfo.pickUpVerifyCode }}</view>
|
||||||
<view class="rules">
|
<view class="rules">
|
||||||
<!-- TODO puhui999: 需要后端放回:使用 receiveTime 即可 -->
|
<!-- TODO puhui999: 需要后端放回:使用 receiveTime 即可 -->
|
||||||
<!-- <view class="item">-->
|
<view class="item">
|
||||||
<!-- <view class="rulesTitle flex flex-wrap align-center">-->
|
<view class="rulesTitle flex flex-wrap align-center">
|
||||||
<!-- 核销时间-->
|
核销时间
|
||||||
<!-- </view>-->
|
</view>
|
||||||
<!-- <view class="info">-->
|
<view class="info">
|
||||||
<!-- 每日:-->
|
每日:
|
||||||
<!-- <text class="time">2020-2-+52</text>-->
|
<text class="time">2020-2-+52</text>
|
||||||
<!-- </view>-->
|
</view>
|
||||||
<!-- </view>-->
|
</view>
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<view class="rulesTitle flex flex-wrap align-center">
|
<view class="rulesTitle flex flex-wrap align-center">
|
||||||
<text class="iconfont icon-shuoming1"></text>
|
<text class="iconfont icon-shuoming1"></text>
|
||||||
|
@ -138,7 +138,6 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
// TODO puhui999: 样式需要调整有 bug
|
|
||||||
.borRadius14 {
|
.borRadius14 {
|
||||||
border-radius: 14rpx !important;
|
border-radius: 14rpx !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
import request from '@/sheep/request';
|
||||||
|
|
||||||
|
const PointApi = {
|
||||||
|
// 获得积分商城活动分页
|
||||||
|
getPointActivityPage: (params) => {
|
||||||
|
return request({ url: 'promotion/point-activity/page', method: 'GET', params });
|
||||||
|
},
|
||||||
|
|
||||||
|
// 获得积分商城活动列表,基于活动编号数组
|
||||||
|
getPointActivityListByIds: (ids) => {
|
||||||
|
return request({
|
||||||
|
url: '/promotion/point-activity/list-by-ids',
|
||||||
|
method: 'GET',
|
||||||
|
params: {
|
||||||
|
ids,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获得积分商城活动明细
|
||||||
|
* @param {number} id 积分商城活动编号
|
||||||
|
* @return {*}
|
||||||
|
*/
|
||||||
|
getPointActivity: (id) => {
|
||||||
|
return request({
|
||||||
|
url: 'promotion/point-activity/get-detail',
|
||||||
|
method: 'GET',
|
||||||
|
params: { id },
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default PointApi;
|
|
@ -39,6 +39,8 @@
|
||||||
<s-groupon-block v-if="type === 'PromotionCombination'" :data="data" :styles="styles" />
|
<s-groupon-block v-if="type === 'PromotionCombination'" :data="data" :styles="styles" />
|
||||||
<!-- 营销组件:秒杀 -->
|
<!-- 营销组件:秒杀 -->
|
||||||
<s-seckill-block v-if="type === 'PromotionSeckill'" :data="data" :styles="styles" />
|
<s-seckill-block v-if="type === 'PromotionSeckill'" :data="data" :styles="styles" />
|
||||||
|
<!-- 营销组件:积分商城 -->
|
||||||
|
<s-point-block v-if="type === 'PromotionPoint'" :data="data" :styles="styles" />
|
||||||
<!-- 营销组件:小程序直播(暂时没有这个功能) -->
|
<!-- 营销组件:小程序直播(暂时没有这个功能) -->
|
||||||
<s-live-block v-if="type === 'MpLive'" :data="data" :styles="styles" />
|
<s-live-block v-if="type === 'MpLive'" :data="data" :styles="styles" />
|
||||||
<!-- 营销组件:优惠券 -->
|
<!-- 营销组件:优惠券 -->
|
||||||
|
|
|
@ -39,12 +39,18 @@
|
||||||
class="xs-goods-price font-OPPOSANS"
|
class="xs-goods-price font-OPPOSANS"
|
||||||
:style="[{ color: goodsFields.price.color }]"
|
:style="[{ color: goodsFields.price.color }]"
|
||||||
>
|
>
|
||||||
<text class="price-unit ss-font-24">{{ priceUnit }}</text>
|
|
||||||
<!-- 活动价格 -->
|
<!-- 活动价格 -->
|
||||||
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
<text v-if="data.activityType && data.activityType === PromotionActivityTypeEnum.POINT.type">
|
||||||
<text v-else>
|
{{ data.point }}积分
|
||||||
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
{{ !data.pointPrice || data.pointPrice === 0 ? '' : `+${fen2yuan(data.pointPrice)}元` }}
|
||||||
</text>
|
</text>
|
||||||
|
<template v-else>
|
||||||
|
<text class="price-unit ss-font-24">{{ priceUnit }}</text>
|
||||||
|
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
||||||
|
<text v-else>
|
||||||
|
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
||||||
|
</text>
|
||||||
|
</template>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -87,12 +93,18 @@
|
||||||
class="sm-goods-price font-OPPOSANS"
|
class="sm-goods-price font-OPPOSANS"
|
||||||
:style="[{ color: goodsFields.price.color }]"
|
:style="[{ color: goodsFields.price.color }]"
|
||||||
>
|
>
|
||||||
<text class="price-unit ss-font-24">{{ priceUnit }}</text>
|
|
||||||
<!-- 活动价格 -->
|
<!-- 活动价格 -->
|
||||||
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
<text v-if="data.activityType && data.activityType === PromotionActivityTypeEnum.POINT.type">
|
||||||
<text v-else>
|
{{ data.point }}积分
|
||||||
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
{{ !data.pointPrice || data.pointPrice === 0 ? '' : `+${fen2yuan(data.pointPrice)}元` }}
|
||||||
</text>
|
</text>
|
||||||
|
<template v-else>
|
||||||
|
<text class="price-unit ss-font-24">{{ priceUnit }}</text>
|
||||||
|
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
||||||
|
<text v-else>
|
||||||
|
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
||||||
|
</text>
|
||||||
|
</template>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -149,12 +161,18 @@
|
||||||
class="md-goods-price ss-m-t-16 font-OPPOSANS ss-m-r-10"
|
class="md-goods-price ss-m-t-16 font-OPPOSANS ss-m-r-10"
|
||||||
:style="[{ color: goodsFields.price.color }]"
|
:style="[{ color: goodsFields.price.color }]"
|
||||||
>
|
>
|
||||||
<text class="price-unit ss-font-24">{{ priceUnit }}</text>
|
|
||||||
<!-- 活动价格 -->
|
<!-- 活动价格 -->
|
||||||
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
<text v-if="data.activityType && data.activityType === PromotionActivityTypeEnum.POINT.type">
|
||||||
<text v-else>
|
{{ data.point }}积分
|
||||||
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
{{ !data.pointPrice || data.pointPrice === 0 ? '' : `+${fen2yuan(data.pointPrice)}元` }}
|
||||||
</text>
|
</text>
|
||||||
|
<template v-else>
|
||||||
|
<text class="price-unit ss-font-24">{{ priceUnit }}</text>
|
||||||
|
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
||||||
|
<text v-else>
|
||||||
|
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
||||||
|
</text>
|
||||||
|
</template>
|
||||||
</view>
|
</view>
|
||||||
<view
|
<view
|
||||||
v-if="
|
v-if="
|
||||||
|
@ -236,29 +254,31 @@
|
||||||
{{ item }}
|
{{ item }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="ss-flex ss-col-bottom ss-m-t-10">
|
<view v-if="goodsFields.price?.show" class="ss-flex ss-col-bottom font-OPPOSANS">
|
||||||
<view
|
<view class="sl-goods-price ss-m-r-12" :style="[{ color: goodsFields.price.color }]">
|
||||||
v-if="goodsFields.price?.show"
|
<!-- 活动价格 -->
|
||||||
class="lg-goods-price ss-m-r-12 ss-flex ss-col-bottom font-OPPOSANS"
|
<text v-if="data.activityType && data.activityType === PromotionActivityTypeEnum.POINT.type">
|
||||||
:style="[{ color: goodsFields.price.color }]"
|
{{ data.point }}积分
|
||||||
>
|
{{ !data.pointPrice || data.pointPrice === 0 ? '' : `+${fen2yuan(data.pointPrice)}元` }}
|
||||||
<text class="ss-font-24">{{ priceUnit }}</text>
|
</text>
|
||||||
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
<template v-else>
|
||||||
|
<text class="price-unit ss-font-24">{{ priceUnit }}</text>
|
||||||
|
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
||||||
|
<text v-else>
|
||||||
|
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
||||||
|
</text>
|
||||||
|
</template>
|
||||||
</view>
|
</view>
|
||||||
<view
|
<view
|
||||||
v-if="
|
v-if="
|
||||||
(goodsFields.original_price?.show || goodsFields.marketPrice?.show) &&
|
(goodsFields.original_price?.show || goodsFields.marketPrice?.show) &&
|
||||||
(data.original_price > 0 || data.marketPrice > 0)
|
(data.original_price > 0 || data.marketPrice > 0)
|
||||||
"
|
"
|
||||||
class="goods-origin-price ss-flex ss-col-bottom font-OPPOSANS"
|
class="goods-origin-price ss-m-t-16 font-OPPOSANS ss-flex"
|
||||||
:style="[{ color: originPriceColor }]"
|
:style="[{ color: originPriceColor }]"
|
||||||
>
|
>
|
||||||
<text class="price-unit ss-font-20">{{ priceUnit }}</text>
|
<text class="price-unit ss-font-20">{{ priceUnit }}</text>
|
||||||
<!-- 活动价格 -->
|
<view class="ss-m-l-8">{{ fen2yuan(data.marketPrice) }}</view>
|
||||||
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
|
||||||
<text v-else>
|
|
||||||
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
|
||||||
</text>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="ss-m-t-8 ss-flex ss-col-center ss-flex-wrap">
|
<view class="ss-m-t-8 ss-flex ss-col-center ss-flex-wrap">
|
||||||
|
@ -268,7 +288,7 @@
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<slot name="cart">
|
<slot name="cart">
|
||||||
<view class="buy-box ss-flex ss-col-center ss-row-center" v-if="buttonShow"> 去购买 </view>
|
<view class="buy-box ss-flex ss-col-center ss-row-center" v-if="buttonShow"> 去购买</view>
|
||||||
</slot>
|
</slot>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
@ -324,12 +344,18 @@
|
||||||
</view>
|
</view>
|
||||||
<view v-if="goodsFields.price?.show" class="ss-flex ss-col-bottom font-OPPOSANS">
|
<view v-if="goodsFields.price?.show" class="ss-flex ss-col-bottom font-OPPOSANS">
|
||||||
<view class="sl-goods-price ss-m-r-12" :style="[{ color: goodsFields.price.color }]">
|
<view class="sl-goods-price ss-m-r-12" :style="[{ color: goodsFields.price.color }]">
|
||||||
<text class="price-unit ss-font-24">{{ priceUnit }}</text>
|
|
||||||
<!-- 活动价格 -->
|
<!-- 活动价格 -->
|
||||||
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
<text v-if="data.activityType && data.activityType === PromotionActivityTypeEnum.POINT.type">
|
||||||
<text v-else>
|
{{ data.point }}积分
|
||||||
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
{{ !data.pointPrice || data.pointPrice === 0 ? '' : `+${fen2yuan(data.pointPrice)}元` }}
|
||||||
</text>
|
</text>
|
||||||
|
<template v-else>
|
||||||
|
<text class="price-unit ss-font-24">{{ priceUnit }}</text>
|
||||||
|
<text v-if="data.promotionPrice > 0">{{ fen2yuan(data.promotionPrice) }}</text>
|
||||||
|
<text v-else>
|
||||||
|
{{ isArray(data.price) ? fen2yuan(data.price[0]) : fen2yuan(data.price) }}
|
||||||
|
</text>
|
||||||
|
</template>
|
||||||
</view>
|
</view>
|
||||||
<view
|
<view
|
||||||
v-if="
|
v-if="
|
||||||
|
@ -361,39 +387,41 @@
|
||||||
* 商品卡片
|
* 商品卡片
|
||||||
*
|
*
|
||||||
* @property {Array} size = [xs | sm | md | lg | sl ] - 列表数据
|
* @property {Array} size = [xs | sm | md | lg | sl ] - 列表数据
|
||||||
* @property {String} tag - md及以上才有
|
* @property {String} tag - md及以上才有
|
||||||
* @property {String} img - 图片
|
* @property {String} img - 图片
|
||||||
* @property {String} background - 背景色
|
* @property {String} background - 背景色
|
||||||
* @property {String} topRadius - 上圆角
|
* @property {String} topRadius - 上圆角
|
||||||
* @property {String} bottomRadius - 下圆角
|
* @property {String} bottomRadius - 下圆角
|
||||||
* @property {String} title - 标题
|
* @property {String} title - 标题
|
||||||
* @property {String} titleColor - 标题颜色
|
* @property {String} titleColor - 标题颜色
|
||||||
* @property {Number} titleWidth = 0 - 标题宽度,默认0,单位rpx
|
* @property {Number} titleWidth = 0 - 标题宽度,默认0,单位rpx
|
||||||
* @property {String} subTitle - 副标题
|
* @property {String} subTitle - 副标题
|
||||||
* @property {String} subTitleColor - 副标题颜色
|
* @property {String} subTitleColor - 副标题颜色
|
||||||
* @property {String} subTitleBackground - 副标题背景
|
* @property {String} subTitleBackground - 副标题背景
|
||||||
* @property {String | Number} price - 价格
|
* @property {String | Number} price - 价格
|
||||||
* @property {String} priceColor - 价格颜色
|
* @property {String} priceColor - 价格颜色
|
||||||
* @property {String | Number} originPrice - 原价/划线价
|
* @property {String | Number} originPrice - 原价/划线价
|
||||||
* @property {String} originPriceColor - 原价颜色
|
* @property {String} originPriceColor - 原价颜色
|
||||||
* @property {String | Number} sales - 销售数量
|
* @property {String | Number} sales - 销售数量
|
||||||
* @property {String} salesColor - 销售数量颜色
|
* @property {String} salesColor - 销售数量颜色
|
||||||
*
|
*
|
||||||
* @slots activity - 活动插槽
|
* @slots activity - 活动插槽
|
||||||
* @slots cart - 购物车插槽,默认包含文字,背景色,文字颜色 || 图片 || 行为
|
* @slots cart - 购物车插槽,默认包含文字,背景色,文字颜色 || 图片 || 行为
|
||||||
*
|
*
|
||||||
* @event {Function()} click - 点击卡片
|
* @event {Function()} click - 点击卡片
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
import { computed, getCurrentInstance, onMounted, nextTick } from 'vue';
|
import { computed, getCurrentInstance, nextTick, onMounted } from 'vue';
|
||||||
import sheep from '@/sheep';
|
import sheep from '@/sheep';
|
||||||
import {
|
import {
|
||||||
fen2yuan,
|
fen2yuan,
|
||||||
|
formatExchange,
|
||||||
formatSales,
|
formatSales,
|
||||||
|
formatStock,
|
||||||
getRewardActivityRuleItemDescriptions,
|
getRewardActivityRuleItemDescriptions,
|
||||||
} from '@/sheep/hooks/useGoods';
|
} from '@/sheep/hooks/useGoods';
|
||||||
import { formatStock } from '@/sheep/hooks/useGoods';
|
|
||||||
import { isArray } from 'lodash-es';
|
import { isArray } from 'lodash-es';
|
||||||
|
import { PromotionActivityTypeEnum } from '@/sheep/util/const';
|
||||||
|
|
||||||
// 接收参数
|
// 接收参数
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
|
@ -520,10 +548,18 @@
|
||||||
const salesAndStock = computed(() => {
|
const salesAndStock = computed(() => {
|
||||||
let text = [];
|
let text = [];
|
||||||
if (props.goodsFields.salesCount?.show) {
|
if (props.goodsFields.salesCount?.show) {
|
||||||
text.push(formatSales(props.data.sales_show_type, props.data.salesCount));
|
if (props.data.activityType && props.data.activityType === PromotionActivityTypeEnum.POINT.type) {
|
||||||
|
text.push(formatExchange(props.data.sales_show_type, (props.data.pointTotalStock || 0) - (props.data.pointStock || 0)));
|
||||||
|
}else {
|
||||||
|
text.push(formatSales(props.data.sales_show_type, props.data.salesCount));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (props.goodsFields.stock?.show) {
|
if (props.goodsFields.stock?.show) {
|
||||||
text.push(formatStock(props.data.stock_show_type, props.data.stock));
|
if (props.data.activityType && props.data.activityType === PromotionActivityTypeEnum.POINT.type) {
|
||||||
|
text.push(formatStock(props.data.stock_show_type, props.data.pointTotalStock));
|
||||||
|
}else {
|
||||||
|
text.push(formatStock(props.data.stock_show_type, props.data.stock));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return text.join(' | ');
|
return text.join(' | ');
|
||||||
});
|
});
|
||||||
|
@ -560,6 +596,7 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
getGoodsPriceCardWH();
|
getGoodsPriceCardWH();
|
||||||
|
|
|
@ -28,6 +28,14 @@
|
||||||
>
|
>
|
||||||
¥{{ fen2yuan(price) }}
|
¥{{ fen2yuan(price) }}
|
||||||
</view>
|
</view>
|
||||||
|
<view v-if="point && Number(price) > 0">+</view>
|
||||||
|
<view class="price-text ss-flex ss-col-center" v-if="point">
|
||||||
|
<image
|
||||||
|
:src="sheep.$url.static('/static/img/shop/goods/score1.svg')"
|
||||||
|
class="point-img"
|
||||||
|
></image>
|
||||||
|
<view>{{ point }}</view>
|
||||||
|
</view>
|
||||||
<view v-if="num" class="total-text ss-flex ss-col-center">x {{ num }}</view>
|
<view v-if="num" class="total-text ss-flex ss-col-center">x {{ num }}</view>
|
||||||
<slot name="priceSuffix"></slot>
|
<slot name="priceSuffix"></slot>
|
||||||
</view>
|
</view>
|
||||||
|
@ -88,7 +96,7 @@
|
||||||
type: [String, Number],
|
type: [String, Number],
|
||||||
default: 0,
|
default: 0,
|
||||||
},
|
},
|
||||||
score: {
|
point: {
|
||||||
type: [String, Number],
|
type: [String, Number],
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
@ -113,7 +121,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.score-img {
|
.point-img {
|
||||||
width: 36rpx;
|
width: 36rpx;
|
||||||
height: 36rpx;
|
height: 36rpx;
|
||||||
margin: 0 4rpx;
|
margin: 0 4rpx;
|
||||||
|
|
|
@ -0,0 +1,328 @@
|
||||||
|
<!-- 装修商品组件:【积分商城】商品卡片 -->
|
||||||
|
<template>
|
||||||
|
<!-- 商品卡片 -->
|
||||||
|
<view>
|
||||||
|
<!-- 布局1. 单列大图(上图,下内容)-->
|
||||||
|
<view
|
||||||
|
v-if="layoutType === LayoutTypeEnum.ONE_COL_BIG_IMG && state.spuList.length"
|
||||||
|
class="goods-sl-box"
|
||||||
|
>
|
||||||
|
<view
|
||||||
|
class="goods-box"
|
||||||
|
v-for="item in state.spuList"
|
||||||
|
:key="item.id"
|
||||||
|
:style="[{ marginBottom: data.space * 2 + 'rpx' }]"
|
||||||
|
>
|
||||||
|
<s-goods-column
|
||||||
|
class=""
|
||||||
|
size="sl"
|
||||||
|
:goodsFields="data.fields"
|
||||||
|
:tagStyle="data.badge"
|
||||||
|
:data="item"
|
||||||
|
:titleColor="data.fields.name?.color"
|
||||||
|
:subTitleColor="data.fields.introduction.color"
|
||||||
|
:topRadius="data.borderRadiusTop"
|
||||||
|
:bottomRadius="data.borderRadiusBottom"
|
||||||
|
@click="sheep.$router.go('/pages/goods/point', { 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>
|
||||||
|
|
||||||
|
<!-- 布局2. 单列小图(左图,右内容) -->
|
||||||
|
<view
|
||||||
|
v-if="layoutType === LayoutTypeEnum.ONE_COL_SMALL_IMG && state.spuList.length"
|
||||||
|
class="goods-lg-box"
|
||||||
|
>
|
||||||
|
<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/point', { 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/seckill', { 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/seckill', { 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>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
/**
|
||||||
|
* 商品卡片
|
||||||
|
*/
|
||||||
|
import { computed, onMounted, reactive, ref } from 'vue';
|
||||||
|
import sheep from '@/sheep';
|
||||||
|
import SpuApi from '@/sheep/api/product/spu';
|
||||||
|
import PointApi from '@/sheep/api/promotion/point';
|
||||||
|
import { PromotionActivityTypeEnum } from '@/sheep/util/const';
|
||||||
|
|
||||||
|
// 布局类型
|
||||||
|
const LayoutTypeEnum = {
|
||||||
|
// 单列大图
|
||||||
|
ONE_COL_BIG_IMG: 'oneColBigImg',
|
||||||
|
// 双列
|
||||||
|
TWO_COL: 'twoCol',
|
||||||
|
// 单列小图
|
||||||
|
ONE_COL_SMALL_IMG: 'oneColSmallImg',
|
||||||
|
};
|
||||||
|
|
||||||
|
const state = reactive({
|
||||||
|
spuList: [],
|
||||||
|
leftSpuList: [],
|
||||||
|
rightSpuList: [],
|
||||||
|
});
|
||||||
|
const props = defineProps({
|
||||||
|
data: {
|
||||||
|
type: Object,
|
||||||
|
default() {},
|
||||||
|
},
|
||||||
|
styles: {
|
||||||
|
type: Object,
|
||||||
|
default() {},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { layoutType, btnBuy, activityIds } = props.data || {};
|
||||||
|
const { marginLeft, marginRight } = props.styles || {};
|
||||||
|
|
||||||
|
// 购买按钮样式
|
||||||
|
const buyStyle = computed(() => {
|
||||||
|
if (btnBuy.type === 'text') {
|
||||||
|
// 文字按钮:线性渐变背景颜色
|
||||||
|
return {
|
||||||
|
background: `linear-gradient(to right, ${btnBuy.bgBeginColor}, ${btnBuy.bgEndColor})`,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (btnBuy.type === 'img') {
|
||||||
|
// 图片按钮
|
||||||
|
return {
|
||||||
|
width: '54rpx',
|
||||||
|
height: '54rpx',
|
||||||
|
background: `url(${sheep.$url.cdn(btnBuy.imgUrl)}) no-repeat`,
|
||||||
|
backgroundSize: '100% 100%',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
//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 getPointActivityDetailList(ids) {
|
||||||
|
const { data } = await PointApi.getPointActivityListByIds(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 getPointActivityDetailList(activityIds.join(','));
|
||||||
|
// 循环获取活动商品SPU详情并添加到spuList
|
||||||
|
for (const activity of activityList) {
|
||||||
|
state.spuList.push(await getSpuDetail(activity.spuId));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 循环活动列表
|
||||||
|
activityList.forEach((activity) => {
|
||||||
|
// 查找对应的 spu 并更新价格
|
||||||
|
const spu = state.spuList.find((spu) => activity.spuId === spu.id);
|
||||||
|
if (spu) {
|
||||||
|
spu.pointStock = activity.stock
|
||||||
|
spu.pointTotalStock = activity.totalStock
|
||||||
|
spu.point = activity.point
|
||||||
|
spu.pointPrice = activity.price
|
||||||
|
// 赋值活动ID,为了点击跳转详情页
|
||||||
|
spu.activityId = activity.id;
|
||||||
|
// 赋值活动类型
|
||||||
|
spu.activityType = PromotionActivityTypeEnum.POINT.type;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 只有双列布局时需要
|
||||||
|
if (layoutType === LayoutTypeEnum.TWO_COL) {
|
||||||
|
// 分列
|
||||||
|
calculateGoodsColumn();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.goods-md-wrap {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.goods-list-box {
|
||||||
|
width: 50%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
.left-list {
|
||||||
|
&:nth-last-child(1) {
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-list {
|
||||||
|
&:nth-last-child(1) {
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.goods-box {
|
||||||
|
&:nth-last-of-type(1) {
|
||||||
|
margin-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.goods-md-box,
|
||||||
|
.goods-sl-box,
|
||||||
|
.goods-lg-box {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.cart-btn {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 18rpx;
|
||||||
|
right: 20rpx;
|
||||||
|
z-index: 11;
|
||||||
|
height: 50rpx;
|
||||||
|
line-height: 50rpx;
|
||||||
|
padding: 0 20rpx;
|
||||||
|
border-radius: 25rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,458 @@
|
||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
<!-- md卡片:竖向,一行放两个,图上内容下 -->
|
||||||
|
<view v-if="size === 'md'" class="md-goods-card ss-flex-col" :style="[elStyles]" @tap="onClick">
|
||||||
|
<image
|
||||||
|
class="md-img-box"
|
||||||
|
:src="sheep.$url.cdn(data.image)"
|
||||||
|
mode="widthFix"
|
||||||
|
@load="calculatePanelHeight"
|
||||||
|
></image>
|
||||||
|
<view
|
||||||
|
class="md-goods-content ss-flex-col ss-row-around ss-p-b-20 ss-p-t-20 ss-p-x-16"
|
||||||
|
:id="elId"
|
||||||
|
>
|
||||||
|
<view
|
||||||
|
v-if="goodsFields.title?.show"
|
||||||
|
class="md-goods-title ss-line-1"
|
||||||
|
:style="[{ color: titleColor, width: titleWidth ? titleWidth + 'rpx' : '' }]"
|
||||||
|
>
|
||||||
|
{{ data.title }}
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
v-if="goodsFields.subtitle?.show"
|
||||||
|
class="md-goods-subtitle ss-m-t-16 ss-line-1"
|
||||||
|
:style="[{ color: subTitleColor }]"
|
||||||
|
>
|
||||||
|
{{ data.subtitle }}
|
||||||
|
</view>
|
||||||
|
<view class="ss-col-bottom">
|
||||||
|
<view
|
||||||
|
v-if="goodsFields.score_price?.show"
|
||||||
|
class="md-goods-price ss-m-t-16 font-OPPOSANS ss-m-r-10 ss-flex"
|
||||||
|
:style="[{ color: goodsFields.score_price.color }]"
|
||||||
|
>
|
||||||
|
<view>{{ Number(data.price[0]) > 0 ? '¥' + data.price[0] + '+' : '' }}</view>
|
||||||
|
<image
|
||||||
|
:src="sheep.$url.static('/static/img/shop/goods/score1.svg')"
|
||||||
|
class="score-img"
|
||||||
|
></image>
|
||||||
|
{{ data.score }}
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view
|
||||||
|
v-if="goodsFields.price?.show && data.original_price > 0"
|
||||||
|
class="goods-origin-price ss-m-t-16 font-OPPOSANS ss-flex"
|
||||||
|
:style="[{ color: goodsFields.price.color }]"
|
||||||
|
>
|
||||||
|
<text class="price-unit ss-font-20">{{ priceUnit }}</text>
|
||||||
|
<view class="ss-m-l-8">{{ data.original_price }}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="ss-m-t-16 ss-flex ss-col-center ss-flex-wrap">
|
||||||
|
<view class="sales-text">{{ salesAndStock }}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<slot name="cart">
|
||||||
|
<view class="cart-box ss-flex ss-col-center ss-row-center">
|
||||||
|
<image class="cart-icon" src="/static/img/shop/tabbar/category2.png" mode=""></image>
|
||||||
|
</view>
|
||||||
|
</slot>
|
||||||
|
</view>
|
||||||
|
<!-- lg卡片:横向型,一行放一个,图片左内容右边 -->
|
||||||
|
<view
|
||||||
|
v-if="size === 'lg'"
|
||||||
|
class="lg-goods-card ss-flex ss-col-stretch"
|
||||||
|
:style="[elStyles]"
|
||||||
|
@tap="onClick"
|
||||||
|
>
|
||||||
|
<image class="lg-img-box" :src="sheep.$url.cdn(data.image)" mode="aspectFill"></image>
|
||||||
|
<view class="lg-goods-content ss-flex-1 ss-flex-col ss-row-between ss-p-b-10 ss-p-t-20">
|
||||||
|
<view class="ss-m-r-20">
|
||||||
|
<view
|
||||||
|
v-if="goodsFields.title?.show"
|
||||||
|
class="lg-goods-title ss-line-2"
|
||||||
|
:style="[{ color: titleColor }]"
|
||||||
|
>
|
||||||
|
{{ data.title }}
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
v-if="goodsFields.subtitle?.show"
|
||||||
|
class="lg-goods-subtitle ss-m-t-10 ss-line-1"
|
||||||
|
:style="[{ color: subTitleColor }]"
|
||||||
|
>
|
||||||
|
{{ data.subtitle }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
|
<view class="ss-m-t-10">
|
||||||
|
<view
|
||||||
|
v-if="goodsFields.score_price?.show"
|
||||||
|
class="lg-goods-price ss-m-r-12 ss-flex ss-col-bottom font-OPPOSANS"
|
||||||
|
:style="[{ color: goodsFields.score_price.color }]"
|
||||||
|
>
|
||||||
|
<view>{{ Number(data.price[0]) > 0 ? '¥' + data.price[0] + '+' : '' }}</view>
|
||||||
|
<image
|
||||||
|
:src="sheep.$url.static('/static/img/shop/goods/score1.svg')"
|
||||||
|
class="score-img"
|
||||||
|
></image>
|
||||||
|
{{ data.score }}
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
v-if="goodsFields.price?.show && data.original_price > 0"
|
||||||
|
class="goods-origin-price ss-flex ss-col-bottom font-OPPOSANS"
|
||||||
|
:style="[{ color: goodsFields.price.color }]"
|
||||||
|
>
|
||||||
|
<text class="price-unit ss-font-20">{{ priceUnit }}</text>
|
||||||
|
<view class="ss-m-l-8">{{ data.original_price }}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="ss-m-t-16 ss-flex ss-col-center ss-flex-wrap">
|
||||||
|
<view class="sales-text">{{ salesAndStock }}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<slot name="cart"
|
||||||
|
><view class="buy-box ss-flex ss-col-center ss-row-center">去兑换</view></slot
|
||||||
|
>
|
||||||
|
</view>
|
||||||
|
<!-- sl卡片:竖向型,一行放一个,图片上内容下边 -->
|
||||||
|
<view v-if="size === 'sl'" class="sl-goods-card ss-flex-col" @tap="onClick">
|
||||||
|
<image class="sl-img-box" :src="sheep.$url.cdn(data.image)" mode="aspectFill"></image>
|
||||||
|
|
||||||
|
<view class="sl-goods-content ss-flex-col ss-row-between ss-p-b-20 ss-p-t-20">
|
||||||
|
<view class="ss-m-b-20">
|
||||||
|
<view class="sl-goods-title ss-line-1 ss-p-l-16 ss-p-r-16">
|
||||||
|
{{ data.title }}
|
||||||
|
</view>
|
||||||
|
<view v-if="data.subtitle" class="sl-goods-subtitle ss-p-l-16 ss-p-r-16 ss-m-t-16">
|
||||||
|
{{ data.subtitle }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
|
<slot name="activity">
|
||||||
|
<view
|
||||||
|
v-if="data.promos?.length"
|
||||||
|
class="tag-box ss-flex ss-col-center ss-flex-wrap ss-p-l-16 ss-p-r-16"
|
||||||
|
>
|
||||||
|
<view
|
||||||
|
class="activity-tag ss-m-r-10 ss-m-t-16"
|
||||||
|
v-for="item in data.promos"
|
||||||
|
:key="item.id"
|
||||||
|
>
|
||||||
|
{{ item.title }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</slot>
|
||||||
|
<view class="ss-flex ss-col-bottom ss-p-l-16 ss-p-r-16 font-OPPOSANS">
|
||||||
|
<view class="sl-goods-price ss-m-r-12 ss-flex">
|
||||||
|
<view>{{ Number(data.price[0]) > 0 ? '¥' + data.price[0] + '+' : '' }}</view>
|
||||||
|
<image
|
||||||
|
:src="sheep.$url.static('/static/img/shop/goods/score1.svg')"
|
||||||
|
class="score-img"
|
||||||
|
></image>
|
||||||
|
<view>{{ data.score ? data.score : '' }}</view>
|
||||||
|
</view>
|
||||||
|
<view
|
||||||
|
v-if="data.original_price > 0"
|
||||||
|
class="goods-origin-price ss-m-t-16 font-OPPOSANS ss-flex"
|
||||||
|
>
|
||||||
|
<text class="price-unit ss-font-20">¥</text>
|
||||||
|
<view class="ss-m-l-8">{{ data.original_price }}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="ss-p-l-16 ss-p-r-16 ss-m-t-16 ss-flex ss-flex-wrap">
|
||||||
|
<view class="sales-text">{{ salesAndStock }}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<slot name="cart"
|
||||||
|
><view class="buy-box ss-flex ss-col-center ss-row-center">去兑换</view></slot
|
||||||
|
>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<script setup>
|
||||||
|
import { computed, getCurrentInstance } from 'vue';
|
||||||
|
import sheep from '@/sheep';
|
||||||
|
import { formatSales } from '@/sheep/hooks/useGoods';
|
||||||
|
import { formatStock } from '@/sheep/hooks/useGoods';
|
||||||
|
/**
|
||||||
|
* 订单卡片
|
||||||
|
*
|
||||||
|
* @property {String} img - 图片
|
||||||
|
* @property {String} title - 标题
|
||||||
|
* @property {Number} titleWidth = 0 - 标题宽度,默认0,单位rpx
|
||||||
|
* @property {String} skuText - 规格
|
||||||
|
* @property {String | Number} score - 积分
|
||||||
|
* @property {String | Number} price - 价格
|
||||||
|
* @property {String | Number} originalPrice - 单购价
|
||||||
|
* @property {String} priceColor - 价格颜色
|
||||||
|
* @property {Number | String} num - 数量
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
const props = defineProps({
|
||||||
|
goodsFields: {
|
||||||
|
type: [Array, Object],
|
||||||
|
default() {
|
||||||
|
return {
|
||||||
|
title: { show: true },
|
||||||
|
subtitle: { show: true },
|
||||||
|
price: { show: true },
|
||||||
|
original_price: { show: true },
|
||||||
|
sales: { show: true },
|
||||||
|
stock: { show: true },
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
tagStyle: {
|
||||||
|
type: Object,
|
||||||
|
default: {},
|
||||||
|
},
|
||||||
|
data: {
|
||||||
|
type: Object,
|
||||||
|
default: {},
|
||||||
|
},
|
||||||
|
size: {
|
||||||
|
type: String,
|
||||||
|
default: 'sl',
|
||||||
|
},
|
||||||
|
background: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
topRadius: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
bottomRadius: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
titleWidth: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
titleColor: {
|
||||||
|
type: String,
|
||||||
|
default: '#333',
|
||||||
|
},
|
||||||
|
priceUnit: {
|
||||||
|
type: String,
|
||||||
|
default: '¥',
|
||||||
|
},
|
||||||
|
subTitleColor: {
|
||||||
|
type: String,
|
||||||
|
default: '#999999',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
// 组件样式
|
||||||
|
const elStyles = computed(() => {
|
||||||
|
return {
|
||||||
|
background: props.background,
|
||||||
|
'border-top-left-radius': props.topRadius + 'px',
|
||||||
|
'border-top-right-radius': props.topRadius + 'px',
|
||||||
|
'border-bottom-left-radius': props.bottomRadius + 'px',
|
||||||
|
'border-bottom-right-radius': props.bottomRadius + 'px',
|
||||||
|
};
|
||||||
|
});
|
||||||
|
const emits = defineEmits(['click', 'getHeight']);
|
||||||
|
const onClick = () => {
|
||||||
|
emits('click');
|
||||||
|
};
|
||||||
|
// 格式化销量、库存信息
|
||||||
|
const salesAndStock = computed(() => {
|
||||||
|
let text = [];
|
||||||
|
text.push(formatSales(props.data.sales_show_type, props.data.sales));
|
||||||
|
text.push(formatStock(props.data.stock_show_type, props.data.stock));
|
||||||
|
return text.join(' | ');
|
||||||
|
});
|
||||||
|
// 获取实时卡片高度
|
||||||
|
const { proxy } = getCurrentInstance();
|
||||||
|
const elId = `sheep_${Math.ceil(Math.random() * 10e5).toString(36)}`;
|
||||||
|
function calculatePanelHeight(e) {
|
||||||
|
if (props.size === 'md') {
|
||||||
|
const view = uni.createSelectorQuery().in(proxy);
|
||||||
|
view.select(`#${elId}`).fields({ size: true, scrollOffset: true });
|
||||||
|
view.exec((data) => {
|
||||||
|
const goodsPriceCard = data[0];
|
||||||
|
const card = {
|
||||||
|
width: goodsPriceCard.width,
|
||||||
|
height: (goodsPriceCard.width / e.detail.width) * e.detail.height + goodsPriceCard.height,
|
||||||
|
};
|
||||||
|
emits('getHeight', card.height);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.price-unit {
|
||||||
|
margin-right: -4px;
|
||||||
|
}
|
||||||
|
.sales-text {
|
||||||
|
display: table;
|
||||||
|
font-size: 24rpx;
|
||||||
|
transform: scale(0.8);
|
||||||
|
margin-left: -16rpx;
|
||||||
|
color: #c4c4c4;
|
||||||
|
}
|
||||||
|
|
||||||
|
// md
|
||||||
|
.md-goods-card {
|
||||||
|
overflow: hidden;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
background-color: $white;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.md-img-box {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-goods-title {
|
||||||
|
font-size: 26rpx;
|
||||||
|
color: #333;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.md-goods-subtitle {
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.md-goods-price {
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: $red;
|
||||||
|
line-height: 36rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cart-box {
|
||||||
|
width: 54rpx;
|
||||||
|
height: 54rpx;
|
||||||
|
background: linear-gradient(90deg, #fe8900, #ff5e00);
|
||||||
|
border-radius: 50%;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 50rpx;
|
||||||
|
right: 20rpx;
|
||||||
|
z-index: 2;
|
||||||
|
|
||||||
|
.cart-icon {
|
||||||
|
width: 30rpx;
|
||||||
|
height: 30rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// lg
|
||||||
|
.lg-goods-card {
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
background-color: $white;
|
||||||
|
height: 280rpx;
|
||||||
|
|
||||||
|
.lg-img-box {
|
||||||
|
width: 280rpx;
|
||||||
|
height: 280rpx;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-goods-title {
|
||||||
|
font-size: 28rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: #333333;
|
||||||
|
// line-height: 36rpx;
|
||||||
|
// width: 410rpx;
|
||||||
|
}
|
||||||
|
.lg-goods-subtitle {
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #999999;
|
||||||
|
line-height: 30rpx;
|
||||||
|
// width: 410rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-goods-price {
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: $red;
|
||||||
|
line-height: 36rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buy-box {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 20rpx;
|
||||||
|
right: 20rpx;
|
||||||
|
z-index: 2;
|
||||||
|
width: 120rpx;
|
||||||
|
height: 50rpx;
|
||||||
|
background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
|
||||||
|
border-radius: 25rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
.tag-box {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sl-goods-card {
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
width: 100%;
|
||||||
|
background-color: $white;
|
||||||
|
|
||||||
|
.sl-img-box {
|
||||||
|
width: 100%;
|
||||||
|
height: 360rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sl-goods-title {
|
||||||
|
font-size: 26rpx;
|
||||||
|
color: #333;
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.sl-goods-subtitle {
|
||||||
|
font-size: 24rpx;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #999999;
|
||||||
|
line-height: 30rpx;
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sl-goods-price {
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: $red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buy-box {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 20rpx;
|
||||||
|
right: 20rpx;
|
||||||
|
z-index: 2;
|
||||||
|
width: 148rpx;
|
||||||
|
height: 50rpx;
|
||||||
|
background: linear-gradient(90deg, #fe8900, #ff5e00);
|
||||||
|
border-radius: 25rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.goods-origin-price {
|
||||||
|
font-size: 20rpx;
|
||||||
|
color: #c4c4c4;
|
||||||
|
text-decoration: line-through;
|
||||||
|
}
|
||||||
|
.score-img {
|
||||||
|
width: 36rpx;
|
||||||
|
height: 36rpx;
|
||||||
|
margin: 0 4rpx;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -19,8 +19,11 @@
|
||||||
<view class="goods-title ss-line-2">{{ state.goodsInfo.name }}</view>
|
<view class="goods-title ss-line-2">{{ state.goodsInfo.name }}</view>
|
||||||
<view class="header-right-bottom ss-flex ss-col-center ss-row-between">
|
<view class="header-right-bottom ss-flex ss-col-center ss-row-between">
|
||||||
<!-- 价格 -->
|
<!-- 价格 -->
|
||||||
<view class="price-text">
|
<view v-if="state.goodsInfo.activity_type === PromotionActivityTypeEnum.POINT.type" class="price-text">
|
||||||
{{ fen2yuan(state.selectedSku.price || state.goodsInfo.price) }}
|
{{ getShowPriceText }}
|
||||||
|
</view>
|
||||||
|
<view v-else class="price-text">
|
||||||
|
¥{{ fen2yuan(state.selectedSku.price || state.goodsInfo.price) }}
|
||||||
</view>
|
</view>
|
||||||
<!-- 秒杀价格标签 -->
|
<!-- 秒杀价格标签 -->
|
||||||
<view class="tig ss-flex ss-col-center">
|
<view class="tig ss-flex ss-col-center">
|
||||||
|
@ -92,12 +95,15 @@
|
||||||
import { computed, reactive, watch } from 'vue';
|
import { computed, reactive, watch } from 'vue';
|
||||||
import sheep from '@/sheep';
|
import sheep from '@/sheep';
|
||||||
import { convertProductPropertyList, fen2yuan } from '@/sheep/hooks/useGoods';
|
import { convertProductPropertyList, fen2yuan } from '@/sheep/hooks/useGoods';
|
||||||
import { min } from 'lodash-es';
|
import { isEmpty, min } from 'lodash-es';
|
||||||
|
import { PromotionActivityTypeEnum } from '@/sheep/util/const';
|
||||||
|
|
||||||
const emits = defineEmits(['change', 'addCart', 'buy', 'close']);
|
const emits = defineEmits(['change', 'addCart', 'buy', 'close']);
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
modelValue: {
|
modelValue: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default() {},
|
default() {
|
||||||
|
},
|
||||||
},
|
},
|
||||||
show: {
|
show: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
@ -114,7 +120,14 @@
|
||||||
selectedSku: {},
|
selectedSku: {},
|
||||||
currentPropertyArray: [],
|
currentPropertyArray: [],
|
||||||
});
|
});
|
||||||
|
const getShowPriceText = computed(() => {
|
||||||
|
let priceText = `¥${fen2yuan(state.goodsInfo.price)}`;
|
||||||
|
if (!isEmpty(state.selectedSku)) {
|
||||||
|
const sku = state.selectedSku;
|
||||||
|
priceText = `${sku.point}积分${!sku.pointPrice ? '' : `+¥${fen2yuan(sku.pointPrice)}`}`;
|
||||||
|
}
|
||||||
|
return priceText;
|
||||||
|
});
|
||||||
const propertyList = convertProductPropertyList(state.goodsInfo.skus);
|
const propertyList = convertProductPropertyList(state.goodsInfo.skus);
|
||||||
// SKU 列表
|
// SKU 列表
|
||||||
const skuList = computed(() => {
|
const skuList = computed(() => {
|
||||||
|
@ -344,11 +357,6 @@
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: $red;
|
color: $red;
|
||||||
font-family: OPPOSANS;
|
font-family: OPPOSANS;
|
||||||
|
|
||||||
&::before {
|
|
||||||
content: '¥';
|
|
||||||
font-size: 24rpx;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.stock-text {
|
.stock-text {
|
||||||
|
|
|
@ -33,78 +33,100 @@ export const getTerminal = () => {
|
||||||
|
|
||||||
// ========== MALL - 营销模块 ==========
|
// ========== MALL - 营销模块 ==========
|
||||||
|
|
||||||
import dayjs from "dayjs";
|
import dayjs from 'dayjs';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 优惠类型枚举
|
* 优惠类型枚举
|
||||||
*/
|
*/
|
||||||
export const PromotionDiscountTypeEnum = {
|
export const PromotionDiscountTypeEnum = {
|
||||||
PRICE: {
|
PRICE: {
|
||||||
type: 1,
|
type: 1,
|
||||||
name: '满减'
|
name: '满减',
|
||||||
},
|
},
|
||||||
PERCENT: {
|
PERCENT: {
|
||||||
type: 2,
|
type: 2,
|
||||||
name: '折扣'
|
name: '折扣',
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 优惠劵模板的有限期类型的枚举
|
* 优惠劵模板的有限期类型的枚举
|
||||||
*/
|
*/
|
||||||
export const CouponTemplateValidityTypeEnum = {
|
export const CouponTemplateValidityTypeEnum = {
|
||||||
DATE: {
|
DATE: {
|
||||||
type: 1,
|
type: 1,
|
||||||
name: '固定日期可用'
|
name: '固定日期可用',
|
||||||
},
|
},
|
||||||
TERM: {
|
TERM: {
|
||||||
type: 2,
|
type: 2,
|
||||||
name: '领取之后可用'
|
name: '领取之后可用',
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 营销的商品范围枚举
|
* 营销的商品范围枚举
|
||||||
*/
|
*/
|
||||||
export const PromotionProductScopeEnum = {
|
export const PromotionProductScopeEnum = {
|
||||||
ALL: {
|
ALL: {
|
||||||
scope: 1,
|
scope: 1,
|
||||||
name: '通用劵'
|
name: '通用劵',
|
||||||
},
|
},
|
||||||
SPU: {
|
SPU: {
|
||||||
scope: 2,
|
scope: 2,
|
||||||
name: '商品劵'
|
name: '商品劵',
|
||||||
},
|
},
|
||||||
CATEGORY: {
|
CATEGORY: {
|
||||||
scope: 3,
|
scope: 3,
|
||||||
name: '品类劵'
|
name: '品类劵',
|
||||||
}
|
},
|
||||||
}
|
};
|
||||||
|
|
||||||
|
|
||||||
// 时间段的状态枚举
|
// 时间段的状态枚举
|
||||||
export const TimeStatusEnum = {
|
export const TimeStatusEnum = {
|
||||||
WAIT_START: '即将开始',
|
WAIT_START: '即将开始',
|
||||||
STARTED: '进行中',
|
STARTED: '进行中',
|
||||||
END: '已结束',
|
END: '已结束',
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 微信小程序的订阅模版
|
* 微信小程序的订阅模版
|
||||||
*/
|
*/
|
||||||
export const WxaSubscribeTemplate = {
|
export const WxaSubscribeTemplate = {
|
||||||
TRADE_ORDER_DELIVERY: "订单发货通知",
|
TRADE_ORDER_DELIVERY: '订单发货通知',
|
||||||
PROMOTION_COMBINATION_SUCCESS: "拼团结果通知",
|
PROMOTION_COMBINATION_SUCCESS: '拼团结果通知',
|
||||||
PAY_WALLET_RECHARGER_SUCCESS: "充值成功通知",
|
PAY_WALLET_RECHARGER_SUCCESS: '充值成功通知',
|
||||||
}
|
};
|
||||||
|
export const PromotionActivityTypeEnum = {
|
||||||
|
NORMAL: {
|
||||||
|
type: 0,
|
||||||
|
name: '普通',
|
||||||
|
},
|
||||||
|
SECKILL: {
|
||||||
|
type: 1,
|
||||||
|
name: '秒杀',
|
||||||
|
},
|
||||||
|
BARGAIN: {
|
||||||
|
type: 2,
|
||||||
|
name: '砍价',
|
||||||
|
},
|
||||||
|
COMBINATION: {
|
||||||
|
type: 3,
|
||||||
|
name: '拼团',
|
||||||
|
},
|
||||||
|
POINT: {
|
||||||
|
type: 4,
|
||||||
|
name: '积分商城',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export const getTimeStatusEnum = (startTime, endTime) => {
|
export const getTimeStatusEnum = (startTime, endTime) => {
|
||||||
const now = dayjs();
|
const now = dayjs();
|
||||||
if (now.isBefore(startTime)) {
|
if (now.isBefore(startTime)) {
|
||||||
return TimeStatusEnum.WAIT_START;
|
return TimeStatusEnum.WAIT_START;
|
||||||
} else if (now.isAfter(endTime)) {
|
} else if (now.isAfter(endTime)) {
|
||||||
return TimeStatusEnum.END;
|
return TimeStatusEnum.END;
|
||||||
} else {
|
} else {
|
||||||
return TimeStatusEnum.STARTED;
|
return TimeStatusEnum.STARTED;
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in New Issue