hejianhao
2025-04-16 dab2d210ca06c1faa514c6388fbd5de1ab355360
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
<template>
  <div id="body" ref="body" class="pop_detail">
    <div class="sticky">
      <div class="title-back">
        <span class="title">居民详情</span>
        <button
          class="m_btn bgc_primary"
          style="min-width: 80px"
          @click="$router.back()"
        >
          返回
        </button>
      </div>
      <el-tabs v-model="activeName" @tab-click="handleClick">
        <el-tab-pane label="基础信息" name="Basics"></el-tab-pane>
        <el-tab-pane label="家庭成员" name="family"></el-tab-pane>
        <el-tab-pane label="房屋信息" name="house"></el-tab-pane>
        <el-tab-pane label="车辆信息" name="vehicle"></el-tab-pane>
        <el-tab-pane label="精神障碍信息" name="spirit"></el-tab-pane>
        <el-tab-pane label="吸毒信息" name="drug"></el-tab-pane>
        <el-tab-pane label="社区矫正信息" name="correct"></el-tab-pane>
        <el-tab-pane label="邪教信息" name="Cult"></el-tab-pane>
        <el-tab-pane label="刑释信息" name="prison"></el-tab-pane>
        <el-tab-pane label="上访信息" name="petition"></el-tab-pane>
        <!-- <el-tab-pane label="服刑信息" name="sentence"></el-tab-pane> -->
        <el-tab-pane label="退役军人信息" name="soldier"></el-tab-pane>
        <el-tab-pane label="残疾人信息" name="disability"></el-tab-pane>
        <el-tab-pane label="低保户信息  " name="allowance"></el-tab-pane>
        <el-tab-pane label="高龄信息  " name="advanced"></el-tab-pane>
        <el-tab-pane label="养老信息  " name="provide"></el-tab-pane>
      </el-tabs>
    </div>
    <!-- 基础信息 -->
    <v-header title="基础信息:"></v-header>
    <span ref="Basics" id="Basics"></span>
    <div class="w_row demo_form clearfix">
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">姓名:</p>
        <article>{{ detail.name || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">身份证号:</p>
        <article>{{ detail.cardNo || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">人员类型:</p>
        <article>{{ reText(personTypeList, detail.personType) }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">民族:</p>
        <article>{{ detail.nation || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">出生年月:</p>
        <article>{{ detail.birthday || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">年龄:</p>
        <article>{{ detail.age || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">政治面貌:</p>
        <article>{{ politicalOutlookList[detail.politicalOutlook] }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">是否租住:</p>
        <article>{{ detail.isRent === 1 ? "是" : "否" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">与户主关系:</p>
        <article v-if="detail.relation">{{ detail.relationName }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">联系方式:</p>
        <article>{{ detail.phone || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">籍贯:</p>
        <article>{{ detail.nativePlace || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">文化程度:</p>
        <article>{{ detail.cultureLevelName }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">婚姻状况:</p>
        <article v-if="detail.marriage">{{ setMarriage }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">健康状况:</p>
        <article>{{ detail.healthy || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">工作单位:</p>
        <article>{{ detail.workCompany || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">本地外地:</p>
        <article>
          {{ detail.outOrLocal && detail.outOrLocal === 1 ? "本地" : "外地" }}
        </article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">户口所在地:</p>
        <article>{{ detail.censusRegister || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">街路巷:</p>
        <article>{{ detail.road || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">更新时间:</p>
        <article>{{ detail.updateAt || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">人员标签:</p>
        <article>{{ detail.label || "" }}</article>
      </section>
      <section class="w_col_8 w_col_md_24">
        <p class="label-content-width">职业资料:</p>
        <article>{{ detail.profession || "" }}</article>
      </section>
      <section
        class="w_col_24"
        v-for="(item, index) in detail.houseList"
        :key="item.houseId"
      >
        <p class="label-content-width">居住地址{{ index + 1 }}:</p>
        <article>{{ item.address || "" }}</article>
      </section>
      <section class="w_col_24">
        <p class="label-content-width">备注:</p>
        <article>{{ detail.remark || "" }}</article>
      </section>
    </div>
    <div v-if="isCard">
      <v-header title="电子档案:"></v-header>
      <div class="cards">
        <h6 v-if="cards.cardPhotoBack">身份证(国徽面)</h6>
        <div class="imgs">
          <img
            v-if="cards.cardPhotoBack"
            :src="cards.cardPhotoBack || '../../static/image/noimage.jpg'"
            alt=""
            @click="appShowImage(cards.cardPhotoBack)"
          />
        </div>
        <h6 v-if="cards.cardPhotoFront">身份证(人像面)</h6>
        <div class="imgs">
          <img
            v-if="cards.cardPhotoFront"
            :src="cards.cardPhotoFront || '../../static/image/noimage.jpg'"
            alt=""
            @click="appShowImage(cards.cardPhotoFront)"
          />
        </div>
        <h6 v-if="cardList.length !== 0">户口本</h6>
        <div class="imgs">
          <img
            :src="i || '../../static/image/noimage.jpg'"
            alt=""
            v-for="(i, j) in cardList"
            :key="j + '-c'"
            @click="appShowImage(i, cardList)"
          />
        </div>
      </div>
    </div>
 
    <v-header title="电子档案:" tag="暂无TA的档案信息" v-else></v-header>
 
    <div class="line"></div>
    <span ref="family" id="family"></span>
    <v-header title="家庭成员"></v-header>
    <!--家庭成员-->
    <div class="list-box">
      <div class="list1" v-for="item in detail.familyInfoVOList" :key="item.id">
        <div class="list-title">{{ item.relationship || "" }}</div>
        <div class="list-item">姓名:{{ item.name || "" }}</div>
        <div class="list-item">年龄:{{ item.age || "" }}</div>
        <div class="list-item">职业:{{ item.job || "" }}</div>
        <div class="list-item">手机号:{{ item.phone || "" }}</div>
        <div class="list-item">健康状况:{{ item.health || "" }}</div>
        <div class="list-item">
          身份证:{{ item.idCard || "" }}
          <div class="col_primary" @click="onShowCard(item)">查看电子档案</div>
        </div>
      </div>
    </div>
    <!--houseList -->
    <div class="line"></div>
    <v-header title="房屋信息"></v-header>
    <span ref="house" id="house"></span>
    <div class="list-box">
      <div
        class="list1"
        v-for="item in detail.houseList || []"
        :key="item.houseId"
      >
        <div class="list-item">房屋:{{ item.address || "" }}</div>
        <div class="list-item">
          房屋状态:{{ ["", "自住", "租住", "其他"][item.status || 0] }}
          <div class="col_primary" @click="setTouse(item)">查看</div>
        </div>
      </div>
    </div>
    <!-- car messge -->
    <div class="line"></div>
    <v-header title="车辆信息"></v-header>
    <span ref="vehicle" id="vehicle"></span>
    <div class="list-box">
      <div class="list1" v-for="item in detail.carList" :key="item.id">
        <div class="list-title">{{ item.plateNum || "" }}</div>
        <div class="list-item">品牌型号:{{ item.brand || "" }}</div>
        <div class="list-item">车神颜色:{{ item.color || "" }}</div>
      </div>
    </div>
    <!-- 精神障碍信息 -->
    <div class="line"></div>
    <v-header title="精神障碍信息"></v-header>
    <span ref="spirit" id="spirit"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="(item, index) in detail.comMajorPopulationVOs || []"
        :key="index"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">经济状况:</p>
          <article>{{ item.economicCondition }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">监护人:</p>
          <article>{{ item.custodyPerson }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">监护人电话:</p>
          <article>{{ item.custodyPersonPhone }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">与监护人关系:</p>
          <article>{{ item.custodyRelation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">目前诊断:</p>
          <article>无</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">其他:</p>
          <article>无</article>
        </section>
      </div>
    </div>
    <!--吸毒信息 -->
    <div class="line"></div>
    <v-header title="吸毒信息"></v-header>
 
    <span ref="drug" id="drug"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="(item, index) in detail.comDrugPopulationVOs || []"
        :key="index"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">管控人联系方式:</p>
          <article>{{ item.controlPersonPhone }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">帮扶情况:</p>
          <article>{{ item.helpSituation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">帮扶人姓名:</p>
          <article>{{ item.helpPerson }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">帮扶人联系方式:</p>
          <article>{{ item.helpPersonPhone }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">吸毒原因:</p>
          <article>{{ item.drugReason }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">吸毒后果:</p>
          <article>{{ item.drugResult }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">有无犯罪史:</p>
          <article>{{ item.haveCrime }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">违法犯罪情况:</p>
          <article>{{ item.crimeSutiation }}</article>
        </section>
      </div>
    </div>
    <!--社区矫正信息 -->
    <div class="line"></div>
    <v-header title="社区矫正信息"></v-header>
    <span ref="correct" id="correct"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="item in detail.comCorrectPopulationVOs || []"
        :key="item.communityId"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">学历:</p>
          <article>{{ item.cultureLevel }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">社区矫正人员编号:</p>
          <article>{{ item.correctPersonCode }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">原羁押场所:</p>
          <article>{{ item.originalCustodyplace }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">案件类别:</p>
          <article>{{ item.caseType }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">原判刑期:</p>
          <article>{{ item.originalTerm }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">原判刑开始日期:</p>
          <article>{{ item.originalTermBegin }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">原判刑结束日期:</p>
          <article>{{ item.originalTermEnd }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">接收方式:</p>
          <article>{{ item.receiveMethod }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否是惯犯:</p>
          <article>
            <span v-if="item.isRecidivist == '1'">是</span
            ><span v-if="item.isRecidivist == '0'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">四史情况:</p>
          <article>{{ item.fourHistory }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">三涉情况:</p>
          <article>{{ item.threeInvovle }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否建立矫正小组:</p>
          <article>
            <span v-if="item.isCorrectGroup == '1'">是</span
            ><span v-if="item.isCorrectGroup == '0'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">矫正小组人员组成情况:</p>
          <article>{{ item.correctGroupConstitute }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">矫正解除(终止)类型:</p>
          <article>{{ item.correctRelieveType }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否有脱管:</p>
          <article>
            <span v-if="item.isOutControl == '1'">是</span
            ><span v-if="item.isOutControl == '0'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">脱管原因:</p>
          <article>{{ item.outControlReason }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">脱管纠正情况:</p>
          <article>{{ item.outControlCorrect }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">检察监督脱管情况:</p>
          <article>{{ item.inspectOutControl }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否有漏管:</p>
          <article>
            <span v-if="item.isMissControl == '1'">是</span
            ><span v-if="item.isMissControl == '0'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">漏管原因:</p>
          <article>{{ item.missControlReason }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">矫正开始日期:</p>
          <article>{{ item.correctBegin }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">矫正结束日期:</p>
          <article>{{ item.correctEnd }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">矫正类别:</p>
          <article>{{ item.correctType }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">具体罪名:</p>
          <article>{{ item.specificCharge }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">漏管纠正情况:</p>
          <article>{{ item.missControlCorrect }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">检察监督漏管情况:</p>
          <article>{{ item.inspectOutControl }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">奖惩情况:</p>
          <article>{{ item.rewardAndPunishiment }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否重新犯罪:</p>
          <article>
            <span v-if="item.isAgainCrime == '1'">是</span
            ><span v-if="item.isAgainCrime == '0'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">重新犯罪名称:</p>
          <article>{{ item.againCrimeName }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">刑罚变更执行情况:</p>
          <article>{{ item.pubishmentChange }}</article>
        </section>
      </div>
    </div>
    <!--邪教信息 -->
    <div class="line"></div>
    <v-header title="邪教信息"></v-header>
    <span ref="Cult" id="Cult"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="item in detail.comCultPopulationVOs || []"
        :key="item.communityId"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">邪教名称:</p>
          <article>{{ item.cultName }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">基本情况:</p>
          <article>{{ item.basicSituation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">备注:</p>
          <article>{{ item.remark }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">基本情况(参加邪教的活动情况):</p>
          <article>{{ item.basicSituation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">参加邪教时间:</p>
          <article>{{ item.joinCultDate }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否对外宣传:</p>
          <article>
            <span v-if="item.isExternalPublicity == '1'">是</span
            ><span v-if="item.isExternalPublicity == '0'">否</span>
          </article>
        </section>
      </div>
    </div>
    <!--刑释信息 -->
    <div class="line"></div>
    <v-header title="刑释信息"></v-header>
    <span ref="prison" id="prison"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="item in detail.comRehabilitationPopulationVOs || []"
        :key="item.communityId"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">主要亲属:</p>
          <article>1</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">与人员关系:</p>
          <article>{{ item.patientRelation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">列管原因及类别:</p>
          <article>{{ item.rehabReasonAndType }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否列管:</p>
          <article>
            <span v-if="item.isRehab === '1'">是</span
            ><span v-if="item.isRehab === '0'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否累犯:</p>
          <article>
            <span v-if="item.isRecidivist === '1'">是</span
            ><span v-if="item.isRecidivist === '0'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">原判刑期:</p>
          <article>{{ item.originalTerm }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">服刑日期:</p>
          <article>{{ item.sentenceBegin }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">原罪名:</p>
          <article>{{ item.originalCharge }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">释放日期:</p>
          <article>{{ item.sentenceEnd }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">服刑场所:</p>
          <article>{{ item.sentencePlace }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">危险性评估:</p>
          <article>{{ item.riskAssessment }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">衔接日期:</p>
          <article>{{ item.joinDate }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">衔接情况:</p>
          <article>{{ item.joinSituation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否重新犯罪:</p>
          <article>
            <span v-if="item.isAgainCrime === '1'">是</span
            ><span v-if="item.isAgainCrime === '0'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">重新犯罪罪名:</p>
          <article>{{ item.againCrimeName }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">安置情况:</p>
          <article>{{ item.placeSituation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">安置日期:</p>
          <article>{{ item.placeDate }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">未安置原因:</p>
          <article>{{ item.notPlaceReason }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">帮教开始:</p>
          <article>{{ item.helpBegin }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">帮教结束:</p>
          <article>{{ item.helpEnd }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">帮教情况:</p>
          <article>{{ item.helpSituation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">备注:</p>
          <article>{{ item.remark }}</article>
        </section>
      </div>
    </div>
    <!--上访信息 -->
    <div class="line"></div>
    <v-header title="上访信息"></v-header>
    <span ref="petition" id="petition"></span>
    <div
      class="list-box"
      v-for="item in detail.comKeyPopulationVOs || []"
      :key="item.communityId"
    >
      备注: {{ item.remark }}
    </div>
    <!--服刑信息 -->
    <!-- <div class="line"></div>
    <v-header  title="服刑信息"></v-header>
    <span ref="sentence"></span>
    <div class="list-box">
      <div class="w_row demo_form clearfix">
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">配偶:</p>
          <article>1</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">服刑地:</p>
          <article>1</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">服刑开始时间:</p>
          <article>1</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">服刑结束时间:</p>
          <article>1</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">罪名:</p>
          <article>1</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">备注:</p>
          <article>1</article>
        </section>
      </div>
    </div> -->
    <!-- 退役军人信息-->
    <div class="line"></div>
    <v-header title="退役军人信息"></v-header>
    <span ref="soldier" id="soldier"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="item in detail.comVeteransPopulationVOs || []"
        :key="item.communityId"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">照片:</p>
          <article>
            <span v-if="item.photo"><img :src="item.photo" /></span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">人员状态:</p>
          <article>{{ item.personStatus }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">机构:</p>
          <article>{{ item.organization }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">户籍性质:</p>
          <article>
            <span v-if="item.regiterNature === '1'">城镇户口</span
            ><span v-if="item.regiterNature === '2'">农村户口</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">入伍时间:</p>
          <article>{{ item.enlistDate }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">退伍时间:</p>
          <article>{{ item.retireDate }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">人员类别:</p>
          <article>{{ item.personCategory }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">住房情况:</p>
          <article>{{ item.houseSituation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">住房情况(其他):</p>
          <article>{{ item.houseSituationOther }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">住房面积:</p>
          <article>{{ item.buildArea }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">现就业情况:</p>
          <article>{{ item.employmentSituation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">在职情况类型:</p>
          <article>{{ item.incumbencyType }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">现就业情况(其他):</p>
          <article>{{ item.employmentSituationOther }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">养老保险:</p>
          <article>{{ item.endowmentInsurance }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">医疗保险:</p>
          <article>{{ item.medicalInsurance }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">现个人年收入(元):</p>
          <article>{{ item.annualIncome }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">父亲健康状况:</p>
          <article>{{ item.fatherHealthy }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">母亲健康状况:</p>
          <article>{{ item.motherHealthy }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">配偶健康状况:</p>
          <article>{{ item.spouseHealthy }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">儿子健康状况:</p>
          <article>{{ item.sonHealthy }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">女儿健康状况:</p>
          <article>{{ item.daughterDealthy }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">主要困难:</p>
          <article>{{ item.mainDifficulty }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">其他困难:</p>
          <article>{{ item.otherDifficulty }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">主要诉求:</p>
          <article>{{ item.mainDemand }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">主要诉求(其他事项问题):</p>
          <article>{{ item.mainDemandOther }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">需参加的学历培训:</p>
          <article>{{ item.academicTraining }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否已参加退役军人培训(政府性质):</p>
          <article>
            <span v-if="item.isVeteransTraining === '1'">是</span
            ><span v-if="item.isVeteransTraining === '2'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">入伍前学历:</p>
          <article>{{ item.educationBeforeEnlistment }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">再教育学历:</p>
          <article>{{ item.reEducation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">所学专业:</p>
          <article>{{ item.major }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">所学专业(其他):</p>
          <article>{{ item.majorOther }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">曾从事行业(含现从事行业):</p>
          <article>{{ item.onceEngagedIndustry }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">曾从事行业(含现从事行业)其他:</p>
          <article>{{ item.onceEngagedIndustryOther }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">意向就业地点:</p>
          <article>{{ item.intendedPlaceOfEmployment }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">意向就业地点其他地区:</p>
          <article>{{ item.intendedPlaceOfEmploymentOther }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">待业期间的求职意向:</p>
          <article>{{ item.unemploymedEngagedIndustry }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">待业期间的求职意向(其他):</p>
          <article>{{ item.unemploymedEngagedIndustryOther }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">是否有创业意愿:</p>
          <article>
            <span v-if="item.isBusiness === '1'">是</span
            ><span v-if="item.isBusiness === '2'">否</span>
          </article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">创业意愿:</p>
          <article>{{ item.intendedPlaceOfEmployment }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">备注:</p>
          <article>{{ item.remark }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">填表单位:</p>
          <article>{{ item.fillUnit }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">填表人:</p>
          <article>{{ item.fillPerson }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">填表人联系电话:</p>
          <article>{{ item.fillPersonPhone }}</article>
        </section>
      </div>
    </div>
    <!-- 残疾人信息 -->
    <div class="line"></div>
    <v-header title="残疾人信息"></v-header>
    <span ref="disability" id="disability"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="item in detail.comDisabilityPopulationVOs || []"
        :key="item.communityId"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">办证状况:</p>
          <article>{{ item.certificateSituation }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">残疾类别:</p>
          <article>{{ item.disType }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">残疾等级:</p>
          <article>{{ item.disLevel }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">备注:</p>
          <article>{{ item.remark }}</article>
        </section>
      </div>
    </div>
    <!-- 低保户信息 -->
    <div class="line"></div>
    <v-header title="低保户信息"></v-header>
    <span ref="allowance" id="allowance"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="(item, index) in detail.comLowSecurityPopulationVOs || []"
        :key="index"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">地区:</p>
          <article>{{ item.region }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">家庭编码:</p>
          <article>{{ item.familyCode }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">组名称:</p>
          <article>{{ item.groupName }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">分类救助类别:</p>
          <article>{{ item.classifiedRescueCategory }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">申请日期:</p>
          <article>{{ item.applyDate }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">户主姓名:</p>
          <article>{{ item.houseHolderName }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">户主身份证:</p>
          <article>{{ item.houseHolderCardNo }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">户主编码:</p>
          <article>{{ item.houseHolderCode }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">居住地邮编:</p>
          <article>{{ item.residencePostalCode }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">救助证号:</p>
          <article>{{ item.salvageCertificateNo }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">保障人口数:</p>
          <article>{{ item.guaranteedPopulationNumber }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">家庭人口数:</p>
          <article>{{ item.familyPopulationNumber }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">开户人:</p>
          <article>{{ item.accountPerson }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">开户银行:</p>
          <article>{{ item.accountBank }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">开户人身份证号:</p>
          <article>{{ item.accountCardNo }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">银行账号:</p>
          <article>{{ item.bankAccount }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">供养机构:</p>
          <article>{{ item.supportInstitutions }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">资金发放方式:</p>
          <article>{{ item.distributionMethod }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">保障金额:</p>
          <article>{{ item.guaranteedAmount }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">调剂金额:</p>
          <article>{{ item.reallocationAmount }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">差额救助金额:</p>
          <article>{{ item.differenceReliefAmount }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">分类施保金额:</p>
          <article>{{ item.classifiedInsuredAmount }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">家庭月总收入:</p>
          <article>{{ item.totalMonthlyFamilyIncome }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">家庭月均收入:</p>
          <article>{{ item.averageMonthlyFamilyIncome }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">家庭月均支出:</p>
          <article>{{ item.totalMonthlyFamilyExpenditure }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">经度:</p>
          <article>{{ item.lng }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">纬度:</p>
          <article>{{ item.lat }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">始发年月:</p>
          <article>{{ item.originateDate }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">护理费:</p>
          <article>{{ item.nursingFee }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">申请理由:</p>
          <article>{{ item.applyReason }}</article>
        </section>
      </div>
    </div>
    <!-- 高龄信息 -->
    <div class="line"></div>
    <v-header title="高龄信息"></v-header>
    <span ref="advanced" id="advanced"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="(item, index) in detail.comElderAuthElderliesVOList || []"
        :key="index"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">健在:</p>
          <article>{{ item.isAlive == "1" ? "是" : "否" }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">办理高龄津贴:</p>
          <article>{{ item.isRegister == "1" ? "是" : "否" }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">开始领取时间:</p>
          <article>{{ item.receiveAllowanceBegin }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">现居住地址:</p>
          <article>{{ item.address }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">备注:</p>
          <article>{{ item.remark }}</article>
        </section>
      </div>
    </div>
 
    <!-- 养老信息 -->
    <div class="line"></div>
    <v-header title="养老信息"></v-header>
    <span ref="provide" id="provide"></span>
    <div class="list-box">
      <div
        class="w_row demo_form clearfix"
        v-for="(item, index) in detail.comPensionAuthPensionerVOList || []"
        :key="index"
      >
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">健在:</p>
          <article>{{ item.isAlive == "1" ? "是" : "否" }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">办理养老金:</p>
          <article>{{ item.isRegister == "1" ? "是" : "否" }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">开始领取时间:</p>
          <article>{{ item.receiveAllowanceBegin }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">现居住地址:</p>
          <article>{{ item.address }}</article>
        </section>
        <section class="w_col_8 w_col_md_24">
          <p class="label-content-width">备注:</p>
          <article>{{ item.remark }}</article>
        </section>
      </div>
    </div>
    <!-- end -->
    <div class="line"></div>
  </div>
</template>
 
<script>
import { watermark, removewatermark } from "../../../utils/watermark";
export default {
  props: {},
  components: {},
  data() {
    return {
      domList: [],
      scroll: false, //点击时禁止监听滚动条
      activeName: "Basics", //tab
      relation: [
        "",
        { name: "户主", value: 1 },
        { name: "配偶", value: 2 },
        { name: "子女", value: 3 },
        { name: "孙女", value: 4 },
        { name: "父母", value: 5 },
        { name: "其他", value: 6 },
      ],
      cultureLevel: [
        "",
        { name: "小学", value: 1 },
        { name: "初中", value: 2 },
        { name: "高中", value: 3 },
        {
          name: "中专",
          value: 4,
        },
        { name: "大专", value: 5 },
        { name: "本科", value: 6 },
        { name: "硕士", value: 7 },
        { name: "博士", value: 8 },
        {
          name: "其他",
          value: 9,
        },
      ],
      id: "",
      detail: {},
      cards: "",
      politicalOutlookList: [
        "",
        "中共党员",
        "中共预备党员",
        "共青团员",
        "民革党员",
        "民盟盟员",
        "民建会员",
        "农工党党员",
        "农工党党员",
        "致公党党员",
        "九三学社社员",
        "台盟盟员",
        "无党派人士",
        "群众",
      ],
      marriage: [
        { name: "未婚", value: 10 },
        { name: "已婚", value: 20 },
        { name: "初婚", value: 21 },
        { name: "再婚", value: 22 },
        { name: "复婚", value: 23 },
        { name: "丧偶", value: 30 },
        { name: "离婚", value: 40 },
        { name: "未说明", value: 90 },
      ],
      trs: [
        { text: "姓名", val: "btn" },
        { text: "户主关系", val: "btn", slot: "relation" },
        { text: "手机号", val: "phone" },
      ],
      tr2: [
        { text: "姓名", val: "btn", slot: "name" },
        { text: "家庭成员关系", val: "relationship" },
        { text: "手机号", val: "phone" },
        { text: "操作", val: "btn" },
      ],
      cardList: [],
      personTypeList: [
        { value: "1", label: "户籍人口" },
        { value: "2", label: "留守人员" },
        { value: "3", label: "外地人员" },
        { value: "4", label: "境外人员" },
        { value: "5", label: "流动人口" },
        { value: "6", label: "常住人口" },
        { value: "7", label: "暂住人口" },
      ],
    };
  },
  inject: ["appShowImage"],
  watch: {
    id() {
      this.init();
    },
  },
  computed: {
    setMarriage() {
      let text = "";
      this.marriage.map((item) => {
        if (item.value === this.detail.marriage) {
          text = item.name;
        }
      });
      return text;
    },
    isCard() {
      return demo._is_obj(this.cards).code === 6;
    },
  },
  methods: {
    reText(list, type) {
      let text = "-";
      list.forEach((item) => {
        if (item.value == type) {
          text = item.label;
        }
      });
      return text;
    },
    setTouse(item) {
      //查看房屋 man_quarters
      this.$router.push({
        path: "/man_quarters_detail",
        query: { id: item.houseId },
      });
    },
    handleClick(tab, event) {
      // console.log(tab);
      let name = tab.name;
      // 点击tab会触发滚动条监听 取消监听
      this.scroll = true;
      setTimeout((_) => {
        this.scroll = false;
      }, 100);
      let y = this.$refs[name].offsetTop; //
      let x = y - 170;
      this.$nextTick(() => {
        document.getElementById("body").scrollTop = x;
        this.activeName = name;
      });
    },
    handleScroll() {
      let t = document.getElementById("body");
      let top = 0;
      if (!t) {
        return;
      }
      top = t.scrollTop + 170;
      // let top = document.getElementById('body').scrollTop+170
      if (this.scroll) {
        return;
      }
      let length = this.domList.length;
      this.domList.map((item, index) => {
        if (
          (top >= item.top &&
            index < length - 1 &&
            top < this.domList[index + 1].top) ||
          (top >= item.top && index === length - 1)
        ) {
          // console.log(item.name)
          this.activeName = item.name;
        }
      });
      // for(let i=0;i<length;i++){
      //   alert(1)
      //   if(top >= this.domList[i].top && top < this.domList[i+1].top){
      //
      //     this.activeName = this.domList[i].name;
      //   };
      // }
    },
    is_time(v) {
      return demo.timeout(new Date(v).getTime(), "alls", "-");
    },
    onShowCard(v) {
      this.$store.dispatch("setFixed", {
        event: "add",
        data: { data: { type: this.$route.name, v }, type: "user-card" },
        time: Date.now(),
      });
    },
    onScaleImage(url) {
      if (url) {
        this.$store.dispatch("setImage", {
          time: Date.now(),
          pic: url,
          tool: true,
        });
      }
    },
    init() {
      console.log(this.id);
      if (this.id) {
        this.$api.post(
          "common/data/population/detail?populationId=" + this.id,
          {},
          (e) => {
            this.detail = e;
            console.log(this.detail);
            this.cards = e.userElectronicFileVO;
            if (this.isCard) {
              this.cardList = ((this.cards.familyBook || "") + "")
                .split(",")
                .filter((r) => {
                  return r !== "";
                });
              console.log(this.cardList);
            }
          }
        );
      }
    },
    onDetail(id) {
      this.$router.push("/man_user_detail/" + id);
      this.$nextTick(() => {
        this.id = id;
      });
    },
  },
  destroyed() {
    removewatermark();
  },
  mounted() {
    const USER_INFO = demo.$session.get("user");
    watermark({
      watermark_txt: `${USER_INFO.title}-“${USER_INFO.account} ${USER_INFO.name}”`,
    });
    document.addEventListener("scroll", this.handleScroll, true);
    this.id = this.$route.params.id;
    let list = [
      "Basics",
      "family",
      "house",
      "vehicle",
      "spirit",
      "drug",
      "correct",
      "Cult",
      "prison",
      "petition",
      "sentence",
      "soldier",
      "disability",
      "allowance",
    ];
    this.domList = [];
    // list.map(item=>{
    //   let o = {
    //     top:this.$refs[item].offsetTop,
    //     name:item
    //   }
    //   this.domList.push(o)
    // })
    // document.getElementById('body').scrollTop
  },
};
</script>
<style lang='less' scoped>
.col_primary {
  cursor: pointer;
}
.title-back {
  padding: 20px 0;
  .title {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    padding-right: 10px;
    font-weight: bold;
  }
}
 
.list-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.list1 {
  box-sizing: border-box;
  margin: 10px;
  width: 350px;
  padding: 10px;
  border-radius: 10px;
  border: #d7d7d7 1px solid;
}
.list-item {
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}
.list-title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}
.pop_detail {
  font-size: 14px;
  color: #333;
  overflow-y: auto;
  /*overflow: auto;*/
  transition: all 1s;
  .sticky {
    position: sticky;
    top: 0;
    z-index: 500;
    background: white;
  }
  .cards {
    h6 {
      font-weight: 400;
      padding: 10px 0;
      text-indent: 5px;
    }
    .imgs {
      display: flex;
      flex-wrap: wrap;
      img {
        width: 250px;
        height: 123px;
        margin: 0 5px 10px;
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
      }
    }
  }
  section {
    display: flex;
    margin-bottom: 15px;
    line-height: 20px;
 
    &.ls section {
      width: 50%;
    }
 
    .label {
      width: 200px !important;
      text-align: right;
      overflow: unset;
      white-space: normal;
    }
 
    article {
      width: calc(~"100% - 120px");
    }
 
    .avatar {
      width: 100px;
      height: 100px;
      cursor: pointer;
 
      img {
        display: block;
        width: 100%;
        height: 100%;
      }
    }
  }
 
  .line {
    height: 50px;
  }
 
  .list {
    max-width: 600px;
    ul {
      display: flex;
      flex-wrap: wrap;
      padding: 0 10px;
      box-sizing: border-box;
 
      li {
        width: 30%;
        background-color: #fff;
        min-width: 340px;
        box-sizing: border-box;
        padding: 20px;
        box-shadow: 0 0 5px #ccc;
        border-radius: 5px;
        margin: 0 30px 20px 0;
 
        .name {
          font-size: 18px;
          font-weight: 700;
          margin-bottom: 10px;
        }
 
        p {
          margin-bottom: 5px;
          line-height: 1.2;
 
          &:last-child {
            margin-bottom: 0;
          }
        }
      }
    }
  }
  .demo_form {
    section {
      min-width: 300px;
    }
    article {
      min-width: 200px;
      align-items: center;
      display: flex;
      // -webkit-line-clamp:3;
      // -webkit-box-orient: vertical;
      // display: -webkit-box;
      // text-overflow: ellipsis;
    }
  }
}
 
.col {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
 
.col-box {
  padding: 16px 0;
  box-sizing: border-box;
  display: flex;
}
 
.col-title {
  text-align: right;
  min-width: 100px;
}
 
.col-cont {
  min-width: 300px;
}
.label-content-width {
  min-width: 250px;
  text-align: right;
}
</style>