mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
修改文件注释
This commit is contained in:
parent
3fd2f992a2
commit
611a1f9749
@ -73,7 +73,7 @@ class Auth extends Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改系统权限状态
|
* 修改权限状态
|
||||||
* @auth true
|
* @auth true
|
||||||
* @throws \think\db\exception\DbException
|
* @throws \think\db\exception\DbException
|
||||||
*/
|
*/
|
||||||
@ -83,17 +83,6 @@ class Auth extends Controller
|
|||||||
$this->_save($this->table, ['status' => input('status')]);
|
$this->_save($this->table, ['status' => input('status')]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 删除系统权限
|
|
||||||
* @auth true
|
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
*/
|
|
||||||
public function remove()
|
|
||||||
{
|
|
||||||
$this->_applyFormToken();
|
|
||||||
$this->_delete($this->table);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 权限配置节点
|
* 权限配置节点
|
||||||
* @auth true
|
* @auth true
|
||||||
@ -124,6 +113,17 @@ class Auth extends Controller
|
|||||||
$this->_form($this->table, 'apply');
|
$this->_form($this->table, 'apply');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除系统权限
|
||||||
|
* @auth true
|
||||||
|
* @throws \think\db\exception\DbException
|
||||||
|
*/
|
||||||
|
public function remove()
|
||||||
|
{
|
||||||
|
$this->_applyFormToken();
|
||||||
|
$this->_delete($this->table);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除结果处理
|
* 删除结果处理
|
||||||
|
@ -42,7 +42,7 @@ class Config extends Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改系统能数配置
|
* 修改系统参数配置
|
||||||
* @auth true
|
* @auth true
|
||||||
* @throws \think\db\exception\DataNotFoundException
|
* @throws \think\db\exception\DataNotFoundException
|
||||||
* @throws \think\db\exception\DbException
|
* @throws \think\db\exception\DbException
|
||||||
@ -52,7 +52,7 @@ class Config extends Controller
|
|||||||
{
|
{
|
||||||
$this->_applyFormToken();
|
$this->_applyFormToken();
|
||||||
if ($this->request->isGet()) {
|
if ($this->request->isGet()) {
|
||||||
$this->title = '系统参数配置';
|
$this->title = '修改系统参数配置';
|
||||||
$this->fetch();
|
$this->fetch();
|
||||||
}
|
}
|
||||||
foreach ($this->request->post() as $key => $value) {
|
foreach ($this->request->post() as $key => $value) {
|
||||||
@ -62,7 +62,7 @@ class Config extends Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 文件存储引擎
|
* 修改文件存储引擎
|
||||||
* @auth true
|
* @auth true
|
||||||
* @throws \think\db\exception\DataNotFoundException
|
* @throws \think\db\exception\DataNotFoundException
|
||||||
* @throws \think\db\exception\DbException
|
* @throws \think\db\exception\DbException
|
||||||
|
Loading…
x
Reference in New Issue
Block a user