From 2993016ca5e4d32408cc22582c3c1e7d69ee41f8 Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期三, 26 三月 2025 11:21:06 +0800
Subject: [PATCH] 口语交际

---
 src/App.vue |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index 7e69a13..f869d85 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -27,6 +27,7 @@
     </preschoolEvaluation>
     <preschoolBasicKnowledge v-if="activeBook.name == 'preschoolBasicKnowledge'"></preschoolBasicKnowledge> 
     <policiesAndRegulations v-if="activeBook.name == 'policiesAndRegulations'"></policiesAndRegulations> 
+    <OralAndBroadcasting v-if="activeBook.name == 'OralAndBroadcasting'" ></OralAndBroadcasting>
   </div>
 </template>
 <script>
@@ -77,6 +78,7 @@
     preschoolEvaluation: () => import("./books/preschoolEvaluation/view/index.vue"),
     preschoolBasicKnowledge: ()=> import("./books/preschoolBasicKnowledge/view/index.vue"),
     policiesAndRegulations: ()=> import("./books/policiesAndRegulations/view/index.vue"),
+    OralAndBroadcasting:()=> import("./books/OralAndBroadcasting/view/index.vue"),
   },
   data() {
     return {
@@ -127,11 +129,12 @@
       // preschoolEvaluation  // 瀛﹀墠鏁欒偛璇勪环
       // preschoolBasicKnowledge //瀛﹀墠鏁欒偛鍩虹鐭ヨ瘑
       // policiesAndRegulations  //鏀跨瓥娉曞緥涓庢硶瑙剕鏃呮父绀�
+      console.log(1,process.env,process.env.VUE_APP_RESOURCE_CTX);
       this.activeBook = await this.config.getBookConfig(
-        process.env.VUE_APP_RESOURCE_CTX +
+        'http://182.92.203.7:3007/books/resource/' +
         (process.env.VUE_APP_ENV == "product"
           ? process.env.VUE_APP_BOOK_ID
-          : "policiesAndRegulations")
+          : "OralAndBroadcasting")
       );
 
       // this.activeBook = await this.config.getBookConfig(

--
Gitblit v1.9.1