config.js 390 B

1234567891011121314151617181920
  1. import { baseUrl } from '@/config/global'
  2. export default {
  3. method: 'get',
  4. // 基础url前缀
  5. baseUrl: process.env.BASE_URL,
  6. // 请求头信息
  7. headers: {
  8. // "Content-Type": "application/x-www-form-urlencoded",
  9. },
  10. // 参数
  11. data: {},
  12. // 设置超时时间
  13. timeout: 300000,
  14. // 携带凭证
  15. withCredentials: true,
  16. // 返回数据类型
  17. responseType: 'json'
  18. }