mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]优化基础控制器
This commit is contained in:
parent
70b4433f6a
commit
aba79cc376
@ -118,11 +118,11 @@ class BasicAdmin extends Controller {
|
||||
} else {
|
||||
$result['list'] = $db->select();
|
||||
}
|
||||
if (false === $this->_callback('_data_filter', $result['list']) || !$isDisplay) {
|
||||
return $result;
|
||||
if (false !== $this->_callback('_data_filter', $result['list']) && $isDisplay) {
|
||||
!empty($this->title) && $this->assign('title', $this->title);
|
||||
return $this->fetch('', $result);
|
||||
}
|
||||
!empty($this->title) && $this->assign('title', $this->title);
|
||||
return $this->fetch('', $result);
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user