123456789101112131415161718192021222324252627282930313233 |
- export default {
- baseURL: '',
- header: {},
- method: 'GET',
- dataType: 'json',
- paramsSerializer: null,
-
- responseType: 'text',
-
- custom: {},
-
- timeout: 60000,
-
-
- sslVerify: true,
-
-
- withCredentials: false,
-
-
- firstIpv4: false,
-
- validateStatus: function validateStatus(status) {
- return status >= 200 && status < 300
- },
-
- forcedJSONParsing: true
- }
|