|
@@ -137,7 +137,10 @@ let rptArchiveObj = {
|
|
|
if (me.currentNode && me.currentArchiveUuid) {
|
|
|
try {
|
|
|
if (can_netcasign) {
|
|
|
- const msgSign = _.find(ARCHIVE_ENCRYPTION_LIST, {rpt_id: me.currentNode.ID});
|
|
|
+ let msgSign = _.find(ARCHIVE_ENCRYPTION_LIST, {rpt_id: me.currentNode.ID, uuid: me.currentArchiveUuid});
|
|
|
+ if (!msgSign) {
|
|
|
+ msgSign = _.find(ARCHIVE_ENCRYPTION_LIST, {rpt_id: me.currentNode.ID});
|
|
|
+ }
|
|
|
console.log(current_stage_id, msgSign, me.currentArchiveUuid);
|
|
|
me.currentEncryptionList = msgSign;
|
|
|
const uSignLogList = _.filter(signLogList, { uuid: me.currentArchiveUuid });
|