404.vue 824 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view>
  3. <view>
  4. <!-- 显示404错误页面标题 -->
  5. <text style="font-size: 25px;color: #333;">
  6. 404 页面未找到
  7. </text>
  8. </view>
  9. <view>
  10. <!-- 显示错误消息 -->
  11. <text style="font-size: 18px;color: #999;">
  12. {{errMsg}}
  13. </text>
  14. </view>
  15. <!-- 在非H5环境下显示fix-window组件 -->
  16. <!-- #ifndef H5 -->
  17. <fix-window />
  18. <!-- #endif -->
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. }
  26. },
  27. onLoad(query) {
  28. this.errMsg = query.errMsg || ''
  29. },
  30. methods: {
  31. }
  32. }
  33. </script>
  34. <style>
  35. /* #ifndef H5 */
  36. page {
  37. padding-top: 85px;
  38. }
  39. /* #endif */
  40. </style>