This commit is contained in:
yanran200730
2022-01-12 17:34:01 +08:00
parent 40412844ed
commit 75840e02a4
2 changed files with 12 additions and 12 deletions

View File

@@ -194,8 +194,8 @@
this.id = this.params.id
this.dict.load(['epidemicRecentHealth', 'epidemicRecentTravel', 'epidemicTouchInFourteen', 'epidemicMemberType', 'epidemicRecentTestResult']).then(() => {
this.getInfo(this.params.id)
this.getList(this.params.id)
this.getRecordList(this.params.id)
this.getList()
this.getRecordList()
})
}
},
@@ -210,11 +210,11 @@
})
},
getRecordList (id) {
getRecordList () {
this.instance.post(`/app/appepidemicunusuallog/list`, null, {
params: {
...this.search,
recordId: id
recordId: this.params.id
}
}).then(res => {
if (res.code == 0) {
@@ -260,7 +260,7 @@
this.instance.post(`/app/appepidemicunusuallog/delete?ids=${id}`).then(res => {
if (res.code == 0) {
this.$message.success('删除成功!')
this.getList(this.params.id)
this.getList()
}
})
})
@@ -286,11 +286,11 @@
})
},
getList (id) {
getList () {
this.instance.post(`/app/appepidemichealthreport/list`, null, {
params: {
...this.search,
memberId: id
memberId: this.params.id
}
}).then(res => {
if (res.code == 0) {