Blame view

src/pages/cart/cart.vue 16.1 KB
0db291810   BigBoss   “-mcomfirmOder页面
1
  <template>
a3d2beaa8   范牧   立即支付功能
2
3
    <view class="content">
      <block v-if="cartList.length==0">
7a7226fea   范牧   冲突合并
4
  
a3d2beaa8   范牧   立即支付功能
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
      </block>
      <block v-else>
        <view class="card">
          <view class="cardHeader">
            <view
              v-bind:class="pIsoPen? 'partentChecked' : 'partentCheck'"
              @tap="pChange(pIsoPen)"
            >
              <span class="correct"></span>
            </view>
            <image
              src="../../static/store.png"
              mode="aspectFill"
            ></image>
            <text>非常戴镜</text>
          </view>
a3d2beaa8   范牧   立即支付功能
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
          <view
            class="cardBody"
            v-for="(item,index) in cartList"
            :key="item.cart_id"
            @longpress="delCart(item.cart_id,index)"
          >
            <view
              v-bind:class="childIsOpen[index]? 'partentChecked':'partentCheck'"
              @tap="Change(childIsOpen[index],index)"
            >
              <span class="correct"></span>
            </view>
            <view class="imageWrap">
              <image
                :src="item.img_index_url"
                mode="aspectFit"
                style="width: 188rpx;height: 168rpx;"
              ></image>
            </view>
            <view class="goodInfo">
55420a8a9   范牧   解决冲突
41
42
43
              <!-- <view class="imageWrap">
                <image :src="item.img_index_url" mode="aspectFit" style="width: 188rpx;height: 168rpx;"></image>
              </view> -->
a3d2beaa8   范牧   立即支付功能
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
              <view class="infoRight">
                <view
                  class="goodName"
                  @tap="toGoods(item.pid,item.sk_id)"
                >{{item.p_name}}</view>
                <!-- <view class="describ"> -->
                <uni-collapse accordion="true">
                  <uni-collapse-item
                    showAnimation='true'
                    :title="item.tag.prod_tag_fun[0].label+'/'+item.tag.prod_tag_fun[1].label+'/'+item.tag.prod_tag_fun[2].label+'...' || '暂无'"
                  >
                    <text class="describ">
                      <block
                        v-for="tag in item.tag.prod_tag_fun"
                        :key="tag.value"
                      >
                        {{tag.label+`&nbsp;&nbsp;`}}
                      </block>
                    </text>
55420a8a9   范牧   解决冲突
63
64
65
66
67
                    <!--                    <text>
                        <block v-for="tag in item.tag.prod_tag_style" :key="tag.value">
                          {{tag.label+`&nbsp;&nbsp;`}}
                        </block>
                      </text> -->
a3d2beaa8   范牧   立即支付功能
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
                  </uni-collapse-item>
                </uni-collapse>
                <!-- <view v-bind:class="collapseList[index]? 'icon':'iconed'"></view> -->
                <!-- </view> -->
                <view class="priceBox">
                  <view class="price">¥{{item.nowPrice*item.num}}</view>
                  <text class="maxCount">(限购{{maxCount}}副)</text>
                  <view class="counter">
                    <view
                      class="btn"
                      disabled="this.addDisabled"
                      type="default"
                      @tap="counter(index,false,item)"
                    >-</view>
                    <text>{{item.num}}</text>
                    <view
                      class="btn"
                      disabled="this.desDisabled"
                      type="default"
                      @tap="counter(index,true,item)"
                    >+</view>
                  </view>
                </view>
              </view>
            </view>
          </view>
        </view>
      </block>
      <view class="footer">
        <view class="footerLeft">实付金额:<text>¥{{totalPrice}}</text></view>
        <view class="footerRight">
          <navigator
            url="/pages/confirmOrder/confirmOrder"
            hover-class="navigator-hover"
          >
            <view class="paybtn">立即结算</view>
          </navigator>
        </view>
      </view>
7a7226fea   范牧   冲突合并
107
  
a3d2beaa8   范牧   立即支付功能
108
    </view>
0db291810   BigBoss   “-mcomfirmOder页面
109
110
111
  </template>
  
  <script>
