mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
54 lines
1018 B
JavaScript
54 lines
1018 B
JavaScript
import axios from 'axios'
|
|
import router from '../router'
|
|
|
|
let baseUrl = process.env.VUE_APP_BASE_URL ? process.env.VUE_APP_BASE_URL : 'http://localhost:8000'
|
|
|
|
const request = (method, path, params, data) => {
|
|
return new Promise((resolve, reject) => {
|
|
const url = baseUrl + path
|
|
const headers = {
|
|
'Authorization': window.localStorage.getItem('token')
|
|
}
|
|
axios({
|
|
method,
|
|
url,
|
|
params,
|
|
data,
|
|
headers
|
|
})
|
|
.then(resolve)
|
|
.catch(error => {
|
|
console.log(error)
|
|
if (error.response.status === 401) {
|
|
router.push('/login')
|
|
}
|
|
reject(error)
|
|
})
|
|
})
|
|
}
|
|
|
|
const get = (path, params) => {
|
|
return request('GET', path, params)
|
|
}
|
|
|
|
const post = (path, data) => {
|
|
return request('POST', path, {}, data)
|
|
}
|
|
|
|
const put = (path, data) => {
|
|
return request('PUT', path, {}, data)
|
|
}
|
|
|
|
const del = (path, data) => {
|
|
return request('DELETE', path)
|
|
}
|
|
|
|
export default {
|
|
baseUrl,
|
|
request,
|
|
get,
|
|
post,
|
|
put,
|
|
delete: del
|
|
}
|