From 809fe723d8a106207fc52e9c09fd579841410414 Mon Sep 17 00:00:00 2001 From: Guarp Date: Sat, 8 Mar 2025 16:23:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=8D=9A=E5=AE=A2=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/NavBar.vue | 4 ++-- src/pages/Editor.vue | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index d922bbd..7ee2d6a 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -69,10 +69,10 @@ const toggleMobileMenu = () => { // 判定 const windowWidth = ref(window.innerWidth); -const isMobile = ref(window.innerWidth < 1100) +const isMobile = ref(window.innerWidth < 980) const handleResize = () => { windowWidth.value = window.innerWidth; - isMobile.value = window.innerWidth < 1100 + isMobile.value = window.innerWidth < 980 if (!isMobile.value) { showMobileMenu.value = false // 桌面端时关闭移动菜单 } diff --git a/src/pages/Editor.vue b/src/pages/Editor.vue index fddef79..1bab9d0 100644 --- a/src/pages/Editor.vue +++ b/src/pages/Editor.vue @@ -266,7 +266,8 @@ const submitBlog = async () => { } swal.tip('error', '提交失败, code字段不为0') }).catch((e) => { - swal.tip('error', `错误${e.message}`) + swal.window('error', '错误', `${e.message}\n${e.code}`, 'ok','ok') + swal.tip('error', `${e.message}\n${e.code}`) }); api.defaults.baseURL = tempURL;