7a7226fea   范牧   冲突合并
112
113
114
  import UniCollapse from '@/components/UniCollapse/UniCollapse.vue'
  import UniCollapseItem from '@/components/UniCollapseItem/UniCollapseItem.vue'
  import store from '@/store'
ab4209caf   喻鹏   update
115
  
7a7226fea   范牧   冲突合并
116
117
118
119
120
121
122
  export default {
    components: { UniCollapse, UniCollapseItem },
    data() {
      return {
        totalPrice: 0,
        pIsoPen: false,
        // childIsOpen:[],
a3d2beaa8   范牧   立即支付功能
123
        maxCount: 20,
7a7226fea   范牧   冲突合并
124
125
126
      }
    },
    computed: {
cc196c33c   喻鹏   购物车和用户推荐接口渲染
127
  
7a7226fea   范牧   冲突合并
128
      cartList() {
b9fb65756   喻鹏   购物车和推荐产品根据sk_id来对应价格
129
        // console.log('cart-list', this.$store.state.cart.cartList);
637a02b07   尹聃   添加购物车
130
        return this.$store.state.cart.cartList
7a7226fea   范牧   冲突合并
131
132
133
134
135
136
137
138
139
      },
      childIsOpen() {
        const temp = []
        temp.length = this.$store.state.cart.cartList.length
        for (let i = 0; i < temp.length; i++) {
          temp[i] = false
        }
        console.log('this.childisOPne===>', temp)
        return temp
a3d2beaa8   范牧   立即支付功能
140
      },
7a7226fea   范牧   冲突合并
141
142
    },
    onLoad: function() {
55420a8a9   范牧   解决冲突
143
144
      //  store.dispatch('cart/addCart', {
      //    uid: this.$store.state.user.userInfo.uid,
a3d2beaa8   范牧   立即支付功能
145
146
147
148
149
150
151
      // openid: this.$store.state.user.userInfo.openid,
      // mp_id: 7,
      // sk_id: 7,
      // num: 1,
      // pid: 8,
      // price: 128,
      // checkedSKU:{},
55420a8a9   范牧   解决冲突
152
      //  })
7a7226fea   范牧   冲突合并
153
      store.dispatch('cart/getCartList', {
a3d2beaa8   范牧   立即支付功能
154
        uid: this.$store.state.user.userInfo.uid, // 用户id
7a7226fea   范牧   冲突合并
155
156
      })
    },
cc196c33c   喻鹏   购物车和用户推荐接口渲染
157
  
7a7226fea   范牧   冲突合并
158
    methods: {
b9fb65756   喻鹏   购物车和推荐产品根据sk_id来对应价格
159
      toGoods(id, sk_id) {
55420a8a9   范牧   解决冲突
160
161
162
163
164
165
166
167
        console.log('cart-list', this.$store.state.cart.cartList)
        console.log('---', '../frameDetail/frameDetail?pid=' + id + '&sk_id=' + sk_id)
        uni.navigateTo({
          url: '../frameDetail/frameDetail?pid=' + id + '&sk_id=' + sk_id,
          success: res => {},
          fail: () => {},
          complete: () => {},
        })
7a7226fea   范牧   冲突合并
168
      },
cc196c33c   喻鹏   购物车和用户推荐接口渲染
169
  
b83c44fe1   喻鹏   购物车和用户推荐传参
170
      counter(index, isadd, item) {
7a7226fea   范牧   冲突合并
171
172
        // console.log('===>>counter ===>num',num)
        // console.log('===>>counter ===>isadd',isadd)
55420a8a9   范牧   解决冲突
173
174
        console.log('item=====>', item)
        console.log('num=====>', item.num)
a3d2beaa8   范牧   立即支付功能
175
        const nums = parseInt(item.num)
7a7226fea   范牧   冲突合并
176
        if (isadd) {
b83c44fe1   喻鹏   购物车和用户推荐传参
177
          if (nums >= this.maxCount) {
7a7226fea   范牧   冲突合并
178
179
180
181
            this.addDisabled = true
          } else {
            this.addDisabled = true
            // 修改num
55420a8a9   范牧   解决冲突
182
183
184
            if (this.childIsOpen[index]) {
              this.totalPrice = this.totalPrice + this.$store.state.cart.cartList[index].nowPrice
            }
7a7226fea   范牧   冲突合并
185
            store.dispatch('cart/modiCart', {
acc7ee230   喻鹏   购物车,用户推荐,新增验光逻辑修改
186
187
              uid: this.$store.state.user.userInfo.uid,
              openid: this.$store.state.user.userInfo.openid,
b83c44fe1   喻鹏   购物车和用户推荐传参
188
189
              mp_id: item.mp_id,
              sk_id: item.sk_id,
a3d2beaa8   范牧   立即支付功能
190
191
              price: item.nowPrice,
              pid: item.pid,
b83c44fe1   喻鹏   购物车和用户推荐传参
192
              num: nums + 1,
a3d2beaa8   范牧   立即支付功能
193
              cart_id: item.cart_id,
7a7226fea   范牧   冲突合并
194
195
              args: {
                index: index,
a3d2beaa8   范牧   立即支付功能
196
197
                isadd: isadd,
              },
7a7226fea   范牧   冲突合并
198
199
200
201
            })
            this.addDisabled = false
          }
        } else {
b83c44fe1   喻鹏   购物车和用户推荐传参
202
          if (nums <= 1) {
7a7226fea   范牧   冲突合并
203
204
205
206
            this.desDisabled = true
          } else {
            this.desDisabled = false
            // post 请求修改相关参数
55420a8a9   范牧   解决冲突
207
            if (this.childIsOpen[index]) {
a3d2beaa8   范牧   立即支付功能
208
              this.totalPrice = this.totalPrice - this.$store.state.cart.cartList[index].nowPrice
55420a8a9   范牧   解决冲突
209
            }
7a7226fea   范牧   冲突合并
210
            store.dispatch('cart/modiCart', {
acc7ee230   喻鹏   购物车,用户推荐,新增验光逻辑修改
211
212
              uid: this.$store.state.user.userInfo.uid,
              openid: this.$store.state.user.userInfo.openid,
b83c44fe1   喻鹏   购物车和用户推荐传参
213
214
              mp_id: item.mp_id,
              sk_id: item.sk_id,
a3d2beaa8   范牧   立即支付功能
215
216
              price: item.nowPrice,
              pid: item.pid,
b83c44fe1   喻鹏   购物车和用户推荐传参
217
              num: nums - 1,
a3d2beaa8   范牧   立即支付功能
218
              cart_id: item.cart_id,
7a7226fea   范牧   冲突合并
219
220
              args: {
                index: index,
a3d2beaa8   范牧   立即支付功能
221
222
                isadd: isadd,
              },
7a7226fea   范牧   冲突合并
223
224
225
226
            })
            this.desDisabled = true
          }
        }
55420a8a9   范牧   解决冲突
227
228
229
      // store.dispatch('cart/getCartList', {
      //   uid: this.$store.state.user.userInfo.uid // 用户id
      // })
7a7226fea   范牧   冲突合并
230
      },
7a7226fea   范牧   冲突合并
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
      Change(isopen, indexC) {
        // console.log('lalla===>',isopen)
        this.childIsOpen[indexC] = !isopen
        if (!isopen) {
          this.totalPrice = this.totalPrice + (this.$store.state.cart.cartList[indexC].num * this.$store.state.cart.cartList[indexC].nowPrice)
        } else {
          this.totalPrice = this.totalPrice - (this.$store.state.cart.cartList[indexC].num * this.$store.state.cart.cartList[indexC].nowPrice)
        }
        let m = true
        for (let i = 0; i < this.childIsOpen.length; i++) {
          m = m & this.childIsOpen[i]
        }
        if (m == 1) {
          this.pIsoPen = true
        } else {
          this.pIsoPen = false
        }
      },
      pChange(isopen) {
        this.pIsoPen = !isopen
        for (let i = 0; i < this.childIsOpen.length; i++) {
          this.childIsOpen[i] = !isopen
        }
        if (this.pIsoPen) {
          // 计算总价逻辑
55420a8a9   范牧   解决冲突
256
          if (this.childIsOpen.length !== 0) {
7a7226fea   范牧   冲突合并
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
            for (let i = 0; i < this.childIsOpen.length; i++) {
              if (this.childIsOpen[i]) {
                this.totalPrice = this.totalPrice + (this.$store.state.cart.cartList[i].num * this.$store.state.cart.cartList[i].nowPrice)
              }
            }
          }
        } else {
          this.totalPrice = 0
        }
      },
      delCart(cart_id, index) {
        // console.log('userInfo',this.$store.state.user.userInfo)
        cart_id = parseInt(cart_id)
        // console.log('delcart------>cart_id',cart_id)
        // console.log('cartlist====>delcart',this.$store.state.cart.cartList)
        // console.log('delcart======>index',index)
55420a8a9   范牧   解决冲突
273
274
        const uid = this.$store.state.user.userInfo.uid
        const openid = this.$store.state.user.userInfo.openid
7a7226fea   范牧   冲突合并
275
276
277
278
279
280
281
        uni.showModal({
          title: '是否删除该商品',
          // content: '是否删除该商品',
          success: function (res) {
            if (res.confirm) {
              // this.$store.state.cart.cartList.splice(index,1)
              store.dispatch('cart/delCart', {
b83c44fe1   喻鹏   购物车和用户推荐传参
282
283
                uid: uid,
                openid: openid,
7a7226fea   范牧   冲突合并
284
                cart_id: cart_id, // 要修改的购物车id
a3d2beaa8   范牧   立即支付功能
285
                arg: index, // 由于action 传参是能接收两参数,因此将index放入对象
7a7226fea   范牧   冲突合并
286
287
288
              })
              console.log('用户点击确定')
            }
a3d2beaa8   范牧   立即支付功能
289
          },
7a7226fea   范牧   冲突合并
290
        })
a3d2beaa8   范牧   立即支付功能
291
292
      },
    },
7a7226fea   范牧   冲突合并
293
  }
