houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 1 <template>
H 2   <el-scrollbar class="z-1 min-h-30px" wrap-class="w-full" ref="containerRef">
3     <!-- 商品网格 -->
4     <div
5       class="grid overflow-x-auto"
6       :style="{
7         gridGap: `${property.space}px`,
8         gridTemplateColumns,
9         width: scrollbarWidth
10       }"
11     >
12       <!-- 商品 -->
13       <div
14         class="relative box-content flex flex-row flex-wrap overflow-hidden bg-white"
15         :style="{
16           borderTopLeftRadius: `${property.borderRadiusTop}px`,
17           borderTopRightRadius: `${property.borderRadiusTop}px`,
18           borderBottomLeftRadius: `${property.borderRadiusBottom}px`,
19           borderBottomRightRadius: `${property.borderRadiusBottom}px`
20         }"
21         v-for="(spu, index) in spuList"
22         :key="index"
23       >
24         <!-- 角标 -->
25         <div
26           v-if="property.badge.show"
27           class="absolute left-0 top-0 z-1 items-center justify-center"
28         >
29           <el-image fit="cover" :src="property.badge.imgUrl" class="h-26px w-38px" />
30         </div>
31         <!-- 商品封面图 -->
32         <el-image fit="cover" :src="spu.picUrl" :style="{ width: imageSize, height: imageSize }" />
33         <div
34           :class="[
35             'flex flex-col gap-8px p-8px box-border',
36             {
37               'w-[calc(100%-64px)]': columns === 2,
38               'w-full': columns === 3
39             }
40           ]"
41         >
42           <!-- 商品名称 -->
43           <div
44             v-if="property.fields.name.show"
45             class="truncate text-12px"
46             :style="{ color: property.fields.name.color }"
47           >
48             {{ spu.name }}
49           </div>
50           <div>
51             <!-- 商品价格 -->
52             <span
53               v-if="property.fields.price.show"
54               class="text-12px"
55               :style="{ color: property.fields.price.color }"
56             >
57               ¥{{ spu.price }}
58             </span>
59           </div>
60         </div>
61       </div>
62     </div>
63   </el-scrollbar>
64 </template>
65 <script setup lang="ts">
66 import { PromotionSeckillProperty } from './config'
67 import * as ProductSpuApi from '@/api/mall/product/spu'
68 import * as SeckillActivityApi from '@/api/mall/promotion/seckill/seckillActivity'
69
70 /** 秒杀 */
71 defineOptions({ name: 'PromotionSeckill' })
72 // 定义属性
73 const props = defineProps<{ property: PromotionSeckillProperty }>()
74 // 商品列表
75 const spuList = ref<ProductSpuApi.Spu[]>([])
76 watch(
77   () => props.property.activityId,
78   async () => {
79     if (!props.property.activityId) return
80     const activity = await SeckillActivityApi.getSeckillActivity(props.property.activityId)
81     if (!activity?.spuId) return
82     spuList.value = [await ProductSpuApi.getSpu(activity.spuId)]
83   },
84   {
85     immediate: true,
86     deep: true
87   }
88 )
89 // 手机宽度
90 const phoneWidth = ref(375)
91 // 容器
92 const containerRef = ref()
93 // 商品的列数
94 const columns = ref(2)
95 // 滚动条宽度
96 const scrollbarWidth = ref('100%')
97 // 商品图大小
98 const imageSize = ref('0')
99 // 商品网络列数
100 const gridTemplateColumns = ref('')
101 // 计算布局参数
102 watch(
103   () => [props.property, phoneWidth, spuList.value.length],
104   () => {
105     // 计算列数
106     columns.value = props.property.layoutType === 'oneCol' ? 1 : 3
107     // 每列的宽度为:(总宽度 - 间距 * (列数 - 1))/ 列数
108     const productWidth =
109       (phoneWidth.value - props.property.space * (columns.value - 1)) / columns.value
110     // 商品图布局:2列时,左右布局 3列时,上下布局
111     imageSize.value = columns.value === 2 ? '64px' : `${productWidth}px`
112     // 指定列数
113     gridTemplateColumns.value = `repeat(${columns.value}, auto)`
114     // 不滚动
115     scrollbarWidth.value = '100%'
116   },
117   { immediate: true, deep: true }
118 )
119 onMounted(() => {
120   // 提取手机宽度
121   phoneWidth.value = containerRef.value?.wrapRef?.offsetWidth || 375
122 })
123 </script>
124
125 <style scoped lang="scss"></style>