mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改日志标识
This commit is contained in:
parent
4e5d59c198
commit
12d9889e96
@ -109,6 +109,7 @@ class Auth extends Controller
|
||||
}
|
||||
$this->app->db->name('SystemAuthNode')->where($map)->delete();
|
||||
$this->app->db->name('SystemAuthNode')->insertAll($data);
|
||||
sysoplog('系统权限管理', "配置系统权限[{$map['auth']}]授权成功");
|
||||
$this->success('权限授权修改成功!', 'javascript:history.back()');
|
||||
} else {
|
||||
$this->title = '权限配置节点';
|
||||
@ -127,6 +128,42 @@ class Auth extends Controller
|
||||
$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
|
||||
@ -143,5 +180,4 @@ class Auth extends Controller
|
||||
$this->error("权限删除失败,请稍候再试!");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -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}]成功");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user