修改日志标识

This commit is contained in:
Anyon 2020-11-26 15:06:58 +08:00
parent 4e5d59c198
commit 12d9889e96
2 changed files with 85 additions and 1 deletions

View File

@ -109,6 +109,7 @@ class Auth extends Controller
} }
$this->app->db->name('SystemAuthNode')->where($map)->delete(); $this->app->db->name('SystemAuthNode')->where($map)->delete();
$this->app->db->name('SystemAuthNode')->insertAll($data); $this->app->db->name('SystemAuthNode')->insertAll($data);
sysoplog('系统权限管理', "配置系统权限[{$map['auth']}]授权成功");
$this->success('权限授权修改成功!', 'javascript:history.back()'); $this->success('权限授权修改成功!', 'javascript:history.back()');
} else { } else {
$this->title = '权限配置节点'; $this->title = '权限配置节点';
@ -127,6 +128,42 @@ class Auth extends Controller
$this->_delete($this->table); $this->_delete($this->table);
} }
/**
* 表单结果处理
* @param bool $result
*/
protected function _add_form_result(bool $result)
{
if ($result) {
$id = $this->app->db->name($this->table)->getLastInsID();
sysoplog('系统权限管理', "添加系统权限[{$id}]成功");
}
}
/**
* 表单结果处理
* @param boolean $result
*/
protected function _edit_form_result(bool $result)
{
if ($result) {
$id = input('id') ?: 0;
sysoplog('系统权限管理', "修改系统权限[{$id}]成功");
}
}
/**
* 状态结果处理
* @param boolean $result
*/
protected function _state_save_result(bool $result)
{
if ($result) {
[$id, $state] = [input('id'), input('status')];
sysoplog('系统权限管理', ($state ? '激活' : '禁用') . "系统权限[{$id}]成功");
}
}
/** /**
* 删除结果处理 * 删除结果处理
* @param boolean $result * @param boolean $result
@ -143,5 +180,4 @@ class Auth extends Controller
$this->error("权限删除失败,请稍候再试!"); $this->error("权限删除失败,请稍候再试!");
} }
} }
} }

View File

@ -179,4 +179,52 @@ class User extends Controller
} }
} }
/**
* 表单结果处理
* @param bool $result
*/
protected function _add_form_result(bool $result)
{
if ($result) {
$id = $this->app->db->name($this->table)->getLastInsID();
sysoplog('系统用户管理', "添加系统用户[{$id}]成功");
}
}
/**
* 表单结果处理
* @param boolean $result
*/
protected function _edit_form_result(bool $result)
{
if ($result) {
$id = input('id') ?: 0;
sysoplog('系统用户管理', "修改系统用户[{$id}]成功");
}
}
/**
* 状态结果处理
* @param boolean $result
*/
protected function _state_save_result(bool $result)
{
if ($result) {
[$id, $state] = [input('id'), input('status')];
sysoplog('系统用户管理', ($state ? '激活' : '禁用') . "系统用户[{$id}]成功");
}
}
/**
* 删除结果处理
* @param boolean $result
*/
protected function _remove_delete_result(bool $result)
{
if ($result) {
$id = input('id') ?: 0;
sysoplog('系统用户管理', "删除系统用户[{$id}]成功");
}
}
} }