feat(api): 添加新的foo接口并支持alova风格API调用

添加新的foo接口实现,同时扩展http模块以支持alova风格的API调用方式(Get/Post/Put/Delete)。移除旧的alova-foo.ts文件并统一使用新的实现。
This commit is contained in:
feige996
2025-07-08 17:02:10 +08:00
parent dc5fdda452
commit 51acfe42e0
4 changed files with 23 additions and 1 deletions

16
src/api/foo.ts Normal file
View File

@@ -0,0 +1,16 @@
import { http } from '@/http/http'
export interface IFoo {
id: number
name: string
}
export function foo() {
return http.Get<IFoo>('/foo', {
params: {
name: '菲鸽',
page: 1,
pageSize: 10,
},
})
}