|
@@ -128,6 +128,7 @@ let rptArchiveObj = {
|
|
|
try {
|
|
|
if (can_netcasign) {
|
|
|
const msgSign = _.find(ARCHIVE_ENCRYPTION_LIST, {rpt_id: me.currentNode.ID});
|
|
|
+ console.log(msgSign);
|
|
|
me.currentEncryptionList = msgSign;
|
|
|
const uSignLogList = _.filter(signLogList, { uuid: me.currentArchiveUuid });
|
|
|
let html = '';
|
|
@@ -151,6 +152,7 @@ let rptArchiveObj = {
|
|
|
pagetr += '<tr><td>页'+ i +'</td><td>'+ me.currentNode.name +'</td><td>'+ uhtml +'</td></tr>';
|
|
|
}
|
|
|
}
|
|
|
+ $('#dateStr').html(me.currentArchiveDateStr);
|
|
|
$('#role-list').html(html);
|
|
|
$('#page-list').html(pagetr);
|
|
|
$('#sign_num').text(uSignLogList.length);
|
|
@@ -251,6 +253,7 @@ let rptArchiveObj = {
|
|
|
me.currentArchivePdfPath = uSignLogList.length > 0 ? oss_path + '/sign/'+ me.currentArchiveUuid +'.PDF' : oss_path + '/'+ me.currentArchiveUuid +'.PDF';
|
|
|
$('#iframe_made').html('<iframe src="/archive/pdf/show?file=' + me.currentArchivePdfPath + (uSignLogList.length !== 0 ? '?' + uSignLogList[uSignLogList.length-1].versionid : '') + '" height="750px" width="100%" style="border: none;"></iframe>');
|
|
|
}
|
|
|
+ $('#dateStr').html(me.currentArchiveDateStr);
|
|
|
$('#sign_num').text(uSignLogList.length);
|
|
|
const uHadSign = _.filter(uSignLogList, { uid: USER_ID});
|
|
|
// 是否显示撤销按钮
|