repayment.js
4.35 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
let Repayment = function(options) {
let self = this;
this.settings = $.extend({}, {
onSelectAll: $.noop,
onDeselectAll: $.noop,
/**
* 返回可选择数目
*
* @returns {number}
*/
onGetSelectableCount: function() {
return 0;
},
/**
* 获取选择
*
* @returns {Array}
*/
onGetSelection: function() {
return [];
}
}, options);
this.currAmt = $('.repayment-bottom').find('.curr-amt');
this.currFee = $('.repayment-bottom').find('.curr-fee');
this.total = 0;
this.fee = 0;
$('.repayment-btn').on('click', function() {
let path = location.pathname;
let params = {
action: 'go.instalmentRepayment',
params: {
list: self.setParams(),
amount: self.total
}
};
$(this).attr('href', path + '?openby:yohobuy=' + encodeURIComponent(JSON.stringify(params)));
});
$('#repayment-total').click(function() {
let isChecked = $(this).data('checked');
if (!isChecked) {
self.settings.onSelectAll.bind(self)();
} else {
self.settings.onDeselectAll.bind(self)();
}
self.update();
$(this).data('checked', $(this).data('checked'));
});
};
/**
* 格式化金额
*
* @param amount
* @returns {string}
* @private
*/
Repayment.prototype._formatCurrency = function(amount) {
let m = ('' + amount).match(/(\d+)\.?(\d+)?/);
let fixedPart = m[1], floatPart = m[2];
let ret = '0.00';
if (m && m.length === 3) {
ret = fixedPart + '.' + (floatPart || '00');
}
return ret;
};
/**
* 设置总金额
*
* @param total
*/
Repayment.prototype.setTotal = function(total) {
this.total = total;
this.currAmt.text(this._formatCurrency(this.total));
};
/**
* 设置费用
*
* @param fee
*/
Repayment.prototype.setFee = function(fee) {
this.fee = fee;
this.currFee.text(this._formatCurrency(this.fee));
};
// 获取立即付款的传参
Repayment.prototype.setParams = function() {
let values = this.getSelection();
let formatValues = [];
if (values && values.length) {
values.forEach(function(value) {
formatValues.push({
index: value.index,
orderCode: value.orderCode,
termNo: value.termNo
});
});
}
return formatValues;
};
Repayment.prototype.getSelection = function() {
return this.settings.onGetSelection();
};
Repayment.prototype._updateUI = function() {
this.setTotal(this.total);
this.setFee(this.fee);
if (this.fee > 0) {
$('.serve-price').show();
} else {
$('.serve-price').hide();
}
};
/**
* 更新组件并计算金额
*/
Repayment.prototype.update = function() {
let values = this.getSelection();
let $repaymentBottom = $('.repayment-bottom');
let self = this;
let total = [], fee = [];
// 是否选择全部
let totalCheck = this.settings.onGetSelectableCount() === values.length;
this.total = 0;
this.fee = 0;
if (values && values.length) {
values.forEach(function(value) {
// 计算还款总额和费用
// self.total += value.amount + value.fee;
// self.fee += value.fee;
total.push(value.amount);
fee.push(value.fee);
});
$.get('/home/installment/total-amount.json?prices=' + total.join(',')).then(function(result) {
// 计算总金额
if (result.code === 200) {
self.total = result.data;
}
}).then(function() {
return $.get('/home/installment/total-amount.json?prices=' + fee.join(','));
}).then(function(result) {
// 计算手续费
if (result.code === 200) {
self.fee = result.data;
self._updateUI();
}
});
}
if (values.length === 0) {
$repaymentBottom.slideUp();
} else {
$repaymentBottom.slideDown();
}
$('#repayment-total').prop('checked', totalCheck).data('checked', totalCheck);
};
// 跳转到还款详情
window.jumpDetail = function(id) {
location.href = '/home/installment/repay/detail?id=' + id;
};
module.exports = Repayment;