This action will force synchronization from Elune/eladmin-web, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
import axios from 'axios'import router from '@/router/routers'import { Notification, MessageBox } from 'element-ui'import store from '../store'import { getToken } from '@/utils/auth'import Config from '@/settings'// 创建axios实例const service = axios.create({baseURL: process.env.NODE_ENV === 'production' ? process.env.VUE_APP_BASE_API : '/', // api 的 base_urltimeout: Config.timeout // 请求超时时间})// request拦截器service.interceptors.request.use(config => {if (getToken()) {config.headers['Authorization'] = getToken() // 让每个请求携带自定义token 请根据实际情况自行修改}config.headers['Content-Type'] = 'application/json'return config},error => {// Do something with request errorconsole.log(error) // for debugPromise.reject(error)})// response 拦截器service.interceptors.response.use(response => {const code = response.statusif (code < 200 || code > 300) {Notification.error({title: response.message})return Promise.reject('error')} else {return response.data}},error => {let code = 0try {code = error.response.data.status} catch (e) {if (error.toString().indexOf('Error: timeout') !== -1) {Notification.error({title: '网络请求超时',duration: 5000})return Promise.reject(error)}}if (code) {if (code === 401) {MessageBox.confirm('登录状态已过期,您可以继续留在该页面,或者重新登录','系统提示',{confirmButtonText: '重新登录',cancelButtonText: '取消',type: 'warning'}).then(() => {store.dispatch('LogOut').then(() => {location.reload() // 为了重新实例化vue-router对象 避免bug})})} else if (code === 403) {router.push({ path: '/401' })} else {const errorMsg = error.response.data.messageif (errorMsg !== undefined) {Notification.error({title: errorMsg,duration: 5000})}}} else {Notification.error({title: '接口请求失败',duration: 5000})}return Promise.reject(error)})export default service
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。