From 7c20fd15b7fbc2bd5756b39d5ab655cc849ffcc3 Mon Sep 17 00:00:00 2001
From: zhanghua <314079846@qq.com>
Date: 星期三, 16 七月 2025 22:39:23 +0800
Subject: [PATCH] 添加时间筛选

---
 src/components/scene/index.vue |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/components/scene/index.vue b/src/components/scene/index.vue
index f415460..aaea743 100644
--- a/src/components/scene/index.vue
+++ b/src/components/scene/index.vue
@@ -147,7 +147,7 @@
     </div>
 </template>
 <script>
-import { FILE_ORIGINAL_URL } from "@/utils";
+import { FILE_ORIGINAL_PATH } from "@/utils";
 export default {
     data() {
         return {
@@ -187,8 +187,9 @@
                 if (invesList.pic) {
                     invesList.pic.forEach((o) => {
                         o = o.replace("[", "").replace("]", "");
+
                         this.investigation.pic.push(
-                            `${FILE_ORIGINAL_URL}sccg/API/img?fileUrl=${o}`
+                            FILE_ORIGINAL_PATH + o
                         );
                     });
                 }
@@ -204,7 +205,7 @@
                     urls.forEach((o) => {
                         o = o.replace("[", "").replace("]", "");
                         this.arrivalSituation.situationPic.push(
-                            `${FILE_ORIGINAL_URL}sccg/API/img?fileUrl=${o}`
+                            FILE_ORIGINAL_PATH + o
                         );
                     });
                 }

--
Gitblit v1.8.0