|
|
@ -1,6 +1,6 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<!-- 房屋小图标标题 -->
|
|
|
|
<!-- 房屋小图标标题 -->
|
|
|
|
<div class="house_icon_title">
|
|
|
|
<div class="house_icon_title">
|
|
|
|
<div class="house_icon_title_box"></div>
|
|
|
|
<div class="house_icon_title_box"></div>
|
|
|
|
<div class="house_text">实有房屋</div>
|
|
|
|
<div class="house_text">实有房屋</div>
|
|
|
@ -21,7 +21,7 @@
|
|
|
|
></div>
|
|
|
|
></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- 出租房,群组房 -->
|
|
|
|
<!-- 出租房,群组房 -->
|
|
|
|
<div class="icon_bottom_flex">
|
|
|
|
<div class="icon_bottom_flex">
|
|
|
|
<div class="icon_bottom1">
|
|
|
|
<div class="icon_bottom1">
|
|
|
|
<div class="icon_buttom1_text">出租房</div>
|
|
|
|
<div class="icon_buttom1_text">出租房</div>
|
|
|
@ -32,24 +32,24 @@
|
|
|
|
<div class="icon_bottom2_number">3</div>
|
|
|
|
<div class="icon_bottom2_number">3</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name:'ActualBuilding',
|
|
|
|
name: 'ActualBuilding',
|
|
|
|
data(){
|
|
|
|
data() {
|
|
|
|
return{
|
|
|
|
return {
|
|
|
|
iconlist: [
|
|
|
|
iconlist: [
|
|
|
|
{ id: '1', name: '住宅', number: '35' },
|
|
|
|
{ id: '1', name: '住宅', number: '35' },
|
|
|
|
{ id: '2', name: '商铺', number: '0' },
|
|
|
|
{ id: '2', name: '商铺', number: '0' },
|
|
|
|
{ id: '3', name: '商住两用', number: '2' },
|
|
|
|
{ id: '3', name: '商住两用', number: '2' },
|
|
|
|
{ id: '4', name: '空置', number: '27' }
|
|
|
|
{ id: '4', name: '空置', number: '27' }
|
|
|
|
],
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods:{
|
|
|
|
methods: {
|
|
|
|
back_change(id) {
|
|
|
|
back_change(id) {
|
|
|
|
console.log(id, 'lll')
|
|
|
|
console.log(id, 'lll')
|
|
|
|
switch (id) {
|
|
|
|
switch (id) {
|
|
|
|
case '1':
|
|
|
|
case '1':
|
|
|
@ -61,109 +61,108 @@
|
|
|
|
case '4':
|
|
|
|
case '4':
|
|
|
|
return `url(${require('@/assets/house-hza/bg15.png')})`
|
|
|
|
return `url(${require('@/assets/house-hza/bg15.png')})`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" >
|
|
|
|
<style lang="scss">
|
|
|
|
.house_icon_title {
|
|
|
|
.house_icon_title {
|
|
|
|
width: 18vw;
|
|
|
|
width: 18vw;
|
|
|
|
height: 3.5vh;
|
|
|
|
height: 3.5vh;
|
|
|
|
// background-color: #fff;
|
|
|
|
// background-color: #fff;
|
|
|
|
|
|
|
|
margin-left: 1vw;
|
|
|
|
|
|
|
|
margin-top: 1vh;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.house_icon_title_box {
|
|
|
|
|
|
|
|
width: 1vw;
|
|
|
|
|
|
|
|
height: 2vh;
|
|
|
|
|
|
|
|
background-image: url(@/assets/house-hza/bg17.png);
|
|
|
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.house_text {
|
|
|
|
|
|
|
|
width: 5vw;
|
|
|
|
|
|
|
|
color: antiquewhite;
|
|
|
|
margin-left: 1vw;
|
|
|
|
margin-left: 1vw;
|
|
|
|
margin-top: 1vh;
|
|
|
|
font-size: 16px;
|
|
|
|
display: flex;
|
|
|
|
font-weight: 700;
|
|
|
|
.house_icon_title_box {
|
|
|
|
// background-color: orange;
|
|
|
|
width: 1vw;
|
|
|
|
}
|
|
|
|
height: 2vh;
|
|
|
|
.house_icon_number {
|
|
|
|
background-image: url(@/assets/house-hza/bg17.png);
|
|
|
|
height: 2.5vh;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
width: 4vw;
|
|
|
|
}
|
|
|
|
margin-left: 9vw;
|
|
|
|
.house_text {
|
|
|
|
// background-color: pink;
|
|
|
|
width: 5vw;
|
|
|
|
color: #00f5ff;
|
|
|
|
color: antiquewhite;
|
|
|
|
|
|
|
|
margin-left: 1vw;
|
|
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
|
|
// background-color: orange;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.house_icon_number {
|
|
|
|
|
|
|
|
height: 2.5vh;
|
|
|
|
|
|
|
|
width: 4vw;
|
|
|
|
|
|
|
|
margin-left: 9vw;
|
|
|
|
|
|
|
|
// background-color: pink;
|
|
|
|
|
|
|
|
color: #00f5ff;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.icon_bottom_flex {
|
|
|
|
.icon_bottom_flex {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
margin-left: 1vw;
|
|
|
|
|
|
|
|
// margin-top: 1vh;
|
|
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
.icon_bottom1 {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
margin-left: 1vw;
|
|
|
|
padding-left: 2.5vw;
|
|
|
|
// margin-top: 1vh;
|
|
|
|
width: 8.5vw;
|
|
|
|
color: #fff;
|
|
|
|
height: 4vh;
|
|
|
|
.icon_bottom1 {
|
|
|
|
background-image: url(@/assets/house-hza/bg-1.png);
|
|
|
|
display: flex;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
padding-left: 2.5vw;
|
|
|
|
padding-top: 1vh;
|
|
|
|
width: 8.5vw;
|
|
|
|
.icon_bottom1_number {
|
|
|
|
height: 4vh;
|
|
|
|
margin-left: 2vw;
|
|
|
|
background-image: url(@/assets/house-hza/bg-1.png);
|
|
|
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
|
|
|
padding-top: 1vh;
|
|
|
|
|
|
|
|
.icon_bottom1_number {
|
|
|
|
|
|
|
|
margin-left: 2vw;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon_bottom2 {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
padding-left: 2.5vw;
|
|
|
|
|
|
|
|
width: 8.5vw;
|
|
|
|
|
|
|
|
height: 4vh;
|
|
|
|
|
|
|
|
background-image: url(@/assets/house-hza/bg-22.png);
|
|
|
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
|
|
|
margin-left: 1vw;
|
|
|
|
|
|
|
|
padding-top: 1vh;
|
|
|
|
|
|
|
|
.icon_bottom2_number {
|
|
|
|
|
|
|
|
margin-left: 2vw;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.house_icon_box_for {
|
|
|
|
.icon_bottom2 {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
height: 11vh;
|
|
|
|
padding-left: 2.5vw;
|
|
|
|
width: 18vw;
|
|
|
|
width: 8.5vw;
|
|
|
|
|
|
|
|
height: 4vh;
|
|
|
|
|
|
|
|
background-image: url(@/assets/house-hza/bg-22.png);
|
|
|
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
margin-left: 1vw;
|
|
|
|
margin-left: 1vw;
|
|
|
|
// background-color: orange;
|
|
|
|
padding-top: 1vh;
|
|
|
|
// margin-top: 1vh;
|
|
|
|
.icon_bottom2_number {
|
|
|
|
.house_icon_box {
|
|
|
|
margin-left: 2vw;
|
|
|
|
|
|
|
|
}
|
|
|
|
width: 4vw;
|
|
|
|
}
|
|
|
|
margin-right: 1vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.house_icon_box_for {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
height: 11vh;
|
|
|
|
|
|
|
|
width: 18vw;
|
|
|
|
|
|
|
|
margin-left: 1vw;
|
|
|
|
|
|
|
|
// background-color: orange;
|
|
|
|
|
|
|
|
// margin-top: 1vh;
|
|
|
|
|
|
|
|
.house_icon_box {
|
|
|
|
|
|
|
|
width: 4vw;
|
|
|
|
|
|
|
|
margin-right: 1vw;
|
|
|
|
|
|
|
|
|
|
|
|
// background-color: #fff;
|
|
|
|
// background-color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
text-align: center;
|
|
|
|
.house_number {
|
|
|
|
.house_number {
|
|
|
|
width: 1.5vw;
|
|
|
|
width: 1.5vw;
|
|
|
|
margin-left: 1vw;
|
|
|
|
margin-left: 1vw;
|
|
|
|
height: 3vh;
|
|
|
|
height: 3vh;
|
|
|
|
// background-color: pink;
|
|
|
|
// background-color: pink;
|
|
|
|
font-family: D-DIN Bold;
|
|
|
|
font-family: D-DIN Bold;
|
|
|
|
color: #e5f5f9;
|
|
|
|
color: #e5f5f9;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.house_title {
|
|
|
|
.house_title {
|
|
|
|
// background-color: pink;
|
|
|
|
// background-color: pink;
|
|
|
|
margin-top: 0.5vh;
|
|
|
|
margin-top: 0.5vh;
|
|
|
|
font-size: 0.7rem;
|
|
|
|
font-size: 0.7rem;
|
|
|
|
color: #cbd2d7;
|
|
|
|
color: #cbd2d7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.house_icon {
|
|
|
|
.house_icon {
|
|
|
|
width: 3.5vw;
|
|
|
|
width: 3.5vw;
|
|
|
|
height: 6vh;
|
|
|
|
height: 6vh;
|
|
|
|
// background-color: blue;
|
|
|
|
// background-color: blue;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
background-size: 100% 100%;
|
|
|
|
margin-top: 0.5vh;
|
|
|
|
margin-top: 0.5vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</style>
|