|
@@ -1,7 +1,10 @@
|
|
|
<template>
|
|
|
<div class="airSwitch">
|
|
|
<div class="airWrap">
|
|
|
- <div class="container" id="container"></div>
|
|
|
+ <div
|
|
|
+ class="container"
|
|
|
+ id="container"
|
|
|
+ ></div>
|
|
|
<div class="air-title">
|
|
|
<span> {{ airStatus ? "空调已开启" : "空调已关闭" }}</span>
|
|
|
</div>
|
|
@@ -26,12 +29,16 @@ export default defineComponent({
|
|
|
const { airValue, airStatus } = useAirSwitch();
|
|
|
const allData = reactive({
|
|
|
airStatus: airStatus,
|
|
|
+ achart: null,
|
|
|
});
|
|
|
watch(airValue, (newValue, oldValue) => {
|
|
|
initChart();
|
|
|
});
|
|
|
|
|
|
const initChart = () => {
|
|
|
+ if (allData.achart) {
|
|
|
+ allData.achart.destroy();
|
|
|
+ }
|
|
|
var avalue = airValue.value || 0;
|
|
|
const data = [
|
|
|
{ type: "开启", value: avalue },
|
|
@@ -82,11 +89,12 @@ export default defineComponent({
|
|
|
offsetY: 26,
|
|
|
});
|
|
|
chart.render();
|
|
|
+ allData.achart = chart;
|
|
|
|
|
|
interval.elements[0].setState("active", true); //将第一个数据设置成 选中状态
|
|
|
};
|
|
|
onMounted(() => {
|
|
|
- // initChart();
|
|
|
+ //initChart();
|
|
|
});
|
|
|
// onMounted(() => {
|
|
|
// const data = [
|
|
@@ -151,7 +159,7 @@ export default defineComponent({
|
|
|
}
|
|
|
|
|
|
.container {
|
|
|
- height: 200px;
|
|
|
+ height: 210px;
|
|
|
}
|
|
|
|
|
|
.air-title {
|