| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <template>
- <div class="wrapper">
- <div class="http404-container">
- <img :onerror='`this.src="${require("@/assets/noimgsrc.png")}"`'
- class="pic"
- src="@/assets/404_images/404.png"
- alt="">
- <div class="title">抱歉,您要访问的页面丢失了</div>
- <div class="desc">请检查您输入的网址是否正确,请点击以下按钮返回首页</div>
- <div
- class="btn"
- @click="handleBack">
- 返回首页
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'Page404',
- methods: {
- handleBack() {
- this.$router.push('/')
- }
- }
- }
- </script>
- <style rel="stylesheet/scss" lang="scss" scoped>
- .wrapper {
- position: relative;
- }
- .http404-container {
- position: relative;
- top: 50%;
- transform: translateY(-50%);
- .pic {
- width: 600px;
- display: block;
- margin: 0 auto;
- }
- .title {
- width: 100%;
- text-align: center;
- font-size: 24px;
- color: #111;
- line-height: 38px;
- margin-top: 77px;
- }
- .desc {
- width: 100%;
- font-size: 18px;
- color: #777;
- text-align: center;
- line-height: 38px;
- margin-top: 8px;
- }
- .btn {
- width: 125px;
- height: 44px;
- text-align: center;
- font-size: 14px;
- color: #fefefe;
- line-height: 44px;
- background: #2362FB;
- border-radius: 6px;
- margin: 50px auto 0;
- cursor: pointer;
- }
- }
- @media screen and (max-width: 1500px) {
- .http404-container {
- .pic {
- width: 500px;
- }
- .title {
- margin-top: 50px;
- }
- .btn {
- margin-top: 40px;
- }
- }
- }
- </style>
|