56 lines
1.2 KiB
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>
2025-04-10 13:33:38 +08:00
<el-radio-group v-model="radio" @change="change">
<el-radio-button label="心率" value="1" />
<el-radio-button label="血氧" value="2" />
<el-radio-button label="体表温度" value="3" />
</el-radio-group>
2025-03-31 18:24:37 +08:00
</div>
<slot name="chart"></slot>
</div>
</template>
2025-04-10 13:33:38 +08:00
<script setup lang="ts">
import { ref } from "vue";
const radio = ref("1");
const emit = defineEmits(["change"]);
const change = (e) => {
emit("change", e);
};
</script>
2025-03-31 18:24:37 +08:00
<style scoped lang="less">
.card {
height: 100%;
background: #ffffff;
padding: 16px 10px;
box-sizing: border-box;
.card-head {
color: #061451;
2025-04-08 18:31:37 +08:00
font-size: 18px;
2025-03-31 18:24:37 +08:00
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>