$.ajax({
url: default_host + '/mobile/getLoanActionSummary?' + $.param(param),
type: 'GET',
headers: addHeaders(),
success: function(res) {
if (res.ret == 1) {
record.showLoanRecord(res.result);
} else {
record.offScroll();
}
},
error : function(err) {
alert('请求数据失败');
alert('readyState:' + err.readyState + '/status:' + err.status + '/statusText:' + err.statusText);
console.log(err);
record.offScroll();
},
}).always(function(){
checkLoadingHide();
});
url: default_host + '/mobile/getLoanActionSummary?' + $.param(param),
type: 'GET',
headers: addHeaders(),
success: function(res) {
if (res.ret == 1) {
record.showLoanRecord(res.result);
} else {
record.offScroll();
}
},
error : function(err) {
alert('请求数据失败');
alert('readyState:' + err.readyState + '/status:' + err.status + '/statusText:' + err.statusText);
console.log(err);
record.offScroll();
},
}).always(function(){
checkLoadingHide();
});