Skip to content

Commit

Permalink
fix: hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
zixuan1986 committed Mar 3, 2024
1 parent cfddcd9 commit e961dc5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/design/map.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<div class="m-map__world">
<span
class="u-map"
@click="changeMap(item.mapid)"
v-for="(item, id) in maps"
:key="id"
:style="`left:${item.Left || 0}px;top:${item.Top || 0}px`"
Expand Down Expand Up @@ -145,7 +144,7 @@ export default {
this.loading = true;
getWorldMap()
.then((res) => {
const list = res.data.data.zoning || [];
const list = res.data.data.zoning || [];
this.maps = list.filter((item) => item.szDisplayName);
})
.finally(() => {
Expand Down

0 comments on commit e961dc5

Please sign in to comment.