diff --git a/src/services/api/auth.ts b/src/services/api/auth.ts index 5d78ad7..3ce3737 100644 --- a/src/services/api/auth.ts +++ b/src/services/api/auth.ts @@ -9,7 +9,7 @@ const REFRESH_TOKEN = '/refresh/token'; * @param params */ export function login(params: LoginParams) { - return request.post>(LOGIN, params, { + return request.post(LOGIN, params, { custom: { auth: false, }, @@ -20,12 +20,12 @@ export function login(params: LoginParams) { * 登出 */ export function logout() { - return request.post(LOGIN_OUT, {}); + return request.post(LOGIN_OUT, {}); } /** * 刷新token */ export function refreshToken() { - return request.post>(REFRESH_TOKEN, {}); + return request.post(REFRESH_TOKEN, {}); } diff --git a/src/state/modules/user.ts b/src/state/modules/user.ts index d669edc..90bf926 100644 --- a/src/state/modules/user.ts +++ b/src/state/modules/user.ts @@ -1,6 +1,8 @@ import { defineStore } from 'pinia'; -interface UserState {} +interface UserState { + id?: string | number; +} export const useUserStore = defineStore({ id: 'user', diff --git a/src/types/http.d.ts b/src/types/http.d.ts deleted file mode 100644 index 1f67f8e..0000000 --- a/src/types/http.d.ts +++ /dev/null @@ -1,184 +0,0 @@ -type AnyObject = Record; -export type HttpResponse = - | HttpSuccess - | HttpError - | HttpDownloadResponse - | HttpUploadResponse; -type HttpPromise = Promise>; -type Tasks = UniApp.RequestTask | UniApp.UploadTask | UniApp.DownloadTask; -type Method = - | 'GET' - | 'POST' - | 'PUT' - | 'DELETE' - | 'CONNECT' - | 'HEAD' - | 'OPTIONS' - | 'TRACE' - | 'UPLOAD' - | 'DOWNLOAD'; -export interface RequestTask { - abort: () => void; - offHeadersReceived: () => void; - onHeadersReceived: () => void; -} -export interface CustomConfig { - auth?: boolean; - loading?: boolean; -} - -export interface HttpRequestConfig extends Record { - /** 请求基地址 */ - baseURL?: string; - /** 请求服务器接口地址 */ - url?: string; - - /** 请求查询参数,自动拼接为查询字符串 */ - params?: AnyObject; - /** 请求体参数 */ - data?: AnyObject; - - /** 文件对应的 key */ - name?: string; - /** HTTP 请求中其他额外的 form data */ - formData?: AnyObject; - /** 要上传文件资源的路径。 */ - filePath?: string; - /** 需要上传的文件列表。使用 files 时,filePath 和 name 不生效,App、H5( 2.6.15+) */ - files?: Array<{ - name?: string; - file?: File; - uri: string; - }>; - /** 要上传的文件对象,仅H5(2.6.15+)支持 */ - file?: File; - - /** 文要上传的件类型, 支付宝小程序,且必填 **/ - fileType?: string; - /** 请求头信息 */ - header?: AnyObject; - /** 请求方式 */ - method?: Method; - /** 如果设为 json,会尝试对返回的数据做一次 JSON.parse */ - dataType?: string; - /** 设置响应的数据类型,支付宝小程序不支持 */ - responseType?: 'text' | 'arraybuffer'; - /** 自定义参数 */ - custom?: CustomConfig; - /** 超时时间,仅微信小程序(2.10.0)、支付宝小程序支持 */ - timeout?: number; - /** DNS解析时优先使用ipv4,仅 App-Android 支持 (HBuilderX 2.8.0+) */ - firstIpv4?: boolean; - /** 验证 ssl 证书 仅5+App安卓端支持(HBuilderX 2.3.3+) */ - sslVerify?: boolean; - /** 跨域请求时是否携带凭证(cookies)仅H5支持(HBuilderX 2.6.15+) */ - withCredentials?: boolean; - - /** 返回当前请求的task, options。请勿在此处修改options。 */ - getTask?: (task: T, options: HttpRequestConfig) => void; - /** 全局自定义验证器 */ - validateStatus?: (statusCode: number) => boolean | void; -} -export interface HttpSuccess { - config: HttpRequestConfig; - statusCode: number; - cookies: Array; - data: T; - errMsg: string; - header: AnyObject; -} -export interface HttpUploadResponse { - config: HttpRequestConfig; - statusCode: number; - data: T; - errMsg: string; -} -export interface HttpDownloadResponse extends HttpSuccess { - tempFilePath: string; -} -export interface HttpError { - config: HttpRequestConfig; - statusCode?: number; - cookies?: Array; - data?: T; - errMsg: string; - header?: AnyObject; -} -export interface HttpInterceptorManager { - use( - onFulfilled?: (config: V) => Promise | V, - onRejected?: (config: E) => Promise | E, - ): void; - eject(id: number): void; - forEach(h: any): void; -} - -export interface InterceptorsRequestConfig { - config: HttpRequestConfig; -} - -export type InterceptorsRequest = HttpInterceptorManager< - InterceptorsRequestConfig, - InterceptorsRequestConfig ->; -export type InterceptorsResponse = HttpInterceptorManager; - -export interface Interceptors { - request: InterceptorsRequest; - response: InterceptorsResponse; -} - -export abstract class HttpRequestAbstract { - constructor(config?: Partial); - config: HttpRequestConfig; - interceptors: Interceptors; - middleware(config: HttpRequestConfig): HttpPromise; - request(config: HttpRequestConfig): HttpPromise; - get(url: string, config?: HttpRequestConfig): HttpPromise; - upload(url: string, config?: HttpRequestConfig): HttpPromise; - delete( - url: string, - data?: AnyObject, - config?: HttpRequestConfig, - ): HttpPromise; - head( - url: string, - data?: AnyObject, - config?: HttpRequestConfig, - ): HttpPromise; - post( - url: string, - data?: AnyObject, - config?: HttpRequestConfig, - ): HttpPromise; - put( - url: string, - data?: AnyObject, - config?: HttpRequestConfig, - ): HttpPromise; - connect( - url: string, - data?: AnyObject, - config?: HttpRequestConfig, - ): HttpPromise; - options( - url: string, - data?: AnyObject, - config?: HttpRequestConfig, - ): HttpPromise; - trace( - url: string, - data?: AnyObject, - config?: HttpRequestConfig, - ): HttpPromise; - - download( - url: string, - config?: HttpRequestConfig, - ): Promise; - - setConfig(onSend: (config: HttpRequestConfig) => HttpRequestConfig): void; -} - -declare class HttpRequest extends HttpRequestAbstract {} -export default HttpRequest; diff --git a/src/utils/http/index.ts b/src/utils/http/index.ts index 97f0bfe..0cc32d1 100644 --- a/src/utils/http/index.ts +++ b/src/utils/http/index.ts @@ -1,6 +1,5 @@ import Request from 'luch-request'; import { assign } from 'lodash-es'; -import { HttpSuccess } from '@/types/http'; import { Toast } from '@/utils/uniapi/prompt'; import { getEnvValue } from '@/utils/env'; import { useAuthStore } from '@/state/modules/auth'; @@ -50,7 +49,7 @@ request.interceptors.request.use( * 响应拦截器 */ request.interceptors.response.use( - async (response: HttpSuccess) => { + async (response) => { const { data: resData } = response; const { code, message } = resData; if (code === ResultEnum.SUCCESS) {