add
yj
2024-12-05 a160d838f9c0a79dfc2f18e7cd46bdd4faa59c6d
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<template>
  <view class="content">
    <view class="navbar" :style="{position:headerPosition,top:headerTop}">
      <view class="nav-item" :class="{current: filterIndex === 0}" @click="tabClick(0)">
        销量优先
      </view>
      <view class="nav-item" :class="{current: filterIndex === 1}" @click="tabClick(1)">
        <text>价格</text>
        <view class="p-box">
          <text :class="{active: priceOrder === 1 && filterIndex === 1}" class="yticon icon-shang" />
          <text :class="{active: priceOrder === 2 && filterIndex === 1}" class="yticon icon-shang xia" />
        </view>
      </view>
    </view>
    <view class="goods-list">
      <view v-for="(item, index) in productList" :key="index" class="goods-item" @click="navToDetailPage(item)">
        <view class="image-wrapper">
          <image :src="item.img + style(200)" mode="aspectFill" />
        </view>
        <text class="title clamp">
          {{ item.title }}
        </text>
        <view class="price-box">
          <text class="price">
            {{ isVip? (item.vipPrice / 100.0 + ' [VIP]') : (item.price / 100.0) }}
          </text>
          <text>已售 {{ item.sales?item.sales:0 }}</text>
        </view>
      </view>
    </view>
    <!-- #ifndef MP-ALIPAY -->
    <uni-load-more :status="loadingType" />
    <!-- #endif -->
  </view>
</template>
 
<script>
import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue'
export default {
  components: {
    uniLoadMore
  },
  data() {
    return {
      style: this.$api.style,
      cateMaskState: 0, // 分类面板展开状态
      headerPosition: 'fixed',
      headerTop: '0px',
      loadingType: 'more', // 加载更多状态
      filterIndex: 0,
      priceOrder: 0, // 1 价格从低到高 2价格从高到低
      productList: [],
      cateId: 0,
      keyword: '',
      pageNo: 1,
      isVip: false
    }
  },
  onShow() {
    this.isVip = this.$api.isVip()
  },
  onLoad(options) {
    // #ifdef H5
    this.headerTop = document.getElementsByTagName('uni-page-head')[0].offsetHeight + 'px'
    // #endif
    this.cateId = options.tid ? options.tid : 0
    this.keyword = options.keyword ? options.keyword : ''
    this.loadData()
  },
  onPageScroll(e) {
    // 兼容iOS端下拉时顶部漂移
    if (e.scrollTop >= 0) {
      this.headerPosition = 'fixed'
    } else {
      this.headerPosition = 'absolute'
    }
  },
  // 下拉刷新
  onPullDownRefresh() {
    this.loadData('refresh')
  },
  // 加载更多
  onReachBottom() {
    this.loadData()
  },
  methods: {
    // 加载商品 ,带下拉刷新和上滑加载
    async loadData(type = 'add', loading) {
      // 没有更多直接返回
      if (type === 'add') {
        if (this.loadingType === 'nomore') {
          return
        }
        this.loadingType = 'loading'
      } else {
        this.loadingType = 'more'
      }
 
      let orderByInfo = {}
      if (this.filterIndex === 0) {
        // 销量排序
        orderByInfo = {
          orderBy: 'sales',
          isAsc: false
        }
      }
      if (this.filterIndex === 1) {
        // 价格排序 需要从新获取Page
        orderByInfo = {
          orderBy: 'price',
          isAsc: this.priceOrder === 1
        }
      }
      if (type === 'refresh') {
        this.pageNo = 1
      }
      this.$api.request('product', 'getProductPage', {
        categoryId: this.cateId,
        title: this.keyword,
        pageNo: this.pageNo,
        ...orderByInfo
      }).then(res => {
        const tempList = res.data.items
        if (type === 'refresh') {
          this.productList = []
        }
        this.productList = this.productList.concat(tempList)
        this.pageNo = res.data.pageNo + 1
        this.loadingType = res.data.totalPageNo > res.data.pageNo ? 'more' : 'nomore'
        if (type === 'refresh') {
          if (loading === 1) {
            uni.hideLoading()
          } else {
            uni.stopPullDownRefresh()
          }
        }
      })
    },
    // 筛选点击
    tabClick(index) {
      if (this.filterIndex === index && index !== 1) {
        return
      }
      this.filterIndex = index
      if (index === 1) {
        this.priceOrder = this.priceOrder === 1 ? 2 : 1
      } else {
        this.priceOrder = 0
      }
      uni.pageScrollTo({
        duration: 300,
        scrollTop: 0
      })
      this.loadData('refresh', 1)
      uni.showLoading({
        title: '正在加载'
      })
    },
    // 详情
    navToDetailPage(item) {
      // 测试数据没有写id,用title代替
      const id = item.id
      uni.navigateTo({
        url: `/pages/product/detail?id=${id}`
      })
    },
    stopPrevent() {}
  }
}
</script>
 
