| | |
| | | ></preschoolGameGuidance> |
| | | <kindergartenLanguageActivity |
| | | v-if="activeBook.name == 'kindergartenLanguageActivity'" |
| | | ></kindergartenLanguageActivity> |
| | | > |
| | | </kindergartenLanguageActivity> |
| | | <kindergartenActivitiesDesignGuidance |
| | | v-if="activeBook.name == 'kindergartenActivitiesDesignGuidance'" |
| | | ></kindergartenActivitiesDesignGuidance> |
| | | > |
| | | </kindergartenActivitiesDesignGuidance> |
| | | <childcareInstitutionsManagement |
| | | v-if="activeBook.name == 'childcareInstitutionsManagement'" |
| | | > |
| | |
| | | ></artInitiationForAges0to3> |
| | | <toddlerSportsSafetyProtection |
| | | v-if="activeBook.name == 'toddlerSportsSafetyProtection'" |
| | | ></toddlerSportsSafetyProtection> |
| | | > |
| | | </toddlerSportsSafetyProtection> |
| | | <cognitiveLanDevEduAges0to3 |
| | | v-if="activeBook.name == 'cognitiveLanDevEduAges0to3'" |
| | | ></cognitiveLanDevEduAges0to3> |
| | | <aviationPassengerTransport6th |
| | | v-if="activeBook.name == 'aviationPassengerTransport6th'" |
| | | ></aviationPassengerTransport6th> |
| | | > |
| | | </aviationPassengerTransport6th> |
| | | <hotelEnglishTrainingBrochure2nd |
| | | v-if="activeBook.name == 'hotelEnglishTrainingBrochure2nd'" |
| | | ></hotelEnglishTrainingBrochure2nd> |
| | | > |
| | | </hotelEnglishTrainingBrochure2nd> |
| | | <hydraulicTransmission v-if="activeBook.name == 'hydraulicTransmission'"></hydraulicTransmission> |
| | | <MMVRTCMP v-if="activeBook.name == 'MMVRTCMP'"></MMVRTCMP> |
| | | </div> |
| | | </template> |
| | | <script> |
| | |
| | | import("./books/aviationPassengerTransport6th/view/index.vue"), |
| | | hotelEnglishTrainingBrochure2nd: () => |
| | | import("./books/hotelEnglishTrainingBrochure2nd/view/index.vue"), |
| | | hydraulicTransmission: () => |
| | | import("./books/hydraulicTransmission/view/index.vue"), |
| | | MMVRTCMP: () => import("./books/MMVRTCMP/view/index.vue"), |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | // toddlerGameImplementation // 婴幼儿游戏活动实施 |
| | | // preschoolGameGuidance // 学前游戏指导 |
| | | // kindergartenLanguageActivity // 幼儿园语言教育与活动指导 |
| | | // kindergartenActivitiesDesignGuidance //幼儿园教育活动设计写指导 |
| | | // kindergartenActivitiesDesignGuidance //幼儿园教育活动设计与指导 |
| | | // aurturingAndEducationAged0to3 // 0~3岁婴幼儿抚育与教育 |
| | | // preschoolEvaluation // 学前教育评价 |
| | | // preschoolBasicKnowledge //学前教育基础知识 |
| | |
| | | // cognitiveLanDevEduAges0to3 // 0~3岁婴幼儿认知与语言发展及教育 |
| | | // aviationPassengerTransport6th // 民航旅客运输第6版(旅游社) |
| | | // hotelEnglishTrainingBrochure2nd // 酒店英语实训活页教程(第2版)(旅游社) |
| | | console.log("debugger", process.env); |
| | | // hydraulicTransmission // 机械传动 (哈工大) |
| | | // MMVRTCMP // 视觉手册 |
| | | // console.log("debugger", process.env); |
| | | this.activeBook = await this.config.getBookConfig( |
| | | process.env.VUE_APP_RESOURCE_CTX + |
| | | (process.env.VUE_APP_ENV == "product" |
| | | ? process.env.VUE_APP_BOOK_ID |
| | | : "hotelEnglishTrainingBrochure2nd") |
| | | : "MMVRTCMP") |
| | | ); |
| | | |
| | | // this.activeBook = await this.config.getBookConfig( |
| | | // 'https://jsek.bnuic.com/books/resource/'+ |
| | | // (process.env.VUE_APP_ENV == "product" |
| | | // ? process.env.VUE_APP_BOOK_ID |
| | | // : "aviationSafety") |
| | | // ); |
| | | |
| | | // 测试试读30页 |
| | | // this.activeBook.tryPageCount = 10; |
| | |
| | | |
| | | // 旅游社处理跨域问题 |
| | | // this.activeBook = this.config.activeBook; |
| | | this.config.activeBook = this.activeBook; |
| | | this.config.goodsStore = this.activeBook.storeRefcode; |
| | | } |
| | | }, |