500.vue 578 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="error">
  3. <img src="static/img/500.png" alt="">
  4. <h4>抱歉!服务器出错了~</h4>
  5. <u-button type="primary" shape="circle" plain>返回首页</u-button>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. onLoad(...options){
  15. console.log(options)
  16. console.log(this.$Route)
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style scoped lang="scss">
  23. .error{
  24. text-align: center;
  25. padding: 50px;
  26. img{
  27. width: 300px;
  28. }
  29. h4{
  30. font-weight: normal;
  31. font-size: 16px;
  32. margin-bottom: 20px;
  33. }
  34. }
  35. </style>