fix: 优化移动端项目管理功能

This commit is contained in:
dj
2025-04-06 22:38:14 +08:00
parent e8a5b4e788
commit a307697028
7 changed files with 145 additions and 31 deletions

View File

@@ -86,3 +86,15 @@ export const shareExportExcel = (allocationId) => {
}
);
};
export const shareDetailExport= (data) => {
return axios.post(
`${import.meta.env.VITE_BASE_URL}/workflow/mosr/cost/share/export`,
data, {
responseType: 'blob',
headers: {
Authorization: getToken()
}
}
);
};