Skip to content

Commit

Permalink
V1.6.2版本
Browse files Browse the repository at this point in the history
  • Loading branch information
szvone committed Apr 30, 2019
1 parent d7dda15 commit c6eaedd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ V免签为完全开源项目,开源项目意味着作者没有任何收入来

## 更新记录

+ v1.6.2(2019.04.30)
+ 修复部分情况下出现订单已过期,但是页面还在倒计时的问题


+ v1.6.1(2019.04.26)
+ 再次优化二维码识别,使用js解析二维码,如果失败,则使用PHP解析

Expand Down
6 changes: 5 additions & 1 deletion public/payPage/pay.html
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,11 @@ <h1 v-if="price != reallyPrice">
if (data.code == 1){
window.location.href = data.data;
} else{
setTimeout("check()",1500);
if (data.data == "订单已过期") {
intDiff = 0;
}else{
setTimeout("check()",1500);
}
}
})
}
Expand Down

0 comments on commit c6eaedd

Please sign in to comment.