feat: 交班管理增加交班数据导出功能

This commit is contained in:
2025-03-17 11:38:03 +08:00
parent 2fe360bcb2
commit 8ea8c257d2
4 changed files with 53 additions and 16 deletions

View File

@@ -48,6 +48,14 @@ const AuthAPI = {
method: "delete",
});
},
//导出
export(id: string | number) {
return request<any>({
url: `${baseURL}/export/${id}`,
method: "get",
responseType: "blob",
});
}
};
export interface Responseres {