新建服务器付款成功后30秒自动跳转到服务器列表页

This commit is contained in:
jingrow 2025-07-29 18:03:49 +08:00
parent 660c7f499e
commit a77a4dc417

View File

@ -436,7 +436,7 @@ export default {
//
setTimeout(() => {
this.$router.push('/jsite-servers');
}, 2000);
}, 30000);
},
onError(error) {
this.error = error.message || '余额支付处理失败';
@ -519,7 +519,7 @@ export default {
//
setTimeout(() => {
this.$router.push('/jsite-servers');
}, 2000);
}, 30000);
}
}
};