去除多余代码

This commit is contained in:
lai
2024-02-01 15:23:08 +08:00
parent 0541c57da9
commit 688c96ec72

View File

@@ -38,19 +38,7 @@ type EChartsOption = echarts.ComposeOption<
| LegendComponentOption
| LineSeriesOption
>;
/**设置定时器ID */
let timeoutDuration = 5 * 1000; // 设置5s进行刷新请求
let loadId: any = null;
// // 定时制图
// function resetTimeout() {
// if (loadId) {
// clearInterval(loadId);
// }
// loadId = setInterval(() => {
// initPicture();
// }, timeoutDuration);
// }
/**定时器ID */
const timeoutId = ref<any>(null);