修改文件管理

This commit is contained in:
Anyon 2022-06-27 15:06:03 +08:00
parent 9b31de5896
commit 8c3e787a28
2 changed files with 8 additions and 11 deletions

View File

@ -52,8 +52,8 @@ 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');
$query->where(['issafe' => 0, 'status' => 2])->equal('type');
});
}

View File

@ -20,24 +20,21 @@
cols: [[
{checkbox: true, fixed: true},
{field: 'id', title: 'ID', width: 80, align: 'center', sort: true},
{field: 'name', title: '名 称', width: '15%', align: 'center'},
{field: 'hash', title: '哈 希', width: '15%', align: 'center', templet: '<div><code>{{d.hash}}</code></div>'},
{
field: 'name', title: '文件名称', minWidth: 200, align: 'center', templet: function (d) {
return d.name + '<a class="pull-right font-s10" target="_blank" href="' + d.xurl + '">查看</a>'
}
},
{field: 'hash', title: '文件哈希', minWidth: 200, align: 'center', templet: '<div><code>{{d.hash}}</code></div>'},
{
field: 'size', title: '文件大小', align: 'center', minWidth: 100, sort: true, templet: function (d) {
field: 'size', title: '大 小', align: 'center', width: '8%', sort: true, templet: function (d) {
return formatSize(d.size)
}
},
{field: 'xext', title: '文件后缀', align: 'center', minWidth: 100, sort: true},
{field: 'xext', title: '后 缀', align: 'center', width: '8%', sort: true},
{field: 'xurl', title: '链 接', width: '5%', align: 'center', templet: '<div><a target="_blank" href="{{d.xurl}}">查看</a></div>'},
{
field: 'isfast', title: '上传方式', align: 'center', minWidth: 100, templet: function (d) {
field: 'isfast', title: '上传方式', align: 'center', width: '8%', templet: function (d) {
return d.isfast ? '<b class="color-green">秒传</b>' : '<b class="color-blue">普通</b>';
}
},
{field: 'ctype', title: '存储方式', align: 'center', minWidth: 80},
{field: 'ctype', title: '存储方式', align: 'center', width: '10%'},
{field: 'create_at', title: '上传时间', align: 'center', minWidth: 170, sort: true},
{toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 80, fixed: 'right'}
]]