From 1a26ecaade1a023f0fd968ed6fc1db2b5a00a8e4 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 05 Sep 2023 11:14:07 +0800
Subject: [PATCH] 社区感知更改

---
 src/views/house/index.vue |   14 ++++++--------
 1 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/src/views/house/index.vue b/src/views/house/index.vue
index 67fb422..6366555 100644
--- a/src/views/house/index.vue
+++ b/src/views/house/index.vue
@@ -2,7 +2,7 @@
  * @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: 小区-栋-层-房屋
  * 
@@ -617,6 +617,9 @@
                     <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>
@@ -1895,16 +1898,11 @@
             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}
             )
         },
 

--
Gitblit v1.9.3