告警数据统计

This commit is contained in:
仲么了
2024-03-01 15:11:16 +08:00
parent df68b7bcd2
commit cc515b627e
5 changed files with 444 additions and 155 deletions

View File

@@ -0,0 +1,16 @@
<template>
<div class="second-sheet">
<slot></slot>
</div>
</template>
<!-- 注意父元素要有定位属性 -->
<style lang="scss">
.second-sheet {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 2;
}
</style>