| | |
| | | <hydraulicTransmission v-if="activeBook.name == 'hydraulicTransmission'"></hydraulicTransmission> |
| | | <foodSensoryInspection v-if="activeBook.name == 'foodSensoryInspection'"></foodSensoryInspection> |
| | | <MMVRTCMP v-if="activeBook.name == 'MMVRTCMP'"></MMVRTCMP> |
| | | <civilPassengerTransport v-if="activeBook.name == 'civilPassengerTransport'"> </civilPassengerTransport> |
| | | <UAVTechIntro v-if="activeBook.name == 'UAVTechIntro'"></UAVTechIntro> |
| | | </div> |
| | | </template> |
| | | <script> |
| | |
| | | foodSensoryInspection: () => |
| | | import("./books/foodSensoryInspection/view/index.vue"), |
| | | MMVRTCMP: () => import("./books/MMVRTCMP/view/index.vue"), |
| | | civilPassengerTransport: () => |
| | | import("./books/civilPassengerTransport/view/index.vue"), |
| | | UAVTechIntro: () => import("./books/UAVTechIntro/view/index.vue") |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | // aviationBasicSkills // 基本技能 |
| | | // aviationSafety // 安全检查实务 |
| | | // aviationEtiquette // 礼仪服务 |
| | | // botany // 植物学(农大社) |
| | | // childcareInstitutionsManagement // 托育机构管理与实务 |
| | | // toddlerGameImplementation // 婴幼儿游戏活动实施 |
| | | // preschoolGameGuidance // 学前游戏指导 |
| | |
| | | // hydraulicTransmission // 机械传动 (哈工大) |
| | | // foodSensoryInspection // 食品感官检验技术 |
| | | // MMVRTCMP // 视觉手册 |
| | | // civilPassengerTransport // 民航旅客运输 |
| | | // UAVTechIntro // 无人机应用技术导论 |
| | | this.activeBook = await this.config.getBookConfig( |
| | | process.env.VUE_APP_RESOURCE_CTX + |
| | | (process.env.VUE_APP_ENV == "product" |
| | | ? process.env.VUE_APP_BOOK_ID |
| | | : "toddlerGameImplementation") |
| | | : "UAVTechIntro") |
| | | ); |
| | | |
| | | // 测试试读30页 |
| | | // this.activeBook.tryPageCount = 10; |
| | | // this.config.activeBook = this.activeBook; |