feat:删除 alova、openapi 依赖

feat:删除无用的 services 调用
This commit is contained in:
YunaiV
2025-12-12 19:13:58 +08:00
parent 3acee68ab9
commit 7f9eaf82a2
15 changed files with 3 additions and 371 deletions

View File

@@ -7,14 +7,6 @@ export type CustomRequestOptions = UniApp.RequestOptions & {
hideErrorToast?: boolean
} & IUniUploadFileOptions // 添加uni.uploadFile参数类型
/** 主要提供给 openapi-ts-request 生成的代码使用 */
export type CustomRequestOptions_ = Omit<CustomRequestOptions, 'url'>
export interface HttpRequestResult<T> {
promise: Promise<T>
requestTask: UniApp.RequestTask
}
// 通用响应格式(兼容 msg + message 字段)
export type IResponse<T = any> = {
code: number