wujingjing
2025-03-21 b8a912728dc9f46504626d3384b4314b9d75bde3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { createApp } from 'vue';
import pinia from '/@/stores/index';
import App from '/@/App.vue';
import router from '/@/router/index';
import { directive } from '/@/directive/index';
import { i18n } from '/@/i18n/index';
import other from '/@/utils/other';
import '@amap/amap-jsapi-types';
import '/@/extend';
import YWIcon from '/@/components/icon/index.vue';
 
import ElementPlus from 'element-plus';
import '/@/theme/index.scss';
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)) {
    app.component(key, component);
}
directive(app);
other.elSvg(app);
app.component('YWIcon', YWIcon);
app.use(pinia).use(router).use(ElementPlus).use(i18n).mount('#app');
 
window.openPage = (name, siteId) => {
    if (siteId) {
        window.moduleConfig.comprehensive.logicSite.defaultSelectID = siteId;
    }
    gotoRoute({ name });
};
 
 
checkWxOperate();