From e304b326de0ab17210ee05f2e856ad03aeebd795 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 27 Jun 2022 15:24:45 +0800 Subject: [PATCH] Update index.html --- app/admin/view/file/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/admin/view/file/index.html b/app/admin/view/file/index.html index 2d4e63fdf..619e145ea 100644 --- a/app/admin/view/file/index.html +++ b/app/admin/view/file/index.html @@ -19,16 +19,16 @@ 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: '
{{d.hash}}
'}, + {field: 'name', title: '文件名称', width: '15%', align: 'center'}, + {field: 'hash', title: '文件哈希', width: '15%', align: 'center', templet: '
{{d.hash}}
'}, { - field: 'size', title: '大 小', align: 'center', width: '8%', 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', width: '8%', sort: true}, + {field: 'xext', title: '文件后缀', align: 'center', width: '8%', sort: true}, { - field: 'xurl', title: '查 看', width: '8%', align: 'center', templet: function (d) { + field: 'xurl', title: '查看文件', width: '8%', align: 'center', templet: function (d) { if (typeof d.mime === 'string' && /^image\//.test(d.mime)) { return laytpl('
').render(d) } else {