工业互联网平台脚手架前端代码
houzhongjian
2024-09-18 23db5e5c6bfcbd7030a4003cd4ea18fbb920024f
提交 | 用户 | 时间
23db5e 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 }