| | |
| | | <aviationBasicSkills v-if="activeBook.name == 'aviationBasicSkills'"></aviationBasicSkills> |
| | | <aviationSafety v-if="activeBook.name == 'aviationSafety'"></aviationSafety> |
| | | <aviationEtiquette v-if="activeBook.name == 'aviationEtiquette'"></aviationEtiquette> |
| | | </div> |
| | | <preschoolGameGuidance v-if="activeBook.name == 'preschoolGameGuidance'"></preschoolGameGuidance> |
| | | <kindergartenLanguageActivity v-if="activeBook.name == 'kindergartenLanguageActivity'"></kindergartenLanguageActivity> |
| | | <kindergartenActivitiesDesignGuidance v-if="activeBook.name == 'kindergartenActivitiesDesignGuidance'"></kindergartenActivitiesDesignGuidance> |
| | | </div> |
| | | </template> |
| | | <script> |
| | | // 解决ERROR ResizeObserver loop completed with undelivered notifications.//问题的 |
| | |
| | | aviationBasicSkills: () => import("./books/aviationBasicSkills/view/index.vue"), |
| | | aviationSafety: ()=> import("./books/aviationSafety/view/index.vue"), |
| | | aviationEtiquette: ()=> import("./books/aviationEtiquette/view/index.vue"), |
| | | preschoolGameGuidance: ()=> import("./books/preschoolGameGuidance/view/index.vue"), |
| | | kindergartenLanguageActivity: ()=> import("./books/kindergartenLanguageActivity/view/index.vue"), |
| | | kindergartenActivitiesDesignGuidance: () => import("./books/kindergartenActivitiesDesignGuidance/view/index.vue"), |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | // artAndDance |
| | | // artAndDrama |
| | | // mathBook |
| | | // civilAviation |
| | | // civilServices |
| | | // civilAviation // 民航概论 |
| | | // civilServices // 服务心理 |
| | | // meetingPlanners |
| | | // aviationBasicSkills //基本技能 |
| | | // aviationSafety //安全检查实务 |
| | | // aviationEtiquette //礼仪服务 |
| | | // preschoolGameGuidance //学前游戏指导 preschoolGameGuidance |
| | | // kindergartenLanguageActivity //幼儿园语言活动 kindergartenLanguageActivity |
| | | // kindergartenActivitiesDesignGuidance 幼儿园教育活动与指导 第2版 |
| | | this.activeBook = await this.config.getBookConfig( |
| | | process.env.VUE_APP_RESOURCE_CTX + |
| | | (process.env.VUE_APP_ENV == "product" |
| | | ? process.env.VUE_APP_BOOK_ID |
| | | : "aviationEtiquette") |
| | | : "kindergartenActivitiesDesignGuidance") |
| | | ); |
| | | |
| | | // this.activeBook = await this.config.getBookConfig( |