0db291810   BigBoss   “-mcomfirmOder页面
294
295
  </script>
  
6111092e8   BigBoss   update cart
296
  <style lang="scss">
637a02b07   尹聃   添加购物车
297
  .content {
a3d2beaa8   范牧   立即支付功能
298
299
300
301
302
303
304
305
    min-height: 100vh;
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20rpx 40rpx;
    box-sizing: border-box;
66638e4bb   喻鹏   购物车样式和新增验光单样式修改
306
  
a3d2beaa8   范牧   立即支付功能
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
    .partentCheck {
      width: 16px;
      height: 16px;
      border-radius: 22px;
      border: 1px solid #cfcfcf;
      background-color: #ffffff;
      margin: 6px;
    }
    .partentChecked {
      width: 18px;
      height: 18px;
      border-radius: 22px;
      background-color: #ff6b4a;
      margin: 6px;
      .correct {
        display: inline-block;
        position: relative;
        width: 10rpx;
        height: 2rpx;
        background: #ffffff;
        line-height: 0;
        font-size: 0;
        position: relative;
        top: -7px;
        left: 4px;
        -webkit-transform: rotate(45deg);
      }
      .correct:after {
        content: "/";
        display: block;
        width: 16rpx;
        height: 2rpx;
        background: #ffffff;
        -webkit-transform: rotate(-90deg) translateY(50%) translateX(50%);
      }
    }
66638e4bb   喻鹏   购物车样式和新增验光单样式修改
343
  
a3d2beaa8   范牧   立即支付功能
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
384
385
    .card {
      background-color: #ffffff;
      border-radius: 16rpx;
      box-sizing: border-box;
      padding: 36rpx 36rpx 36rpx 18rpx;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 180rpx;
      .cardHeader {
        width: 100%;
        height: 36rpx;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 20rpx;
        image {
          height: 32rpx;
          width: 32rpx;
          padding-left: 6px;
          padding-right: 10px;
        }
        text {
          // font-family: PingFangSC-Regular;
          font-size: 14px;
          color: #333333;
          letter-spacing: -0.26px;
        }
      }
      .cardBody {
        width: 100%;
        min-height: 300rpx;
        display: flex;
        align-items: center;
        justify-content: space-between;
        .goodInfo {
          width: 390rpx;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          padding-left: 6px;
7a7226fea   范牧   冲突合并
386
  
a3d2beaa8   范牧   立即支付功能
387
388
389
390
          .imageWrap {
            height: 188rpx;
            width: 188rpx;
            margin-right: 28rpx;
7a7226fea   范牧   冲突合并
391
  
a3d2beaa8   范牧   立即支付功能
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
            image {
              border-radius: 4px;
              height: 188rpx;
              width: 188rpx;
            }
          }
          .infoRight {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-between;
            min-height: 240rpx;
            .goodName {
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 2;
              text-align: justify;
              overflow: hidden;
              font-size: 28rpx;
              color: #333333;
            }
            .describ {
              width: 100%;
              // min-height: 80rpx;
              // box-sizing: border-box;
              // padding: 10rpx;
              font-size: 20rpx;
              letter-spacing: -0.23px;
              text-align: justify;
              color: #999999;
              // background: #F9F9F9;
              // display: flex;
              // justify-content: center;
              // align-items: center;
              // text{
55420a8a9   范牧   解决冲突
427
428
429
430
431
432
433
              //   text-overflow: -o-ellipsis-lastline;
              //    overflow: hidden;
              //    text-overflow: ellipsis;
              //    display: -webkit-box;
              //    -webkit-line-clamp: 2;
              //    line-clamp: 2;
              //    -webkit-box-orient: vertical;
a3d2beaa8   范牧   立即支付功能
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
              // }
              // .icon {
              // width: 0;
              // height: 0;
              // border-left: 5px transparent;
              // border-right: 5px transparent;
              // border-top: 5px #979797;
              // border-bottom: 0 transparent;
              // border-style: solid;
              // position: relative;
              // margin-left: 10px;
              // // transform: scaleY(-1);
              // }
              // .icon::after{
              //     content: '';
              //     position: absolute;
              //     top: -6.5px;
              //     left: -5px;
55420a8a9   范牧   解决冲突
452
453
454
455
456
              //  border-left: 5px transparent;
              //  border-right: 5px transparent;
              //  border-top: 5px #FFFFFF;
              //  border-bottom: 0 transparent;
              //  border-style: solid;
a3d2beaa8   范牧   立即支付功能
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
              // }
            }
            .priceBox {
              display: flex;
              justify-content: space-between;
              align-items: center;
              // margin-top: 26px;
              width: 100%;
              font-size: 14px;
              color: #999999;
              .maxCount {
                color: #999999;
                font-size: 24rpx;
              }
              .price {
                color: #ff6b4a;
                font-size: 28rpx;
              }
              .counter {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                font-size: 28rpx;
                color: #333333;
                width: 122rpx;
                .btn {
                  display: flex;
                  justify-content: center;
                  line-height: 32rpx;
                  height: 32rpx;
                  width: 32rpx;
                  background-color: #f2f2f2;
                  color: #cfcfcf;
                }
              }
            }
          }
        }
      }
    }
7a7226fea   范牧   冲突合并
498
  
55420a8a9   范牧   解决冲突
499
  <<<<<<< HEAD
a3d2beaa8   范牧   立即支付功能
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
    .footer {
      position: fixed;
      left: 0;
      bottom: 0px;
      height: 112rpx;
      width: 100%;
      background-color: #ffffff;
      font-size: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      .footerLeft {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        color: #333333;
        text {
          color: #ff6b4a;
        }
      }
      .footerRight {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 50%;
        margin-right: 26rpx;
        .paybtn {
          display: flex;
          justify-content: center;
          align-items: center;
          background: #ff6b4a;
          border-radius: 20px;
          border-radius: 20px;
          color: #ffffff;
          width: 204rpx;
          height: 80rpx;
        }
      }
    }
  }
7a7226fea   范牧   冲突合并
541
  </style>
55420a8a9   范牧   解决冲突
542
543
544
  =======
  </style>
  >>>>>>> cb58acb8c1540674edb1dd7cba23e4f04df66c19