cart.page.js
16.8 KB
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
384
385
386
387
388
389
390
391
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
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
498
499
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
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
/**
* 订单结算页
* @author: gxh<xuhui.ge@yoho.cn>
* @date: 2016/12/27
*/
var $ = require('yoho-jquery'),
lazyLoad = require('yoho-jquery-lazyload'),
dialog = require('../common/dialog');
require('../plugins/slider');
require('../common/center-slider');
require('../common');
var Dialog = dialog.Dialog,
Alert = dialog.Alert,
<<<<<<< HEAD
RConfirm = rDialog.RConfirm,
RAlert = rDialog.RAlert;
var dialogTpl = require('hbs/cart/cart-togetherGoods.hbs');
var $cartGoodsDetail = $('#goodsTogetherDetail'),
$goodsDetail = $('.detail-goods'),
$payWapper = $('.pay-wapper'),
$goodsChoose = $('#goodsChoose'),
$goodsItem = $('.cart-table li'),
$paySum = $('#pay-sum'),
pacList = 0,
shopNum = 1,
// promotionId,
// productnum,
// understock,
// shopname,
// delUrl,
// dataJSON,
// countJSON,
// selectArray,
// shopNumAll,
confirm,
hasPromotion = false,
$sellBox = $('.cart-table .pre-sell-box');
var $togetherGoods = $('.individual-item-togetherGoods'),
$recommendGoods = $('.individual-item-recommendGoods'),
$latestWalk = $('.individual-item-latestWalk');
// 优惠券 显示和隐藏
$('.sale-info').mouseenter(function() {
$(this).addClass('active').children('ul').removeClass('none');
}).mouseleave(function() {
$(this).removeClass('active').children('ul').addClass('none');
});
=======
$cartGoodsDetail = $('#goodsTogetherDetail'),
$sellBox = $('.cart-table .pre-sell-box');
>>>>>>> da0b65a6ce34af4c1a8003eba0eccc5f4b943ec8
$('.side-img-dd').slider2({
shownum: 5,
isCircle: true
});
<<<<<<< HEAD
// 删除购物车商品,把删除的商品移入cookie中
function cartDel(data, delUrl, cookieList) {
$.ajax({
type: 'POST',
dataType: 'json',
url: delUrl,
data: dataJSON,
beforeSend: function() {
$('.loading').css({
top: $(document).scrollTop() + 200
});
$('.loading').show();
}
}).then(function(d) {
if (d.code === 200) {
if (cookieList) {
window.setCookie('cart-del-list', JSON.stringify(cookieList), {
domain: '.yohobuy.com',
path: '/'
});
}
window.history.go(0);
} else if (d.code === 300) {
$('.loading').hide();
new Alert(d.message).show();
} else if (d.code === 403) {
if (d.data.url) {
window.location = d.data.url;
}
}
});
}
// 购物车表单 删除商品
/* $payWapper.on('click', '.cart-del-btn', function() {
// new Confirm({
// className: 'shopCart-del-dialog',
// content: '<h4><i class="iconfont"></i>删除商品</h4>' +
// '<small>确定要从购物车中删除该商品吗?</small>'
// }).show();
RConfirm(
'<h3><i class="iconfont"></i>删除商品</h3>' + '<p>确定要从购物车中删除该商品吗?</p>',
function() {
$.ajax({
url: url,
type: 'POST',
dataType: 'json'
}).fail();
}
);
});*/
=======
// var dialogTpl = require('hbs/cart/cart-togetherGoods.hbs');
lazyLoad($('#details-html img'));
>>>>>>> da0b65a6ce34af4c1a8003eba0eccc5f4b943ec8
// ----------------底部 为你优选,最近浏览 begin--------------
// 推荐、优选、浏览切换
$(function() {
if ($togetherGoods.hasClass('none')) {
$recommendGoods.show();
}
$('.bottom-tab-slide').on('click', '.bottom-title', function() {
var $this = $(this),
index = $this.index();
console.log(index);
$togetherGoods.hide();
$recommendGoods.hide();
if ($this.hasClass('change')) {
return;
}
if ($this.hasClass('cur')) {
return;
}
$this.addClass('cur');
$this.siblings('.cur').removeClass('cur');
switch (index) {
case 0: {
$togetherGoods.slideDown();
$recommendGoods.hide();
$latestWalk.hide();
break;
}
case 1: {
$togetherGoods.hide();
$recommendGoods.slideDown();
$latestWalk.hide();
break;
}
case 2: {
$togetherGoods.hide();
$recommendGoods.hide();
$latestWalk.slideDown();
break;
}
}
});
});
// 凑单 底部 轮播
function loadSlideGoods() {
$.ajax({
type: 'GET',
url: '',
data: {
// skn: skn,
size: 20,
num: 1
}
}).then(function(data) {
// var pro = data.data.products;
// if (data.code === 200) {
// if (pro.length === 0) {
// return;
// }
$('#recommend-shop').removeClass('none');
$('.individual-item ').slider2({
shownum: 5,
isCircle: false
});
// } else {
// $('.bottom-title').filter('.change').addClass('none');
// }
});
}
loadSlideGoods();
function isCheckAll() {
var isAllCheck = true;
$('[data-role=pitem] [data-role=cart-item-check]').each(function() {
// 有一个没选中,跳出循环
if (!$(this).hasClass('cart-item-checked')) {
isAllCheck = false;
return false;
}
});
if (isAllCheck) {
// 头部全选
$('.cart-title .cart-item-check').addClass('cart-item-checked');
// 底部全选
$('#cbSelAllGoods').addClass('cart-item-checked');
}
}
// 判断商品是否已收藏,是否全选
function isCheckFav() {
var pidArray = [];
$sellBox.each(function() {
pidArray.push($(this).data('pid'));
});
$.ajax({
type: 'POST',
url: '/cart/index/checkFav',
data: {
pidList: pidArray.join(',')
}
}).then(function(result) {
$.each(result.data, function(pid, obj) {
if (obj.code !== 200) {
return false;
}
if (obj.data) {
$sellBox.each(function() {
if (String($(this).data('pid')) === String(pid)) {
$(this).find('.cart-col-btn').addClass('has-col-btn').html('已收藏');
return false;
}
});
}
});
<<<<<<< HEAD
}
isCheckFav();
});
// ----------------底部 为你优选,最近浏览 end--------------
// ----------------底部 凑单 begin --------------
// 凑单图片懒加载
var togetherDialog = {};
lazyLoad($('#details-html img'));
// 凑单弹框 显示
$('.shop-cart').on('click', '.btn-add-cart', function() {
var tid = $(this).attr('data-together-id');
showPromotion(tid);
});
function showPromotion(id) {
if (!id) {
return;
}
var d = new Dialog({
content: dialogTpl(),
className: 'cart-togetherGoods'
}).show();
d.$el.on('click', '.cut, .add',function() {
count = $(this).hasClass('minus') ? 'decreaseNum' : 'increaseNum';
// if (promotionId) {
if ($(this).hasClass('cut')) {
new Alert('-_-,已经是最后一件,不能再减了!').show();
} else {
new Alert('最多只能购买一件,您好像购买的太多了!').show();
}
// } else {
if ($(this).hasClass('add')) {
shopNum++;
} else {
shopNum--;
}
if (shopNum < 1) {
new Alert('-_-,已经是最后一件,不能在减了!').show();
shopNum = 1;
return false;
}
$('#num').val(shopNum);
// }
})
}
// $('body').on('click', '.cut, .add', function() {
// count = $(this).hasClass('minus') ? 'decreaseNum' : 'increaseNum';
// // if (promotionId) {
// if ($(this).hasClass('cut')) {
// new Alert('-_-,已经是最后一件,不能再减了!').show();
// } else {
// new Alert('最多只能购买一件,您好像购买的太多了!').show();
// }
// // } else {
// if ($(this).hasClass('add')) {
// shopNum++;
// } else {
// shopNum--;
// }
// if (shopNum < 1) {
// new Alert('-_-,已经是最后一件,不能在减了!').show();
// shopNum = 1;
// return false;
// }
//
// $('#num').val(shopNum);
// // }
//
// })
// 凑单弹框 详情切换
/* $('body').on('click', '.piclist li', function() {
pacList = $(this).index();
$('.detail-bigpic:not(.none) .piclist li').removeClass('active');
$(this).addClass('active');
$('.detail-bigpic:not(.none) .bigpic').hide().eq($(this).index()).show();
});
=======
});
}
>>>>>>> da0b65a6ce34af4c1a8003eba0eccc5f4b943ec8
$(function() {
$('.bottom-tab .change').click(function() {
$('.img-brand-switch .next').trigger('click');
});
<<<<<<< HEAD
$('body').on('click', '.showSizeBox span', function() {
shopNumAll = $(this).data('num');
if ($(this).data('num') > 0) {
$('.showSizeBox:not(.none) span').removeClass('atcivec atcive').eq($(this).index()).addClass('active');
$('.addcart').removeClass('none');
$('.btn_sellout').addClass('none');
} else {
$('.showSizeBox:not(.none) span').removeClass('atcivec atcive').eq($(this).index()).addClass('active');
$('.addcart').addClass('none');
$('.btn_sellout').removeClass('none');
}
});
=======
isCheckAll();
isCheckFav();
});
// ----------------底部 为你优选,最近浏览 end--------------
>>>>>>> da0b65a6ce34af4c1a8003eba0eccc5f4b943ec8
// 凑单弹框 商品信息弹出框,加入收藏夹
$cartGoodsDetail.on('click', '.btn-favCount', function() {
$.ajax({
type: 'POST',
dataType: 'json',
url: '',
data: {
// productId: productId,
type: 'add'
}
}).then(function(d) {
if (d.code === 200) {
new Alert(d.message).show();
} else if (d.code === 403) {
if (d.data.url) {
window.location = d.data.url;
}
} else {
new Alert(d.message).show();
}
});
});
<<<<<<< HEAD
// 购物车列表 赠品
// 购物车列表 显示
/* $('.shop-cart').on('click', '.gift-sell .btn-clear', function() {
var tid = $(this).attr('data-together-id');
showPromotion(tid);
});*/
// 购物车列表 显示
/*
function showPromotion(id) {
if (!id) {
return;
}
var dialog = togetherDialog[id];
if (!dialog) {
dialog = new Dialog({
content: dialogTpl(),
className: 'cart-togetherGoods'
});
togetherDialog[id] = dialog;
}
dialog.show();
}*/
// 购物车列表 大小图切换
/* $('body').on('click', '.piclist li', function() {
pacList = $(this).index();
$('.detail-bigpic:not(.none) .piclist li').removeClass('active');
$(this).addClass('active');
$('.detail-bigpic:not(.none) .bigpic').hide().eq($(this).index()).show();
});
$('body').on('click', '.pre, .next', function() {
if ($(this).hasClass('next')) {
if (pacList >= $(this).siblings('.con').find('li').length - 1) {
return false;
}
pacList++;
} else {
if (pacList < 1) {
return false;
}
pacList--;
}
$(this).siblings('.con').find('li').removeClass('active').eq(pacList).addClass('active');
$('.detail-bigpic:not(.none) .bigpic').hide().eq(pacList).show();
});
$('body').on('click', '.color', function() {
pacList = 0;
$('.color').find('p').removeClass('active');
$(this).find('p').addClass('active');
$('.showSizeBox').addClass('none').eq($(this).index()).removeClass('none');
if ($('.showSizeBox:not(.none) span').length < 2) {
$('.showSizeBox:not(.none) span:first').addClass('active');
}
$('.detail-bigpic').addClass('none').eq($(this).index()).removeClass('none');
$('.detail-bigpic').eq($(this).index()).find('.bigpic').hide();
$('.detail-bigpic').eq($(this).index()).find('.bigpic:first').show();
$('.detail-bigpic').eq($(this).index()).find('.con li').removeClass('active');
$('.detail-bigpic').eq($(this).index()).find('.con li:first').addClass('active');
$('.showSizeBox').eq($(this).index()).find('span').each(function() {
if ($(this).hasClass('null-atcivec')) {
$('.addcart').addClass('none');
$('.btn_sellout').removeClass('none');
} else {
$('.addcart').removeClass('none');
$('.btn_sellout').addClass('none');
return false;
}
});
});
$('body').on('click', '.showSizeBox span', function() {
shopNumAll = $(this).data('num');
if ($(this).data('num') > 0) {
$('.showSizeBox:not(.none) span').removeClass('atcivec atcive').eq($(this).index()).addClass('active');
$('.addcart').removeClass('none');
$('.btn_sellout').addClass('none');
} else {
$('.showSizeBox:not(.none) span').removeClass('atcivec atcive').eq($(this).index()).addClass('active');
$('.addcart').addClass('none');
$('.btn_sellout').removeClass('none');
}
});
$('body').on('click', '.cut, .add', function() {
count = $(this).hasClass('minus') ? 'decreaseNum' : 'increaseNum';
if (promotionId) {
if ($(this).hasClass('cut')) {
new Alert('-_-,已经是最后一件,不能再减了!').show();
} else {
new Alert('最多只能购买一件,您好像购买的太多了!').show();
}
} else {
if ($(this).hasClass('add')) {
shopNum++;
} else {
shopNum--;
}
if (shopNum < 1) {
new Alert('-_-,已经是最后一件,不能在减了!').show();
shopNum = 1;
return false;
}
$('#num').val(shopNum);
}
});*/
// 购物车列表 修改 显示隐藏
/* $goodsItem.on('click', '.pay-pro-detail', function() {
$('.pay-pro-info').find('span').removeClass('active');
$(this).addClass('active');
$('.goods-choose-box').addClass('none');
$(this).parents('li').children('.goods-choose-box').removeClass('none');
});*/
// 购物车列表 修改 颜色
/*
$goodsChoose.on('click', '.choose-color .dt', function() {
pacList = $(this).index();
$('.choose-color').find('.dt').removeClass('active');
$(this).addClass('active');
$('.bigImg').addClass('none').eq($(this).index()).removeClass('none');
});
*/
// ----------------底部 凑单 end --------------
// 结算
$paySum.on('click', '.btn-account', function() {
// 结算
understock = '';
// if ($('.pay-wapper .cart-item-checked').parents('.tr').find('.tipNoStore').length > 0) {
// shopName = $('.pay-wapper .cart-item-checked').parents('.tr').find('.tipNoStore');
// $.each(shopName.parents('.tr').find('.pay-pro-info a'), function() {
// understock += $(this).html();
// });
// new Alert(understock + '库存不足').show();
// } else {
// if ($('.zp').length > 0 && !$(this).attr('title')) {
// $(this).attr('title', '1');
// new Confirm({
// className: 'shopCart-del-dialog',
// content: '<h4><i class="iconfont"></i>您还未选择赠品</h4>' +
// '<small>是否去选择赠品?</small>',
// }).show();
// } else {
// if ($('input:checked').length > 0) {
//
// if ($('.pre-sell-box .cart-item-checked').length > 0) {
// window.location.href = '/cart/index/orderEnsure?type=2';
// } else {
// window.location.href = '/cart/index/orderEnsure?type=1';
// }
// } else {
// new Alert('请至少选择一件商品').show();
// }
// }
// }
$('.cart-preSell-dialog').show();
// $('.togethor').show();
$('.cart-togetherGoods').show();
});
var giftBtn = '[data-role=gift-view-btn],[data-role=gift-resel-btn],[data-role=gift-sel-btn]';
$('.shop-cart').on('click', giftBtn, function() {
var $this = $(this);
var $win = $this.closest('[data-role=promotion-wrap]').find('[data-role=cart-gift-win]');
console.log($win.length);
$win.show();
});
$('.shop-cart').on('click', '[data-role="cart-gift-win"] .close', function() {
$(this).closest('[data-role="cart-gift-win"]').hide();
});
// require('./cart-action');
=======
require('./cart-action');
require('./cart-color-panel');
>>>>>>> da0b65a6ce34af4c1a8003eba0eccc5f4b943ec8
require('./cart-goods-win');