This commit is contained in:
yanran200730
2022-11-30 13:48:26 +08:00
parent 7f4607c3ba
commit b4ae677932
2 changed files with 14 additions and 7 deletions

View File

@@ -103,13 +103,15 @@
this.getList()
}
})
}).catch(() => {
this.instance.post(`/app/appintegralmemberapply/auditApply?id=${id}&opType=2`).then(res => {
if (res.code == 0) {
this.$message.success('审核拒绝成功')
this.getList()
}
})
}).catch(action => {
if (action === 'cancel') {
this.instance.post(`/app/appintegralmemberapply/auditApply?id=${id}&opType=2`).then(res => {
if (res.code == 0) {
this.$message.success('审核拒绝成功')
this.getList()
}
})
}
})
}
}