Commit 795283a9 by 郑健康(PHP)

慧收钱模块增加支付宝功能

1 parent f4393aff
Showing with 3 additions and 2 deletions
......@@ -39,14 +39,15 @@ class BackPubChargeData extends HsqBaseData
if(!empty($result['qrCode']))
{
$qrCode = json_decode($result['qrCode'],true);
switch ($result['payType'])
{
case 'WECHAT_APPLET': //微信
$qrCode = json_decode($result['qrCode'],true);
$data = $qrCode;
break;
case 'ALI_APPLET': //支付宝
$data = [];
$qrCode = $result['qrCode'];
$data = $qrCode;
break;
default:
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!