diff --git a/src/apps/AppEpidemicSituation/ErrorDetail.vue b/src/apps/AppEpidemicSituation/ErrorDetail.vue index de01823c..81d80bf4 100644 --- a/src/apps/AppEpidemicSituation/ErrorDetail.vue +++ b/src/apps/AppEpidemicSituation/ErrorDetail.vue @@ -9,11 +9,56 @@

{{ userList.idNumber && userList.idNumber.replace(/^(\w{6})\w{8}(.*)$/, '$1********$2') }}

异常情况:

-

+

+ {{ item.checkTime && item.checkTime.substring(0, 10) }}: + +
+ 当前体温 + + {{ item.temperature }}℃ +
+ +
+ 14天内是否接触新冠确诊或疑似患者 + + + {{ $dict.getLabel('epidemicTouchInFourteen', item.touchInFourteen) }} + +
+ +
+ 当前健康状况 + + + + ; + + {{ $dict.getLabel('epidemicRecentHealth', item) }} + + +
+ +
+ 核酸检测结果 + + + {{ $dict.getLabel('epidemicRecentTestResult', item.checkResult) }} + +
+ +
+ 健康码 + + + {{ $dict.getLabel('epidemicHealthCode', item.healthCode) }} + +
+
+

暂无异常情况

@@ -74,7 +119,7 @@ export default { }, onLoad(o) { console.log(o) - this.$dict.load('epidemicMemberType', 'epidemicRecentTravel', 'epidemicTouchInFourteen', 'epidemicRecentTestResult', 'epidemicRecentHealth').then(() => { + this.$dict.load('epidemicMemberType', 'epidemicRecentTravel', 'epidemicTouchInFourteen', 'epidemicRecentTestResult', 'epidemicRecentHealth', 'epidemicHealthCode').then(() => { if (o) { this.id = o.id this.getUser() @@ -108,7 +153,7 @@ export default { getErrThing() { this.$loading() this.$http - .post(`/app/appepidemichealthreport/list?memberId=${this.id}&status=0`) + .post(`/app/appepidemichealthreport/list?memberId=${this.id}`) .then((res) => { if (res.code == 0) { this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records