选煤厂安全管理系统前端代码
houzhongjian
2024-12-05 91f388437368c1e34218d7d56421153a6d63019e
提交 | 用户 | 时间
37b204 1 const config: {
H 2   base_url: string
3   plat_url: string
4   result_code: number | string
5   default_headers: AxiosHeaders
6   request_timeout: number
7 } = {
8   /**
9    * api请求基础路径
10    */
11   base_url: import.meta.env.VITE_BASE_URL + import.meta.env.VITE_API_URL,
12   /**
13    * 平台请求基础路径
14    */
91f388 15   plat_url: import.meta.env.VITE_PLAT_URL + import.meta.env.VITE_API_URL,
37b204 16   /**
H 17    * 接口成功返回状态码
18    */
19   result_code: 200,
20
21   /**
22    * 接口请求超时时间
23    */
24   request_timeout: 30000,
25
26   /**
27    * 默认接口请求类型
28    * 可选值:application/x-www-form-urlencoded multipart/form-data
29    */
30   default_headers: 'application/json'
31 }
32
33 export { config }