yak_handcuffs/src/views/statisticalCenter/onLineStatistics.vue

47 lines
948 B
Vue
Raw Normal View History

2025-03-31 18:24:37 +08:00
<template>
<div class="deviceStatistics card">
<div class="card-head">
<div class="title">在线设备统计</div>
</div>
<slot name="chart"></slot>
</div>
</template>
<script setup></script>
<style scoped lang="less">
.card {
height: 100%;
background: #ffffff;
padding: 16px 10px;
box-sizing: border-box;
position: relative;
display: flex;
2025-04-01 13:52:57 +08:00
border-radius: 5px;
box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
2025-03-31 18:24:37 +08:00
.card-head {
position: absolute;
color: #061451;
font-size: 20px;
display: flex;
align-items: center;
justify-content: space-between;
2025-04-01 13:52:57 +08:00
transform: translateX(-10px);
2025-03-31 18:24:37 +08:00
.title {
&::before {
display: inline-block;
margin-right: 10px;
content: "";
width: 2px;
height: 14px;
border-radius: 20px;
background: #061451;
}
}
.search {
display: flex;
align-items: center;
}
}
}
</style>