From 54849757852f6ab40eb17afbd03d1d839b60a38d Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 13 Nov 2023 17:09:15 +0800
Subject: [PATCH] 重复定时和连续执行

---
 src/api/http/request.ts |   17 ++++++++++-------
 1 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/src/api/http/request.ts b/src/api/http/request.ts
index 3c98119..2c57cc5 100644
--- a/src/api/http/request.ts
+++ b/src/api/http/request.ts
@@ -1,3 +1,4 @@
+
 import axios from 'axios'
 import { uuidv4 } from '/@/utils/uuid'
 import { CURRENT_CONFIG } from './config'
@@ -10,19 +11,18 @@
 function getAuthToken () {
   return localStorage.getItem(ELocalStorageKey.Token)
 }
-
 const instance = axios.create({
   // withCredentials: true,
   headers: {
     'Content-Type': 'application/json',
   },
+  baseURL: import.meta.env.VITE_BASE_API,
   // timeout: 12000,
 })
 
 instance.interceptors.request.use(
   config => {
-    config.headers[ELocalStorageKey.Token] = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ3b3Jrc3BhY2VfaWQiOiJlM2RlYTBmNS0zN2YyLTRkNzktYWU1OC00OTBhZjMyMjgwNjkiLCJzdWIiOiJDbG91ZEFwaVNhbXBsZSIsInVzZXJfdHlwZSI6IjEiLCJuYmYiOjE2OTQ2MDMwOTQsImxvZyI6IkxvZ2dlcltjb20uZGppLnNhbXBsZS5jb21tb24ubW9kZWwuQ3VzdG9tQ2xhaW1dIiwiaXNzIjoiREpJIiwiaWQiOiJhMTU1OWU3Yy04ZGQ4LTQ3ODAtYjk1Mi0xMDBjYzQ3OTdkYTIiLCJleHAiOjE3ODEwMDMwOTQsImlhdCI6MTY5NDYwMzA5NCwidXNlcm5hbWUiOiJhZG1pblBDIn0.EuYY3zwbTVdJuE1_3x_ZbrBT83JcbaC_dLaIIwm795k'
-    config.baseURL = CURRENT_CONFIG.baseURL
+    config.headers[ELocalStorageKey.Token] = localStorage.getItem(ELocalStorageKey.Token)
     // config.headers[REQUEST_ID] = uuidv4()
     // config.baseURL = CURRENT_CONFIG.baseURL
     return config
@@ -35,7 +35,10 @@
 instance.interceptors.response.use(
   response => {
     // console.info('URL: ' + response.config.baseURL + response.config.url, '\nData: ', response.data, '\nResponse:', response)
-
+    const whiteList = ['/manage/api/v1/live/streams/stop']
+    if (whiteList.includes(response.config.url)) {
+      return Promise.reject(response.data)
+    }
     // 处理消息返回
     // if (response.data.code && !response.data.success) {
     //   message.error(response.data.message)
@@ -61,11 +64,11 @@
     }
     // @See: https://github.com/axios/axios/issues/383
     if (!err.response || !err.response.status) {
-      message.error('The network is abnormal, please check the backend service and try again')
+      message.error('网络异常,请检查后端服务后重试')
       return
     }
     if (err.response?.status !== 200) {
-      message.error(`ERROR_CODE: ${err.response?.status}`)
+      message.error(`错误码: ${err.response?.status}`)
     }
     // if (err.response?.status === 403) {
     //   // window.location.href = '/'
@@ -75,7 +78,7 @@
       const flag: number = Number(localStorage.getItem(ELocalStorageKey.Flag))
       switch (flag) {
         case EUserType.Web:
-          router.push(ERouterName.PROJECT)
+          router.push(ERouterName.PROJECT_LIST)
           break
         case EUserType.Pilot:
           router.push(ERouterName.PILOT)

--
Gitblit v1.9.3