Skip to content

Commit

Permalink
V1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
szvone committed Feb 10, 2019
1 parent 2e22b55 commit f7174ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ V免签 是基于SpringBoot 2.1.1 实现的一套免签支付程序,主要包

+ v1.0(2019.01.31)
+ 初版发布
+ v1.1(2019.02.10)
+ 修复部分用户无法上传通用收款码问题

## 版权信息

Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/admin/setting.html
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
if (res.code == -1) {
return layer.msg('上传失败');
}
if (res.data=="" || res.data.substr(0,22)!="HTTPS://QR.ALIPAY.COM/"){
if (res.data=="" || res.data.substr(0,22).toUpperCase()!="HTTPS://QR.ALIPAY.COM/"){
return layer.msg('请上传支付宝无金额收款二维码');
}
$('#zfbimg').attr('src', "enQrcode?url="+res.data);
Expand Down

0 comments on commit f7174ca

Please sign in to comment.