2021-12-15 18:07:16 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="add">
|
|
|
|
|
<div class="title">
|
|
|
|
|
<span class="tips"></span>房屋信息
|
|
|
|
|
</div>
|
2021-12-15 18:26:33 +08:00
|
|
|
<div class="pad-l32">
|
|
|
|
|
<div class="item">
|
|
|
|
|
<span class="label">房屋面积</span>
|
|
|
|
|
<div class="value">
|
2021-12-17 18:06:55 +08:00
|
|
|
<u-input type="digit" placeholder="请输入" v-model="houseInfo.houseArea" input-align="right" placeholder-style="color:#999;font-size:16px;" height="48" :maxlength="7" />
|
2021-12-15 18:26:33 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item">
|
|
|
|
|
<span class="label">居住现状</span>
|
2021-12-17 18:06:55 +08:00
|
|
|
<div class="value" @click="selectClick('houselivingStatus', 'livingStatus')">
|
|
|
|
|
<span :class="houseInfo.livingStatus === '' ? 'color-999' : ''">{{ $dict.getLabel('houselivingStatus', houseInfo.livingStatus) || '请选择'}}</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item">
|
|
|
|
|
<span class="label">房屋用途</span>
|
2021-12-17 18:08:02 +08:00
|
|
|
<div class="value" @click="selectClick('houseUseStatus', 'houseUse')">
|
2021-12-17 18:06:55 +08:00
|
|
|
<span :class="houseInfo.houseUse === '' ? 'color-999' : ''">{{$dict.getLabel('houseUseStatus', houseInfo.houseUse) || '请选择'}}</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-12-18 11:19:54 +08:00
|
|
|
<div class="item" v-if="houseInfo.livingStatus == 1">
|
2021-12-15 18:26:33 +08:00
|
|
|
<span class="label">承租情况</span>
|
2021-12-18 11:19:54 +08:00
|
|
|
<div class="value" @click="selectClick('houseLeaseSituation', 'leaseSituation')">
|
|
|
|
|
<span :class="houseInfo.leaseSituation === '' ? 'color-999' : ''">{{ $dict.getLabel('houseLeaseSituation', houseInfo.leaseSituation) || '请选择'}}</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-12-18 11:19:54 +08:00
|
|
|
<div class="item" v-if="houseInfo.livingStatus == 1">
|
2021-12-15 18:26:33 +08:00
|
|
|
<span class="label">起租日期</span>
|
2021-12-18 11:19:54 +08:00
|
|
|
<div class="value" @click="dateShow=true">
|
|
|
|
|
<span :class="houseInfo.startDate === '' ? 'color-999' : ''">{{ houseInfo.startDate || '请选择'}}</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-12-18 11:19:54 +08:00
|
|
|
<div class="item" v-if="houseInfo.livingStatus == 1">
|
2021-12-15 18:26:33 +08:00
|
|
|
<span class="label">租房备案证明</span>
|
2021-12-17 18:08:02 +08:00
|
|
|
<div class="value" @click="selectClick('isFilingCertificateStatus', 'isFilingCertificate')">
|
2021-12-17 18:06:55 +08:00
|
|
|
<span :class="houseInfo.isFilingCertificate === '' ? 'color-999' : ''">{{ $dict.getLabel('isFilingCertificateStatus', houseInfo.isFilingCertificate) || '请选择'}}</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="line-bg"></div>
|
|
|
|
|
<div class="title">
|
|
|
|
|
<span class="tips"></span>房主信息
|
2021-12-18 11:19:54 +08:00
|
|
|
<span class="select" @click="handleSelectUser('owner')">选择人员</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="pad-l32">
|
2021-12-18 11:19:54 +08:00
|
|
|
<div class="item" v-for="(item, index) in houseInfo.owner" :key="index">
|
|
|
|
|
<span class="label">{{item.name}}</span>
|
|
|
|
|
<div class="value" @click="tableRelationSelect('owner', index)">
|
|
|
|
|
<span :class=" item.relation === '' ? 'color-999' : ''">{{$dict.getLabel('householdRelation', item.relation) || '与户主关系'}}</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="line-bg"></div>
|
|
|
|
|
<div class="title">
|
|
|
|
|
<span class="tips"></span>承租人信息
|
2021-12-18 11:19:54 +08:00
|
|
|
<span class="select" @click="handleSelectUser('renter')">选择人员</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="pad-l32">
|
2021-12-18 11:19:54 +08:00
|
|
|
<div class="item" v-for="(item, index) in houseInfo.renter" :key="index">
|
|
|
|
|
<span class="label">{{item.name}}</span>
|
|
|
|
|
<div class="value" @click="tableRelationSelect('renter', index)">
|
|
|
|
|
<span :class=" item.relation === '' ? 'color-999' : ''">{{$dict.getLabel('householdRelation', item.relation) || '与户主关系'}}</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="line-bg"></div>
|
|
|
|
|
<div class="title">
|
|
|
|
|
<span class="tips"></span>实际居住人员
|
2021-12-18 11:19:54 +08:00
|
|
|
<span class="select" @click="handleSelectUser('live')">选择人员</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="pad-l32">
|
2021-12-18 11:19:54 +08:00
|
|
|
<div class="item" v-for="(item, index) in houseInfo.live" :key="index">
|
|
|
|
|
<span class="label">{{item.name}}</span>
|
|
|
|
|
<div class="value" @click="tableRelationSelect('live', index)">
|
|
|
|
|
<span :class=" item.relation === '' ? 'color-999' : ''">{{$dict.getLabel('householdRelation', item.relation) || '与户主关系'}}</span>
|
2021-12-15 18:26:33 +08:00
|
|
|
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-12-18 11:19:54 +08:00
|
|
|
<div class="footer" @click="submit">
|
2021-12-15 18:26:33 +08:00
|
|
|
<div class="btn">保存</div>
|
|
|
|
|
</div>
|
2021-12-17 18:06:55 +08:00
|
|
|
|
2021-12-18 11:19:54 +08:00
|
|
|
<u-picker mode="time" v-model="dateShow" :params="deteParams" start-year="2010" @confirm="dateConfirm" >请选择</u-picker>
|
2021-12-17 18:06:55 +08:00
|
|
|
<u-select v-model="showSelect" :list="selectList" label-name="dictName" value-name="dictValue" @confirm="confirmSelect"></u-select>
|
2021-12-18 11:19:54 +08:00
|
|
|
<u-select v-model="showRelation" :list="$dict.getDict('householdRelation')" label-name="dictName" value-name="dictValue" @confirm="confirmRelation"></u-select>
|
2021-12-15 18:07:16 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2021-12-18 11:19:54 +08:00
|
|
|
import { mapState, mapActions } from 'vuex'
|
2021-12-15 18:07:16 +08:00
|
|
|
export default {
|
|
|
|
|
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2021-12-17 18:06:55 +08:00
|
|
|
id: '',
|
|
|
|
|
houseInfo: {},
|
|
|
|
|
showSelect: false,
|
|
|
|
|
selectList: [],
|
2021-12-18 11:19:54 +08:00
|
|
|
formName: '',
|
|
|
|
|
dateShow: false,
|
|
|
|
|
deteParams: { year: true, month: true, day: true, hour: false, minute: false, second: false},
|
|
|
|
|
showRelation: false,
|
|
|
|
|
tableName: '',
|
|
|
|
|
tableIndex: '',
|
|
|
|
|
communityId: ''
|
2021-12-15 18:07:16 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: { ...mapState(['user']) },
|
|
|
|
|
mounted() {
|
2021-12-18 11:19:54 +08:00
|
|
|
this.id = this.params.id
|
|
|
|
|
this.communityId = this.params.communityId
|
2021-12-17 18:06:55 +08:00
|
|
|
this.$dict.load('householdRelation', 'houselivingStatus', 'houseLeaseSituation', 'houseUseStatus',
|
|
|
|
|
'isFilingCertificateStatus', 'communityBuildingType', 'yesOrNo', 'BulidResidentType').then(() => {
|
|
|
|
|
this.getDetail()
|
|
|
|
|
})
|
2021-12-15 18:07:16 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
2021-12-18 11:19:54 +08:00
|
|
|
...mapActions(['selectEnterpriseContact']),
|
|
|
|
|
handleSelectUser(fieldDbName) {
|
|
|
|
|
this.selectEnterpriseContact({
|
|
|
|
|
fromDepartmentId: 0,
|
|
|
|
|
type: ["user"],
|
|
|
|
|
selectedUserIds: this.houseInfo[fieldDbName]?.map(e => e.id)
|
|
|
|
|
}).then(res => {
|
|
|
|
|
this.houseInfo[fieldDbName] = res?.userList || []
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
tableRelationSelect(name, index) {
|
|
|
|
|
this.tableName = name
|
|
|
|
|
this.tableIndex = index
|
|
|
|
|
this.showRelation = true
|
|
|
|
|
},
|
|
|
|
|
confirmRelation(e) {
|
|
|
|
|
console.log(this.houseInfo[this.tableName][this.tableIndex])
|
|
|
|
|
this.houseInfo[this.tableName][this.tableIndex].relation = e[0].value
|
|
|
|
|
},
|
2021-12-17 18:06:55 +08:00
|
|
|
getDetail() {
|
|
|
|
|
this.$http.post(`app/appcommunityhouseinfo/queryDetailById?id=${this.id}`).then(res => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
if(res.data.startDate) {
|
|
|
|
|
res.data.startDate = res.data.startDate.substring(0, 10)
|
|
|
|
|
}
|
|
|
|
|
this.houseInfo = res.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2021-12-18 11:19:54 +08:00
|
|
|
submit() {
|
|
|
|
|
this.$http.post(`app/appcommunityhouseinfo/update`, this.houseInfo).then(res => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
this.$u.toast('提交成功')
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
this.$emit('change', {
|
|
|
|
|
type: 'Detail',
|
|
|
|
|
params: {
|
|
|
|
|
id: this.communityId
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}, 600)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2021-12-17 18:06:55 +08:00
|
|
|
selectClick(dictName, formName) {
|
|
|
|
|
console.log(123)
|
|
|
|
|
this.selectList = this.$dict.getDict(dictName)
|
|
|
|
|
this.formName = formName
|
|
|
|
|
this.showSelect = true
|
|
|
|
|
},
|
|
|
|
|
confirmSelect(e) {
|
|
|
|
|
this.houseInfo[this.formName] = e[0].value
|
2021-12-18 11:19:54 +08:00
|
|
|
},
|
|
|
|
|
dateConfirm(e) {
|
|
|
|
|
this.houseInfo.startDate = `${e.year}-${e.month}-${e.day}`
|
2021-12-17 18:06:55 +08:00
|
|
|
}
|
2021-12-15 18:07:16 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.add {
|
2021-12-15 18:26:33 +08:00
|
|
|
padding-bottom: 112px;
|
2021-12-15 18:07:16 +08:00
|
|
|
.title{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 96px;
|
|
|
|
|
line-height: 96px;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #262B36;
|
|
|
|
|
padding-right: 32px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
.tips{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 8px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
background: #4E75FE;
|
|
|
|
|
box-shadow: 0px 8px 24px 2px #C9D8FA;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-right: 22px;
|
|
|
|
|
}
|
|
|
|
|
.select{
|
|
|
|
|
float: right;
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
color: #1365DD;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-15 18:26:33 +08:00
|
|
|
.item{
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 34px 32px 34px 0;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-bottom: 1px solid #D8DDE6;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
|
color: #333;
|
|
|
|
|
line-height: 44px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
.color-999{
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
.value{
|
|
|
|
|
.u-icon{
|
|
|
|
|
margin-left: 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.footer{
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
.btn{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 112px;
|
|
|
|
|
line-height: 112px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background: #1365DD;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #FFF;
|
|
|
|
|
}
|
|
|
|
|
.line-bg{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 16px;
|
|
|
|
|
background: #F5F5F5;
|
|
|
|
|
}
|
|
|
|
|
.pad-l32{
|
|
|
|
|
padding-left: 32px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
}
|
2021-12-15 18:07:16 +08:00
|
|
|
}
|
|
|
|
|
</style>
|