| | |
| | | * @Author: shuishen 1109946754@qq.com |
| | | * @Date: 2022-08-18 16:18:17 |
| | | * @LastEditors: shuishen 1109946754@qq.com |
| | | * @LastEditTime: 2023-09-04 11:10:56 |
| | | * @LastEditTime: 2023-09-05 11:13:38 |
| | | * @FilePath: \srs-police-affairs\src\views\house\index.vue |
| | | * @Description: 小区-栋-层-房屋 |
| | | * |
| | |
| | | <el-table-column prop="zdryxl" label="重点人员类型" v-if="keyPeopleType == 3"></el-table-column> |
| | | <el-table-column prop="realName" label="姓名"></el-table-column> |
| | | <el-table-column prop="cardNo" label="身份证号"></el-table-column> |
| | | <el-table-column prop="isNonage" label="是否未成年"> |
| | | <template slot-scope="scope">{{ scope.row.isNonage == 1 ? '是' : '否' }}</template> |
| | | </el-table-column> |
| | | <el-table-column label="户室"> |
| | | <template slot-scope="scope">{{ scope.row.address.split(villageInfo.name)[1] }}</template> |
| | | </el-table-column> |
| | |
| | | this.peopleNoDataText = ' ' |
| | | this.keyPeopleLoading = true |
| | | this.personDetailArr = [] |
| | | let typeObj = {} |
| | | if (status == 1 || status == 2) { |
| | | typeObj = { peopletype: status } |
| | | } else { |
| | | typeObj = { status: 2 } |
| | | } |
| | | |
| | | this.getVillagePersonInfo( |
| | | "", |
| | | this.choosedBuildUid, |
| | | typeObj |
| | | {type: status} |
| | | ) |
| | | }, |
| | | |