| 1234567891011121314151617181920212223 |
- <template>
- <div class="no-permission">
- <img :src="emptyNoRights" />
- <span>无访问权限</span>
- </div>
- </template>
- <script setup>
- import emptyNoRights from "@/assets/empty__no_rights.png";
- </script>
- <style lang="scss">
- .no-permission {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- min-height: 500px;
- span {
- font-size: 14px;
- color: #999999;
- }
- }
- </style>
|