You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< div >
< div class = "app-container" >
< el -col :span ="12" >
< img :src ="img_404" alt = "404" class = "img-style" >
< / e l - c o l >
< el -col :span ="12" >
< div style = "margin-left: 100px;margin-top: 60px" >
< h1 class = "color-main" > OOPS ! < / h1 >
< h2 style = "color: #606266" > 很抱歉 , 页面它不小心迷路了 ! < / h2 >
< div style = "color:#909399;font-size: 14px" > 请检查您输入的网址是否正确 , 请点击以下按钮返回主页或者发送错误报告 < / div >
< el -button style = "margin-top: 20px" type = "primary" round @click ="handleGoMain" > 返 回 首 页 < / el -button >
< / div >
< / e l - c o l >
< / div >
< / div >
< / template >
< script >
import img _404 from '@/assets/images/gif_404.gif' ;
export default {
name : 'wrongPage' ,
data ( ) {
return {
img _404
}
} ,
methods : {
handleGoMain ( ) {
this . $router . push ( { path : '/' } )
}
} ,
}
< / script >
< style scoped >
. app - container {
width : 80 % ;
margin : 120 px auto ;
}
. img - style {
width : auto ;
height : auto ;
max - width : 100 % ;
max - height : 100 % ;
}
< / style >