绿满眶商城微信小程序-uniapp
zhanghua
5 天以前 1113721c0e068c57adbc15149cce15563960a7f2
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<template>
    <view>
        <!-- 一行两列商品展示 -->
        <view class="goods-list" v-if="type == 'twoColumns'">
            <view v-for="(item, index) in res" :key="index" class="goods-item">
                <view class="image-wrapper" @click="navigateToDetailPage(item)">
                    <u-image :src="item.thumbnail" width="100%" height='330rpx' mode="aspectFit">
                        <u-loading slot="loading"></u-loading>
                    </u-image>
                </view>
                <view class="goods-detail">
                    <div class="title clamp" v-html="lightSearchStr(keyword,item.goodsName)"
                        @click="navigateToDetailPage(item)">
 
                    </div>
                    <view class="price-box" @click="navigateToDetailPage(item)">
                        <div class="price" v-if="item.price!=undefined">
                            ¥<span>{{ $options.filters.goodsFormatPrice(item.price )[0] }} </span>.{{
                $options.filters.goodsFormatPrice(item.price )[1]
              }}
                        </div>
                    </view>
                    <div class="promotion" @click="navigateToDetailPage(item)">
                        <div v-if="item.salesModel == 'WHOLESALE'">
                            <span>批</span>
                        </div>
                        <div v-for="(promotionItem,promotionIndex) in  getPromotion(item)" :key="promotionIndex">
                            <span v-if="promotionItem.indexOf('COUPON') != -1">劵</span>
                            <span v-if="promotionItem.indexOf('FULL_DISCOUNT') != -1">满减</span>
                            <span v-if="promotionItem.indexOf('SECKILL') != -1">秒杀</span>
                        </div>
                    </div>
                    <div class="count-config" @click="navigateToDetailPage(item)">
                        <span>已售 {{ item.buyCount || "0" }}</span>
                        <span>{{ item.commentNum || "0" }}条评论</span>
                    </div>
                    <div class="store-seller-name" v-if="storeName" @click="navigateToStoreDetailPage(item)">
                        <div class="text-hidden">
                            <u-tag style="margin-right: 10rpx" size="mini" mode="dark" v-if="item.selfOperated"
                                text="自营" type="error" />
                            <span>{{ item.storeName || "暂无" }}</span>
                        </div>
                        <span>
                            <u-icon name="arrow-right"></u-icon>
                        </span>
                    </div>
                </view>
            </view>
        </view>
        <!-- 一行一列商品展示 -->
        <div v-if="type == 'oneColumns'"  class="goods-one-row">
            <div v-for="(item, index) in res" :key="index" class="goods-row">
                <div class="flex goods-col">
                    <div class="goods-img" @click="navigateToDetailPage(item)">
                        <u-image width="230rpx" mode="aspectFit" border-radius='16' height="230rpx" :src="item.thumbnail">
                            <u-loading slot="loading"></u-loading>
                        </u-image>
                    </div>
                    <div class="goods-detail">
                        <div class="title clamp3" @click="navigateToDetailPage(item)">{{ item.goodsName }}</div>
                        <view class="price-box" @click="navigateToDetailPage(item)">
                            <div class="price" v-if="item.price!=undefined">
                                ¥<span>{{ $options.filters.goodsFormatPrice(item.price )[0] }} </span>.{{
                        $options.filters.goodsFormatPrice(item.price )[1]
                      }}
                            </div>
                        </view>
                        <div class="promotion" @click="navigateToDetailPage(item)">
                            <div v-if="item.salesModel == 'WHOLESALE'">
                                <span>批</span>
                            </div>
                            <div v-for="(promotionItem,promotionIndex) in  getPromotion(item)" :key="promotionIndex">
                                <span v-if="promotionItem.indexOf('COUPON') != -1">劵</span>
                                <span v-if="promotionItem.indexOf('FULL_DISCOUNT') != -1">满减</span>
                                <span v-if="promotionItem.indexOf('SECKILL') != -1">秒杀</span>
                            </div>
                        </div>
                        <div style="overflow: hidden" @click="navigateToDetailPage(item)" class="count-config">
                            <span style="float: left; font-size: 22rpx">已售 {{ item.buyCount || '0' }}</span>
                            <span style="float: right; font-size: 22rpx">{{ item.commentNum || '0' }}条评论</span>
                        </div>
                        <div style="overflow: hidden" @click="navigateToStoreDetailPage(item)" class="count-config">
                            <div class="text-hidden" v-if="storeName">
                                <u-tag style="margin-right: 10rpx" size="mini" mode="dark" v-if="item.selfOperated"
                                    text="自营" type="error" />
                                <span class="line1-store-name">{{ item.storeName }}</span>
                                <span class="to-store">进店<u-icon size="24" name="arrow-right" color="#666"></u-icon>
                                </span>
                            </div>
                            <span>
                                <u-icon name="arrow-right" color="#c5c5c5"></u-icon>
                            </span>
                        </div>
                    </div>
                </div>
 
            </div>
        </div>
 
    </view>
</template>
 
