¶Ô±ÈÐÂÎļþ |
| | |
| | | <template> |
| | | <div class="error-404"> |
| | | <div> |
| | | <div class="left"> |
| | | <img src="../assets/images/404.png"> |
| | | <h1>æ¾ä¸å°ç½é¡µ</h1> |
| | | <p></p> |
| | | <div class="opera"> |
| | | <el-button @click="$router.back()">è¿å</el-button> |
| | | <el-button type="primary" @click="$router.push('/index')">åå¾é¦é¡µ</el-button> |
| | | </div> |
| | | </div> |
| | | <div class="right"> |
| | | <h2>ä½ å¯ä»¥å°è¯ä»¥ä¸æä½</h2> |
| | | <p>1. å¦ææ¯æå¨æ´æ¹çç½é¡µå°åï¼è¯·æ£æ¥ç½é¡µå°åæ¯å¦æ£ç¡®</p> |
| | | <p>2. ç¹å»ãè¿åãæé®å·æ°é¡µé¢åéè¯</p> |
| | | <p>3. è系系ç»ç®¡çå</p> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | name: 'NotFound' |
| | | } |
| | | </script> |
| | | |
| | | <style scoped lang="scss"> |
| | | .error-404 { |
| | | height: 100%; |
| | | text-align: center; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: center; |
| | | & > div { |
| | | margin-top: -100px; |
| | | display: flex; |
| | | } |
| | | .left { |
| | | h1 { |
| | | font-size: 26px; |
| | | } |
| | | .opera { |
| | | margin-top: 30px; |
| | | } |
| | | } |
| | | .right { |
| | | text-align: left; |
| | | margin-top: 16px; |
| | | margin-left: 40px; |
| | | padding: 30px 50px; |
| | | border-radius: 16px; |
| | | background: url("../assets/images/404-tip.png") no-repeat; |
| | | background-size: 100% 100%; |
| | | box-sizing: border-box; |
| | | h2 { |
| | | font-size: 16px; |
| | | margin-bottom: 16px; |
| | | } |
| | | p { |
| | | margin: 0; |
| | | padding: 0; |
| | | font-size: 14px; |
| | | line-height: 26px; |
| | | } |
| | | } |
| | | } |
| | | </style> |