金币系统前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
593 B

  1. <script setup>
  2. import { ref, onMounted, reactive, computed, nextTick } from "vue";
  3. const image = "../src/assets/hqz大拇指.png";
  4. </script>
  5. <template>
  6. <el-row>
  7. <el-col>
  8. <div>
  9. <p style="font-size: 50px; font-weight: bold; text-align: center;">
  10. 暂无权限
  11. </p>
  12. <p style="font-size: 60px; font-weight: bold; text-align: center;">
  13. 请联系管理员添加权限
  14. </p>
  15. </div>
  16. </el-col>
  17. </el-row>
  18. </template>
  19. <style scoped></style>