mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改文件管理
This commit is contained in:
parent
2544a30fcb
commit
4b859eb0ed
@ -38,14 +38,30 @@ class File extends Controller
|
|||||||
SystemFile::mQuery()->layTable(function () {
|
SystemFile::mQuery()->layTable(function () {
|
||||||
$this->title = '系统文件管理';
|
$this->title = '系统文件管理';
|
||||||
}, function (QueryHelper $query) {
|
}, function (QueryHelper $query) {
|
||||||
|
$query->where(['issafe' => 0, 'status' => 2]);
|
||||||
$query->like('name,hash,xext')->dateBetween('create_at');
|
$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) {
|
foreach ($data as &$vo) {
|
||||||
$vo['ctype'] = $this->types[$vo['type']] ?? $vo['type'];
|
$vo['ctype'] = $this->types[$vo['type']] ?? $vo['type'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除系统文件
|
||||||
|
* @auth true
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function remove()
|
||||||
|
{
|
||||||
|
SystemFile::mDelete();
|
||||||
|
}
|
||||||
}
|
}
|
@ -152,8 +152,8 @@ class Upload extends Controller
|
|||||||
SystemFile::mQuery()->layTable(function () {
|
SystemFile::mQuery()->layTable(function () {
|
||||||
$this->title = '文件选择器';
|
$this->title = '文件选择器';
|
||||||
}, function (QueryHelper $query) {
|
}, function (QueryHelper $query) {
|
||||||
$query->where(['status' => 2])->order('id desc');
|
|
||||||
$query->like('name,hash')->dateBetween('create_at');
|
$query->like('name,hash')->dateBetween('create_at');
|
||||||
|
$query->where(['status' => 2, 'issafe' => 0])->order('id desc');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
cols: [[
|
cols: [[
|
||||||
{checkbox: true, fixed: true},
|
{checkbox: true, fixed: true},
|
||||||
{field: 'name', title: '文件名称', minWidth: 120, align: 'center'},
|
{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: 'size', title: '文件大小', align: 'center', minWidth: 100, sort: true},
|
||||||
{field: 'xext', title: '文件后缀', align: 'center', minWidth: 100, sort: true},
|
{field: 'xext', title: '文件后缀', align: 'center', minWidth: 100, sort: true},
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user