refill.js
20.2 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
//支付交互逻辑
define(function(require, exports, module) {
var Miniclock = require('miniclock');
require('fancybox');
$(function() {
var Refill = {
initialize: function() {
this.bindEvents();
this.initpaymentList();
this.update();
},
initSelector: function() {
this.orderMoneyTag = $('#orderMoney'); //订单总金额
this.accountBalanceTag = $('#j_availbleBalance'); //账户余额
this.balancePayTag = $('#j_balanceAmount'); //余额支付部分
this.cardPayTag = $('#j_bankCardAmount'); //线上支付部分
this.otherPayTag = $('#j_otherAmount'); //线上支付部分
this.needMore = $('#needMore'); //不足部分
this.submit = $('#submit'); //提交按钮
this.orderDetailTag = $('#orderDetail'); //订单详情
this.balanceCheckbox = $('#j_balance');
this.bankCardCheckbox = $('#j_bankCard');
this.otherCheckbox = $('#j_otherPlatform');
this.balance = $('#j_balance');
this.balanceAmount = $('#j_balanceAmount');
this.bankCardAmount = $('#j_bankCardAmount');
this.otherAmount = $('#j_otherAmount');
this.bankNew = $('#j_bankNew');
this.usedBank = $('#j_usedBank');
this.bankArea = $('#j_bankArea');
this.quickPaymentList = $('#j_quickPaymentList');
},
bindEvents: function() {
var _this = this;
this.initSelector(); //初始化dom选择器
$(".popup-btn").fancybox({
padding: 20,
modal: true
});
var regs = {
card: /^\d{10,}$/,
code: /^\d{3}$/,
messageCode: /^\d{4,6}$/,
name: /\S{1}/,
id: /^\d{18}|\d{17}\w$/,
phone: /^1[3|4|5|6|7|8|9]\d{9}$/
};
$('.ui-form').on('blur', '.ui-input:visible', function() {
var val = $.trim($(this).val());
var key = $(this).attr('data-reg');
var reg = regs[key];
var isOk = reg.test(val);
$(this).toggleClass('ui-input-error', !isOk).nextAll('.font-red').toggleClass('hide', isOk);
}).on('focus', '.ui-input:visible', function() {
$(this).removeClass('ui-input-error').nextAll('.font-red').addClass('hide');
}).on('blur', '.ui-select', function() {
var month = $.trim($('#ui-select-month').val());
var year = $.trim($('#ui-select-year').val());
var isOk = !!(month && month != '');
if (!isOk) {
$('#font-red-validity').removeClass('hide', isOk).text('请选择有效期月份');
return;
}
isOk = !!(year && year != '');
if (!isOk) {
$('#font-red-validity').removeClass('hide', isOk).text('请选择有效期年份');
return;
}
$('#font-red-validity').addClass('hide', isOk).text('');
});
$('.bw-tab-content').on('click', '.pl-item', function() {
$('#quick-form-validity').addClass('hide');
$('#quick-form-cvv2').addClass('hide');
$('.ui-form').find(':text, :password').val('').removeClass('ui-input-error').nextAll('.font-red').addClass('hide');
$('#font-red-validity').addClass('hide');
$(this).closest('.payment-list').slideUp(300).next('.bw-quick').show().find(':radio').first().prop('checked', true).parent().addClass('checked').parent().siblings().find(':radio').prop('checked', false).parent().removeClass('checked');
$(this).closest('.bw-tab-content').find('.bw-quick').find('.bank-logo').replaceWith($(this).children('.bank-logo').clone());
});
$('.bw-q-return').on('click', function(e) {
e.preventDefault();
$(this).closest('.bw-quick').slideUp(300).removeClass('type-credit').prev().slideDown(300);
});
$('.used-bank').on('click', 'dt', function() {
$(this).toggleClass('hover').nextAll('dd').toggle();
$('#j_bankCard').prop('checked', true).parent().addClass('checked').closest('.paybox').addClass('paybox-selected').find('.p-amount').removeClass('hide');
_this.resetOtherPay();
_this.update();
}).on('click', 'dd li', function() {
var curr = $(this);
var newest = $(this).closest('.used-bank').find('dt').find('.ub-item');
$(this).closest('dd').hide();
var currHtml = curr.html();
var newestHtml = newest.html();
_this.resetOtherPay();
curr.html(newestHtml);
newest.html(currHtml);
_this.update();
});
$(document).on('click', function(e) {
if ($(e.target).closest('.used-bank').length <= 0) {
$('.used-bank').find('dt').removeClass('hover').next('dd').hide();
}
});
$('.paybox').on('change', '.p-key :checkbox[data-ptype]', function() {
if ($(this).is(':disabled')) {
return;
}
_this.updatePayMethod($(this));
}).on('click', '.pl-more', function() {
$(this).prevAll().removeClass('hide').end().addClass('hide');
$(this).closest('.pl-wrap').next('.bw-more-pay').removeClass('hide');
});
$('.bank-wrap .tab').on('click', 'li', function(e) {
e.preventDefault();
var i = $(this).index();
$(this).addClass('curr').siblings().removeClass('curr');
$('.bw-tab-content').eq(i).show().find('.payment-list').show().next('.bw-quick').hide().end().end().siblings('.bw-tab-content').hide();
if (i == 0) {
$('.bw-tab-content').eq(i).find('.bw-quick').toggleClass('type-credit', i != 0);
}
$('#quick-form-validity').addClass('hide');
$('#quick-form-cvv2').addClass('hide');
$('.ui-form').find(':text, :password').val('').removeClass('ui-input-error').nextAll('.font-red').addClass('hide');
$('#font-red-validity').addClass('hide');
});
$('.bw-tab-content .bw-quick').on('change', ':radio', function() {
$(this).parent().addClass('checked').closest('label').siblings('label').children().removeClass('checked').find(':radio').prop('checked', false);
$(this).closest('.ui-form').find(':text, :password').val('').removeClass('ui-input-error').nextAll('.font-red').addClass('hide');
$('#font-red-validity').addClass('hide');
var isCredit = $(this).attr('data-type') == 'credit';
$(this).closest('.bw-quick').toggleClass('type-credit', isCredit);
$('#quick-form-validity').toggleClass('hide', !isCredit);
$('#quick-form-cvv2').toggleClass('hide', !isCredit);
});
this.bankNew.on('click', function(e) {
e.preventDefault();
$(this).parent().addClass('hide');
$('.bank-return').removeClass('hide');
$('.bw-tab-content').first().show().siblings('.bw-tab-content').hide();
$('#j_bankCard').prop('checked', true).parent().addClass('checked').closest('.paybox').addClass('paybox-selected');
$('.tab li').first().trigger('click');
$('.pay-verify').removeClass('credit-type').find('.pv-line').first().addClass('hide');
_this.bankArea.slideDown(300);
_this.resetOtherPay();
_this.update();
});
$('.bank-return').on('click', function(e) {
e.preventDefault();
_this.bankNew.parent().removeClass('hide');
$(this).addClass('hide');
_this.bankArea.slideUp(300);
_this.update();
});
$('.input:text').on('focus', function() { //输入框高亮样式切换
$(this).addClass('active');
}).on('blur', function() {
$(this).removeClass('active');
});
$('.show-more').on('click', function(e) { //切换显示订单详情
e.preventDefault();
_this.toggleOrder($(this));
_this.update();
});
this.submit.on('click', function(e) {
e.preventDefault();
if ($(this).is(':disabled')) {
return;
}
if (!_this.verCardForm()) {
return;
}
if (!$('#j_balance').is(':checked') && $('#j_otherPlatform').is(':checked')) {
location.href = './pay_wechat.html';
return;
}
$(".popup-btn").click();
});
$('.close').on('click', function() {
$.fancybox.close();
});
$('.other-pay').on('change', ':radio', function() { //在线支付平台切换
_this.toggleOnlinePlatform($(this));
});
},
toggleOrder: function(target) {
if (this.orderDetailTag.is(':animated')) {
return;
}
var lastText = target.find('span').text();
var newText = target.find('span').attr('data-text');
target.find('span').text(newText).attr('data-text', lastText);
target.children('.icon').toggleClass('down');
this.orderDetailTag.slideToggle(300);
},
initpaymentList: function() {
//默认仅显示前11家银行
$('.payment-list').each(function() {
$(this).find('.pl-item').slice(11).addClass('hide');
});
//根据账户余额值是否禁用余额支付选项框
if (this.payInfo().accountBalance <= 0) {
$('#j_balance').prop('checked', false).prop('disabled', true).parent().removeClass('checked').closest('.p-wrap').addClass('disabled').closest('.paybox').removeClass('paybox-selected');
} else {
$('#j_balance').prop('checked', true).trigger('change');
}
// var empty = this.payInfo().accountBalance <= 0;
// $('#j_balance').prop('checked', !empty).prop('disabled', empty).trigger('change');
},
updatePayMethod: function(target) {
var checked = target.is(':checked'),
ptype = target.attr('data-ptype'),
pay = this.payInfo();
//订单金额 <= 余额
if (pay.onlinePay <= 0) {
target.prop('checked', checked).parent().toggleClass('checked', checked).closest('.paybox').toggleClass('paybox-selected', checked).find('.p-amount').toggleClass('hide', !checked).end().siblings('.paybox').removeClass('paybox-selected').find(':checkbox').prop('checked', false).parent().removeClass('checked').end().end().find('.p-amount').addClass('hide').next().addClass('hide');
if (ptype == 'other') {
$('.other-pay').toggleClass('hide', !checked).find('li').first().toggleClass('on', checked).find(':radio').prop('checked', checked).parent().toggleClass('checked', checked).closest('li').siblings().removeClass('on').find(':radio').each(function() {
$(this).prop('checked', false).parent().removeClass('checked');
});
}
this.update();
return;
}
target.prop('checked', checked).parent().toggleClass('checked', checked).closest('.paybox').toggleClass('paybox-selected', checked).find('.p-amount').toggleClass('hide', !checked);
if (ptype == 'other') {
$('.other-pay').slideToggle(checked).find('li').first().toggleClass('on', checked).find(':radio').prop('checked', checked).parent().toggleClass('checked', checked).closest('li').siblings().removeClass('on').find(':radio').each(function() {
$(this).prop('checked', false).parent().removeClass('checked');
});
this.resetCardPay();
}
if (ptype == 'bank') {
this.resetOtherPay();
this.bankNew.parent().removeClass('hide');
$('.bank-return').addClass('hide');
this.bankArea.slideUp(300);
}
this.update();
},
updateCheckboxStyle: function(target, checked) {
target.prop('checked', checked).parent().toggleClass('checked', checked);
},
toggleOnlinePlatform: function(target) {
target.parent().addClass('checked');
target.closest('li').addClass('on').siblings().removeClass('on').find('.radio').removeClass('checked');
if (this.payInfo().onlinePay <= 0) {
$('.balance').removeClass('on').find('.checkbox').removeClass('checked').children().prop('checked', false);
}
this.update();
},
update: function() {
var pay = this.payInfo();
var online = pay.onlinePay;
var need;
var bChecked = $('#j_balance').prop('checked');
var cChecked = $('#j_bankCard').prop('checked');
var oChecked = $('#j_otherPlatform').prop('checked');
$('.pay-verify').find('.pv-line').eq(1).toggleClass('hide', !bChecked); //若余额支付,则显示密码框
if ($('#j_bankNew').is(':visible')) {
var isCredit = $('#j_usedBank').find('dt .bank-logo').attr('data-ctype') == 'credit';
$('.pay-verify').toggleClass('credit-type', isCredit && cChecked).find('.pv-line').first().toggleClass('hide', !(isCredit && cChecked));
} else {
$('.pay-verify').removeClass('credit-type').find('.pv-line').first().addClass('hide');
}
if (online >= 0) {
//余额支付
if (bChecked) {
this.balancePayTag.text(this.format(pay.accountBalance));
need = online;
} else {
need = pay.orderMoney;
}
//银行卡线上支付
if (cChecked) {
this.cardPayTag.text(this.format(need));
}
//微信、支付宝第三方支付
if (oChecked) {
this.otherPayTag.text(this.format(need));
}
//未选择银行卡、第三方支付
if (!oChecked && !cChecked) {
this.needMore.text(this.format(need)).parent().show();
this.submit.prop('disabled', true).addClass('disabled');
} else {
this.needMore.parent().hide();
this.submit.prop('disabled', false).removeClass('disabled');
}
} else {
//余额支付
if (bChecked) {
this.balancePayTag.text(this.format(pay.orderMoney)).parent().show();
this.needMore.parent().hide();
this.submit.prop('disabled', false);
}
//银行卡线上支付
if (cChecked) {
this.cardPayTag.text(this.format(pay.orderMoney));
this.needMore.parent().hide();
this.submit.prop('disabled', false);
}
//微信、支付宝第三方支付
if (oChecked) {
this.otherPayTag.text(this.format(pay.orderMoney));
this.needMore.parent().hide();
this.submit.prop('disabled', false);
}
//未选择任何支付方式
if (!bChecked && !oChecked && !cChecked) {
this.needMore.text(this.format(pay.orderMoney)).parent().show();
this.submit.prop('disabled', true);
}
}
},
resetCardPay: function() {
$('#j_bankCard').prop('checked', false).parent().removeClass('checked').closest('.paybox').removeClass('paybox-selected').find('.p-amount').addClass('hide');
$('.bank-return').trigger('click');
},
resetOtherPay: function() {
$('#j_otherPlatform').prop('checked', false).parent().removeClass('checked').closest('.paybox').removeClass('paybox-selected').find('.p-amount').addClass('hide');
$('.other-pay').slideUp().find('li').removeClass('on').each(function() {
$(this).find(':radio').prop('checked', false).parent().removeClass('checked');
});
},
verCardForm: function() {
var isCardPay = $('#j_quickPaymentList').next('.bw-quick').is(':visible');
var isOk = true;
var regs = {
card: /^\d{10,}$/,
code: /^\d{3}$/,
name: /\S{1,5}/,
id: /^\d{18}|\d{17}\w$/,
phone: /^1[3|4|5|6|7|8|9]\d{9}$/
};
if (isCardPay) {
$('#j_quickPaymentList').next('.bw-quick').find('.ui-input:visible').each(function() {
var val = $.trim($(this).val());
var key = $(this).attr('data-reg');
var reg = regs[key];
isInputOk = reg.test(val);
$(this).toggleClass('ui-input-error', !isInputOk).nextAll('.font-red').toggleClass('hide', isInputOk);
isOk = isOk ? isInputOk : isOk;
return isOk;
});
if (!isOk) {
return;
}
if ($('#quick-form-validity').is(':visible')) {
var month = $.trim($('#ui-select-month').val());
var year = $.trim($('#ui-select-year').val());
if (!(month && month != '')) {
$('#font-red-validity').removeClass('hide').text('请选择有效期月份');
return;
}
if (!(year && year != '')) {
$('#font-red-validity').removeClass('hide').text('请选择有效期年份');
return;
}
$('#font-red-validity').removeClass('hide');
}
return isOk;
}
return isOk;
},
format: function(num) {
return (Math.floor(num * 100) / 100).toFixed(2, 10);
},
payInfo: function() {
var orderMoney = +$.trim(this.orderMoneyTag.text());
var accountBalance = +$.trim(this.accountBalanceTag.text());
var onlinePay = orderMoney - accountBalance;
return {
orderMoney: orderMoney,
accountBalance: accountBalance,
onlinePay: onlinePay
}
}
};
Refill.initialize();
});
if ($('.sendverify').length) {
$('.sendverify').on({
click: function() {
new Miniclock(this, {
});
}
});
};
if ($('.getcode').length) {
$('.getcode').on({
click: function() {
new Miniclock(this, {
time: 60 //时钟最大时间值
,
SD: "重新发送",
WT: "s",
ban: "disabled" //已点击标志禁用样式名称。
,
callback: function() {}
});
}
});
};
if ($('.only-item').length) {
var showbtn = $('#j_bankNew');
var showArea = $('#j_bankArea');
var btns = $('.p-v-line >div');
$('.only-item').on({
click: function() {
var cache = $(this).find('.bank-logo')[0];
showbtn.html(cache.outerHTML);
showArea.slideUp();
btns.eq(1).addClass('hide');
btns.eq(0).removeClass('hide');
}
})
};
if ($('.fancy').length) {
$('.fancy').fancybox({
});
}
});