dcc
2024-06-13 d583372447e4958fed5b5d5004f98baf6ce433f1
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import axios from 'axios'
import config from '@/config/config'
import { getToken, removeAll } from '@/utils/auth'
import { signatureGenerate } from '@/utils/crypto'
import { Notification } from 'element-ui'
 
// 创建 axios 实例
const request = axios.create({
  // API 请求的默认前缀
  baseURL: config.BASE_API_URL,
 
  // 请求超时时间
  timeout: 20000,
})
 
/**
 * 异常拦截处理器
 *
 * @param {*} error
 */
const errorHandler = error => {
  // 判断是否是响应错误信息
  if (error.response) {
    if (error.response.status == 401) {
      removeAll()
      location.reload()
    } else if (error.response.status == 403) {
      Notification({
        title: '警告',
        type: 'warning',
        message: '无权限操作 ...',
        position: 'top-right',
      })
    } else {
      Notification({
        message: '网络异常,请稍后再试...',
        position: 'top-right',
      })
    }
  }
 
  return Promise.reject(error)
}
 
// 请求拦截器
request.interceptors.request.use(config => {
  const token = getToken()
  if (token) {
    config.headers['Authorization'] = `Bearer ${token}`
  }
  const signature = signatureGenerate();
  config.headers["Sign"] = signature.signature;
  config.headers["Systemrandom"] = signature.systemRandom;
  config.headers["Tissuepaper"] = signature.timestamp;
 
  // console.log("config => " + JSON.stringify(config));
 
  return config
}, errorHandler)
 
// 响应拦截器
request.interceptors.response.use(response => {
  return response.data
}, errorHandler)
 
/**
 * GET 请求
 *
 * @param {String} url
 * @param {Object} data
 * @param {Object} options
 * @returns {Promise<any>}
 */
export const get = (url, data = {}, options = {}) => {
  return request({
    url,
    params: data,
    method: 'get',
    ...options,
  })
}
 
/**
 * POST 请求
 *
 * @param {String} url
 * @param {Object} data
 * @param {Object} options
 * @returns {Promise<any>}
 */
export const post = (url, data = {}, options = {}) => {
  return request({
    url,
    method: 'post',
    data: data,
    ...options,
  })
}
 
/**
 * 上传文件 POST 请求
 *
 * @param {String} url
 * @param {Object} data
 * @param {Object} options
 * @returns {Promise<any>}
 */
export const upload = (url, data = {}, options = {}) => {
  return request({
    url,
    method: 'post',
    data: data,
    ...options,
  })
}