Files
sionrui/frontend/config/axios/config.js

24 lines
413 B
JavaScript
Raw Normal View History

2025-11-10 00:59:40 +08:00
const config = {
/**
* api请求基础路径
*/
2025-11-11 23:51:17 +08:00
2025-11-10 00:59:40 +08:00
/**
* 接口成功返回状态码
*/
result_code: 200,
/**
* 接口请求超时时间
*/
request_timeout: 30000,
/**
* 默认接口请求类型
* 可选值application/x-www-form-urlencoded multipart/form-data
*/
default_headers: 'application/json'
}
export { config }