This commit is contained in:
Hankin 2025-08-12 15:09:43 +08:00
parent 384bb62b9f
commit 809163fdc2

View File

@ -61,7 +61,16 @@ class WechatPayService
{
// 发送请求
if (empty(count($transfer_scene_report_infos))) {
$transfer_scene_report_infos = [["info_type" => "报酬说明", "info_content" => "用户提取账户金额"]];
$transfer_scene_report_infos = [
[
'info_type' => '岗位类型', // 固定值
'info_content' => '商家/商户', // 示例值
],
[
'info_type' => '报酬说明', // 固定值
'info_content' => '商家/商户提现', // 示例值
],
];
}
try {
$appid = config("wechat.official_account.default.app_id");