【功能完善】积分商城:完善活动列表

pull/107/head
puhui999 2024-10-02 11:46:50 +08:00
parent 6d762c5367
commit fb3120d818
4 changed files with 404 additions and 474 deletions

View File

@ -652,7 +652,18 @@
"title": "秒杀活动", "title": "秒杀活动",
"group": "营销活动" "group": "营销活动"
} }
} },
{
"path": "point/list",
"style": {
"navigationBarTitleText": "积分商城"
},
"meta": {
"sync": true,
"title": "积分商城",
"group": "营销活动"
}
}
] ]
} }
], ],

View File

@ -1,77 +1,80 @@
<!-- 页面 --> <!-- 页面 -->
<template> <template>
<s-layout title="积分商城"> <s-layout title="积分商城" navbar="normal" :leftWidth="0" :rightWidth="0">
<view class="ss-p-20"> <scroll-view
<view v-for="item in state.pagination.data" :key="item.id" class="ss-m-b-20"> class="scroll-box"
<s-point-card :style="{ height: pageHeight + 'rpx' }"
size="sl" scroll-y="true"
:data="item" :scroll-with-animation="false"
priceColor="#FF3000" :enable-back-to-top="true"
@tap="sheep.$router.go('/pages/goods/point', { id: item.id })" >
></s-point-card> <s-point-card ref="sPointCardRef" :property="sPointCardData" />
</view> <s-empty
</view> v-if="activityTotal === 0"
<s-empty icon="/static/goods-empty.png"
v-if="state.pagination.total === 0" text="暂无积分商品"
icon="/static/goods-empty.png" ></s-empty>
text="暂无积分商品" <uni-load-more
></s-empty> v-if="activityTotal > 0"
<uni-load-more :status="loadStatus"
v-if="state.pagination.total > 0" :content-text="{
:status="state.loadStatus" contentdown: '上拉加载更多',
:content-text="{ }"
contentdown: '上拉加载更多', @tap="loadMore"
}" />
@tap="loadmore" </scroll-view>
/>
</s-layout> </s-layout>
</template> </template>
<script setup> <script setup>
import sheep from '@/sheep'; import sheep from '@/sheep';
import { onLoad, onReachBottom } from '@dcloudio/uni-app'; import { onLoad, onReachBottom } from '@dcloudio/uni-app';
import { reactive } from 'vue'; import { reactive, ref } from 'vue';
import _ from 'lodash'; import PointApi from '@/sheep/api/promotion/point';
import SLayout from '@/sheep/components/s-layout/s-layout.vue';
const state = reactive({ //
pagination: { const { safeAreaInsets, safeArea } = sheep.$platform.device;
data: [], const statusBarHeight = sheep.$platform.device.statusBarHeight * 2;
current_page: 1, const pageHeight =
total: 1, (safeArea.height + safeAreaInsets.bottom) * 2 + statusBarHeight - sheep.$platform.navbar - 350;
last_page: 1,
}, const sPointCardData = ref({
loadStatus: '', 'layoutType': 'oneColBigImg',
}); });
async function getData(page = 1, list_rows = 5) { const sPointCardRef = ref();
state.loadStatus = 'loading';
let res = await sheep.$api.app.scoreShop.list({ //
list_rows, const activityPageParams = reactive({
page, pageNo: 1, //
}); pageSize: 5, //
if (res.error === 0) { });
let couponlist = _.concat(state.pagination.data, res.data.data);
state.pagination = { const activityTotal = ref(0); //
...res.data, const activityCount = ref(0); //
data: couponlist, const loadStatus = ref(''); //
}; async function getActivityList() {
if (state.pagination.current_page < state.pagination.last_page) { loadStatus.value = 'loading';
state.loadStatus = 'more'; const { data } = await PointApi.getPointActivityPage(activityPageParams);
} else { await sPointCardRef.value.concatActivity(data.list)
state.loadStatus = 'noMore'; activityCount.value = sPointCardRef.value.getActivityCount()
} activityTotal.value = data.total;
}
loadStatus.value = activityCount.value < activityTotal.value ? 'more' : 'noMore';
} }
// //
function loadmore() { function loadMore() {
if (state.loadStatus !== 'noMore') { if (state.loadStatus !== 'noMore') {
getData(state.pagination.current_page + 1); activityPageParams.pageNo += 1;
getActivityList();
} }
} }
// //
onReachBottom(() => { onReachBottom(() => {
loadmore(); loadMore();
}); });
onLoad(() => { onLoad(() => {
getData(); getActivityList();
}); });
</script> </script>

