From 9a300328b183350f665488c1d3221bfb0acf9a99 Mon Sep 17 00:00:00 2001 From: litian <2804272236@qq.com> Date: 星期五, 27 十二月 2024 17:15:00 +0800 Subject: [PATCH] banquan --- src/App.vue | 29 ++++++++++++++++------------- 1 files changed, 16 insertions(+), 13 deletions(-) diff --git a/src/App.vue b/src/App.vue index 3ee105a..a2980c7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -12,12 +12,11 @@ <mathBook v-if="activeBook.name == 'mathBook'"></mathBook> <botany v-if="activeBook.name == 'botany'"></botany> <civilAviation v-if="activeBook.name == 'civilAviation'"></civilAviation> - <civilServices - v-if="activeBook.name == 'civilServices'" - ></civilServices> - <meetingPlanners - v-if="activeBook.name == 'meetingPlanners'" - ></meetingPlanners> + <civilServices v-if="activeBook.name == 'civilServices'"></civilServices> + <meetingPlanners v-if="activeBook.name == 'meetingPlanners'"></meetingPlanners> + <aviationBasicSkills v-if="activeBook.name == 'aviationBasicSkills'"></aviationBasicSkills> + <aviationSafety v-if="activeBook.name == 'aviationSafety'"></aviationSafety> + <aviationEtiquette v-if="activeBook.name == 'aviationEtiquette'"></aviationEtiquette> </div> </template> <script> @@ -54,9 +53,11 @@ artAndDrama: () => import("./books/artAndDrama/view/index.vue"), botany: () => import("./books/botany/view/index.vue"), civilAviation: () => import("./books/civilAviation/view/index.vue"), - civilServices: () => - import("./books/civilServices/view/index.vue"), - meetingPlanners: () => import("./books/meetingPlanners/view/index.vue"), + civilServices: () =>import("./books/civilServices/view/index.vue"), + meetingPlanners: () =>import("./books/meetingPlanners/view/index.vue"), + aviationBasicSkills: () => import("./books/aviationBasicSkills/view/index.vue"), + aviationSafety: ()=> import("./books/aviationSafety/view/index.vue"), + aviationEtiquette: ()=> import("./books/aviationEtiquette/view/index.vue"), }, data() { return { @@ -96,11 +97,13 @@ // civilAviation // civilServices // meetingPlanners + // aviationBasicSkills + // aviationSafety 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") + process.env.VUE_APP_RESOURCE_CTX + + (process.env.VUE_APP_ENV == "product" + ? process.env.VUE_APP_BOOK_ID + : "aviationEtiquette") ); // this.activeBook = await this.config.getBookConfig( -- Gitblit v1.9.1