From 6486b1f44de87dc6f60388e10e9a65ae206df120 Mon Sep 17 00:00:00 2001
From: YM <479443481@qq.com>
Date: 星期五, 07 六月 2024 10:50:30 +0800
Subject: [PATCH] 1

---
 src/books/childHealth/view/content/components/chapter005.vue |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/books/childHealth/view/content/components/chapter005.vue b/src/books/childHealth/view/content/components/chapter005.vue
index 90232d9..1b8da2b 100644
--- a/src/books/childHealth/view/content/components/chapter005.vue
+++ b/src/books/childHealth/view/content/components/chapter005.vue
@@ -2723,7 +2723,7 @@
 
 <script>
 import examinations from "@/components/examinations/index.vue";
-import getResourcePath from "@/assets/methods/resources";
+import {getResourcePath} from "@/assets/methods/resources";
 export default {
   name: "chapterFive",
   components: { examinations },
@@ -2875,13 +2875,13 @@
         JSON.stringify(this.chapterFiveData)
       );
     },
-    getVideoPath() {
-      this.$data.pathOne = getResourcePath("5698398be3f5c7fdb247218b2a687257");
-      this.$data.pathTwo = getResourcePath("5905673b09837c74953dd11fcb27d123");
-      this.$data.pathThree = getResourcePath(
+    async getVideoPath() {
+      this.$data.pathOne = await getResourcePath("5698398be3f5c7fdb247218b2a687257");
+      this.$data.pathTwo = await getResourcePath("5905673b09837c74953dd11fcb27d123");
+      this.$data.pathThree = await getResourcePath(
         "1f768157227c193ed5c11f972f66e692"
       );
-      this.$data.pathFour = getResourcePath("4f446d88ec1ed081a172b7130dce896b");
+      this.$data.pathFour = await getResourcePath("4f446d88ec1ed081a172b7130dce896b");
     },
   },
 };

--
Gitblit v1.9.1