diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue index d3e9581b2..33fc75d13 100644 --- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue +++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue @@ -1751,8 +1751,9 @@ export default { } if (exportList != null && exportList.length > 0) { let accIdAndrestype = [] - for (var accessInfo in exportList) { - accIdAndrestype.push(exportList[accessInfo].id) + let accessInfo = 1 + for (accessInfo in exportList) { + accIdAndrestype.push(exportList[accessInfo]) } const exportURL = interfaceUrl + 'sarLawsAttrDetailedList/sar-laws-attr-detailed-list/ExportLawsById?' + '&exportType=apart' + '&ids=' + accIdAndrestype.join(',') + '&exportName=' + this.exportName window.open(exportURL)