From 05bc0e7b6898dc56f45d2ac51d770883c68dadb1 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期五, 21 二月 2025 09:00:06 +0800 Subject: [PATCH] jtt808初始化 --- admin/src/utils/request.js | 13 +++++-------- 1 files changed, 5 insertions(+), 8 deletions(-) diff --git a/admin/src/utils/request.js b/admin/src/utils/request.js index 17a1ddd..9821bd0 100644 --- a/admin/src/utils/request.js +++ b/admin/src/utils/request.js @@ -3,6 +3,7 @@ import pkg from '../../package' import { trim } from './util' import cache from '../plugins/cache' +import { Message } from 'element-ui' axios.defaults.headers.common['Content-Type'] = 'application/json;charset=UTF-8' const axiosInstance = axios.create({ @@ -13,7 +14,6 @@ // 鏂板缓璇锋眰鎷︽埅鍣� axiosInstance.interceptors.request.use(config => { - // debugger // 鍙傛暟鍘荤┖鏍� if (config.trim === true) { if (config.data != null) { @@ -31,11 +31,9 @@ config.headers['eva-platform'] = `pc-${pkg.version}` // 璁剧疆璁よ瘉澶� const authToken = Cookies.get('eva-auth-token') - if (authToken != null) { config.headers['eva-auth-token'] = authToken } - // debugger return config }, function (error) { return Promise.reject(error) @@ -43,6 +41,8 @@ // 鏂板缓鍝嶅簲鎷︽埅鍣� axiosInstance.interceptors.response.use((response) => { + + // console.log(response.status) // debugger // 璇锋眰澶辫触 if (response.status !== 200) { @@ -54,12 +54,9 @@ } // 鏈櫥褰� if (response.data.code === 401) { - // window.location.href = '/#/' - // debugger if (response.config.autoLogin !== false) { - // window.location.href = process.env.VUE_APP_ROUTER_MODE === 'history' ? '/#/login' : '/login' - window.location.href = process.env.VUE_APP_CONTEXT_PATH - // window.location.href = '/hfznzzzd_web' + location.reload() + // window.location.href = process.env.VUE_APP_ROUTER_MODE === 'history' ? '/login' : '/#/login' } return Promise.reject(response.data) } -- Gitblit v1.9.3