This commit is contained in:
cwchen 2024-11-15 10:03:07 +08:00
parent 7fe7f5fe4c
commit f6638db4b4
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ function setFileTable(fileList) {
$.each(fileList, function (index, item) { $.each(fileList, function (index, item) {
html += '<tr>' + html += '<tr>' +
'<td>' + handleFileType(item.fileName) + item.fileName + '</td>' + '<td>' + handleFileType(item.fileName) + item.fileName + '</td>' +
'<td>' + (item.suffix.replace('.', '')) + '</td>' + '<td>' + item.type + '</td>' +
'<td><img src="../../../images/user_head_icon.png" width="20px" height="20px">' + item.createName + '</td>' + '<td><img src="../../../images/user_head_icon.png" width="20px" height="20px">' + item.createName + '</td>' +
'<td>' + item.createTime + '</td>' + '<td>' + item.createTime + '</td>' +
'<td><a style="margin:0 5px;color:#409EFF;cursor: pointer;" onclick=\'viewFile(' + JSON.stringify(item) + ')\'>预览</a>' + '<td><a style="margin:0 5px;color:#409EFF;cursor: pointer;" onclick=\'viewFile(' + JSON.stringify(item) + ')\'>预览</a>' +