-      
-        
-          

-          
更多信息
-        
+        更多信息
+      
+
+      
+        

+      
+        
+          
+            所属网格:
+            {{ gridName }}
+          
+          
+            所属小区:
+            {{ xiaoquName }}
+          
+          
+            所属楼宇:
+            {{ louName }}-{{ danyuanName }}
+          
+          
+            所属家庭:
+            {{ homeName }}
+          
+          
+            
{{ field.label }}:
+
+            
{{
+                info[field.columnName] == null
+                  ? "--"
+                  : getOptionLabel(
+                      field.options,
+                      info[field.columnName],
+                      field.itemType
+                    )
+              }}
 
-        
-          

+            
{{
+              info[field.columnName] == null ? "--" : info[field.columnName]
+            }}
+          
 
+        
+      
+
+      
         
-          
-            
-              所属网格:
-              {{ gridName }}
-            
-            
-              所属小区:
-              {{ xiaoquName }}
-            
-            
-              所属楼宇:
-              {{ louName }}-{{ danyuanName }}
-            
-            
-              所属家庭:
-              {{ homeName }}
-            
-            
-              {{ field.label }}:
-
-              {{
-                  info[field.columnName] == null
-                    ? "--"
-                    : getOptionLabel(
-                        field.options,
-                        info[field.columnName],
-                        field.itemType
-                      )
-                }}
-
-              {{
-                info[field.columnName] == null ? "--" : info[field.columnName]
-              }}
-            
-          
-
-          
+          
 
         
-
-        
-          
-            

-          
-          
-            {{ item.label }}
-          
-          
-            

-          
+        
+          {{ item.label }}
+        
+        
+          
 
         
+      
 
+      
         
           
-            
-              
-                {{ field.label }}:
-                {{
-                    infoItem[field.columnName] == null
-                      ? "--"
-                      : getOptionLabel(
-                          field.options,
-                          infoItem[field.columnName],
-                          field.itemType
-                        )
-                  }}
-
-                {{
-                  infoItem[field.columnName] == null
-                    ? "--"
-                    : infoItem[field.columnName]
-                }}
-              
-            
-          
-          
             {{
-                  !allInfo[group.tableName] ||
-                  allInfo[group.tableName][0][field.columnName] == null
+                  infoItem[field.columnName] == null
                     ? "--"
                     : getOptionLabel(
                         field.options,
-                        allInfo[group.tableName][0][field.columnName],
+                        infoItem[field.columnName],
                         field.itemType
                       )
                 }}
 
               {{
-                !allInfo[group.tableName] ||
-                allInfo[group.tableName][0][field.columnName] == null
+                infoItem[field.columnName] == null
                   ? "--"
-                  : allInfo[group.tableName][0][field.columnName]
+                  : infoItem[field.columnName]
               }}
             
            
          
-      
+        
+          
+            {{ field.label }}:
+            {{
+                !allInfo[group.tableName] ||
+                allInfo[group.tableName][0][field.columnName] == null
+                  ? "--"
+                  : getOptionLabel(
+                      field.options,
+                      allInfo[group.tableName][0][field.columnName],
+                      field.itemType
+                    )
+              }}
+
+            {{
+              !allInfo[group.tableName] ||
+              allInfo[group.tableName][0][field.columnName] == null
+                ? "--"
+                : allInfo[group.tableName][0][field.columnName]
+            }}
+          
+        
+      
 
      
   
@@ -105,18 +150,7 @@ export default {
   data() {
     return {
       formType: "detail", //表单操作类型 add新增,edit编辑,detail详情
-      dataForm: {
-        neighborHoodId: "", // 所属小区ID
-        buildingId: "", //所属楼栋ID
-        buildingUnitId: "", //所属单元ID
-        doorName: "", //门牌号
-        houseType: "", //房屋类型【楼房,平房,别墅】
-        purpose: "", //房屋用途【住宅,商业,办公,工业,仓储,商住混用,其他】
-        rentFlag: 1, //是否出租【是:1,否:0】
-        ownerPhone: "", //房主电话
-        ownerName: "", //房主名字
-        ownerIdCard: "", //房主身份证
-      },
+      dataForm: {},
     };
   },
   components: {},
@@ -138,18 +172,7 @@ export default {
     },
 
     resetData() {
-      this.dataForm = {
-        neighborHoodId: "", // 所属小区ID
-        buildingId: "", //所属楼栋ID
-        buildingUnitId: "", //所属单元ID
-        doorName: "", //门牌号
-        houseType: "1", //房屋类型【楼房,平房,别墅】
-        purpose: "1", //房屋用途【住宅,商业,办公,工业,仓储,商住混用,其他】
-        rentFlag: 1, //是否出租【是:1,否:0】
-        ownerPhone: "", //房主电话
-        ownerName: "", //房主名字
-        ownerIdCard: "", //房主身份证
-      };
+      this.dataForm = {};
     },
     // 开启加载动画
     startLoading() {
diff --git a/src/views/modules/shequ/index.vue b/src/views/modules/shequ/index.vue
index becf35d41..16a8cc5c6 100644
--- a/src/views/modules/shequ/index.vue
+++ b/src/views/modules/shequ/index.vue
@@ -478,7 +478,7 @@ import { requestPost } from "@/js/dai/request";
 import panChart from "@/views/modules/shequ/cpts/pan-chart";
 import { mapGetters } from "vuex";
 import nextTick from "dai-js/tools/nextTick";
-import peopleMore from "@/views/modules/visual/basicinfo/cpts/people-more";
+import peopleMore from "@/views/modules/shequ/cpts/people-more";
 import fangwuInfo from "@/views/modules/shequ/cpts/fangwu-info";
 import xuqiuInfo from "@/views/modules/shequ/cpts/xuqiu-info";