installment.order-detail.page.js 375 Bytes
/**
 * 订单状态样式
 */
$('.status').each(function() {
    const text = $(this).text().trim();
    const fade = text.match(/已还款|已退款|已结清|订单取消/) || [];
    const expire = text.match(/逾期/) || [];

    if (fade.length > 0) {
        $(this).addClass('faded');
    } else if (expire.length > 0) {
        $(this).addClass('expired');
    }
});