mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-07 15:45:08 +08:00
feat: add vue3(element-plus)
This commit is contained in:
46
yudao-ui-admin-vue3/src/hooks/web/useAxios.ts
Normal file
46
yudao-ui-admin-vue3/src/hooks/web/useAxios.ts
Normal file
@ -0,0 +1,46 @@
|
||||
// import { service } from '@/config/axios'
|
||||
|
||||
// import { AxiosPromise } from 'axios'
|
||||
|
||||
// import { config } from '@/config/axios/config'
|
||||
|
||||
// const { default_headers } = config
|
||||
|
||||
// const request = <T>(option: AxiosConfig): AxiosPromise<T> => {
|
||||
// const { url, method, params, data, headersType, responseType } = option
|
||||
// return service({
|
||||
// url: url,
|
||||
// method,
|
||||
// params,
|
||||
// data,
|
||||
// responseType: responseType,
|
||||
// headers: {
|
||||
// 'Content-Type': headersType || default_headers
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
|
||||
// function getFn<T = any>(option: AxiosConfig): AxiosPromise<T> {
|
||||
// return request<T>({ method: 'get', ...option })
|
||||
// }
|
||||
|
||||
// function postFn<T = any>(option: AxiosConfig): AxiosPromise<T> {
|
||||
// return request<T>({ method: 'post', ...option })
|
||||
// }
|
||||
|
||||
// function deleteFn<T = any>(option: AxiosConfig): AxiosPromise<T> {
|
||||
// return request<T>({ method: 'delete', ...option })
|
||||
// }
|
||||
|
||||
// function putFn<T = any>(option: AxiosConfig): AxiosPromise<T> {
|
||||
// return request<T>({ method: 'put', ...option })
|
||||
// }
|
||||
|
||||
// export const useAxios = () => {
|
||||
// return {
|
||||
// get: getFn,
|
||||
// post: postFn,
|
||||
// delete: deleteFn,
|
||||
// put: putFn
|
||||
// }
|
||||
// }
|
Reference in New Issue
Block a user