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.

28 lines
453 B

3 months ago
3 months ago
3 months ago
  1. <script setup lang="ts">
  2. </script>
  3. <template>
  4. <Teleport to="body">
  5. <div class="mask-box">
  6. 设备急停中
  7. </div>
  8. </Teleport>
  9. </template>
  10. <style scoped lang="scss">
  11. .mask-box {
  12. position: absolute;
  13. width: 100%;
  14. height: 100%;
  15. background: rgba(0, 0, 0, 0.7);
  16. display: flex;
  17. justify-content: center;
  18. align-items: center;
  19. color: var(--el-color-danger);
  20. font-size: 50px;
  21. z-index: 10000;
  22. top: 0;
  23. left: 0;
  24. }
  25. </style>