This commit is contained in:
Teo
2025-08-22 19:53:14 +08:00
parent 9dfa9ee146
commit 9584ab4baa
7 changed files with 408 additions and 11 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
});
};