From b3bc235df5e665e07ca0e793d046d42280c8f42c Mon Sep 17 00:00:00 2001 From: chilingling Date: Tue, 30 Jan 2024 00:08:54 -0800 Subject: [PATCH] =?UTF-8?q?fix(http):=20=E4=BC=98=E5=8C=96=20http=20?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=8A=A5=E9=94=99=20ui,=20=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E4=B8=8D=E5=B1=95=E7=A4=BA=E5=9C=A8=20title?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/http/src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/http/src/index.js b/packages/http/src/index.js index b4c9c8943d..25cbf44d91 100644 --- a/packages/http/src/index.js +++ b/packages/http/src/index.js @@ -38,8 +38,8 @@ const loginVM = createApp(Login).mount(loginDom) const showError = (url, message) => { globalNotify({ type: 'error', - title: `接口 ${url} 请求报错`, - message: `报错信息: ${message}` + title: '接口报错', + message: `报错接口: ${url} \n报错信息: ${message ?? ''}` }) }