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.
 
 
 
 
 
 

39 lines
657 B

<template>
<view class="error-page">
<view class="error-code">404</view>
<view class="error-message">页面不存在或访问链接已失效</view>
</view>
</template>
<script>
</script>
<style scoped>
.error-page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f5f5f5;
}
.error-code {
font-size: 120rpx;
font-weight: bold;
color: #999;
margin-bottom: 30rpx;
}
.error-message {
font-size: 32rpx;
color: #666;
margin-bottom: 60rpx;
}
.back-btn {
background-color: #007aff;
color: #fff;
border-radius: 10rpx;
padding: 20rpx 60rpx;
font-size: 32rpx;
}
</style>