Skip to content

Commit 917b3c3

Browse files
committed
V1.5.2
1 parent 3085a6c commit 917b3c3

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ V免签为完全开源项目,开源项目意味着作者没有任何收入来
9494
+ 微信店员收款推送通知
9595

9696
## 更新记录
97+
98+
+ v1.5.2(2019.04.30)
99+
+ 修复部分情况下出现订单已过期,但是页面还在倒计时的问题
100+
97101
+ v1.5.1(2019.04.24)
98102
+ 同步最新版APP
99103
+ 添加注意事项说明,完善README.md文档

src/main/webapp/payPage/pay.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,11 @@ <h1 v-if="price != reallyPrice">
248248
if (data.code == 1){
249249
window.location.href = data.data;
250250
} else{
251-
setTimeout("check()",500);
251+
if (data.data == "订单已过期") {
252+
intDiff = 0;
253+
}else{
254+
setTimeout("check()",1500);
255+
}
252256
}
253257
})
254258
}

0 commit comments

Comments
 (0)