|
@@ -9,9 +9,40 @@
|
|
|
</div>
|
|
|
<div class="bullshit">
|
|
|
<div class="bullshit__oops">页面不存在!</div>
|
|
|
- <div class="bullshit__info">请检查您输入的网址是否正确,或单击下面的按钮返回主页</div>
|
|
|
- <el-button @click="go" type="primary" round>跳转首页</el-button>
|
|
|
- <el-button @click="goLogin" type="primary" round>前往登录</el-button>
|
|
|
+
|
|
|
+ <div style="width: 280px; text-align: left; margin-left: 35px">
|
|
|
+ <div style="font-size: 16px; font-weight: bold;padding: 12px">
|
|
|
+ 可以尝试以下操作:
|
|
|
+ </div>
|
|
|
+ <div style="padding: 0 12px; font-size: 14px">
|
|
|
+ <div>
|
|
|
+ 1、同时按住
|
|
|
+ <xc-code code="Ctrl" />
|
|
|
+ +
|
|
|
+ <xc-code code="Shift" />
|
|
|
+ ,<br />
|
|
|
+ 然后按下
|
|
|
+ <xc-code code="Delete "/>。<br />
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div style="padding: 12px 0">
|
|
|
+ 2、此时会跳转到清除浏览数据页面。<br />
|
|
|
+ 时间范围选择 <span style="font-weight: bold">无限</span>
|
|
|
+ 或 <span style="font-weight: bold">所有时间</span>,<br />
|
|
|
+ 点击立即清除。
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div style="padding-bottom: 30px">
|
|
|
+ 3、点击下方 <span style="font-weight: bold">前往登录</span> 按钮,<br />
|
|
|
+ 重新登录系统。
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div style="margin-left: 30px">
|
|
|
+ <el-button size="large" plain @click="go" type="primary" round>跳转首页</el-button>
|
|
|
+ <el-button size="large" @click="goLogin" type="primary" round>前往登录</el-button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -21,9 +52,11 @@
|
|
|
import {defineComponent} from 'vue'
|
|
|
import four from '@/assets/images/404.png'
|
|
|
import four_cloud from '@/assets/images/404_cloud.png'
|
|
|
+import XcCode from "@/components/xiao-chan/code/XcCode.vue";
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: '404',
|
|
|
+ components: {XcCode},
|
|
|
setup() {
|
|
|
return {
|
|
|
four,
|
|
@@ -32,11 +65,11 @@ export default defineComponent({
|
|
|
},
|
|
|
methods: {
|
|
|
go() {
|
|
|
- this.$router.push('/')
|
|
|
+ this.$router.push('/dashboard')
|
|
|
},
|
|
|
goLogin() {
|
|
|
this.$router.push('/login')
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
})
|
|
|
</script>
|
|
@@ -172,7 +205,7 @@ export default defineComponent({
|
|
|
.bullshit {
|
|
|
position: relative;
|
|
|
float: left;
|
|
|
- width: 190px;
|
|
|
+ width: 280px;
|
|
|
padding: 30px 0;
|
|
|
overflow: hidden;
|
|
|
|