后台
This commit is contained in:
37
app/czg/crud/controller/LogController.php
Normal file
37
app/czg/crud/controller/LogController.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace app\czg\crud\controller;
|
||||
|
||||
use app\admin\model\CrudLog;
|
||||
use app\common\controller\Backend;
|
||||
|
||||
/**
|
||||
* crud记录
|
||||
*
|
||||
*/
|
||||
class LogController extends Backend
|
||||
{
|
||||
/**
|
||||
* Log模型对象
|
||||
* @var object
|
||||
* @phpstan-var CrudLog
|
||||
*/
|
||||
protected object $model;
|
||||
|
||||
protected string|array $preExcludeFields = ['id', 'create_time'];
|
||||
|
||||
protected string|array $quickSearchField = ['id', 'table_name', 'comment'];
|
||||
|
||||
protected array $noNeedPermission = ['index'];
|
||||
|
||||
public function initialize(): void
|
||||
{
|
||||
parent::initialize();
|
||||
$this->model = new CrudLog();
|
||||
|
||||
if (!$this->auth->check('crud/crud/index')) {
|
||||
$this->error(__('You have no permission'), [], 401);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user