|
|
@ -19,8 +19,7 @@ |
|
|
|
margin-left: 10px; |
|
|
|
margin-top: 0px; |
|
|
|
color: #3e8ef7; |
|
|
|
cursor: pointer; |
|
|
|
" |
|
|
|
cursor: pointer;" |
|
|
|
icon="el-icon-edit">编辑</el-link> |
|
|
|
</el-breadcrumb-item> |
|
|
|
</el-breadcrumb> |
|
|
@ -2914,14 +2913,13 @@ export default { |
|
|
|
const { msg, data } = await map.searchNearby(query); |
|
|
|
this.loading = false; |
|
|
|
this.resultList = []; |
|
|
|
|
|
|
|
if (msg == "success" && data.resultList && data.resultList.length > 0) { |
|
|
|
if (data.resultList && data.resultList.length > 0) { |
|
|
|
this.resultList = data.resultList; |
|
|
|
this.searchOptions = this.resultList.map((item) => { |
|
|
|
return { |
|
|
|
value: `${item.hotPointID}`, |
|
|
|
label: `${item.address + item.name}`, |
|
|
|
value: `${item.id}`, |
|
|
|
label: `${item.address + item.title}`, |
|
|
|
}; |
|
|
|
}); |
|
|
|
} |
|
|
|