mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-20 23:32:01 +08:00
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import { service } from './service'
|
|
|
|
import { config } from './config'
|
|
|
|
const { default_headers } = config
|
|
|
|
const request = (option: any) => {
|
|
const { headersType, headers, ...otherOption } = option
|
|
return service({
|
|
...otherOption,
|
|
headers: {
|
|
'Content-Type': headersType || default_headers,
|
|
...headers
|
|
}
|
|
})
|
|
}
|
|
export default {
|
|
get: async <T = any>(option: any) => {
|
|
const res = await request({ method: 'GET', ...option })
|
|
return res.data as unknown as T
|
|
},
|
|
post: async <T = any>(option: any) => {
|
|
const res = await request({ method: 'POST', ...option })
|
|
return res.data as unknown as T
|
|
},
|
|
postOriginal: async (option: any) => {
|
|
const res = await request({ method: 'POST', ...option })
|
|
return res
|
|
},
|
|
delete: async <T = any>(option: any) => {
|
|
const res = await request({ method: 'DELETE', ...option })
|
|
return res.data as unknown as T
|
|
},
|
|
put: async <T = any>(option: any) => {
|
|
const res = await request({ method: 'PUT', ...option })
|
|
return res.data as unknown as T
|
|
},
|
|
download: async <T = any>(option: any) => {
|
|
const res = await request({ method: 'GET', 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 })
|
|
return res as unknown as Promise<T>
|
|
}
|
|
}
|