diff --git a/src/apps/AppEpidemicSituation/ErrorInfo.vue b/src/apps/AppEpidemicSituation/ErrorInfo.vue index 38d440cf..79dfc5d2 100644 --- a/src/apps/AppEpidemicSituation/ErrorInfo.vue +++ b/src/apps/AppEpidemicSituation/ErrorInfo.vue @@ -9,7 +9,7 @@ {{info.unusual}}

-
+
异常情况记录
@@ -18,7 +18,6 @@
-
diff --git a/src/apps/AppEpidemicSituation/UserInfo.vue b/src/apps/AppEpidemicSituation/UserInfo.vue index c0ae7fac..79711e0f 100644 --- a/src/apps/AppEpidemicSituation/UserInfo.vue +++ b/src/apps/AppEpidemicSituation/UserInfo.vue @@ -101,6 +101,27 @@ +
+
+
异常处理情况
+
+
+

{{item.content}}

+
{{item.createTime}} + +
+
+
+
+
异常解除人
+
{{info.releaseName}}
+
+
+
异常解除时间
+
{{info.releaseTime}}
+
+ +
@@ -113,7 +134,8 @@ export default { data() { return { id: '', - info: {} + info: {}, + list: [] } }, computed: { ...mapState(['user']) }, @@ -124,12 +146,20 @@ export default { this.$dict.load('epidemicMemberType', 'epidemicRecentTravel', 'epidemicTouchInFourteen', 'epidemicRecentTestResult', 'epidemicRecentHealth').then(() => { this.id = option.id this.getDetail() + this.getList() }) uni.$on('updateDetail', () => { this.getDetail() }) }, methods: { + getList() { + this.$http.post(`/app/appepidemicunusuallog/list?recordId=${this.id}`).then((res) => { + if (res.code == 0) { + this.list = res.data.records + } + }) + }, getDetail() { this.$http.post(`/app/appepidemicbackhomerecord/queryDetailById?id=${this.id}`).then((res) => { if (res.code == 0) { @@ -254,6 +284,39 @@ export default { .item-flex:nth-last-of-type(1){ border-bottom: 0; } + .error-list { + .item { + width: 100%; + background: #f4f7fe; + border-radius: 8px; + padding: 24px 24px 18px 24px; + box-sizing: border-box; + margin-bottom: 16px; + p { + font-size: 28px; + font-family: PingFangSC-Regular, PingFang SC; + color: #343d65; + line-height: 40px; + word-break: break-all; + margin-bottom: 12px; + } + div { + font-size: 24px; + font-family: PingFangSC-Regular, PingFang SC; + color: #666; + line-height: 34px; + span { + display: inline-block; + margin-left: 32px; + } + } + } + } + .text-p{ + line-height: 44px; + color: #333; + padding-bottom: 16px; + } } .line-bg{ width: 100%;