// API基础配置
|
export const baseURL = process.env.NODE_ENV === 'development'
|
? 'https://test785122.iben-itech.com' // 开发环境 http://192.168.1.131:8080
|
: 'https://test785122.iben-itech.com' // 生产环境 https://skfq.itech-zwbbg.cn
|
|
// API接口版本
|
export const apiVersion = '/api/v2'
|
|
// 请求超时时间
|
export const timeout = 60000
|