dengzedong
5 天以前 3357b5f0f0919f7a52cd32a6d6de0acb14e0daaf
提交 | 用户 | 时间
820397 1 const config: {
H 2   base_url: string
3   result_code: number | string
4   default_headers: AxiosHeaders
5   request_timeout: number
6 } = {
7   /**
8    * api请求基础路径
9    */
10   base_url: import.meta.env.VITE_BASE_URL + import.meta.env.VITE_API_URL,
11   /**
12    * 接口成功返回状态码
13    */
14   result_code: 200,
15
16   /**
17    * 接口请求超时时间
18    */
19   request_timeout: 30000,
20
21   /**
22    * 默认接口请求类型
23    * 可选值:application/x-www-form-urlencoded multipart/form-data
24    */
25   default_headers: 'application/json'
26 }
27
28 export { config }