12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <template>
- <div class="body">
- <img class="logo" src="../../assets/img/logo.png" alt="">
- <div class="title">告警区</div>
- <div style="margin-top: 50px; margin-left: 10px; height: 19vh;">
- <el-scrollbar>
- <div class="scoll" style="margin-left: 5px;">
- <WarningCard></WarningCard>
- </div>
- </el-scrollbar>
- </div>
- </div>
- </template>
- <script>
- import WarningCard from "./warningCard.vue";
- export default {
- components: {
- WarningCard,
- },
- }
- </script>
- <style scoped>
- .body {
- border: 1px solid #373737;
- width: 100%;
- margin-left: 15px;
- margin-top: 10px;
- height: 25vh
- }
- .body .scoll {
- height: 91%;
- }
- .title {
- color: #ffffff;
- font-size: 14px;
- margin-left: 32px;
- /* margin-top: 12px; */
- margin-bottom: 10px;
- /* width: 570px; */
- width: 29vw;
- height: 50px;
- display: flex;
- align-items: center;
- position: absolute;
- background-color: #000000;
- }
- .title::before {
- z-index: 1;
- content: '';
- position: absolute;
- left: -18px !important;
- /* top: 30px !important; */
- width: 5px;
- height: 5px;
- background-color: rgba(230, 191, 65, 1);
- border-radius: 50%;
- }
- .logo {
- position: absolute;
- top: 2px;
- left: 12px;
- }
- </style>
|