bundle.page.js
3.78 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
/**
* Created by targaryen on 2016/11/28.
*/
require('product/bundle/detail.page.css');
let $ = require('yoho-jquery'),
tip = require('plugin/tip'),
Swiper = require('yoho-swiper');
require('common');
let share = require('common/share');
let chosePanelRender = require('common/chose-panel'),
chosePanel = require('cart/chose-panel');
let $selectBtn = $('.select-btn'),
$buyNowBtn = $('#bundle-buy-now');
// cookie 参数
let actCkOpthn = {
path: '/cart/index'
};
$(function() {
window.setCookie('activity-info', '', actCkOpthn);
if ($('#shareUrl').length) {
share({
imgUrl: $('#shareImgUrl').val(),
title: decodeURIComponent($('#shareTitle').val()),
link: $('#shareUrl').val(),
desc: decodeURIComponent($('#shareSubTitle').val())
});
}
if ($('.bundle-tabs').find('.swiper-slide').length > 3) {
new Swiper('.bundle-tabs', {
freeMode: true,
slidesPerView: 'auto',
lazyLoading: true
});
}
});
/**
* 选择商品颜色等
*/
$selectBtn.on('touchend', function() {
let self = $(this);
$.post('/product/detail/info', {
id: self.data('id'),
productSkn: self.data('skn')
}, function(data) {
chosePanelRender(data);
chosePanel.init();
chosePanel.setBundleModeWithSknId(self.data('skn'));
chosePanel.show('', (productData) => {
var product = $('#gskn-' + productData.skn);
product.data('sku', productData.sku);
product.html('颜色:' + productData.color + ' 尺码:' + productData.size);
});
});
});
$('.goods-img').on('touchend', function() {
let packGood = $(this).parent().find('.select-btn');
if (window._yas && window._yas.sendCustomInfo) {
window._yas.sendCustomInfo({
op: 'YB_GDS_PACKAGE_GOODS_C',
param: JSON.stringify({
C_ID: window._ChannelVary[window.cookie('_Channel')],
PRD_ID: window.queryString.gid,
PACKAGE_GOODS: packGood.data('id'),
PACKAGE_INDEX: packGood.data('index') + 1
})
}, true);
}
});
$('.bundle-tabs').on('click', '.swiper-slide', (e) => {
let $tab = $(e.currentTarget);
if ($tab.hasClass('selected')) {
return;
}
let href = $tab.data('href');
window.location.href = href;
});
/**
* 立即购买
*/
$buyNowBtn.on('click', function() {
let bundleGoods = [],
bundleId = $('#activityId').val(),
gskn = $('span[id^="gskn"]'),
gsknSelected = false,
yasGid = [];
if (gskn.length < 1) {
tip.show('非法请求!');
return;
}
gskn.each(function() {
if (!$(this).data('sku')) {
gsknSelected = false;
tip.show('请为套餐商品选择属性');
return;
}
gsknSelected = true;
bundleGoods.push({
type: 'bundle',
sku: $(this).data('sku'),
buy_number: 1
});
yasGid.push($(this).data('id'));
});
if (window._yas && window._yas.sendCustomInfo) {
window._yas.sendCustomInfo({
op: 'YB_GDS_PACKAGE_BUY_NOW_C',
param: JSON.stringify({
C_ID: window._ChannelVary[window.cookie('_Channel')],
PRD_ID: window.queryString.id,
PACKAGE_GOODS: yasGid.join(',')
})
}, true);
}
if (gsknSelected) {
window.setCookie('_cartType', 'bundle', actCkOpthn);
window.setCookie('activity-info', JSON.stringify({
product_sku_list: bundleGoods,
activity_id: bundleId
}), actCkOpthn);
window.location.href = '/cart/index/new/orderEnsure?cartType=bundle&activityType=bundle';
}
});