We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e22b55 commit f7174caCopy full SHA for f7174ca
README.md
@@ -43,6 +43,8 @@ V免签 是基于SpringBoot 2.1.1 实现的一套免签支付程序,主要包
43
44
+ v1.0(2019.01.31)
45
+ 初版发布
46
+ + v1.1(2019.02.10)
47
+ + 修复部分用户无法上传通用收款码问题
48
49
## 版权信息
50
src/main/webapp/admin/setting.html
@@ -148,7 +148,7 @@
148
if (res.code == -1) {
149
return layer.msg('上传失败');
150
}
151
- 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/"){
152
return layer.msg('请上传支付宝无金额收款二维码');
153
154
$('#zfbimg').attr('src', "enQrcode?url="+res.data);
0 commit comments