<style lang="scss">
    page,
    .content {
        background: $page-color-base;
    }
 
    .content {
        padding-top: 96upx;
    }
 
    .navbar {
        position: fixed;
        left: 0;
        top: var(--window-top);
        display: flex;
        width: 100%;
        height: 80upx;
        background: #fff;
        box-shadow: 0 2upx 10upx rgba(0, 0, 0, .06);
        z-index: 10;
 
        .nav-item {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            font-size: 30upx;
            color: $font-color-dark;
            position: relative;
 
            &.current {
                color: $base-color;
 
                &:after {
                    content: '';
                    position: absolute;
                    left: 50%;
                    bottom: 0;
                    transform: translateX(-50%);
                    width: 120upx;
                    height: 0;
                    border-bottom: 4upx solid $base-color;
                }
            }
        }
 
        .p-box {
            display: flex;
            flex-direction: column;
 
            .yticon {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 30upx;
                height: 14upx;
                line-height: 1;
                margin-left: 4upx;
                font-size: 26upx;
                color: #888;
 
                &.active {
                    color: $base-color;
                }
            }
 
            .xia {
                transform: scaleY(-1);
            }
        }
 
        .cate-item {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            width: 80upx;
            position: relative;
            font-size: 44upx;
 
            &:after {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                border-left: 1px solid #ddd;
                width: 0;
                height: 36upx;
            }
        }
    }
 
    /* 分类 */
    .cate-mask {
        position: fixed;
        left: 0;
        top: var(--window-top);
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0);
        z-index: 95;
        transition: .3s;
 
        .cate-content {
            width: 630upx;
            height: 100%;
            background: #fff;
            float: right;
            transform: translateX(100%);
            transition: .3s;
        }
 
        &.none {
            display: none;
        }
 
        &.show {
            background: rgba(0, 0, 0, .4);
 
            .cate-content {
                transform: translateX(0);
            }
        }
    }
 
    .cate-list {
        display: flex;
        flex-direction: column;
        height: 100%;
 
        .cate-item {
            display: flex;
            align-items: center;
            height: 90upx;
            padding-left: 30upx;
            font-size: 28upx;
            color: #555;
            position: relative;
        }
 
        .two {
            height: 64upx;
            color: #303133;
            font-size: 30upx;
            background: #f8f8f8;
        }
 
        .active {
            color: $base-color;
        }
    }
 
    /* 商品列表 */
    .goods-list {
        display: flex;
        flex-wrap: wrap;
        padding: 0 30upx;
        background: #fff;
 
        .goods-item {
            display: flex;
            flex-direction: column;
            width: 48%;
            padding-bottom: 40upx;
 
            &:nth-child(2n+1) {
                margin-right: 4%;
            }
        }
 
        .image-wrapper {
            width: 100%;
            height: 330upx;
            border-radius: 3px;
            overflow: hidden;
 
            image {
                width: 100%;
                height: 100%;
                opacity: 1;
            }
        }
 
        .title {
            font-size: $font-lg;
            color: $font-color-dark;
            line-height: 80upx;
        }
 
        .price-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-right: 10upx;
            font-size: 24upx;
            color: $font-color-light;
        }
 
        .price {
            font-size: $font-lg;
            color: $uni-color-primary;
            line-height: 1;
 
            &:before {
                content: '¥';
                font-size: 26upx;
            }
        }
    }
</style>