installment.order.page.js 769 Bytes
const $ = require('yoho-jquery');

/**
 * 订单状态样式
 */
$('.status').each(function() {
    const text = $(this).text();

    if (text.indexOf(/已还清|已取消|已退款/)) {
        $(this).addClass('faded');
    }
});

/**
 * 加载订单明细
 *
 * @param type
 */
const loadOrderList = (type)=> {
    if (type) {
        $.get('/home/installment/order.html', {
            type: type
        }).then((result)=> {
            $('#order-list').empty().append(result);
        });
    }
};

/**
 * 顶部TAB
 */
$('.header-tab a').click(function() {
    $(this).parent().addClass('active');
    $(this).parent().siblings().removeClass('active');

    loadOrderList($(this).data('type'));
    return false;
});

// 默认加载第一页
loadOrderList(1);