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