You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.8 KiB
68 lines
1.8 KiB
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | EasyAdmin
|
|
// +----------------------------------------------------------------------
|
|
// | PHP交流群: 763822524
|
|
// +----------------------------------------------------------------------
|
|
// | 开源协议 https://mit-license.org
|
|
// +----------------------------------------------------------------------
|
|
// | github开源项目:https://github.com/zhongshaofa/EasyAdmin
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\admin\controller\system;
|
|
|
|
|
|
use app\admin\model\SystemConfig;
|
|
use app\admin\service\TriggerService;
|
|
use app\common\controller\AdminController;
|
|
use EasyAdmin\annotation\ControllerAnnotation;
|
|
use EasyAdmin\annotation\NodeAnotation;
|
|
use think\App;
|
|
|
|
/**
|
|
* Class Config
|
|
* @package app\admin\controller\system
|
|
* @ControllerAnnotation(title="系统配置管理")
|
|
*/
|
|
class Config extends AdminController
|
|
{
|
|
|
|
public function __construct(App $app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->model = new SystemConfig();
|
|
}
|
|
|
|
/**
|
|
* @NodeAnotation(title="列表")
|
|
*/
|
|
public function index()
|
|
{
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* @NodeAnotation(title="保存")
|
|
*/
|
|
public function save()
|
|
{
|
|
$this->checkPostRequest();
|
|
$post = $this->request->post();
|
|
try {
|
|
foreach ($post as $key => $val) {
|
|
$this->model
|
|
->where('name', $key)
|
|
->update([
|
|
'value' => $val,
|
|
]);
|
|
}
|
|
TriggerService::updateMenu();
|
|
TriggerService::updateSysconfig();
|
|
} catch (\Exception $e) {
|
|
$this->error('保存失败');
|
|
}
|
|
$this->success('保存成功');
|
|
}
|
|
|
|
}
|