diff --git a/README.md b/README.md index a95af20..02601c9 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,10 @@ V免签为完全开源项目,开源项目意味着作者没有任何收入来 ## 更新记录 + + v1.6.2(2019.04.30) + + 修复部分情况下出现订单已过期,但是页面还在倒计时的问题 + + + v1.6.1(2019.04.26) + 再次优化二维码识别,使用js解析二维码,如果失败,则使用PHP解析 diff --git a/public/payPage/pay.html b/public/payPage/pay.html index c315dd4..c330512 100644 --- a/public/payPage/pay.html +++ b/public/payPage/pay.html @@ -249,7 +249,11 @@

if (data.code == 1){ window.location.href = data.data; } else{ - setTimeout("check()",1500); + if (data.data == "订单已过期") { + intDiff = 0; + }else{ + setTimeout("check()",1500); + } } }) }