|
|
@ -50,7 +50,11 @@ |
|
|
|
@keyup.enter="handleSearch" |
|
|
|
v-model="searchName" |
|
|
|
/> |
|
|
|
<img class="i-close" @click="clearSearch" src="@/assets/img/shuju/command/close.png" /> |
|
|
|
<img |
|
|
|
class="i-close" |
|
|
|
@click="clearSearch" |
|
|
|
src="@/assets/img/shuju/command/close.png" |
|
|
|
/> |
|
|
|
<div class="btn" @click="handleSearch">搜索</div> |
|
|
|
</div> |
|
|
|
<div class="result" v-if="showedSearchResult"> |
|
|
@ -541,6 +545,7 @@ export default { |
|
|
|
subitem.categories.forEach((subitem2) => { |
|
|
|
if (subitem2.selected) { |
|
|
|
categoryKeys.push(subitem2.categoryKey); |
|
|
|
coverageTypes.push(subitem2.coverageType); |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
@ -772,7 +777,7 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
clearSearch() { |
|
|
|
this.searchName = ''; |
|
|
|
this.searchName = ""; |
|
|
|
this.$refs.map.removeDotMarker(); |
|
|
|
}, |
|
|
|
|
|
|
|