mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
Pre Merge pull request !34 from coffee/N/A
This commit is contained in:
commit
6aba6ca1e8
@ -92,7 +92,20 @@ class Index extends Controller
|
||||
$this->error('只能修改自己的资料!');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
*/
|
||||
protected function _form_filter(array &$data)
|
||||
{
|
||||
if ($this->request->isPost()) {
|
||||
unset($data['username']);
|
||||
unset($data['authorize']);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 资料修改后处理
|
||||
* @param bool $status
|
||||
|
Loading…
x
Reference in New Issue
Block a user