修改小程序配置读取

This commit is contained in:
Anyon 2022-04-29 16:18:04 +08:00
parent 7b395cf553
commit f22078f918

View File

@ -43,9 +43,10 @@ class Wxapp extends Controller
*/
protected function initialize()
{
$opt = sysdata('wxapp');
$this->cfg = [
'appid' => sysconf('data.wxapp_appid'),
'appsecret' => sysconf('data.wxapp_appkey'),
'appid' => $opt['appid'] ?? '',
'appsecret' => $opt['appkey'] ?? '',
'cache_path' => $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'wechat',
];
if (empty(UserAdminService::TYPES[$this->type]['auth'])) {