mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改微信关键字二维生成try
This commit is contained in:
parent
29d05def19
commit
cb6b3f9eb1
@ -53,8 +53,6 @@ class Keys extends BasicAdmin
|
|||||||
/**
|
/**
|
||||||
* 列表数据处理
|
* 列表数据处理
|
||||||
* @param array $data
|
* @param array $data
|
||||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
|
||||||
* @throws \WeChat\Exceptions\LocalCacheException
|
|
||||||
*/
|
*/
|
||||||
protected function _index_data_filter(&$data)
|
protected function _index_data_filter(&$data)
|
||||||
{
|
{
|
||||||
@ -62,11 +60,15 @@ class Keys extends BasicAdmin
|
|||||||
'keys' => '关键字', 'image' => '图片', 'news' => '图文',
|
'keys' => '关键字', 'image' => '图片', 'news' => '图文',
|
||||||
'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音',
|
'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音',
|
||||||
];
|
];
|
||||||
$wechat = WechatService::qrcode();
|
try {
|
||||||
foreach ($data as &$vo) {
|
$wechat = WechatService::qrcode();
|
||||||
$result = $wechat->create($vo['keys']);
|
foreach ($data as &$vo) {
|
||||||
$vo['qrc'] = $wechat->url($result['ticket']);
|
$result = $wechat->create($vo['keys']);
|
||||||
$vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type'];
|
$vo['qrc'] = $wechat->url($result['ticket']);
|
||||||
|
$vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type'];
|
||||||
|
}
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$this->error($e->getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,13 +16,13 @@ return [
|
|||||||
// 数据库类型
|
// 数据库类型
|
||||||
'type' => 'mysql',
|
'type' => 'mysql',
|
||||||
// 服务器地址
|
// 服务器地址
|
||||||
'hostname' => '127.0.0.1',
|
'hostname' => 'ctolog.com',
|
||||||
// 数据库名
|
// 数据库名
|
||||||
'database' => 'admin_v3',
|
'database' => 'admin_v3',
|
||||||
// 用户名
|
// 用户名
|
||||||
'username' => 'admin_v3',
|
'username' => 'root',
|
||||||
// 密码
|
// 密码
|
||||||
'password' => 'FbYBHcWKr2',
|
'password' => 'Test12345',
|
||||||
// 端口
|
// 端口
|
||||||
'hostport' => '3306',
|
'hostport' => '3306',
|
||||||
// 连接dsn
|
// 连接dsn
|
||||||
|
Loading…
x
Reference in New Issue
Block a user