一码付微信由H5支付切换至JSAPI支付

This commit is contained in:
egzosn
2017-11-14 15:53:15 +08:00
parent 89fe422fce
commit 4e8693dcec

View File

@@ -246,7 +246,7 @@ public class PayController {
html.append("if(isWxPay()){\n");
html.append("window.location='");
//这里使用H5支付公众号支付是否可以请开发者自行尝试
html.append(url.toString()).append("?payId=").append(wxPayId).append("&transactionType=").append(WxTransactionType.MWEB.getType()).append("&price=").append(price);
html.append(url.toString()).append("?payId=").append(wxPayId).append("&transactionType=").append(WxTransactionType.JSAPI.getType()).append("&price=").append(price);
html.append("';\n }else\n");
}