feat : pay

This commit is contained in:
2025-02-17 16:46:41 +08:00
parent 1fb7bf4ea7
commit 8e6c6f9cb1
13 changed files with 353 additions and 13 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Service\Common\Pay\Wx;
use function Hyperf\Config\config;
class WxJsRechargeOrderService extends WxJsRechargeBaseService
{
public function callBackHandle()
{
// TODO: Implement callBackHandle() method.
}
public function setNotify()
{
//返回的回调地址
$this->config['wechat']['default']['notify_url'] = config('system.api_url').'/common/wxPay/order/js/callBack';
}
}