From 2ff3914cdcfcabc3330b39105d653297dbd5fd1a Mon Sep 17 00:00:00 2001
From: mk <2403457699@qq.com>
Date: Tue, 28 Mar 2023 19:08:31 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E7=B1=BB=E5=88=AB=E5=B1=85?=
=?UTF-8?q?=E6=B0=91=E5=88=86=E7=B1=BB=E4=B8=80=E8=A1=8C=E5=B1=95=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/modules/shequ/chaxun.vue | 593 +++++++++++++++++------------
1 file changed, 360 insertions(+), 233 deletions(-)
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];
},