123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- import Vue from 'vue'
- import axios from 'axios'
- import {
- MessageBox,
- Message
- } from 'element-ui'
- import store from '@/store'
- import router from '@/router'
- import {
- getToken, removeToken
- } from '@/utils/auth'
- const baseURL = process.env.VUE_APP_DOMAIN_PREFIX
- // create an axios instance
- Vue.prototype.axios = axios
- axios.defaults.timeout = 30000
- const service = axios.create({
- baseURL, // url = base url + request url
- // withCredentials: true, // send cookies when cross-domain requests
- timeout: 30000 // request timeout
- })
- export const uploadUrl = `${baseURL}/file/upload`
- export const token = getToken()
- // request interceptor
- service.interceptors.request.use(
- (config) => {
- // console.log(config)
- if (store.getters.token) {
- config.headers['Authorization-admin'] = getToken()
- config.headers['Content-Type'] = 'application/json; charset=UTF-8'
- // config.headers['type'] = ' admin'
- }
- return config
- },
- (error) => {
- console.log(error) // for debug
- return Promise.reject(error)
- }
- )
- // response interceptor
- service.interceptors.response.use(
- (response) => {
- const res = response.data
- if (response.config.responseType === 'blob') {
- console.log(response.data)
- return response.data
- }
- if (res.code !== '' && res.code != 200) {
- Message({
- message: res.message || 'Error',
- type: 'error',
- duration: 5 * 1000
- })
- // 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired;
- /**
- token为空 20003
- public static final String TOKEN_IS_NULL = "20003";
- token认证失败
- public static final String TOKEN_APPROVE_ERROR = "20004";
- 请先登录
- public static final String USER_NOT_LOGIN = "20005";
- */
- const tokenerr = [20003, '20003', 20004, '20004', 20005, '20005']
- if (tokenerr.includes(res.code)) {
- localStorage.clear()
- removeToken()
- router.push({ path: '/login' })
- location.reload()
- }
- if (res.code === 50008 || res.code === 50012 || res.code === 50014) {
- // to re-login
- MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again', 'Confirm logout', {
- confirmButtonText: 'Re-Login',
- cancelButtonText: 'Cancel',
- type: 'warning'
- }).then(() => {
- store.dispatch('user/resetToken').then(() => {
- location.reload()
- })
- })
- }
- return Promise.reject(new Error(res.message || 'Error'))
- }
- return res
- },
- (error) => {
- if (!error.message.includes('timeout')) {
- Message({
- message: '服务器暂无响应,请稍后重试',
- type: 'error',
- duration: 5 * 1000
- })
- }
- return Promise.reject(error)
- }
- )
- export default service
|