mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改注释
This commit is contained in:
parent
82304ea896
commit
6e6e5cf273
@ -40,7 +40,7 @@ class Base extends Controller
|
||||
SystemBase::mQuery()->layTable(function () {
|
||||
$this->title = '数据字典管理';
|
||||
$this->types = SystemBase::types();
|
||||
$this->type = input('get.type', $this->types[0] ?? '-');
|
||||
$this->type = $this->get['type'] ?? ($this->types[0] ?? '-');
|
||||
}, function (QueryHelper $query) {
|
||||
$query->where(['deleted' => 0])->equal('type');
|
||||
$query->like('code,name,status')->dateBetween('create_at');
|
||||
@ -68,6 +68,7 @@ class Base extends Controller
|
||||
/**
|
||||
* 表单数据处理
|
||||
* @param array $data
|
||||
* @throws \think\db\exception\DbException
|
||||
*/
|
||||
protected function _form_filter(array &$data)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user