...
|
...
|
@@ -154,10 +154,13 @@ setInterval(()=> { |
|
|
*/
|
|
|
$('#apply-form').submit(function() {
|
|
|
$.post('/home/installment/activate-service', formModel).then((result)=> {
|
|
|
const params = { action: 'go.instalmentRepayment' };
|
|
|
|
|
|
if (result.code === 200) {
|
|
|
location.href = '/installment/review';
|
|
|
location.href = `/home/installment/review?openby:yohobuy=${encodeURIComponent(JSON.stringify(params))}`;
|
|
|
} else {
|
|
|
tip.show(result.message);
|
|
|
|
|
|
}
|
|
|
});
|
|
|
return false;
|
...
|
...
|
|