From 0ac4e192d2d2c28eb95e118eb381c04330b07953 Mon Sep 17 00:00:00 2001 From: zhongshujie <2862698242@qq.com> Date: 星期三, 20 十一月 2024 11:51:46 +0800 Subject: [PATCH] Merge branch 'master' of http://182.92.203.7:2001/r/testbookLayout --- src/App.vue | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/App.vue b/src/App.vue index 90366c4..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 - : "mathBook") + : "civilAviation") ); // this.activeBook = await this.config.getBookConfig( -- Gitblit v1.9.1