更新目录结构
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
// +----------------------------------------------------------------------
|
||||
namespace app\controller\admin;
|
||||
|
||||
use app\model\Config as ConfigM;
|
||||
use app\services\system\ConfigService;
|
||||
use think\facade\Cache;
|
||||
|
||||
/**
|
||||
@@ -16,34 +16,13 @@ use think\facade\Cache;
|
||||
*/
|
||||
class Config extends Base {
|
||||
|
||||
public function _initialize() {
|
||||
parent::_initialize();
|
||||
$this->model = new ConfigM();
|
||||
}
|
||||
|
||||
/**
|
||||
* @title 配置管理
|
||||
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
|
||||
*/
|
||||
public function index(ConfigM $config) {
|
||||
$param = $this->request->param();
|
||||
public function index(ConfigService $config) {
|
||||
$list = $config->getConfigList($this->request);
|
||||
|
||||
|
||||
$group = input('group', 0, 'trim');
|
||||
$name = input('name', '', 'trim');
|
||||
/* 查询条件初始化 */
|
||||
$map = array('status' => 1);
|
||||
if ($group) {
|
||||
$map['group'] = $group;
|
||||
}
|
||||
|
||||
if ($name) {
|
||||
$map['name'] = array('like', '%' . $name . '%');
|
||||
}
|
||||
|
||||
$list = $config->where($map)->order('id desc')->paginate(25, false, array(
|
||||
'query' => $this->request->param(),
|
||||
));
|
||||
// 记录当前列表页的cookie
|
||||
Cookie('__forward__', $_SERVER['REQUEST_URI']);
|
||||
|
||||
@@ -51,7 +30,7 @@ class Config extends Base {
|
||||
'group' => config('config_group_list'),
|
||||
'config_type' => config('config_config_list'),
|
||||
'page' => $list->render(),
|
||||
'group_id' => $group,
|
||||
'group_id' => $this->request->param('group', 0),
|
||||
'list' => $list,
|
||||
);
|
||||
|
||||
@@ -61,22 +40,19 @@ class Config extends Base {
|
||||
/**
|
||||
* @title 信息配置
|
||||
*/
|
||||
public function group(ConfigM $config, $id = 1) {
|
||||
public function group(ConfigService $config) {
|
||||
if ($this->request->isPost()) {
|
||||
$data = $this->request->post();
|
||||
|
||||
foreach ($data['config'] as $key => $value) {
|
||||
ConfigM::update(['value' => $value], ['name' => $key]);
|
||||
try {
|
||||
$config->updateConfig($this->request);
|
||||
return $this->success("更新成功!");
|
||||
} catch (\think\Exception $e) {
|
||||
return $this->error($e->getMessage());
|
||||
}
|
||||
//清除db_config_data缓存
|
||||
Cache::pull('system_config_data');
|
||||
return $this->success("更新成功!");
|
||||
} else {
|
||||
$list = $config->where(array('status' => 1, 'group' => $id))->field('id,name,title,extra,value,remark,type')->order('sort')->select();
|
||||
if ($list) {
|
||||
$this->data['list'] = $list;
|
||||
}
|
||||
$this->data['id'] = $id;
|
||||
$this->data = [
|
||||
'list' => $config->getConfigByGroup($this->request),
|
||||
'id' => $this->request->param('id', 1)
|
||||
];
|
||||
return $this->fetch();
|
||||
}
|
||||
}
|
||||
@@ -85,19 +61,14 @@ class Config extends Base {
|
||||
* @title 新增配置
|
||||
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
|
||||
*/
|
||||
public function add(ConfigM $config) {
|
||||
public function add(ConfigService $config) {
|
||||
if ($this->request->isPost()) {
|
||||
$data = $this->request->post();
|
||||
if ($data) {
|
||||
$result = ConfigM::create($data);
|
||||
if (false !== $result) {
|
||||
Cache::pull('system_config_data');
|
||||
return $this->success('新增成功', url('/admin/config/index'));
|
||||
} else {
|
||||
return $this->error('新增失败');
|
||||
}
|
||||
} else {
|
||||
return $this->error('无添加数据!');
|
||||
try {
|
||||
$config->createConfig($this->request);
|
||||
|
||||
return $this->success('添加成功!', url('/admin/config/index'));
|
||||
} catch (\think\Exception $e) {
|
||||
return $this->error($e->getMessage());
|
||||
}
|
||||
} else {
|
||||
$this->data['info'] = [];
|
||||
@@ -109,70 +80,38 @@ class Config extends Base {
|
||||
* @title 编辑配置
|
||||
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
|
||||
*/
|
||||
public function edit($id = 0) {
|
||||
public function edit(ConfigService $config) {
|
||||
if ($this->request->isPost()) {
|
||||
$data = $this->request->post();
|
||||
if ($data) {
|
||||
$result = ConfigM::update($data, array('id' => $data['id']));
|
||||
if (false !== $result) {
|
||||
Cache::pull('system_config_data');
|
||||
return $this->success('更新成功', Cookie('__forward__'));
|
||||
} else {
|
||||
return $this->error('更新失败!');
|
||||
}
|
||||
} else {
|
||||
return $this->error('无更新数据!');
|
||||
try {
|
||||
$config->editConfig($this->request);
|
||||
return $this->success("修改成功!", url('/admin/config/index'));
|
||||
} catch (\think\Exception $e) {
|
||||
return $this->error($e->getMessage());
|
||||
}
|
||||
} else {
|
||||
$info = array();
|
||||
/* 获取数据 */
|
||||
$info = ConfigM::find($id);
|
||||
|
||||
if (false === $info) {
|
||||
return $this->error('获取配置信息错误');
|
||||
}
|
||||
$this->data = ['info' => $info];
|
||||
$this->data = ['info' => $config->getConfigDetail($this->request)];
|
||||
return $this->fetch();
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @title 批量保存配置
|
||||
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
|
||||
*/
|
||||
public function save($config) {
|
||||
if ($config && is_array($config)) {
|
||||
foreach ($config as $name => $value) {
|
||||
(new ConfigM())->save(['value' => $value], ['name' => $name]);
|
||||
}
|
||||
}
|
||||
Cache::pull('system_config_data');
|
||||
return $this->success('保存成功!');
|
||||
}
|
||||
|
||||
/**
|
||||
* @title 删除配置
|
||||
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
|
||||
*/
|
||||
public function del() {
|
||||
$id = $this->request->param('id');
|
||||
|
||||
if (empty($id)) {
|
||||
return $this->error('请选择要操作的数据!');
|
||||
}
|
||||
|
||||
$result = ConfigM::find($id)->delete();
|
||||
if (false !== $result) {
|
||||
public function del(ConfigService $config) {
|
||||
try {
|
||||
$config->deleteConfig($this->request);
|
||||
Cache::pull('system_config_data');
|
||||
return $this->success('删除成功');
|
||||
} else {
|
||||
return $this->error('删除失败!');
|
||||
} catch (\think\Exception $e) {
|
||||
return $this->error($e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @title 主题选择
|
||||
*/
|
||||
public function themes(ConfigM $config) {
|
||||
public function themes(ConfigService $config) {
|
||||
$list = $config->getThemesList($this->request);
|
||||
$config = Cache::get('system_config_data');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user