404.vue 561 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="container">
  3. <view class="img">
  4. <img src="../static/imgs/404.png">
  5. </view>
  6. <view class="msg">
  7. 暂无权限
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. }
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .container {
  21. padding-top: 218rpx;
  22. width: 100vw;
  23. height: 100vh;
  24. background-color: #fff;
  25. .img {
  26. margin: 0 auto;
  27. width: 480rpx;
  28. height: 508rpx;
  29. img {
  30. width: 100%;
  31. height: 100%;
  32. }
  33. }
  34. .msg {
  35. text-align: center;
  36. color: #5792F0;
  37. }
  38. }
  39. </style>