diff --git a/packages/3.0.0/AppReturnHomeRegister/components/Detail.vue b/packages/3.0.0/AppReturnHomeRegister/components/Detail.vue index 5e3cb689..14d4b7c4 100644 --- a/packages/3.0.0/AppReturnHomeRegister/components/Detail.vue +++ b/packages/3.0.0/AppReturnHomeRegister/components/Detail.vue @@ -38,8 +38,13 @@ @@ -169,6 +174,15 @@ if (res.code === 0) { this.info = res.data this.info.checkPhoto = res.data.checkPhoto ? JSON.parse(res.data.checkPhoto) : [] + let healthName = '' + this.info.isHealth = false + res.data.health.split(',').forEach(v => { + if (v > 0) { + this.info.isHealth = true + } + healthName = healthName + this.$dict.getLabel('epidemicRecentHealth', v) + }) + this.info.healthName = healthName } }) },