Authored by 王水玲

有货分期

... ... @@ -247,17 +247,15 @@ $('#apply-button').click(function() {
var params = {
action: 'go.instalmentActivated',
params: {
status: result.data.status
status: result.data && result.data.status || 0
}
};
if (result.code === 200 && result.data) {
// that.attr('href', '/home/installment/review?status=' + result.data.status);
that.attr('href', location.pathname + '?openby:yohobuy=' + encodeURIComponent(JSON.stringify(params)));
ret = true;
} else if (result.code === 500) {
// 接口可能超时返回审核中 by 孟令阶
// that.attr('href', '/home/installment/review?status=' + result.data.status);
params.params.status = '1';
that.attr('href', location.pathname + '?openby:yohobuy=' + encodeURIComponent(JSON.stringify(params)));
ret = true;
... ...