404.vue 523 B

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