<script>
    import '@/components/uview-components/uview-ui';
    
    import commonTpl from '@/components/m-goods-list/common'
    export default {
        data() {
            return {
                lightColor: this.$mainColor
            }
        },
        mixins: [commonTpl],
        
        props: {
            // 遍历的数据
            res: {
                type: Array,
                default: () => {
                    return []
                }
            },
            // 一行两列还是一行一列显示
            type: {
                type: String,
                default: 'twoColumns',
                validator() {
                    return ['twoColumns', 'oneColumns']
                }
            },
            storeName: {
                type: Boolean,
                default: true
            },
            keyword: {
                type: null,
                default: ''
            }
 
        },
        watch: {
            keyword(val) {
                if (val) {
                    this.lightSearchStr(val)
                }
            }
        },
        methods: {
 
            // 高亮显示搜索内容    
            lightSearchStr(keyword, str) {
                if (!keyword) {
                    return str
                } else {
                    let unicodes = '';
                    for (let i of Array.from(keyword)) {
                        unicodes += this.unicode(i) + "|"
                    }
                    const rule = '(' + unicodes + ')'
                    const reg = new RegExp(rule, 'gi');
                    return str ? str.replace(reg, matchValue =>
                        `<span style="color:${this.lightColor}">${matchValue}</span>`
                    ) : ''
                }
            },
            //  转换为unicode
            unicode(str) {
                var value = '';
                for (var i = 0; i < str.length; i++) {
                    value += '\\u' + this.left_zero_4(parseInt(str.charCodeAt(i)).toString(16));
                }
                return value;
            },
            left_zero_4(str) {
                if (str != null && str != '' && str != 'undefined') {
                    if (str.length == 2) {
                        return '00' + str;
                    }
                }
                return str;
            },
            // 数据去重一下 只显示一次 减免 劵 什么的
            getPromotion(item) {
                if (item ? item.promotionMap : item.promotionMap) {
                    const fieldList = item ? item.promotionMap : item.promotionMap
                    let array = [];
                    Object.keys(fieldList).forEach((child) => {
                        if (!array.includes(child.split("-")[0])) {
                            array.push(child.split("-")[0]);
                        }
                    });
                    return array;
                }
            },
            // 跳转到商品详情
            navigateToDetailPage(item) {
                uni.navigateTo({
                    url: `/pages/product/goods?id=${item.id}&goodsId=${item.goodsId}`,
                });
            },
            // 跳转地址
            navigateToStoreDetailPage(item) {
                uni.navigateTo({
                    url: `/pages/product/shopPage?id=${item.storeId}`,
                });
            },
        }
    }
</script>
 
<style lang='scss' scoped>
        .goods-one-row{
            padding-bottom: 250rpx;
        }
        /* 商品列表 */
        .goods-list {
            display: flex;
            flex-wrap: wrap;
            margin: 10rpx 20rpx 284rpx;
            width: 100%;
    
            >.goods-item {
                background-color: #ffffff;
                display: flex;
                border-radius: 16rpx;
                flex-direction: column;
                width: calc(50% - 30rpx);
                margin-bottom: 20rpx;
                padding-bottom: 20rpx;
    
                &:nth-child(2n + 1) {
                    margin-right: 20rpx;
                }
    
    
                .image-wrapper {
                    width: 100%;
                    height: 330rpx;
                    border-radius: 16rpx 16rpx 0 0;
                    overflow: hidden;
                    padding: 0;
                }
            }
    
            .count-config,
            .store-seller-name {
                font-size: $font-sm;
            }
    
            .text-hidden {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
        }
    
    
        .goods-row {
            background: #fff;
            padding: 16rpx;
    
            >.goods-col {
                display: flex;
    
                >.goods-img {
                    overflow: hidden;
                    flex: 4;
                }
    
                >.goods-detail {
                    flex: 7;
                }
            }
        }
    
        .goods-detail {
            margin: 0 20rpx;
    
            >.title {
                font-size: $font-base;
                color: $font-color-dark;
                line-height: 1.5;
                height: 86rpx;
                padding: 10rpx 0 0;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                overflow: hidden;
            }
    
            .promotion {
                margin-top: 4rpx;
                display: flex;
    
                div {
                    span {
                        font-size: 24rpx;
                        color: $light-color;
                        margin-right: 10rpx;
                        padding: 0 4rpx;
                        border-radius: 2rpx;
                    }
                }
            }
    
            .store-seller-name {
                color: #666;
                overflow: hidden;
                display: flex;
                justify-content: space-between;
            }
    
            .count-config {
                padding: 5rpx 0;
                color: #666;
                display: flex;
                font-size: 24rpx;
                justify-content: space-between;
            }
    
            >.price-box {
                margin-top: 10rpx;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding-right: 10rpx;
                font-size: 24rpx;
                color: $font-color-light;
    
                >.price {
                    font-size: 26rpx;
                    line-height: 1;
                    color: $main-color;
                    font-weight: bold;
    
                    /deep/ span:nth-of-type(1) {
                        font-size: 38rpx;
                    }
                }
            }
    
        }
</style>