沙钢智慧能源系统前端代码
houzhongjian
2024-12-05 f5c803e09e10af90988194aa4a2199f5085a50fb
提交 | 用户 | 时间
314507 1 const config: {
H 2   base_url: string
8e4ab7 3   plat_url: string
314507 4   result_code: number | string
H 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   /**
8e4ab7 13    * 平台请求基础路径
H 14    */
f5c803 15   plat_url: import.meta.env.VITE_PLAT_URL + import.meta.env.VITE_API_URL,
8e4ab7 16   /**
314507 17    * 接口成功返回状态码
H 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 }