潘志宝
10 天以前 ca22cdd5550cfa0defb0f430c538698182cdaec1
src/config/axios/index.ts
@@ -14,7 +14,7 @@
    ...config,
    responseType: responseType,
    headers: {
      'Content-Type': headersType || default_headers
      'Content-Type': headersType || default_headers,
    }
  })
}
@@ -43,6 +43,10 @@
    const res = await request({ method: 'GET', responseType: 'blob', ...option })
    return res as unknown as Promise<T>
  },
  downloadByPost: async <T = any>(option: any) => {
    const res = await request({ method: 'POST', responseType: 'blob', ...option })
    return res as unknown as Promise<T>
  },
  upload: async <T = any>(option: any) => {
    option.headersType = 'multipart/form-data'
    const res = await request({ method: 'POST', ...option })