You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
169 lines
4.0 KiB
169 lines
4.0 KiB
import Vue from 'vue'
|
|
import axios from 'axios'
|
|
import router from '@/router'
|
|
import qs from 'qs'
|
|
import merge from 'lodash/merge'
|
|
import { clearLoginInfo } from '@/utils'
|
|
|
|
const http = axios.create({
|
|
timeout: 1000 * 300,
|
|
withCredentials: true,
|
|
headers: {
|
|
'Content-Type': 'application/json; charset=utf-8'
|
|
}
|
|
})
|
|
|
|
|
|
|
|
/**
|
|
* 请求拦截
|
|
*/
|
|
http.interceptors.request.use(config => {
|
|
config.headers['token'] =Vue.cookie.get('token') // 请求头带上token
|
|
return config
|
|
}, error => {
|
|
return Promise.reject(error)
|
|
})
|
|
|
|
/**
|
|
* 响应拦截 可自定义统一返回结果
|
|
*/
|
|
http.interceptors.response.use(response => {
|
|
if (response.data && response.data.code === 401) { // 401, token失效
|
|
clearLoginInfo()
|
|
router.push({ name: 'login' })
|
|
}
|
|
return response
|
|
}, error => {
|
|
return Promise.reject(error)
|
|
})
|
|
|
|
/**
|
|
* 请求地址处理
|
|
* @param {*} actionName action方法名称
|
|
*/
|
|
http.adornUrl = (actionName) => {
|
|
// 非生产环境 && 开启代理, 接口前缀统一使用[/proxyApi/]前缀做代理拦截!
|
|
return (process.env.NODE_ENV !== 'production' && process.env.OPEN_PROXY ? '/proxyApi/' : window.SITE_CONFIG.baseUrl) + actionName
|
|
}
|
|
|
|
/**
|
|
* get请求参数处理
|
|
* @param {*} params 参数对象
|
|
* @param {*} openDefultParams 是否开启默认参数?
|
|
*/
|
|
http.adornParams = (params = {}, openDefultParams = true) => {
|
|
var defaults = {
|
|
't': new Date().getTime()
|
|
}
|
|
return openDefultParams ? merge(defaults, params) : params
|
|
}
|
|
|
|
/**
|
|
* post请求数据处理
|
|
* @param {*} data 数据对象
|
|
* @param {*} openDefultdata 是否开启默认数据?
|
|
* @param {*} contentType 数据格式
|
|
* json: 'application/json; charset=utf-8'
|
|
* form: 'application/x-www-form-urlencoded; charset=utf-8'
|
|
*/
|
|
http.adornData = (data = {}, openDefultdata = true, contentType = 'json') => {
|
|
var defaults = {
|
|
't': new Date().getTime()
|
|
}
|
|
data = openDefultdata ? merge(defaults, data) : data
|
|
return contentType === 'json' ? JSON.stringify(data) : qs.stringify(data)
|
|
}
|
|
|
|
export default http
|
|
|
|
// ---------------------------------------------- 封装 post 和 get
|
|
|
|
const instance = axios.create({
|
|
baseURL: (process.env.NODE_ENV !== 'production' && process.env.OPEN_PROXY ? '/proxyApi/' : window.SITE_CONFIG.baseUrl) ,
|
|
timeout: 10000 * 30,
|
|
withCredentials: true,
|
|
headers: {
|
|
'Content-Type': 'application/json; charset=utf-8'
|
|
}
|
|
})
|
|
|
|
/**
|
|
* 请求拦截
|
|
*/
|
|
instance.interceptors.request.use(config => {
|
|
config.headers['token'] =Vue.cookie.get('token') // 请求头带上token
|
|
return config
|
|
}, error => {
|
|
return Promise.reject(error)
|
|
})
|
|
|
|
/**
|
|
* 响应拦截
|
|
*/
|
|
instance.interceptors.response.use(response => {
|
|
if (response.data && response.data.code === 401) { // 401, token失效
|
|
clearLoginInfo()
|
|
router.push({ name: 'login' })
|
|
}
|
|
return response
|
|
}, error => {
|
|
return Promise.reject(error)
|
|
})
|
|
|
|
|
|
// ============================= 下载功能的请求 =============================
|
|
const instance2 = axios.create({
|
|
baseURL: (process.env.NODE_ENV !== 'production' && process.env.OPEN_PROXY ? '/proxyApi/' : window.SITE_CONFIG.baseUrl),
|
|
timeout: 10000 * 30,
|
|
withCredentials: true,
|
|
responseType: 'blob',
|
|
headers: {
|
|
'Content-Type': 'application/json; charset=utf-8'
|
|
}
|
|
})
|
|
|
|
/**
|
|
* 请求拦截
|
|
*/
|
|
instance2.interceptors.request.use(config => {
|
|
config.headers['token'] = Vue.cookie.get('token') // 请求头带上token
|
|
return config
|
|
}, error => {
|
|
return Promise.reject(error)
|
|
})
|
|
|
|
/**
|
|
* 响应拦截
|
|
*/
|
|
instance2.interceptors.response.use(response => {
|
|
if (response.data && response.data.code === 401) { // 401, token失效
|
|
clearLoginInfo()
|
|
router.push({name: 'login'})
|
|
}
|
|
return response
|
|
}, error => {
|
|
return Promise.reject(error)
|
|
})
|
|
|
|
|
|
export const createAPI = (url, method, data, type) => {
|
|
let config = {}
|
|
if (method === 'get') {
|
|
config.params = data
|
|
} else {
|
|
config.data = data
|
|
}
|
|
if (data === 777 || type === 'download'){ // 下载功能的请求
|
|
return instance2({
|
|
url,
|
|
method,
|
|
...config
|
|
})
|
|
}
|
|
return instance({
|
|
url,
|
|
method,
|
|
...config
|
|
})
|
|
}
|