94 lines
2.5 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>
<div class="condition">
2025-04-07 18:35:54 +08:00
<el-radio-group v-model="radioType">
<el-radio-button label="时" value="hour" />
<el-radio-button label="天" value="day" />
<el-radio-button label="周" value="week" />
</el-radio-group>
2025-03-31 18:24:37 +08:00
<div class="condition-time">
2025-04-07 18:35:54 +08:00
<el-date-picker v-if="radioType == 'week'" v-model="value" type="week" value-format="YYYY-MM-DD" placeholder="请选择周" @change="handleWeekChange" />
2025-03-31 18:24:37 +08:00
<el-date-picker
2025-04-07 18:35:54 +08:00
v-else
2025-03-31 18:24:37 +08:00
style="width: 350px"
v-model="value1"
type="datetimerange"
format="YYYY-MM-DD HH:mm:ss"
2025-04-07 18:35:54 +08:00
value-format="YYYY-MM-DD HH:mm:ss"
start-placeholder="开始时间"
end-placeholder="结束时间"
@change="handleDateChange"
2025-03-31 18:24:37 +08:00
/>
</div>
</div>
</div>
<slot name="chart"></slot>
</div>
</template>
<script setup>
2025-04-08 18:31:37 +08:00
import { format } from "@/utils";
2025-03-31 18:24:37 +08:00
import { ref } from "vue";
2025-04-07 18:35:54 +08:00
const value = ref("");
2025-03-31 18:24:37 +08:00
const value1 = ref("");
2025-04-07 18:35:54 +08:00
const radioType = ref("hour");
const { api } = defineProps({
api: {
type: Function,
required: true,
},
});
2025-04-08 18:31:37 +08:00
const handleWeekChange = (val) => {
let time = new Date(val).getTime() + 6 * 24 * 60 * 60 * 1000;
api({ type: radioType.value, startDate: `${val} 00:00:00`, endDate: `${format(time, "YYYY-MM-DD")} 00:00:00` });
2025-04-07 18:35:54 +08:00
};
const handleDateChange = (val) => {
api({ type: radioType.value, startDate: val[0], endDate: val[1] });
};
2025-03-31 18:24:37 +08:00
</script>
<style scoped lang="less">
.card {
2025-04-01 18:07:18 +08:00
height: 380px;
2025-03-31 18:24:37 +08:00
height: 100%;
background: #ffffff;
padding: 16px 10px;
box-sizing: border-box;
overflow: hidden;
display: flex;
flex-direction: column;
2025-04-01 13:52:57 +08:00
border-radius: 5px;
box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
2025-04-01 18:07:18 +08:00
margin-bottom: 20px;
2025-03-31 18:24:37 +08:00
.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;
}
}
.condition {
display: flex;
align-items: center;
margin-left: 20px;
.condition-time {
overflow: hidden;
margin-left: 20px;
}
}
}
}
</style>