bundle.page.js
2.69 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
/**
* Created by targaryen on 2016/11/28.
*/
var $ = require('yoho-jquery'),
tip = require('../plugin/tip');
require('../common');
var chosePanelRender = require('../common/chose-panel'),
chosePanel = require('./bundle/chose-pannel');
var $selectBtn = $('.select-btn'),
$buyNowBtn = $('#bundle-buy-now'),
actCkOpthn = {
expires: 'Session',
path: '/',
domain: '.m.yohobuy.com'
};
$(function() {
window.setCookie('activity-info', '', actCkOpthn);
});
/**
* 选择商品颜色等
*/
$selectBtn.on('touchend', function() {
var self = $(this);
$.post('/product/detail/info', {
id: self.data('id'),
productSkn: self.data('skn')
}, function(data) {
chosePanelRender(data);
chosePanel.init(self.data('skn'));
chosePanel.show();
});
});
$('.goods-img').on('touchend', function() {
var 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);
}
});
/**
* 立即购买
*/
$buyNowBtn.on('click', function() {
var 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('activity-info', JSON.stringify({
product_sku_list: bundleGoods,
activity_id: bundleId
}), actCkOpthn);
window.location.href = '/cart/index/orderEnsure?cartType=bundle&activityType=bundle';
}
});