修改目的地

This commit is contained in:
yangrd 2025-03-14 17:27:24 +08:00
parent f9efa974c0
commit dd924ffaa7
2 changed files with 3 additions and 2 deletions

View File

@ -15,6 +15,7 @@ class ArtRepairLog extends CellsysEvent {
this.description = params.description; this.description = params.description;
this.datetime = params.datetime; this.datetime = params.datetime;
this.geometry = params.geometry; this.geometry = params.geometry;
this.geometryName = params.geometry_name;
this.images = params.images; this.images = params.images;
// if (params.images) { // if (params.images) {
// this.artworkImages = params.images.map((url) => { // this.artworkImages = params.images.map((url) => {

View File

@ -12,7 +12,7 @@
class="search-container" class="search-container"
v-if="!isReadonly"> v-if="!isReadonly">
<div class="search-input"> <div class="search-input">
<el-input <el-input @keydown.enter="handleSearch"
v-model="searchAddress" v-model="searchAddress"
placeholder="请输入地址"></el-input> placeholder="请输入地址"></el-input>
<el-button <el-button
@ -394,7 +394,7 @@ export default {
background-color: #fff; background-color: #fff;
z-index: 2; z-index: 2;
max-height: 50vh; max-height: 50vh;
overflow: hidden; overflow-y: scroll;
} }
.search-item { .search-item {
} }