[更新]优化系统参数配置

This commit is contained in:
Anyon 2017-05-17 13:57:41 +08:00
parent 935a0e50d2
commit 45cfb78ed7

View File

@ -43,14 +43,14 @@ class Config extends BasicAdmin {
*/
public function index() {
if (!$this->request->isPost()) {
parent::_list($this->table);
} else {
foreach ($this->request->post() as $key => $vo) {
sysconf($key, $vo);
}
LogService::write('系统管理', '修改系统配置参数成功');
$this->success('数据修改成功!', '');
$this->assign('title', $this->table);
return view();
}
foreach ($this->request->post() as $key => $vo) {
sysconf($key, $vo);
}
LogService::write('系统管理', '修改系统配置参数成功');
$this->success('数据修改成功!', '');
}
/**