icd调整

This commit is contained in:
caozehui
2026-06-16 19:26:47 +08:00
parent 6c191aa96f
commit 8f5642d0b5
8 changed files with 757 additions and 412 deletions

View File

@@ -214,6 +214,10 @@ class RequestHttp {
return this.service.post(url, params, { ..._object, responseType: 'blob' })
}
downloadGetWithHeaders(url: string, _object = {}): Promise<AxiosResponse<Blob>> {
return this.service.get(url, { ..._object, responseType: 'blob' })
}
upload(url: string, params?: object, _object = {}): Promise<BlobPart> {
return this.service.post(url, params, {
..._object,