延迟请求超时时间

This commit is contained in:
Pan 2017-08-29 14:33:04 +08:00
parent 115b2b0f7d
commit f65e714e9e
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import { getToken } from '@/utils/auth';
// 创建axios实例 // 创建axios实例
const service = axios.create({ const service = axios.create({
baseURL: process.env.BASE_API, // api的base_url baseURL: process.env.BASE_API, // api的base_url
timeout: 5000 // 请求超时时间 timeout: 15000 // 请求超时时间
}); });
// request拦截器 // request拦截器