|
|
@ -31,11 +31,7 @@ |
|
|
|
<span>证件号</span> |
|
|
|
<span>联系电话</span> |
|
|
|
</div> |
|
|
|
<div |
|
|
|
class="list_row" |
|
|
|
v-for="(item, index) in dataList" |
|
|
|
:key="item.name + index" |
|
|
|
> |
|
|
|
<div class="list_row" v-for="(item, index) in dataList" :key="item.name + index"> |
|
|
|
<div class="list_row_item">{{ index + 1 }}</div> |
|
|
|
<div class="list_row_item">{{ item.icUserName }}</div> |
|
|
|
<div class="list_row_item"> |
|
|
@ -74,12 +70,13 @@ |
|
|
|
}, |
|
|
|
components: {}, |
|
|
|
mounted() { |
|
|
|
}, |
|
|
|
created () { |
|
|
|
this.$nextTick(() => { |
|
|
|
resiListByHomeId({ houseId: this.houseId }).then(res => { |
|
|
|
this.dataList = res.data |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
created() {}, |
|
|
|
methods: { |
|
|
|
handelClose() { |
|
|
|
this.$emit('handelClose') |
|
|
@ -87,7 +84,7 @@ |
|
|
|
}, |
|
|
|
props: { |
|
|
|
houseId: { |
|
|
|
type:Number, |
|
|
|
type: String, |
|
|
|
default: 0 |
|
|
|
}, |
|
|
|
houseName: { |
|
|
@ -109,6 +106,7 @@ |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
z-index: 150; |
|
|
|
|
|
|
|
section { |
|
|
|
@include flex(column); |
|
|
|
background: url("~@/assets/images/common/dialog-bg-red.png") no-repeat !important; |
|
|
@ -134,8 +132,7 @@ |
|
|
|
|
|
|
|
.title-container { |
|
|
|
align-items: center; |
|
|
|
background: url("~@/assets/images/common/dialog-header-red.png") |
|
|
|
no-repeat; |
|
|
|
background: url("~@/assets/images/common/dialog-header-red.png") no-repeat; |
|
|
|
background-size: 100% 100%; |
|
|
|
display: flex; |
|
|
|
justify-content: center; |
|
|
@ -189,11 +186,9 @@ |
|
|
|
width: 100%; |
|
|
|
height: 30px; |
|
|
|
text-align: left; |
|
|
|
background: linear-gradient( |
|
|
|
90deg, |
|
|
|
background: linear-gradient(90deg, |
|
|
|
rgb(26, 109, 224) 0%, |
|
|
|
rgba(13, 113, 248, 0) 50% |
|
|
|
); |
|
|
|
rgba(13, 113, 248, 0) 50%); |
|
|
|
display: flex; |
|
|
|
justify-content: flex-start; |
|
|
|
align-items: center; |
|
|
@ -266,9 +261,11 @@ |
|
|
|
background-position: center 40px; |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
|
|
|
|
.title_hrader_item { |
|
|
|
font-family: 'PingFang Regular'; |
|
|
|
} |
|
|
|
|
|
|
|
&_item { |
|
|
|
width: 130px; |
|
|
|
height: 48px; |
|
|
@ -276,6 +273,7 @@ |
|
|
|
font-size: 14px; |
|
|
|
color: #ffffff; |
|
|
|
line-height: 48px; |
|
|
|
|
|
|
|
.numberTotal { |
|
|
|
font-family: PangMenZhengDao; |
|
|
|
font-weight: 400; |
|
|
@ -283,23 +281,28 @@ |
|
|
|
line-height: 44px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
&_item:nth-child(1) { |
|
|
|
padding-left: 24px; |
|
|
|
width: auto; |
|
|
|
font-family: PingFang Regular; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
|
|
|
|
&_item:nth-child(3) { |
|
|
|
width: 210px; |
|
|
|
} |
|
|
|
|
|
|
|
&_item:nth-child(4) { |
|
|
|
width: 180px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.list { |
|
|
|
height: 500px; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
|
|
|
|
&_item_header { |
|
|
|
width: 100%; |
|
|
|
height: 48px; |
|
|
@ -308,19 +311,24 @@ |
|
|
|
border-radius: 5px; |
|
|
|
background-color: #bd360c; |
|
|
|
color: #fbe9c5; |
|
|
|
|
|
|
|
&>:nth-child(1) { |
|
|
|
width: 80px; |
|
|
|
padding-left: 24px; |
|
|
|
} |
|
|
|
|
|
|
|
&>:nth-child(2) { |
|
|
|
width: 80px; |
|
|
|
} |
|
|
|
|
|
|
|
&>:nth-child(3) { |
|
|
|
width: 80px; |
|
|
|
} |
|
|
|
|
|
|
|
&>:nth-child(4) { |
|
|
|
flex: 1; |
|
|
|
} |
|
|
|
|
|
|
|
&>:nth-child(5) { |
|
|
|
width: 160px; |
|
|
|
} |
|
|
@ -330,47 +338,56 @@ |
|
|
|
display: flex; |
|
|
|
border-bottom: 0px; |
|
|
|
color: #fbe9c5; |
|
|
|
|
|
|
|
&_item { |
|
|
|
width: 140px; |
|
|
|
height: 48px; |
|
|
|
line-height: 48px; |
|
|
|
border-bottom: 1px dashed #bb7053; |
|
|
|
} |
|
|
|
|
|
|
|
&_item:nth-child(1) { |
|
|
|
width: 80px; |
|
|
|
padding-left: 24px; |
|
|
|
} |
|
|
|
|
|
|
|
&_item:nth-child(2) { |
|
|
|
width: 80px; |
|
|
|
} |
|
|
|
|
|
|
|
&_item:nth-child(3) { |
|
|
|
width: 80px; |
|
|
|
} |
|
|
|
|
|
|
|
&_item:nth-child(4) { |
|
|
|
flex: 1; |
|
|
|
} |
|
|
|
|
|
|
|
&_item:nth-child(5) { |
|
|
|
width: 160px; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.list_row:hover { |
|
|
|
background: url("~@/assets/images/common/zzjg_xz.png") no-repeat !important; |
|
|
|
background-size: 100% 100% !important; |
|
|
|
color: #ffffff; |
|
|
|
} |
|
|
|
|
|
|
|
.list_row:nth-child(1) { |
|
|
|
border: 1px solid #bb7053; |
|
|
|
border-bottom: 0px; |
|
|
|
} |
|
|
|
|
|
|
|
.list_bottom { |
|
|
|
border-bottom: 1px solid #bb7053; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// .list_row:nth-child(11) { |
|
|
|
// border: 1px solid #bb7053; |
|
|
|
// } |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|
|