fix: 标准法规清单选中导出带上清单ID

This commit is contained in:
wxyclub
2024-06-14 14:46:12 +08:00
parent 7aac6bbc3c
commit f297e0fd46
@@ -950,7 +950,7 @@ export default {
if (this.saveExportType === "apart") {
if (this.selectedList != null && this.selectedList != "") {
const exportURL = interfaceUrl + "sarLawsAttrDetailedList/sar-laws-attr-detailed-list/ExportLawsById?" + "type=" + 1 +
"&exportType" + this.saveExportType + "&ids=" + this.selectedList.join(",") + "&exportName=" + this.exportName;
"&exportType" + this.saveExportType + "&ids=" + this.selectedList.join(",") + "&exportName=" + this.exportName + "&id=" + this.pageId;
window.open(exportURL);
this.$message.success("导出信息成功");
}