From 57ebfaedfe6364ab0c3beb1afe01c00fe2798a2c Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期四, 06 六月 2024 10:28:54 +0800
Subject: [PATCH] 嵌入式优化

---
 src/books/childHealth/view/content/components/chapter006.vue |   36 +++++++++++++++++++++---------------
 1 files changed, 21 insertions(+), 15 deletions(-)

diff --git a/src/books/childHealth/view/content/components/chapter006.vue b/src/books/childHealth/view/content/components/chapter006.vue
index dff64a8..a7c5fe3 100644
--- a/src/books/childHealth/view/content/components/chapter006.vue
+++ b/src/books/childHealth/view/content/components/chapter006.vue
@@ -2731,6 +2731,10 @@
     showPageList: {
       type: Array,
     },
+    isSearch: {
+      type: Boolean,
+      default: false,
+    },
   },
   data() {
     return {
@@ -2850,17 +2854,19 @@
     };
   },
   async mounted() {
-    const localData = localStorage.getItem("chapterSixData");
-    if (localData) {
-      this.chapterSixData = JSON.parse(localData);
-    }
-    window.timerSix = setInterval(() => {
-      this.saveTime--;
-      if (this.saveTime == 0) {
-        this.saveChapterOneData();
+    if(!this.isSearch) {
+      const localData = localStorage.getItem("chapterSixData");
+      if (localData) {
+        this.chapterSixData = JSON.parse(localData);
       }
-    }, 1000);
-    this.getVideoPath();
+      window.timerSix = setInterval(() => {
+        this.saveTime--;
+        if (this.saveTime == 0) {
+          this.saveChapterOneData();
+        }
+      }, 1000);
+      this.getVideoPath();
+    }
   },
   unmounted() {
     if (window.timerSix) {
@@ -2884,13 +2890,13 @@
         this.$data.learnTableFive = !this.$data.learnTableFive;
       }
     },
-    getVideoPath() {
-      this.$data.pathOne = getResourcePath("816cf9d161803aea47ea583ba5d4f0ac");
-      this.$data.pathTwo = getResourcePath("15d4b47f10359b7ad77d87e2327db429");
-      this.$data.pathThree = getResourcePath(
+    async getVideoPath() {
+      this.$data.pathOne = await getResourcePath("816cf9d161803aea47ea583ba5d4f0ac");
+      this.$data.pathTwo = await getResourcePath("15d4b47f10359b7ad77d87e2327db429");
+      this.$data.pathThree = await getResourcePath(
         "66c19c1c7a772fc88080b607f70eebaf"
       );
-      this.$data.pathFour = getResourcePath("a548917a24721ef2b37e1053ac843af4");
+      this.$data.pathFour = await getResourcePath("a548917a24721ef2b37e1053ac843af4");
     },
     saveChapterOneData() {
       this.saveTime = 20;

--
Gitblit v1.9.1