diff --git a/packages/jianping/AppHelpedResident/hrDetail.vue b/packages/jianping/AppHelpedResident/hrDetail.vue
index df10f963..073bb911 100644
--- a/packages/jianping/AppHelpedResident/hrDetail.vue
+++ b/packages/jianping/AppHelpedResident/hrDetail.vue
@@ -15,7 +15,7 @@
申请纳入监测
- 申请纳入监测
+ 申请纳入监测
申请解除风险
删除
@@ -125,7 +125,9 @@
{{detail.dropOutOfSchoolReason}}
{{detail.detail}}
-
+
+
+
@@ -189,38 +191,38 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -233,7 +235,7 @@
-
+
@@ -248,48 +250,48 @@
-
+
-
+
-
+
-
+
-
+
-
+
@@ -500,22 +502,22 @@ export default {
},
guaranteeCheckList() {
return [
- {label: '享受农村最低生活保障', value: 0},
- {label: '是否特困供养人员', value: 1},
- {label: '分散供养五保户转集中供养(减少)', value: 2},
- {label: '是否接受医疗救助', value: 3},
- {label: '是否接受其它健康扶贫', value: 4},
+ { label: '享受农村最低生活保障', value: 0 },
+ { label: '是否特困供养人员', value: 1 },
+ { label: '分散供养五保户转集中供养(减少)', value: 2 },
+ { label: '是否接受医疗救助', value: 3 },
+ { label: '是否接受其它健康扶贫', value: 4 },
]
},
basicsCheckList() {
return [
- {label: '城乡居民基本医疗保险', value: 0},
- {label: '城镇职工基本医疗保险', value: 1},
- {label: '大病保险', value: 2},
- {label: '商业补充医疗保险', value: 3},
- {label: '城乡居民基本养老保险', value: 4},
- {label: '城镇职工基本养老保险', value: 5},
- {label: '享受人身意外保险补贴', value: 6},
+ { label: '城乡居民基本医疗保险', value: 0 },
+ { label: '城镇职工基本医疗保险', value: 1 },
+ { label: '大病保险', value: 2 },
+ { label: '商业补充医疗保险', value: 3 },
+ { label: '城乡居民基本养老保险', value: 4 },
+ { label: '城镇职工基本养老保险', value: 5 },
+ { label: '享受人身意外保险补贴', value: 6 },
]
},
},
@@ -524,7 +526,7 @@ export default {
detail: {},
currentTab: "",
isShowAdd: false,
- form: { healthyStatusList: [],basicsList: [], guaranteeList: []},
+ form: { healthyStatusList: [], basicsList: [], guaranteeList: [] },
isEdit: false,
isShowDetail: false,
familyInfo: {},
@@ -625,10 +627,10 @@ export default {
if (this.form.healthyStatusList.length) {
this.form.healthyStatus = this.form.healthyStatusList.join(',')
}
- if(this.form.basicsList.length) {
+ if (this.form.basicsList.length) {
this.form.basicsCheck = this.form.basicsList.join(',')
}
- if(this.form.guaranteeList.length) {
+ if (this.form.guaranteeList.length) {
this.form.guaranteeCheck = this.form.basicsList.join(',')
}
this.instance.post(`/app/apppreventionreturntopoverty/addOrUpdate`, this.form).then(res => {
@@ -664,10 +666,10 @@ export default {
if (this.detail.healthyStatus) {
this.detail.healthyStatusList = this.detail.healthyStatus.split(',')
}
- if(this.detail.basicsCheck) {
+ if (this.detail.basicsCheck) {
this.detail.basicsList = this.detail.basicsCheck.split(',')
}
- if(this.detail.guaranteeCheck) {
+ if (this.detail.guaranteeCheck) {
this.detail.guaranteeList = this.detail.guaranteeCheck.split(',')
}
@@ -764,7 +766,7 @@ export default {
},
handleDelete(ids) {
this.$confirm("是否要删除监测对象").then(() => {
- this.instance.post("/app/apppreventionreturntopoverty/delete", null, {params: { ids: ids?.toString() },}).then((res) => {
+ this.instance.post("/app/apppreventionreturntopoverty/delete", null, { params: { ids: ids?.toString() }, }).then((res) => {
if (res?.code == 0) {
this.$message.success("删除成功!");
this.back();