You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
563 B
TypeScript
28 lines
563 B
TypeScript
import { service } from '@/config/axios'
|
|
|
|
import { AxiosPromise } from 'axios'
|
|
|
|
import { config } from '@/config/axios/config'
|
|
|
|
const { default_headers } = config
|
|
|
|
export const useAxios = () => {
|
|
const request = (option: AxiosConfig): AxiosPromise => {
|
|
const { url, method, params, data, headersType, responseType } = option
|
|
return service({
|
|
url: url,
|
|
method,
|
|
params,
|
|
data,
|
|
responseType: responseType,
|
|
headers: {
|
|
'Content-Type': headersType || default_headers
|
|
}
|
|
})
|
|
}
|
|
|
|
return {
|
|
request
|
|
}
|
|
}
|