From fd3b66002f23ccaea74a537ff02286d6b69377f4 Mon Sep 17 00:00:00 2001 From: zkqiang Date: Sat, 6 Jun 2020 13:16:42 +0800 Subject: [PATCH] fixed 404 page --- frontend/src/views/404.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/404.vue b/frontend/src/views/404.vue index 7d7a670e..b1fc16ba 100644 --- a/frontend/src/views/404.vue +++ b/frontend/src/views/404.vue @@ -10,7 +10,7 @@
OOPS!
版权所有 - 华尔街见闻 + Crawlab Team
{{ message }}
请检查您输入的网址是否正确,请点击以下按钮返回主页或者发送错误报告
@@ -26,8 +26,13 @@ export default { name: 'Page404', computed: { message () { - return '网管说这个页面你不能进......' + return '这个页面似乎不存在......' } + }, + mounted () { + // remove loading-placeholder + const elLoading = document.querySelector('#loading-placeholder') + elLoading.remove() } }