fix: 修改请求最大分钟数

This commit is contained in:
zhangds 2024-04-11 00:54:57 +08:00
parent 7840a4f13e
commit d362ffa629
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@
// 超过50s增加请求间隔 为 30s // 超过50s增加请求间隔 为 30s
self.isTimeOut = 30000; self.isTimeOut = 30000;
// 设置最大请求数 60分钟 // 设置最大请求数 60分钟
if (self.cont > 12) { if (self.cont > 60) {
self.openErrorDialog("请刷新页面重试!"); self.openErrorDialog("请刷新页面重试!");
// 放弃 // 放弃
return; return;