v1.0.45: 硬数据列表录入时间改最后修改(改用updated_at字段)+软数据列表上一次更新改最近更新
This commit is contained in:
@@ -57,7 +57,7 @@ $(function () {
|
||||
' <button class="btn btn-success" id="hard-add">+ 新增碎片</button>' +
|
||||
' </div>' +
|
||||
' <div class="table-wrap"><table class="grid">' +
|
||||
' <thead><tr><th>完整度</th><th>类型</th><th>内容摘要</th><th>来源</th><th>录入人</th><th>录入时间</th><th>操作</th></tr></thead>' +
|
||||
' <thead><tr><th>完整度</th><th>类型</th><th>内容摘要</th><th>来源</th><th>录入人</th><th>最后修改</th><th>操作</th></tr></thead>' +
|
||||
' <tbody id="hard-tbody"></tbody>' +
|
||||
' </table></div>' +
|
||||
' <div class="pagination" id="hard-pagination"></div>' +
|
||||
@@ -80,7 +80,7 @@ $(function () {
|
||||
' <button class="btn" id="soft-reset">重置</button>' +
|
||||
' </div>' +
|
||||
' <div class="table-wrap"><table class="grid">' +
|
||||
' <thead><tr><th>完整度</th><th>缺失层级</th><th>名称</th><th>各层完整度</th><th>缺失字段</th><th>所属表</th><th>上一次更新</th><th>操作</th></tr></thead>' +
|
||||
' <thead><tr><th>完整度</th><th>缺失层级</th><th>名称</th><th>各层完整度</th><th>缺失字段</th><th>所属表</th><th>最近更新</th><th>操作</th></tr></thead>' +
|
||||
' <tbody id="soft-tbody"></tbody>' +
|
||||
' </table></div>' +
|
||||
' <div class="pagination" id="soft-pagination"></div>' +
|
||||
@@ -144,7 +144,7 @@ $(function () {
|
||||
'<td title="' + escHtml(r.summary) + '" style="max-width:280px;">' + escHtml(r.summary || '-') + '</td>' +
|
||||
'<td>' + escHtml(r.source_channel || '-') + '</td>' +
|
||||
'<td>' + escHtml(r.recorded_by || '-') + '</td>' +
|
||||
'<td>' + fmtDate(r.created_at) + '</td>' +
|
||||
'<td>' + fmtDate(r.updated_at) + '</td>' +
|
||||
'<td class="ops">' +
|
||||
' <a onclick="viewHard(' + r.id + ')">查看</a>' +
|
||||
' <a onclick="convertHard(' + r.id + ')">继续补全</a>' +
|
||||
|
||||
Reference in New Issue
Block a user