From 7cef46a5e85fc015463ae1a0aa65efee689a8dcc Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 03 Jan 2024 09:35:46 +0800
Subject: [PATCH] 场所管理,位置相关调整
---
src/views/place/index.vue | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/views/place/index.vue b/src/views/place/index.vue
index d2898c8..fb3f85f 100644
--- a/src/views/place/index.vue
+++ b/src/views/place/index.vue
@@ -607,6 +607,8 @@
getPlace(this.form.id).then((res) => {
this.form = res.data.data
+ this.form.location = [this.form.lng, this.form.lat, this.form.location].join(',')
+
if (this.form.imageUrls.length) {
this.form.imageUrls = this.form.imageUrls.split(",").filter(item => item != '').map(item => website.minioUrl + item).join(',')
}
@@ -626,7 +628,6 @@
}
done()
-
})
} else {
done()
--
Gitblit v1.9.3