View File

@ -91,7 +91,7 @@
:topRadius="data.borderRadiusTop" :topRadius="data.borderRadiusTop"
:bottomRadius="data.borderRadiusBottom" :bottomRadius="data.borderRadiusBottom"
:titleWidth="330 - marginLeft - marginRight" :titleWidth="330 - marginLeft - marginRight"
@click="sheep.$router.go('/pages/goods/seckill', { id: item.activityId })" @click="sheep.$router.go('/pages/goods/point', { id: item.activityId })"
@getHeight="calculateGoodsColumn($event, 'left')" @getHeight="calculateGoodsColumn($event, 'left')"
> >
<!-- 购买按钮 --> <!-- 购买按钮 -->
@ -121,7 +121,7 @@
:topRadius="data.borderRadiusTop" :topRadius="data.borderRadiusTop"
:bottomRadius="data.borderRadiusBottom" :bottomRadius="data.borderRadiusBottom"
:titleWidth="330 - marginLeft - marginRight" :titleWidth="330 - marginLeft - marginRight"
@click="sheep.$router.go('/pages/goods/seckill', { id: item.activityId })" @click="sheep.$router.go('/pages/goods/point', { id: item.activityId })"
@getHeight="calculateGoodsColumn($event, 'right')" @getHeight="calculateGoodsColumn($event, 'right')"
> >
<!-- 购买按钮 --> <!-- 购买按钮 -->

View File

