diff --git a/src/service/index/foo.ts b/src/service/index/foo.ts index 7263dfc..dac3519 100644 --- a/src/service/index/foo.ts +++ b/src/service/index/foo.ts @@ -1,4 +1,4 @@ -import { http, httpGet } from '@/utils/http' +import { http } from '@/utils/http' export interface IFooItem { id: string name: string @@ -15,7 +15,7 @@ export const getFooAPI = (name: string) => { /** GET 请求 - 再次简化,看大家是否喜欢这种简化 */ export const getFooAPI2 = (name: string) => { - return httpGet('/foo', { name }) + return http.get('/foo', { name }) } /** POST 请求 */ @@ -27,3 +27,7 @@ export const postFooAPI = (name: string) => { data: { name }, }) } +/** POST 请求 - 再次简化,看大家是否喜欢这种简化 */ +export const postFooAPI2 = (name: string) => { + return http.post('/foo', { name }, { name }) +} diff --git a/src/utils/http.ts b/src/utils/http.ts index db4c6aa..4e3f38c 100644 --- a/src/utils/http.ts +++ b/src/utils/http.ts @@ -41,6 +41,7 @@ export const http = (options: CustomRequestOptions) => { }) }) } + /** * GET 请求 * @param url 后台地址 @@ -74,3 +75,6 @@ export const httpPost = ( method: 'POST', }) } + +http.get = httpGet +http.post = httpPost