buynow-select-coupon.page.js
5.18 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
/*
* @Author: Targaryen
* @Date: 2017-06-23 11:43:44
* @Last Modified by: Targaryen
* @Last Modified time: 2017-07-21 11:06:22
*/
require('cart/select-coupon.page.css');
const qs = require('yoho-qs');
let $ = require('yoho-jquery'),
ellipsis = require('yoho-mlellipsis'),
loading = require('plugin/loading'),
tip = require('plugin/tip'),
conponTmpl = require('cart/select-coupon/coupon.hbs'),
conponNotAvaliableTmpl = require('cart/select-coupon/coupon-not-avaliable.hbs'),
orderInfo = require('cart/buynow/order-info').orderInfo;
let isGetData;
let $newCoupon = $('#new-coupon'),
linkUrl = document.referrer,
$couponList = $('#coupon-list');
let winH = $(window).height();
require('common');
function fixedLayOut() {
let $null = $('.null'),
navH = $('.nav-title').height(),
nullH = $null.height();
if ($null.length === 0) {
return false;
}
$null.css({
top: winH / 2 - nullH / 2 + navH
});
}
ellipsis.init();
function goToBack() {
if (linkUrl) {
window.location.href = linkUrl;
} else {
history.go(-1);
}
}
$newCoupon.on('submit', function() {
let $this = $(this);
let couponCode = $this.find('[name="couponCode"]').val();
if (!couponCode) {
tip.show('请输入优惠券码');
return false;
}
$.ajax({
method: 'POST',
url: '/cart/index/buynow/usePromotionCode',
data: {
promotion_code: couponCode,
buy_number: qs.buy_number
}
}).then(function(res) {
if (res.code === 200) {
tip.show('优惠券可用');
// 实付金额发生变化,使用有货币为0
orderInfo('use_yoho_coin', 0);
orderInfo('coupon_code', res.data.coupon_code);
orderInfo('couponName', res.data.coupon_title);
goToBack();
} else {
tip.show(res.message);
}
}).fail(function() {
tip.show('网络错误');
});
return false;
});
$couponList.on('touchstart', '.employ-main', function() {
let $this = $(this);
$this.siblings().removeClass('focus');
$this.addClass('focus');
}).on('touchend touchcancel', '.employ-main', function() {
let $this = $(this);
$this.siblings().removeClass('focus');
$this.removeClass('focus');
});
$('body').on('touchend', '.not-use', function() {
orderInfo('coupon_code', null);
orderInfo('couponName', null);
// 实付金额发生变化,使用有货币为0
orderInfo('use_yoho_coin', 0);
goToBack();
});
$newCoupon.find('input').on('input', function() {
if ($(this).val() !== '') {
$newCoupon.find('.submit').css('background', '#444');
} else {
$newCoupon.find('.submit').css('background', '#b0b0b0');
}
});
function getCouponHandle(allCoupons) {
let notAvailableCoupons,
coupons;
// 把可用和不可用的优惠券分离出来
notAvailableCoupons = allCoupons.unusableCoupons;
coupons = allCoupons.usableCoupons;
// 没有优惠券
if (!(notAvailableCoupons.length || coupons.length)) {
$('.coupon-wrap').html($('#tmpl-no-coupon').html());
fixedLayOut();
return;
}
$.each(coupons, function(i, coupon) {
coupon.couponValue = Math.floor(coupon.couponValue);
coupon.couponDetailInfomation = coupon.couponName;
});
$.each(notAvailableCoupons, function(i, coupon) {
coupon.couponValue = Math.floor(coupon.couponValue);
coupon.couponDetailInfomation = coupon.couponName;
});
// 渲染可用的优惠券
$couponList.append(conponTmpl({
coupons: coupons
})).find('.employ-main').on('touchstart', function() {
let couponCode = $(this).data('coupon-code');
$.ajax({
method: 'POST',
url: '/cart/index/buynow/useCoupon',
data: {
product_sku: qs.product_sku,
buy_number: qs.buy_number,
coupon_code: couponCode
}
}).then(function(res) {
if (res.code === 200) {
orderInfo('coupon_code', res.data.coupon_code);
orderInfo('couponName', res.data.coupon_title);
// 实付金额发生变化,使用有货币为0
orderInfo('use_yoho_coin', 0);
goToBack();
} else if (res.message) {
tip.show(res.message);
}
}).fail(function() {
tip.show('网络错误');
});
});
if (notAvailableCoupons.length) {
$('.not-avaliable-coupon-line').show();
}
$('#coupon-list-not').append(conponNotAvaliableTmpl({
notAvailableCoupons: notAvailableCoupons
}));
window.rePosFooter();
}
function getCouponData() {
if (isGetData) {
return;
}
loading.showLoadingMask();
isGetData = true;
$.ajax({
type: 'GET',
url: '/cart/index/buynow/listCoupon',
data: {
product_sku: qs.product_sku,
buy_number: qs.buy_number
},
dataType: 'json'
}).then(getCouponHandle).always(function() {
isGetData = false;
loading.hideLoadingMask();
});
}
getCouponData();