diff --git a/server/app/common/server/WeChatPayServer.php b/server/app/common/server/WeChatPayServer.php index 1a5da29c..c70d9027 100644 --- a/server/app/common/server/WeChatPayServer.php +++ b/server/app/common/server/WeChatPayServer.php @@ -121,12 +121,12 @@ class WeChatPayServer } //pc端 - if (in_array($order_source, [Client_::pc])) { + if (in_array($order_source, [Client_::pc, Client_::api])) { $data = self::getNativeCode($result, $order); } //h5(非微信环境) - if (in_array($order_source, [Client_::h5, Client_::api])) { + if (in_array($order_source, [Client_::h5])) { $redirect_url = request()->domain() . '/mobile/pages/user_order/user_order'; $redirect_url = urlencode($redirect_url); $data = $result['mweb_url'] . '&redirect_url=' . $redirect_url; @@ -248,14 +248,14 @@ class WeChatPayServer } //NATIVE模式设置 - if ($order_source == Client_::pc) { + if (in_array($order_source, [Client_::pc, Client_::api])) { $attributes['trade_type'] = 'NATIVE'; $attributes['product_id'] = $order['order_sn']; $attributes['openid'] = ""; } //h5支付类型 - if (in_array($order_source, [Client_::h5, Client_::api])) { + if (in_array($order_source, [Client_::h5])) { $attributes['trade_type'] = 'MWEB'; }