diff --git a/app/admin/view/file/index.html b/app/admin/view/file/index.html index 0719116d5..6a58f1598 100644 --- a/app/admin/view/file/index.html +++ b/app/admin/view/file/index.html @@ -27,7 +27,15 @@ } }, {field: 'xext', title: '后 缀', align: 'center', width: '8%', sort: true}, - {field: 'xurl', title: '链 接', width: '5%', align: 'center', templet: '
'}, + { + field: 'xurl', title: '查 看', width: '8%', align: 'center', templet: function (d) { + if (typeof d.mime === 'string' && /^image\//.test(d.mime)) { + return laytpl('').render(d) + } else { + return laytpl('').render(d); + } + } + }, { field: 'isfast', title: '上传方式', align: 'center', width: '8%', templet: function (d) { return d.isfast ? '秒传' : '普通';