diff --git a/src/views/modules/shequ/chaxun.vue b/src/views/modules/shequ/chaxun.vue
index 56be98604..1cbf87d7d 100644
--- a/src/views/modules/shequ/chaxun.vue
+++ b/src/views/modules/shequ/chaxun.vue
@@ -85,9 +85,126 @@
"
>
- {{ handleFilterSpan(scope.row, item) }}
+ {{ handleFilterSpan(scope.row, item) }}
+
+
+
+ {{
+ scope.row.categoryInfo.bereavedPersonFlag ==
+ 1
+ ? "特扶人员 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.chronicDiseaseFlag ==
+ 1
+ ? "慢病 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.dementedFlag == 1
+ ? "失智老人 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.disabilityFlag == 1
+ ? "残疾 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.disabledFlag == 1
+ ? "失能老人 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.emptyNesterFlag == 1
+ ? "空巢老人 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.ensureHouseFlag == 1
+ ? "保障房人员 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.fertileWomanFlag == 1
+ ? "育龄妇女 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.floatingFlag == 1
+ ? "流动人口 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.liveAloneFlag == 1
+ ? "独居老人 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.oldPeopleFlag == 1
+ ? "老年人 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.partyFlag == 1
+ ? "党员 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo
+ .petitionOfficerFlag == 1
+ ? "信访人员 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.seriousIllnessFlag ==
+ 1
+ ? "大病 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.specialCrowdFlag == 1
+ ? "特殊人群 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo
+ .subsistenceAllowanceFlag == 1
+ ? "低保人员 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.tenantFlag == 1
+ ? "租户 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.unemployedFlag == 1
+ ? "失业 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.unitedFrontFlag == 1
+ ? "统战人员 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.veteranFlag == 1
+ ? "退役军人 "
+ : ""
+ }}
+ {{
+ scope.row.categoryInfo.volunteerFlag == 1
+ ? "志愿者 "
+ : ""
+ }}
+
+
+
+
0) {
item.options.forEach((n) => {
- if (n.value == row[item.columnName]) _val = n.label;
+ if (n.value == row[item.columnName] ) _val = n.label;
});
}
+ row.idNum = row.idNum.substr(0, 11) + '*****' + row.idNum.substr(16,2)
+ row.mobile = row.mobile.substr(0, 3) + '****' + row.mobile.substr(7,4)
return _val || row[item.columnName];
},