-
- {{ dict.getLabel('householdName', detail.householdName) }}
-
+
{{ dict.getLabel('yesOrNo', detail.isHousehold) }}
-
- {{ dict.getLabel('householdName', detail.householdName) }}
+ {{ dict.getLabel('fpType', detail.objectType) }}
+
+ {{ dict.getLabel('fpYesOrNo', detail.dilapidatedHousehold) }}
-
- {{ dict.getLabel('yesOrNo', detail.householdName) }}
-
-
- {{ dict.getLabel('yesOrNo', detail.householdName) }}
-
-
- {{ dict.getLabel('yesOrNo', detail.householdName) }}
+
+ {{ dict.getLabel('fpYesOrNo', detail.drinkingWaterSafety) }}
+ {{ dict.getLabel('fpYesOrNo', detail.move) }}
- {{ dict.getLabel('householdRelation', detail.householdRelation) }}
+ {{ dict.getLabel('fpRelationship', detail.householdRelation) }}
{{ detail.householdIdNumber }}
@@ -90,7 +105,7 @@ export default {
},
getDetail() {
let {id} = this.$route.query
- id && this.instance.post("/appportaluserenterprise/queryDetailById", null, {
+ id && this.instance.post("/app/apppreventionreturntopoverty/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
diff --git a/packages/jianping/AppHelpedResident/hrList.vue b/packages/jianping/AppHelpedResident/hrList.vue
index 9b167293..13df2ebd 100644
--- a/packages/jianping/AppHelpedResident/hrList.vue
+++ b/packages/jianping/AppHelpedResident/hrList.vue
@@ -11,16 +11,16 @@
-
-
@@ -57,13 +57,13 @@
删除
-
-
+
-
-
- 正常
- 已注销
-
-
详情
@@ -126,10 +120,10 @@ export default {
{label: "性别", prop: "sex", dict: 'sex', align: "center"},
{slot: "idNumber"},
{label: "年龄", prop: "age", align: "center"},
- {label: "民族", prop: "nation", align: "center", dict: "nation"},
- {label: "文化程度", prop: "education", align: "center", dict: "education"},
- {label: "政治面貌", prop: "politicsStatus", align: "center", dict: "politicsStatus"},
- {slot: "fileStatus"},
+ {label: "民族", prop: "nation", align: "center", dict: "fpNation"},
+ {label: "文化程度", prop: "education", align: "center", dict: "fpEducation"},
+ {label: "政治面貌", prop: "politicsStatus", align: "center", dict: "fpPoliticalOutlook"},
+ {label: "档案状态", prop: "status", dict: "fpPrtpStatus"},
{slot: "options"}
],
ids: [],
@@ -143,8 +137,8 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appportaluserenterprise/list", null, {
- params: {...this.page, ...this.search, status: 1}
+ this.instance.post("/app/apppreventionreturntopoverty/list", null, {
+ params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
this.tableData = res.data?.records
@@ -160,7 +154,7 @@ export default {
},
handleDelete(ids) {
this.$confirm("是否要删除监测对象").then(() => {
- this.instance.post("/app/appnucleicacidperson/delete", null, {
+ this.instance.post("/app/apppreventionreturntopoverty/delete", null, {
params: {ids: ids?.toString()}
}).then(res => {
if (res?.code == 0) {