This commit is contained in:
2025-08-22 20:01:49 +08:00
6 changed files with 432 additions and 13 deletions

View File

@ -61,3 +61,12 @@ export const delProgressCategory = (id: string | number | Array<string | number>
method: 'delete'
});
};
//下载
export const downloadProgressCategory = (data) => {
return request({
url: '/progress/progressCategory/export',
method: 'post',
data
});
};