移风店大屏前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
558 B

2 years ago
<template>
2 years ago
<div style="width: 100%; height: 100%;">
<div class='bg_img'>
</div>
</div>
2 years ago
</template>
<script>
export default {
data() {
return {};
},
2 years ago
created() { },
2 years ago
methods: {},
2 years ago
components: {},
computed: {},
2 years ago
watch: {},
}
</script>
<style lang="scss" scoped>
2 years ago
.bg_img {
background: url('~@/assets/images/map/echartsBg.png');
background-size: 100% 100%;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
2 years ago
</style>