From c6eaedda768879fa471b69196d3a42adc16ef197 Mon Sep 17 00:00:00 2001 From: vone Date: Tue, 30 Apr 2019 10:14:48 +0800 Subject: [PATCH] =?UTF-8?q?V1.6.2=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++++ public/payPage/pay.html | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) 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); + } } }) }