Skip to content

Commit

Permalink
V1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
szvone committed Apr 30, 2019
1 parent 3085a6c commit 917b3c3
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 @@ -94,6 +94,10 @@ V免签为完全开源项目,开源项目意味着作者没有任何收入来
+ 微信店员收款推送通知

## 更新记录

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

+ v1.5.1(2019.04.24)
+ 同步最新版APP
+ 添加注意事项说明,完善README.md文档
Expand Down
6 changes: 5 additions & 1 deletion src/main/webapp/payPage/pay.html
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,11 @@ <h1 v-if="price != reallyPrice">
if (data.code == 1){
window.location.href = data.data;
} else{
setTimeout("check()",500);
if (data.data == "订单已过期") {
intDiff = 0;
}else{
setTimeout("check()",1500);
}
}
})
}
Expand Down

0 comments on commit 917b3c3

Please sign in to comment.