新增预警页面

This commit is contained in:
2025-12-13 19:13:49 +08:00
parent 00aaf8f54a
commit b209e7d727
25 changed files with 3946 additions and 1292 deletions

View File

@@ -19,7 +19,6 @@ import { setupRouterGuard } from '@jeesite/core/router/guard';
import { setupStore } from '@jeesite/core/store';
import { setupDForm } from '@jeesite/dfm';
// 1. 引入 ECharts全量引入兼容Jeesite所有场景
import * as echarts from 'echarts';
async function bootstrap() {
@@ -57,7 +56,9 @@ async function bootstrap() {
setupDForm();
app.config.globalProperties.$echarts = echarts;
if (window) window.echarts = echarts;
if (typeof window !== 'undefined') {
window.echarts = echarts;
}
app.mount('#app');
}