From 22bece93435158d575297f200454c4ef2841070f Mon Sep 17 00:00:00 2001
From: dengzedong <dengzedong@email>
Date: 星期四, 05 十二月 2024 10:40:05 +0800
Subject: [PATCH] 1.模型输入参数删除逻辑调整 2.调度模型信息关联模型库 3.关联项目不能为空

---
 src/main.ts |   84 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 84 insertions(+), 0 deletions(-)

diff --git a/src/main.ts b/src/main.ts
index 76c7247..4694019 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -4,6 +4,19 @@
 // 导入全局的svg图标
 import '@/plugins/svgIcon'
 
+import Iconify from '@iconify/iconify'
+import epJson from '@iconify/json/json/ep.json'
+import faJson from '@iconify/json/json/fa.json'
+import faSolidJson from '@iconify/json/json/fa-solid.json'
+
+Iconify.addCollection(epJson)
+Iconify.addCollection(faJson)
+Iconify.addCollection(faSolidJson)
+
+export * from '@iconify/iconify'
+
+export default Iconify
+
 // 初始化多语言
 import { setupI18n } from '@/plugins/vueI18n'
 
@@ -42,6 +55,20 @@
 
 import VueDOMPurifyHTML from 'vue-dompurify-html' // 解决v-html 的安全隐患
 
+import WujieVue from 'wujie-vue3'
+
+const { setupApp } = WujieVue
+
+import hostMap from "@/utils/hostMap";
+
+import { micros } from '@/utils/micors'
+
+import lifecycles from '@/utils/lifecycles' // 生命周期函数
+
+// import credentialsFetch from "@/utils/fetch";
+
+const isProduction = process.env.NODE_ENV === "production";
+
 // 创建实例
 const setupAll = async () => {
   const app = createApp(App)
@@ -64,9 +91,66 @@
 
   app.use(VueDOMPurifyHTML)
 
+  app.use(WujieVue)
+
   app.mount('#app')
 }
 
 setupAll()
 
+const degrade = window.localStorage.getItem("degrade") === "true" || !window.Proxy || !window.CustomElementRegistry;
+const props = {
+  jump: (name) => {
+    router.push({ name });
+  },
+};
+
+// 模拟接口查询,实现动动态子应用加载与动态路由添加
+const setMiro = () =>
+  new Promise((resolve) => {
+    for (const value of micros) {
+      const obj: any = {
+        path: `/${value.name}`,
+        name: value.name,
+        component: () => import(`@/views/micro/index.vue`)
+      }
+      router.addRoute('home', obj)
+      const attrs = isProduction ? { src: hostMap("//localhost/") } : {};
+      setupApp({
+        name: "fast",
+        url: hostMap("//localhost:90/"),
+        attrs,
+        exec: true,
+        alive: true,
+        plugins: [{ cssExcludes: ["https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"] }],
+        props,
+        // 引入了的第三方样式不需要添加credentials
+        // fetch: (url, options) =>
+        //   url.includes(hostMap("//localhost:90/")) ? credentialsFetch(url, options) : window.fetch(url, options),
+        degrade,
+        ...lifecycles,
+      });
+      // setupApp({
+      //   name: value.name,
+      //   url: getUrl(value.name, micros),
+      //   exec: true,
+      //   ...lifecycles
+      // })
+    }
+    resolve(true)
+  })
+// eslint-disable-next-line require-await
+router.beforeEach(async (to, _from, next) => {
+  if (router.getRoutes().length <= 3) {
+    // 如果路由个数为基础路由,则说明没有进行路由和子应用添加,需要动态添加,添加完成,根据路由地址进行跳转
+    await setMiro()
+    next({
+      path: to.path,
+      query: { ...to.query }
+    })
+  } else {
+    next()
+  }
+})
+
 Logger.prettyPrimary(`欢迎使用`, import.meta.env.VITE_APP_TITLE)

--
Gitblit v1.9.3