健康监测
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user