zhongshujie
2025-05-16 65524f5c67140430ab08fedc92098e45dd1d437d
src/App.vue
@@ -72,6 +72,12 @@
    <cognitiveLanDevEduAges0to3
      v-if="activeBook.name == 'cognitiveLanDevEduAges0to3'"
    ></cognitiveLanDevEduAges0to3>
    <aviationPassengerTransport6th
      v-if="activeBook.name == 'aviationPassengerTransport6th'"
    ></aviationPassengerTransport6th>
    <hotelEnglishTrainingBrochure2nd
      v-if="activeBook.name == 'hotelEnglishTrainingBrochure2nd'"
    ></hotelEnglishTrainingBrochure2nd>
  </div>
</template>
<script>
@@ -146,6 +152,10 @@
      import("./books/behaviorObserveAndGuid/view/index.vue"),
    cognitiveLanDevEduAges0to3: () =>
      import("./books/cognitiveLanDevEduAges0to3/view/index.vue"),
    aviationPassengerTransport6th: () =>
      import("./books/aviationPassengerTransport6th/view/index.vue"),
    hotelEnglishTrainingBrochure2nd: () =>
      import("./books/hotelEnglishTrainingBrochure2nd/view/index.vue"),
  },
  data() {
    return {
@@ -199,26 +209,34 @@
      // policiesAndRegulations  //政策法律与法规|旅游社
      // practicalCareChildrenManual // 婴幼儿照护实录
      // OralAndBroadcasting         // 航空服务口语交际与播音技巧
      // childIllnessPreventionCare // 0~3岁婴幼儿疾病预防
      // childIllnessPreventionCare // 婴幼儿常见疾病预防与护理
      // artInitiationForAges0to3 // 0~3岁婴幼儿艺术启蒙
      // toddlerSportsSafetyProtection // 0~3岁婴幼儿运动安全与保护
      // behaviorObserveAndGuid  // 婴幼儿行为观察与指导
      // cognitiveLanDevEduAges0to3  // 0~3岁婴幼儿认知与语言发展及教育
      // aviationPassengerTransport6th  // 民航旅客运输第6版(旅游社)
      // hotelEnglishTrainingBrochure2nd // 酒店英语实训活页教程(第2版)(旅游社)
      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
            : "mathBook")
            : "hotelEnglishTrainingBrochure2nd")
      );
      // this.activeBook = await this.config.getBookConfig(
      //   'http://182.92.203.7:3007/books/resource/'+
      //   'https://jsek.bnuic.com/books/resource/'+
      //   (process.env.VUE_APP_ENV == "product"
      //     ? process.env.VUE_APP_BOOK_ID
      //     : "botany")
      //     : "aviationSafety")
      // );
      // 测试试读30页
      // this.activeBook.tryPageCount = 10;
      this.config.activeBook = this.activeBook;
      // this.config.activeBook = this.activeBook;
      // 旅游社处理跨域问题
      // this.activeBook = this.config.activeBook;
      this.config.goodsStore = this.activeBook.storeRefcode;
    }
  },