健康上报

This commit is contained in:
shijingjing
2022-10-10 10:57:21 +08:00
parent 9038f17227
commit 4984f4bbce
3 changed files with 58 additions and 54 deletions

View File

@@ -61,7 +61,7 @@
data () {
return {
info: {},
pageShow: false
pageShow: true,
}
},
@@ -72,15 +72,15 @@
methods: {
getInfo (id) {
this.$instance.post(`/app/appepidemicreportmember/queryDetailById?id=${id}`).then(res => {
if (res.code === 0) {
this.$instance.post(`/app/appepidemicpreventionhealthreportinfo/list?reportUserId=${id}`).then(res => {
if (res.code == 0) {
this.info = res.data
if (res.data.eventStatus > 1) {
this.result = res.data.processList[0]
}
this.$nextTick(() => {
this.pageShow = true
})
// this.$nextTick(() => {
// this.pageShow = true
// })
}
this.$hideLoading()