测试博客提交修正

This commit is contained in:
Guarp 2025-03-08 16:23:31 +08:00
parent 7fa16c034c
commit 809fe723d8
2 changed files with 4 additions and 3 deletions

View File

@ -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 //
}

View File

@ -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;