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/chapter004.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/books/lifeCare/view/chapter004.vue b/src/books/lifeCare/view/chapter004.vue index 5cc5642..ba644a7 100644 --- a/src/books/lifeCare/view/chapter004.vue +++ b/src/books/lifeCare/view/chapter004.vue @@ -1355,7 +1355,7 @@ </div> </template> <script> -import getResourcePath from "@/assets/methods/resources.js"; +import {getResourcePath} from "@/assets/methods/resources.js"; import examinations from "@/components/examinations/index.vue"; import drawflow from "@/components/drawflow"; export default { @@ -1450,13 +1450,13 @@ if (localData) { this.chapter004 = { ...Object.assign(this.chapter004, localData) }; } - this.chapter004.videOneUrl = getResourcePath( + this.chapter004.videOneUrl = await getResourcePath( "c276be12bae3b1df0b3ce4aa01b14e1e" ); - this.chapter004.videoTwoUrl = getResourcePath( + this.chapter004.videoTwoUrl = await getResourcePath( "7eb7fe2e3c13885a96143110ca4f5654" ); - this.chapter004.videoFourUrl = getResourcePath( + this.chapter004.videoFourUrl = await getResourcePath( "1b04691b60e5b5b207b3a4967c495d29" ); // this.chapter004.videOneUrl = -- Gitblit v1.9.1