fix: 报表新增导出+样式隔离

This commit is contained in:
sy2084
2024-07-30 20:04:38 +08:00
parent 0955c40e81
commit cd66c3b714
19 changed files with 189 additions and 29 deletions

View File

@@ -19,3 +19,13 @@ export function searchInfo(data: PreviewItemParams) {
},
});
}
export function exportTable(data: PreviewItemParams) {
return post({
url: '/api/v1/preview/export',
data: {
preview_id: data.previewId,
filter: data.filter,
},
})
}