foo.ts 331 B

123456789101112131415
  1. import { http } from '@/utils/http'
  2. export interface IFooItem {
  3. id: string
  4. name: string
  5. }
  6. /** GET 请求 */
  7. export const getFooAPI = (name: string) => {
  8. return http.get<IFooItem>('/foo', { name })
  9. }
  10. /** POST 请求 */
  11. export const postFooAPI = (name: string) => {
  12. return http.post<IFooItem>('/foo', { name }, { name })
  13. }