From 6c037bf2b6ad74a7caeddafd0481c6f9ed9a5708 Mon Sep 17 00:00:00 2001
From: zhongshujie <2862698242@qq.com>
Date: 星期三, 20 十一月 2024 11:50:42 +0800
Subject: [PATCH] 模型修改

---
 src/App.vue |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index d4dea9f..2306550 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -11,6 +11,7 @@
     <botany v-if="activeBook.name == 'botany'"></botany>
     <civilAviation v-if="activeBook.name == 'civilAviation'"></civilAviation>
     <civilAviationServices v-if="activeBook.name == 'civilAviationServices'"></civilAviationServices>
+    <meetingPlanners v-if="activeBook.name == 'meetingPlanners'"></meetingPlanners>
   </div>
 </template>
 
@@ -29,6 +30,7 @@
     botany: () => import("./books/botany/view/index.vue"),
     civilAviation: () => import("./books/civilAviation/view/index.vue"),
     civilAviationServices: () =>import("./books/civilAviationServices/view/index.vue"),
+    meetingPlanners: () =>import("./books/meetingPlanners/view/index.vue")
   },
   data() {
     return {
@@ -67,11 +69,12 @@
       // mathBook
       // civilAviation
       // civilAviationServices
+      // meetingPlanners
       this.activeBook = await this.config.getBookConfig(
       process.env.VUE_APP_RESOURCE_CTX +
         (process.env.VUE_APP_ENV == "product"
           ? process.env.VUE_APP_BOOK_ID
-          : "civilAviationServices")
+          : "civilAviation")
       );
 
       // this.activeBook = await this.config.getBookConfig(

--
Gitblit v1.9.1