@ -1,458 +1,374 @@
<!-- 装修商品组件积分商城商品卡片 -->
<template> <template>
<!-- 商品卡片 -->
<view> <view>
<!-- md卡片竖向一行放两个图上内容下 --> <!-- 布局1. 单列大图上图下内容-->
<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 <view
v-if="size === 'lg'" v-if="layoutType === LayoutTypeEnum.ONE_COL_BIG_IMG && state.spuList.length"
class="lg-goods-card ss-flex ss-col-stretch" class="goods-sl-box"
:style="[elStyles]"
@tap="onClick"
> >
<image class="lg-img-box" :src="sheep.$url.cdn(data.image)" mode="aspectFill"></image> <view
<view class="lg-goods-content ss-flex-1 ss-flex-col ss-row-between ss-p-b-10 ss-p-t-20"> class="goods-box"
<view class="ss-m-r-20"> v-for="item in state.spuList"
<view :key="item.id"
v-if="goodsFields.title?.show" :style="[{ marginBottom: state.property.space * 2 + 'rpx' }]"
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
> >
<s-goods-column
class=""
size="sl"
:goodsFields="state.property.fields"
:tagStyle="state.property.badge"
:data="item"
:titleColor="state.property.fields.name?.color"
:subTitleColor="state.property.fields.introduction.color"
:topRadius="state.property.borderRadiusTop"
:bottomRadius="state.property.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> </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"> <!-- 布局2. 单列小图左图右内容 -->
<view class="ss-m-b-20"> <view
<view class="sl-goods-title ss-line-1 ss-p-l-16 ss-p-r-16"> v-if="layoutType === LayoutTypeEnum.ONE_COL_SMALL_IMG && state.spuList.length"
{{ data.title }} class="goods-lg-box"
</view> >
<view v-if="data.subtitle" class="sl-goods-subtitle ss-p-l-16 ss-p-r-16 ss-m-t-16"> <view
{{ data.subtitle }} class="goods-box"
</view> :style="[{ marginBottom: state.property.space + 'px' }]"
</view> v-for="item in state.spuList"
<view> :key="item.id"
<slot name="activity"> >
<view <s-goods-column
v-if="data.promos?.length" class="goods-card"
class="tag-box ss-flex ss-col-center ss-flex-wrap ss-p-l-16 ss-p-r-16" size="lg"
> :goodsFields="state.property.fields"
<view :data="item"
class="activity-tag ss-m-r-10 ss-m-t-16" :tagStyle="state.property.badge"
v-for="item in data.promos" :titleColor="state.property.fields.name?.color"
:key="item.id" :subTitleColor="state.property.fields.introduction.color"
> :topRadius="state.property.borderRadiusTop"
{{ item.title }} :bottomRadius="state.property.borderRadiusBottom"
</view> @tap="sheep.$router.go('/pages/goods/point', { id: item.activityId })"
</view> >
</slot> <!-- 购买按钮 -->
<view class="ss-flex ss-col-bottom ss-p-l-16 ss-p-r-16 font-OPPOSANS"> <template v-slot:cart>
<view class="sl-goods-price ss-m-r-12 ss-flex"> <button class="ss-reset-button cart-btn" :style="[buyStyle]">
<view>{{ Number(data.price[0]) > 0 ? '¥' + data.price[0] + '+' : '' }}</view> {{ btnBuy.type === 'text' ? btnBuy.text : '' }}
<image </button>
:src="sheep.$url.static('/static/img/shop/goods/score1.svg')" </template>
class="score-img" </s-goods-column>
></image> </view>
<view>{{ data.score ? data.score : '' }}</view> </view>
</view>
<view <!-- 布局3. 双列每一列上图下内容-->
v-if="data.original_price > 0" <view
class="goods-origin-price ss-m-t-16 font-OPPOSANS ss-flex" v-if="layoutType === LayoutTypeEnum.TWO_COL && state.spuList.length"
> class="goods-md-wrap ss-flex ss-flex-wrap ss-col-top"
<text class="price-unit ss-font-20"></text> >
<view class="ss-m-l-8">{{ data.original_price }}</view> <view class="goods-list-box">
</view> <view
</view> class="left-list"
<view class="ss-p-l-16 ss-p-r-16 ss-m-t-16 ss-flex ss-flex-wrap"> :style="[{ paddingRight: state.property.space + 'rpx', marginBottom: state.property.space + 'px' }]"
<view class="sales-text">{{ salesAndStock }}</view> v-for="item in state.leftSpuList"
</view> :key="item.id"
>
<s-goods-column
class="goods-md-box"
size="md"
:goodsFields="state.property.fields"
:tagStyle="state.property.badge"
:data="item"
:titleColor="state.property.fields.name?.color"
:subTitleColor="state.property.fields.introduction.color"
:topRadius="state.property.borderRadiusTop"
:bottomRadius="state.property.borderRadiusBottom"
:titleWidth="330 - marginLeft - marginRight"
@click="sheep.$router.go('/pages/goods/point', { 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: state.property.space + 'rpx', marginBottom: state.property.space + 'px' }]"
v-for="item in state.rightSpuList"
:key="item.id"
>
<s-goods-column
class="goods-md-box"
size="md"
:goodsFields="state.property.fields"
:tagStyle="state.property.badge"
:data="item"
:titleColor="state.property.fields.name?.color"
:subTitleColor="state.property.fields.introduction.color"
:topRadius="state.property.borderRadiusTop"
:bottomRadius="state.property.borderRadiusBottom"
:titleWidth="330 - marginLeft - marginRight"
@click="sheep.$router.go('/pages/goods/point', { 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>
<slot name="cart"
><view class="buy-box ss-flex ss-col-center ss-row-center">去兑换</view></slot
>
</view> </view>
</view> </view>
</template> </template>
<script setup> <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({ import { computed, onMounted, reactive, watch } from 'vue';
goodsFields: { import sheep from '@/sheep';
type: [Array, Object], import SpuApi from '@/sheep/api/product/spu';
default() { import { PromotionActivityTypeEnum } from '@/sheep/util/const';
return { import { isEmpty } from '@/sheep/helper/utils';
title: { show: true },
subtitle: { show: true }, //
price: { show: true }, const LayoutTypeEnum = {
original_price: { show: true }, //
sales: { show: true }, ONE_COL_BIG_IMG: 'oneColBigImg',
stock: { show: true }, //
}; TWO_COL: 'twoCol',
//
ONE_COL_SMALL_IMG: 'oneColSmallImg',
};
const state = reactive({
spuList: [],
leftSpuList: [],
rightSpuList: [],
property: {
'layoutType': 'oneColBigImg',
'fields': {
'name': {
'show': true,
'color': '#000',
},
'introduction': {
'show': true,
'color': '#999',
},
'price': {
'show': true,
'color': '#ff3000',
},
'marketPrice': {
'show': true,
'color': '#c4c4c4',
},
'salesCount': {
'show': true,
'color': '#c4c4c4',
},
'stock': {
'show': true,
'color': '#c4c4c4',
},
},
'badge': {
'show': false,
'imgUrl': '',
},
'btnBuy': {
'type': 'text',
'text': '立即兑换',
'bgBeginColor': '#FF6000',
'bgEndColor': '#FE832A',
'imgUrl': '',
},
'borderRadiusTop': 8,
'borderRadiusBottom': 8,
'space': 8,
'style': {
'bgType': 'color',
'bgColor': '',
'marginLeft': 8,
'marginRight': 8,
'marginBottom': 8,
}, },
}, },
tagStyle: { });
const props = defineProps({
property: {
type: Object, type: Object,
default: {}, 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',
}, },
}); });
// // property
const elStyles = computed(() => { watch(() => props.property, (newVal) => {
return { state.property = { ...state.property, ...newVal };
background: props.background, }, { immediate: true, deep: true });
'border-top-left-radius': props.topRadius + 'px', const { layoutType, btnBuy } = state.property || {};
'border-top-right-radius': props.topRadius + 'px', const { marginLeft, marginRight } = state.styles || {};
'border-bottom-left-radius': props.bottomRadius + 'px',
'border-bottom-right-radius': props.bottomRadius + 'px', //
}; const buyStyle = computed(() => {
}); if (btnBuy.type === 'text') {
const emits = defineEmits(['click', 'getHeight']); // 线
const onClick = () => { return {
emits('click'); background: `linear-gradient(to right, ${btnBuy.bgBeginColor}, ${btnBuy.bgEndColor})`,
}; };
//
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);
});
} }
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 getSpuDetail(ids) {
const { data: spu } = await SpuApi.getSpuDetail(ids);
return spu;
}
async function concatActivity(list) {
if (isEmpty(list)) {
return;
}
// SPUspuList
for (const activity of list) {
state.spuList.push(await getSpuDetail(activity.spuId));
}
//
list.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;
}
});
}
function getActivityCount() {
return state.spuList.length;
}
defineExpose({ concatActivity,getActivityCount });
//
onMounted(async () => {
//
if (layoutType === LayoutTypeEnum.TWO_COL) {
//
calculateGoodsColumn();
}
});
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.price-unit { .goods-md-wrap {
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%; width: 100%;
position: relative; }
z-index: 1;
background-color: $white;
position: relative;
.md-img-box { .goods-list-box {
width: 100%; width: 50%;
box-sizing: border-box;
.left-list {
&:nth-last-child(1) {
margin-bottom: 0 !important;
}
} }
.md-goods-title { .right-list {
font-size: 26rpx; &:nth-last-child(1) {
color: #333; margin-bottom: 0 !important;
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 .goods-box {
.lg-goods-card { &:nth-last-of-type(1) {
overflow: hidden; margin-bottom: 0 !important;
}
}
.goods-md-box,
.goods-sl-box,
.goods-lg-box {
position: relative; position: relative;
z-index: 1;
background-color: $white;
height: 280rpx;
.lg-img-box { .cart-btn {
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; position: absolute;
bottom: 20rpx; bottom: 18rpx;
right: 20rpx; right: 20rpx;
z-index: 2; z-index: 11;
width: 120rpx;
height: 50rpx; height: 50rpx;
background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient)); line-height: 50rpx;
padding: 0 20rpx;
border-radius: 25rpx; border-radius: 25rpx;
font-size: 24rpx; font-size: 24rpx;
color: #ffffff; color: #fff;
} }
.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> </style>