健康监测

This commit is contained in:
花有清香月有阴
2022-01-11 15:56:08 +08:00
parent 086c4fbc91
commit 2cbcf2198c
4 changed files with 109 additions and 12 deletions

View File

@@ -79,9 +79,32 @@ export default {
components: {},
props: {},
data() {
return {}
return {
id: '',
}
},
onLoad() {},
onShow() {
document.title = '健康监测'
},
methods: {
getDetail() {
this.$loading()
this.$http
.post(`/app/appepidemichealthreport/queryDetailById?memberId=${this.id}`)
.then((res) => {
if (res?.code == 0) {
console.log(res.data)
this.$hideLoading()
} else {
this.$hideLoading()
}
})
.catch(() => {
this.$hideLoading()
})
},
},
methods: {},
}
</script>