From 19fbf8c2c2fcd653f9a0e8df066fe6ae986e405f Mon Sep 17 00:00:00 2001 From: sws <1141121512@qq.com> Date: Tue, 3 Sep 2024 17:27:17 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BC=98=E6=83=A0=E5=88=B8=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E8=81=94=E8=B0=83=20sws=202024-09-03?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/request.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/request.ts b/src/utils/request.ts index d3e50d9f..cacc3264 100644 --- a/src/utils/request.ts +++ b/src/utils/request.ts @@ -21,7 +21,7 @@ service.interceptors.request.use( config.url = config.url + symbol + 'token=' + temp_data.default.temp_token; } else { if (cookie) { - config.url = config.url + symbol + 'token=' + JSON.parse(cookie).token; + config.url = config.url + '&token=' + JSON.parse(cookie).token; } } return config;