This commit is contained in:
汪汇 2023-12-12 17:29:44 +08:00
parent c8c8f92780
commit edc3432574
1 changed files with 5 additions and 3 deletions

View File

@ -75,11 +75,11 @@
</div>
<div class="bq">
<van-tag
v-for="(item, index) in item.tag"
v-for="(items, index) in item.tag"
:key="index"
plain
type="primary"
>{{ item }}</van-tag
>{{ items }}</van-tag
>
</div>
</div>
@ -293,6 +293,7 @@ const init = () => {
const yxfwxz = (e) => {
list.index = e.id;
// map.clearOverLays();
};
const touchmove = (event) => {
if (
@ -317,6 +318,7 @@ const yxf = () => {
map.addOverLay(LngLats);
});
};
onMounted(() => {
init();
});
@ -500,6 +502,6 @@ onMounted(() => {
color: #cacaca;
}
:deep(.van-search) {
padding:0px 12px 10px;
padding: 0px 12px 10px;
}
</style>