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;