| | |
| | | <aviationBasicSkills v-if="activeBook.name == 'aviationBasicSkills'"></aviationBasicSkills> |
| | | <aviationSafety v-if="activeBook.name == 'aviationSafety'"></aviationSafety> |
| | | <aviationEtiquette v-if="activeBook.name == 'aviationEtiquette'"></aviationEtiquette> |
| | | <childcareInstitutionsManagement v-if="activeBook.name == 'childcareInstitutionsManagement'"></childcareInstitutionsManagement> |
| | | </div> |
| | | </template> |
| | | <script> |
| | |
| | | aviationBasicSkills: () => import("./books/aviationBasicSkills/view/index.vue"), |
| | | aviationSafety: ()=> import("./books/aviationSafety/view/index.vue"), |
| | | aviationEtiquette: ()=> import("./books/aviationEtiquette/view/index.vue"), |
| | | childcareInstitutionsManagement: ()=> import("./books/childcareInstitutionsManagement/view/index.vue"), |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | // artAndDance |
| | | // artAndDrama |
| | | // mathBook |
| | | // civilAviation |
| | | // civilServices |
| | | // civilAviation // 民航概论 |
| | | // civilServices // 服务心理 |
| | | // meetingPlanners |
| | | // aviationBasicSkills //基本技能 |
| | | // aviationSafety //安全检查实务 |
| | | // aviationEtiquette //礼仪服务 |
| | | //childcareInstitutionsManagement //托育机构管理与实务 |
| | | 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") |
| | | : "childcareInstitutionsManagement") |
| | | ); |
| | | |
| | | // this.activeBook = await this.config.getBookConfig( |