鞍钢鲅鱼圈能源管控系统前端代码
houzhongjian
2024-12-26 cb6cd26221d8bb2c4b1dca44a87332e9fe6f56ab
提交 | 用户 | 时间
cb6cd2 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    */
15   plat_url: import.meta.env.VITE_PLAT_URL + import.meta.env.VITE_API_URL,
16   /**
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 }