From e290b038441f6430dc68f7751c57e9e67e1f3d98 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Fri, 05 Jan 2024 09:24:09 +0800
Subject: [PATCH] 公安安全
---
src/views/publicSecurity/components/hotelReporting.vue | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/src/views/publicSecurity/components/hotelReporting.vue b/src/views/publicSecurity/components/hotelReporting.vue
index e4722ff..1b8f20b 100644
--- a/src/views/publicSecurity/components/hotelReporting.vue
+++ b/src/views/publicSecurity/components/hotelReporting.vue
@@ -18,6 +18,7 @@
getDetail,
update
} from "@/api/task/hotelReporting"
+ import website from '@/config/website'
export default {
data() {
return {
@@ -254,6 +255,19 @@
taskId: taskId
}).then((res) => {
this.form = res.data.data
+ if (this.form.uanImageUrls) {
+ this.form.uanImageUrls = website.minioUrl + this.form.uanImageUrls
+ }
+ if (this.form.pfImageUrls) {
+ this.form.pfImageUrls = website.minioUrl + this.form.pfImageUrls
+ }
+ if (this.form.scImageUrls) {
+ this.form.scImageUrls = website.minioUrl + this.form.scImageUrls
+ }
+ if (this.form.fireImageUrls) {
+ this.form.fireImageUrls = website.minioUrl + this.form.fireImageUrls
+ }
+
})
}
--
Gitblit v1.9.3