123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="error">
- <img src="static/img/500.png" alt="">
- <h4>抱歉!服务器出错了~</h4>
- <u-button type="primary" shape="circle" plain>返回首页</u-button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad(...options){
- console.log(options)
- console.log(this.$Route)
- },
- methods: {
-
- }
- }
- </script>
- <style scoped lang="scss">
- .error{
- text-align: center;
- padding: 50px;
- img{
- width: 300px;
- }
- h4{
- font-weight: normal;
- font-size: 16px;
- margin-bottom: 20px;
- }
- }
- </style>
|