测试博客提交修正
This commit is contained in:
parent
7fa16c034c
commit
809fe723d8
@ -69,10 +69,10 @@ const toggleMobileMenu = () => {
|
|||||||
|
|
||||||
// 判定
|
// 判定
|
||||||
const windowWidth = ref(window.innerWidth);
|
const windowWidth = ref(window.innerWidth);
|
||||||
const isMobile = ref(window.innerWidth < 1100)
|
const isMobile = ref(window.innerWidth < 980)
|
||||||
const handleResize = () => {
|
const handleResize = () => {
|
||||||
windowWidth.value = window.innerWidth;
|
windowWidth.value = window.innerWidth;
|
||||||
isMobile.value = window.innerWidth < 1100
|
isMobile.value = window.innerWidth < 980
|
||||||
if (!isMobile.value) {
|
if (!isMobile.value) {
|
||||||
showMobileMenu.value = false // 桌面端时关闭移动菜单
|
showMobileMenu.value = false // 桌面端时关闭移动菜单
|
||||||
}
|
}
|
||||||
|
@ -266,7 +266,8 @@ const submitBlog = async () => {
|
|||||||
}
|
}
|
||||||
swal.tip('error', '提交失败, code字段不为0')
|
swal.tip('error', '提交失败, code字段不为0')
|
||||||
}).catch((e) => {
|
}).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;
|
api.defaults.baseURL = tempURL;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user