From c77d788f27e7ce9bc6dbad16f705a7e2ebc773c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=BF=E8=AF=BA?= <1322522027@qq.com> Date: Tue, 28 Mar 2023 10:17:22 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=88=86=E8=B4=A6=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 承诺 <1322522027@qq.com> --- WePayV3/ProfitSharing.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/WePayV3/ProfitSharing.php b/WePayV3/ProfitSharing.php index 58fc22d..d452637 100644 --- a/WePayV3/ProfitSharing.php +++ b/WePayV3/ProfitSharing.php @@ -23,7 +23,7 @@ use WePayV3\Contracts\BasicWePay; * Class Profitsharing * @package WePayV3 */ -class Profitsharing extends BasicWePay +class ProfitSharing extends BasicWePay { @@ -35,7 +35,8 @@ class Profitsharing extends BasicWePay */ public function create($options) { - return $this->doRequest('POST', '/v3/profitsharing/orders', $options, true); + $options['appid'] = $this->config['appid']; + return $this->doRequest('POST', '/v3/profitsharing/orders', json_encode($options, JSON_UNESCAPED_UNICODE), true); } @@ -60,7 +61,7 @@ class Profitsharing extends BasicWePay */ public function unfreeze($options) { - return $this->doRequest('POST', '/v3/profitsharing/orders/unfreeze', $options, true); + return $this->doRequest('POST', '/v3/profitsharing/orders/unfreeze', json_encode($options, JSON_UNESCAPED_UNICODE), true); } /** * 查询剩余待分金额 @@ -81,7 +82,8 @@ class Profitsharing extends BasicWePay */ public function addReceiver($options) { - return $this->doRequest('POST', "/v3/profitsharing/receivers/add", $options, true); + $options['appid'] = $this->config['appid']; + return $this->doRequest('POST', "/v3/profitsharing/receivers/add", json_encode($options, JSON_UNESCAPED_UNICODE), true); } /** * 删除分账接收方 @@ -91,6 +93,7 @@ class Profitsharing extends BasicWePay */ public function deleteReceiver($options) { - return $this->doRequest('POST', "/v3/profitsharing/receivers/delete", $options, true); + $options['appid'] = $this->config['appid']; + return $this->doRequest('POST', "/v3/profitsharing/receivers/delete", json_encode($options, JSON_UNESCAPED_UNICODE), true); } }