#
Junjie
2024-07-01 076844f4c54c75350e8354ad10cd125f98e86458
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import axios from "axios";
import { globalState } from '../config.js'
 
const instance = axios.create({
    baseURL: globalState.url,
    timeout: 30000,
})
 
export const get = (url, params) => {
    return instance({
        url: url,
        method: 'get',
        params: params,
        headers: {
            Authorization: globalState.token
        }
    })
}
 
export const post = (url, data) => {
    return instance({
        url: url,
        method: 'post',
        data: data,
        headers: {
            Authorization: globalState.token
        }
    })
}
 
export const postBlob = (url, data) => {
    return instance({
        url: url,
        method: 'post',
        data: data,
        headers: {
            Authorization: globalState.token
        },
        responseType: 'blob'
    })
}
 
export default instance;