403.vue 816 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view id="noPermission">
  3. <img class='noPermission-img' src="@/pages/images/img_myfwqx.png">
  4. <view class="noPermission-text">抱歉,你无权访问该页面,如有疑问请联系管理员。</view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. onLoad() {
  14. },
  15. onShow() {
  16. },
  17. methods: {
  18. },
  19. }
  20. </script>
  21. <style lang="stylus" scoped>
  22. #noPermission {
  23. height: 100%;
  24. position: relative;
  25. .noPermission-img {
  26. width: 562rpx;
  27. height: 313rpx;
  28. position: absolute;
  29. top: 50%;
  30. left: 50%;
  31. margin-top: -156rpx;
  32. margin-left: -281rpx;
  33. }
  34. .noPermission-text {
  35. position: absolute;
  36. top: 50%;
  37. width: 100%;
  38. margin-top: 200rpx;
  39. font-size: 28rpx;
  40. font-weight: 500;
  41. color: #0045AF;
  42. text-align: center;
  43. }
  44. }
  45. </style>