installment.order.page.js
769 Bytes
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
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);