Authored by Aiden Xu

分期订单

... ... @@ -304,14 +304,14 @@ const orderDetail = (req, res, next) => {
isCurrFee: true,
helpers: {
isPaymentComplete: function(status, options) {
if (status === 2) { // 已结清
if (status === 2 || status ===4 || status === 5) { // 已结清/已取消
return options.fn(this);
}
return options.inverse(this);
},
isPaymentIncomplete: function(status, options) {
if (status !== 2) { // 其他状态
if (status !== 2 && status !== 4 && status !== 5) { // 其他状态
return options.fn(this);
}
... ...
... ... @@ -46,8 +46,8 @@ repayment.setFee(0);
*/
$('.status').each(function() {
var text = $(this).text().trim();
var fade = text.match(/已还款|已退款|已结清|订单取消/) || [];
var expire = text.match(/逾期/) || [];
var fade = text.match(/已退货|结清|已取消/) || [];
var expire = text.match(/已逾期/) || [];
if (fade.length > 0) {
$(this).addClass('faded');
... ...