403.vue 734 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div class="page-403">
  3. <img class="img-403" src="@/assets/ZDimages/img_myfwqx.png">
  4. <p class="text-403">抱歉,你无权访问该页面,如有疑问请联系管理员。</p>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: "403"
  10. }
  11. </script>
  12. <style lang="scss" scoped>
  13. .page-403{
  14. width:100%;
  15. height:100%;
  16. flex:1;
  17. display: flex;
  18. }
  19. .img-403{
  20. width:562px;
  21. height:313px;
  22. position: absolute;
  23. top: 50%;
  24. left: 50%;
  25. margin-top:-156px;
  26. margin-left:-281px;
  27. }
  28. .text-403{
  29. position: absolute;
  30. top: 50%;
  31. width: 100%;
  32. margin-top:200px;
  33. font-size:18px;
  34. font-weight:500;
  35. color:#0045AF;
  36. text-align: center;
  37. }
  38. </style>