From c3a97e9da90ab1a34f766acd35944d295cc5a6bf Mon Sep 17 00:00:00 2001
From: unknown <qq1940665526@163.com>
Date: 星期三, 05 六月 2024 13:41:00 +0800
Subject: [PATCH] 优化

---
 src/books/lifeCare/view/chapter003.vue |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/books/lifeCare/view/chapter003.vue b/src/books/lifeCare/view/chapter003.vue
index 6d3252e..b57e211 100644
--- a/src/books/lifeCare/view/chapter003.vue
+++ b/src/books/lifeCare/view/chapter003.vue
@@ -2785,7 +2785,7 @@
   </div>
 </template>
 <script>
-import getResourcePath from "@/assets/methods/resources.js";
+import {getResourcePath} from "@/assets/methods/resources.js";
 // import getQuestionData from "@/assets/methods/examination.js";
 // import testData from "../js/examinationList.js";
 import examinations from "@/components/examinations/index.vue";
@@ -3251,37 +3251,37 @@
     if (localData) {
       this.chapter003 = { ...Object.assign(this.chapter003, localData) };
     }
-    this.chapter003.videOneUrl = getResourcePath(
+    this.chapter003.videOneUrl = await getResourcePath(
       "459ab85d46207bfcca4801dc9b319b9b"
     );
-    this.chapter003.videoTwoUrl = getResourcePath(
+    this.chapter003.videoTwoUrl = await getResourcePath(
       "3817bea302b25b865ff938140939a8de"
     );
-    this.chapter003.videoFourUrl = getResourcePath(
+    this.chapter003.videoFourUrl = await getResourcePath(
       "7af72da649f6656c3b2164e708f5c132"
     );
-    this.chapter003.videoFiveUrl = getResourcePath(
+    this.chapter003.videoFiveUrl = await getResourcePath(
       "e24de9b0cdd889cb73e9b472ad6f4731"
     );
-    this.chapter003.videoSixUrl = getResourcePath(
+    this.chapter003.videoSixUrl = await getResourcePath(
       "d95740ab777d9c7ca074c33317a835c4"
     );
-    this.chapter003.videoSevenUrl = getResourcePath(
+    this.chapter003.videoSevenUrl = await getResourcePath(
       "0b330926f3e6ed510b48144a83199fb3"
     );
-    this.chapter003.videoEigthUrl = getResourcePath(
+    this.chapter003.videoEigthUrl = await getResourcePath(
       "9f63cc4dcba6a87cbfe82a9ec4d7c77e"
     );
-    this.chapter003.videoNineUrl = getResourcePath(
+    this.chapter003.videoNineUrl = await getResourcePath(
       "c2ecf6f102a6e9b210f3db49b17b58a4"
     );
-    this.chapter003.videoTenUrl = getResourcePath(
+    this.chapter003.videoTenUrl = await getResourcePath(
       "b6943018923c0cbad4e414dc2097cb9a"
     );
-    this.chapter003.videoEleUrl = getResourcePath(
+    this.chapter003.videoEleUrl = await getResourcePath(
       "eb604885f7c01cdf2d95df839c9c233a"
     );
-    this.chapter003.videoTevUrl = getResourcePath(
+    this.chapter003.videoTevUrl = await getResourcePath(
       "f12a50c2ac57da78ff02f3d5f430163b"
     );
     // this.chapter003.videOneUrl =

--
Gitblit v1.9.1