This commit is contained in:
cwchen 2024-11-16 17:26:21 +08:00
parent 23fd893efa
commit f5e9e5638b
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -35,7 +35,7 @@
</style>
</head>
<body>
<div class="layuimini-container">
<!-- <div class="layuimini-container">
<div class="layuimini-main">
<div class="layui-row layui-col-space15">
<div class="layui-col-md8">
@ -451,6 +451,6 @@
}
});
</script>
</script> -->
</body>
</html>