diff --git a/project/pingchang/apps/AppCommunityMember/Detail.vue b/project/pingchang/apps/AppCommunityMember/Detail.vue index fc4031fd..8817ecac 100644 --- a/project/pingchang/apps/AppCommunityMember/Detail.vue +++ b/project/pingchang/apps/AppCommunityMember/Detail.vue @@ -72,6 +72,16 @@ +
+

审核结果:

+ + 合格 + 不合格 + +
+
+ 提交 +
@@ -105,7 +115,8 @@ export default { ], userList: [], showDialog: false, - userInfo: {} + userInfo: {}, + logCheck: '2' } }, @@ -148,6 +159,7 @@ export default { if (res.code == 0) { this.userInfo = {...res.data} this.userInfo.userName = row.partyName + this.userInfo.logStatus = row.logStatus this.showDialog = true } }); @@ -155,6 +167,18 @@ export default { cancel() { this.$emit("goBack") }, + logCheckFn(){ + this.instance.post(`/app/apppartyreport/log-check`, { + id: this.userInfo.id, + logStatus: this.logCheck + }).then(res => { + if (res.code == 0) { + this.showDialog = false + this.getList() + this.logCheck = '2' + } + }); + }, }, }; \ No newline at end of file