diff --git a/README.md b/README.md index 14739ca..09217db 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,8 @@ V免签 是基于SpringBoot 2.1.1 实现的一套免签支付程序,主要包 + v1.0(2019.01.31) + 初版发布 + + v1.1(2019.02.10) + + 修复部分用户无法上传通用收款码问题 ## 版权信息 diff --git a/src/main/webapp/admin/setting.html b/src/main/webapp/admin/setting.html index 906fda1..0b3a2a1 100644 --- a/src/main/webapp/admin/setting.html +++ b/src/main/webapp/admin/setting.html @@ -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);