mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改微信图文回复处理
This commit is contained in:
parent
f1b019836f
commit
2725499262
@ -264,7 +264,11 @@ class Push
|
|||||||
case 'music':
|
case 'music':
|
||||||
return $wechat->music($data['title'], $data['description'], $data['musicurl'], $data['hqmusicurl'], $data['thumb_media_id'])->reply([], true);
|
return $wechat->music($data['title'], $data['description'], $data['musicurl'], $data['hqmusicurl'], $data['thumb_media_id'])->reply([], true);
|
||||||
case 'news':
|
case 'news':
|
||||||
return $wechat->news($data['articles'])->reply([], true);
|
$articles = [];
|
||||||
|
foreach ($data['articles'] as $article) {
|
||||||
|
$articles[] = ['Url' => $article['url'], 'Title' => $article['title'], 'PicUrl' => $article['picurl'], 'Description' => $article['description']];
|
||||||
|
}
|
||||||
|
return $wechat->news($articles)->reply([], true);
|
||||||
case 'customservice':
|
case 'customservice':
|
||||||
WechatService::WeChatCustom()->send(['touser' => $this->openid, 'msgtype' => 'text', "text" => $data['content']]);
|
WechatService::WeChatCustom()->send(['touser' => $this->openid, 'msgtype' => 'text', "text" => $data['content']]);
|
||||||
return $wechat->transferCustomerService()->reply([], true);
|
return $wechat->transferCustomerService()->reply([], true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user