| 1234567891011121314151617181920 |
- import { baseUrl } from '@/config/global'
- export default {
- method: 'get',
- // 基础url前缀
- baseUrl: process.env.BASE_URL,
- // 请求头信息
- headers: {
- // "Content-Type": "application/x-www-form-urlencoded",
- },
- // 参数
- data: {},
- // 设置超时时间
- timeout: 300000,
- // 携带凭证
- withCredentials: true,
- // 返回数据类型
- responseType: 'json'
- }
|