|
|
@ -210,7 +210,7 @@ |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-image |
|
|
|
style="max-height: 50px" |
|
|
|
style="max-height: 50px; max-width: 50px;" |
|
|
|
:src="scope.row.faceImg" |
|
|
|
:preview-src-list="[scope.row.faceImg]"> |
|
|
|
<div slot="error" class="image-slot"> |
|
|
@ -417,7 +417,7 @@ |
|
|
|
@closed="addHouseShow = false"> |
|
|
|
<room-form ref="ref_form" |
|
|
|
@dialogCancle="addHouseShow = false" |
|
|
|
@dialogOk="checkHandle('2')"></room-form> |
|
|
|
@dialogOk="roomFormOk"></room-form> |
|
|
|
</el-dialog> |
|
|
|
</div> |
|
|
|
</template> |
|
|
@ -731,7 +731,6 @@ export default { |
|
|
|
}, |
|
|
|
// 审核提交方法 |
|
|
|
checkHandle (type) { |
|
|
|
console.log('xxxxx', this.dataForm) |
|
|
|
const params = { |
|
|
|
id: this.dataForm.id, |
|
|
|
checkState: type, // 0-未审核 1-未通过 2-已通过 |
|
|
@ -789,6 +788,11 @@ export default { |
|
|
|
}) |
|
|
|
}).catch(() => {}) |
|
|
|
}, |
|
|
|
roomFormOk (e) { |
|
|
|
this.dataForm.buildingUnitId = e.buildingUnitId |
|
|
|
this.dataForm.doorName = e.doorName |
|
|
|
this.checkHandle('2') |
|
|
|
} |
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|