init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
30
application/admin/controller/shopro/wechat/Config.php
Normal file
30
application/admin/controller/shopro/wechat/Config.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace app\admin\controller\shopro\wechat;
|
||||
|
||||
use app\admin\model\shopro\Config as ShoproConfig;
|
||||
use app\admin\controller\shopro\Common;
|
||||
|
||||
class Config extends Common
|
||||
{
|
||||
/**
|
||||
* 公众号配置
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
if (!$this->request->isAjax()) {
|
||||
return $this->view->fetch();
|
||||
}
|
||||
|
||||
if ('GET' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::getConfigs('wechat.officialAccount', false);
|
||||
$configs['server_url'] = request()->domain() . '/addons/shopro/wechat.serve';
|
||||
} elseif ('POST' === $this->request->method()) {
|
||||
|
||||
$configs = ShoproConfig::setConfigs('wechat.officialAccount', $this->request->param());
|
||||
}
|
||||
|
||||
$this->success('操作成功', null, $configs);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user