From f5e66da24d11103d19986d88428e17d6d4dd8b0f Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期四, 27 三月 2025 14:44:10 +0800
Subject: [PATCH] 数据监测

---
 src/main.ts |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/main.ts b/src/main.ts
index ad8cab7..aefa4d8 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -5,15 +5,15 @@
 import { directive } from '/@/directive/index';
 import { i18n } from '/@/i18n/index';
 import other from '/@/utils/other';
-import "@amap/amap-jsapi-types";
+import '@amap/amap-jsapi-types';
 import '/@/extend';
+import YWIcon from '/@/components/icon/index.vue';
 
 import ElementPlus from 'element-plus';
 import '/@/theme/index.scss';
-import VueGridLayout from 'vue-grid-layout';
 import * as ElementPlusIconsVue from '@element-plus/icons-vue';
 import { gotoRoute } from '/@/utils/route';
-
+import { checkWxOperate } from './utils/global';
 
 const app = createApp(App);
 for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
@@ -21,7 +21,8 @@
 }
 directive(app);
 other.elSvg(app);
-app.use(pinia).use(router).use(ElementPlus).use(i18n).use(VueGridLayout).mount('#app');
+app.component('YWIcon', YWIcon);
+app.use(pinia).use(router).use(ElementPlus).use(i18n).mount('#app');
 
 window.openPage = (name, siteId) => {
 	if (siteId) {
@@ -29,3 +30,6 @@
 	}
 	gotoRoute({ name });
 };
+
+
+checkWxOperate();

--
Gitblit v1.9.3