NoRole.vue 692 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div id="content" class="content">
  3. <div>
  4. <img src="/static/assets/client-base-v4/image/computer.png" />
  5. <p style="font-size: 20px;color: #777777">
  6. 您没有权限访问该页面,请点击<a @click="toIndex">返回首页</a>
  7. </p>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. export default {
  13. data: function() {
  14. return {
  15. dashboardArray: [],
  16. moduleDtos: [],
  17. };
  18. },
  19. mounted: function() {
  20. },
  21. methods:{
  22. toIndex: function () {
  23. this.$router.push('/desktop/dashboard');
  24. },
  25. },
  26. };
  27. </script>
  28. <style>
  29. .content{
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. }
  34. </style>