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.
|
|
|
<!--
|
|
|
|
* @Author: mk 2403457699@qq.com
|
|
|
|
* @Date: 2024-01-15 10:07:45
|
|
|
|
* @LastEditors: mk 2403457699@qq.com
|
|
|
|
* @LastEditTime: 2024-02-27 15:10:40
|
|
|
|
* @Description: 介绍一下改动了什么
|
|
|
|
*
|
|
|
|
*
|
|
|
|
-->
|
|
|
|
<template>
|
|
|
|
<div style="width: 100%; height: 100%;">
|
|
|
|
<div class='bg_img'>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {};
|
|
|
|
},
|
|
|
|
created() { },
|
|
|
|
methods: {},
|
|
|
|
components: {},
|
|
|
|
computed: {},
|
|
|
|
watch: {},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.bg_img {
|
|
|
|
background: url('~@/assets/images/map/hsyf.jpg');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
</style>
|