gaoluyang
2026-06-24 712aa51536236d43e87273e4ce45ac5691dffad8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<script setup lang="ts">
import type { ProductCardProperty } from './config';
 
import type { MallSpuApi } from '#/api/mall/product/spu';
 
import { ref, watch } from 'vue';
 
import { fenToYuan } from '..\..\..\..\..\..\..\..\packages\utils\src';
 
import { Image } from 'ant-design-vue';
 
import { getSpuDetailList } from '#/api/mall/product/spu';
 
/** 商品卡片 */
defineOptions({ name: 'ProductCard' });
 
const props = defineProps<{ property: ProductCardProperty }>();
 
const spuList = ref<MallSpuApi.Spu[]>([]); // 商品列表
 
watch(
  () => props.property.spuIds,
  async () => {
    spuList.value = await getSpuDetailList(props.property.spuIds);
  },
  {
    immediate: true,
    deep: true,
  },
);
 
/** 计算商品的间距 */
function calculateSpace(index: number) {
  const columns = props.property.layoutType === 'twoCol' ? 2 : 1; // 商品的列数
  const marginLeft = index % columns === 0 ? '0' : `${props.property.space}px`; // 第一列没有左边距
  const marginTop = index < columns ? '0' : `${props.property.space}px`; // 第一行没有上边距
  return { marginLeft, marginTop };
}
 
const containerRef = ref(); // 容器
 
/** 计算商品的宽度 */
function calculateWidth() {
  let width = '100%';
  if (props.property.layoutType === 'twoCol') {
    // 双列时每列的宽度为:(总宽度 - 间距)/ 2
    width = `${(containerRef.value.offsetWidth - props.property.space) / 2}px`;
  }
  return { width };
}
</script>
<template>
  <div
    class="box-content flex min-h-[30px] w-full flex-row flex-wrap"
    ref="containerRef"
  >
    <div
      class="relative box-content flex flex-row flex-wrap overflow-hidden"
      :style="{
        ...calculateSpace(index),
        ...calculateWidth(),
        borderTopLeftRadius: `${property.borderRadiusTop}px`,
        borderTopRightRadius: `${property.borderRadiusTop}px`,
        borderBottomLeftRadius: `${property.borderRadiusBottom}px`,
        borderBottomRightRadius: `${property.borderRadiusBottom}px`,
      }"
      v-for="(spu, index) in spuList"
      :key="index"
    >
      <!-- 角标 -->
      <div
        v-if="property.badge.show && property.badge.imgUrl"
        class="absolute left-0 top-0 z-[1] items-center justify-center"
      >
        <Image
          :src="property.badge.imgUrl"
          :preview="false"
          class="h-6 w-8 object-cover"
        />
      </div>
      <!-- 商品封面图 -->
      <div
        class="h-36"
        :class="[
          {
            'w-full': property.layoutType !== 'oneColSmallImg',
            'w-36': property.layoutType === 'oneColSmallImg',
          },
        ]"
      >
        <Image
          class="h-full w-full object-cover"
          :src="spu.picUrl"
          :preview="false"
        />
      </div>
      <div
        class="box-border flex flex-col gap-2 p-2"
        :class="[
          {
            'w-full': property.layoutType !== 'oneColSmallImg',
            'w-[calc(100vh-140px-16px)]':
              property.layoutType === 'oneColSmallImg',
          },
        ]"
      >
        <!-- 商品名称 -->
        <div
          v-if="property.fields.name.show"
          class="text-sm"
          :class="[
            {
              truncate: property.layoutType !== 'oneColSmallImg',
              'line-clamp-2 overflow-ellipsis':
                property.layoutType === 'oneColSmallImg',
            },
          ]"
          :style="{ color: property.fields.name.color }"
        >
          {{ spu.name }}
        </div>
        <!-- 商品简介 -->
        <div
          v-if="property.fields.introduction.show"
          class="truncate text-xs"
          :style="{ color: property.fields.introduction.color }"
        >
          {{ spu.introduction }}
        </div>
        <div>
          <!-- 价格 -->
          <span
            v-if="property.fields.price.show"
            class="text-base"
            :style="{ color: property.fields.price.color }"
          >
            ¥{{ fenToYuan(spu.price as any) }}
          </span>
          <!-- 市场价 -->
          <span
            v-if="property.fields.marketPrice.show && spu.marketPrice"
            class="ml-1 text-xs line-through"
            :style="{ color: property.fields.marketPrice.color }"
            >¥{{ fenToYuan(spu.marketPrice) }}
          </span>
        </div>
        <div class="text-xs">
          <!-- 销量 -->
          <span
            v-if="property.fields.salesCount.show"
            :style="{ color: property.fields.salesCount.color }"
          >
            已售{{ (spu.salesCount || 0) + (spu.virtualSalesCount || 0) }}件
          </span>
          <!-- 库存 -->
          <span
            v-if="property.fields.stock.show"
            :style="{ color: property.fields.stock.color }"
          >
            库存{{ spu.stock || 0 }}
          </span>
        </div>
      </div>
      <!-- 购买按钮 -->
      <div class="absolute bottom-2 right-2">
        <!-- 文字按钮 -->
        <span
          v-if="property.btnBuy.type === 'text'"
          class="rounded-full px-3 py-1 text-sm text-white"
          :style="{
            background: `linear-gradient(to right, ${property.btnBuy.bgBeginColor}, ${property.btnBuy.bgEndColor}`,
          }"
        >
          {{ property.btnBuy.text }}
        </span>
        <!-- 图片按钮 -->
        <Image
          v-else
          class="size-7 rounded-full object-cover"
          :src="property.btnBuy.imgUrl"
          :preview="false"
        />
      </div>
    </div>
  </div>
</template>