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
28 lines
453 B
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<Teleport to="body">
|
|
<div class="mask-box">
|
|
设备急停中
|
|
</div>
|
|
</Teleport>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.mask-box {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: var(--el-color-danger);
|
|
font-size: 50px;
|
|
z-index: 10000;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
</style>
|