修改文件管理

This commit is contained in:
Anyon 2022-06-27 14:28:34 +08:00
parent 2544a30fcb
commit 4b859eb0ed
3 changed files with 19 additions and 3 deletions

View File

@ -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();
}
}

View File

@ -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');
});
}

View File

@ -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},
{