diff --git a/app/admin/controller/File.php b/app/admin/controller/File.php index 0a36fce42..e5028c901 100644 --- a/app/admin/controller/File.php +++ b/app/admin/controller/File.php @@ -38,14 +38,30 @@ class File extends Controller SystemFile::mQuery()->layTable(function () { $this->title = '系统文件管理'; }, function (QueryHelper $query) { + $query->where(['issafe' => 0, 'status' => 2]); $query->like('name,hash,xext')->dateBetween('create_at'); }); } - protected function _page_filter(&$data) + /** + * 数据列表处理 + * @param array $data + * @return void + */ + protected function _page_filter(array &$data) { foreach ($data as &$vo) { $vo['ctype'] = $this->types[$vo['type']] ?? $vo['type']; } } + + /** + * 删除系统文件 + * @auth true + * @return void + */ + public function remove() + { + SystemFile::mDelete(); + } } \ No newline at end of file diff --git a/app/admin/controller/api/Upload.php b/app/admin/controller/api/Upload.php index 4824686d8..63bebc4a6 100644 --- a/app/admin/controller/api/Upload.php +++ b/app/admin/controller/api/Upload.php @@ -152,8 +152,8 @@ class Upload extends Controller SystemFile::mQuery()->layTable(function () { $this->title = '文件选择器'; }, function (QueryHelper $query) { - $query->where(['status' => 2])->order('id desc'); $query->like('name,hash')->dateBetween('create_at'); + $query->where(['status' => 2, 'issafe' => 0])->order('id desc'); }); } diff --git a/app/admin/view/file/index.html b/app/admin/view/file/index.html index 3abd2c8fa..a9135c198 100644 --- a/app/admin/view/file/index.html +++ b/app/admin/view/file/index.html @@ -20,7 +20,7 @@ cols: [[ {checkbox: true, fixed: true}, {field: 'name', title: '文件名称', minWidth: 120, align: 'center'}, - {field: 'hash', title: '文件哈希', minWidth: 180, align: 'center'}, + {field: 'hash', title: '文件哈希', minWidth: 200, align: 'center'}, {field: 'size', title: '文件大小', align: 'center', minWidth: 100, sort: true}, {field: 'xext', title: '文件后缀', align: 'center', minWidth: 100, sort: true}, {