1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-25 19:05:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

去掉文件和文件对象最后修改时间字段

This commit is contained in:
2022-04-23 10:58:47 +08:00
parent 7c452b851d
commit eda6165b2c
14 changed files with 17 additions and 130 deletions

View File

@@ -53,7 +53,6 @@
<tr><td>是否有广告</td><td>${data.advertising ? "是" : "否"}</td></tr>
<tr><td>是否有水印</td><td>${data.watermark ? "是" : "否"}</td></tr>
<tr><td>文件创建日期</td><td>${data.fileCreateAt}</td></tr>
<tr><td>文件修改日期</td><td>${data.fileModifiedAt}</td></tr>
<tr><td>页数</td><td>${data.numberOfPages}</td></tr>
<tr><td>来源信息</td><td>${data.source}</td></tr>
</table>`;
@@ -84,7 +83,6 @@
var item = data[i];
items.push(`<tr>
<td>${item.id}</td>
<td>${item.lastModified === 0 ? "未知" : new Date(item.lastModified).toISOString().replace(/T/, ' ').replace(/\..+/, '')}</td>
<td>${item.storageMedium}</td>
<td>${item.filePwd}</td>
<td>${item.fileShareCode}</td>
@@ -98,7 +96,6 @@
`<table border="1" style="margin: 0 auto;">
<tr>
<th>文件对象Id</th>
<th>文件修改日期</th>
<th>存储介质</th>
<th>文件密码</th>
<th>提取码</th>