This commit is contained in:
shijingjing
2022-07-28 15:16:00 +08:00
parent 908516081c
commit 72af082d3b

View File

@@ -120,9 +120,9 @@ export default {
this.webpage = res.data.contents.filter(v=> v.msgType == 4) this.webpage = res.data.contents.filter(v=> v.msgType == 4)
this.miniapp = res.data.contents.filter(v=> v.msgType == 5) this.miniapp = res.data.contents.filter(v=> v.msgType == 5)
if(res.data.status==1) { // 拒绝 if(res.data.status==1) { // 拒绝
this.approver = data.examines.filter(e=> e.examineUserId == user.openId) this.approver = res.data.examines.filter(e=> e.examineUserId == user.openId)
} else { // 通过 } else { // 通过
this.approver = data.examines this.approver = res.data.examines
} }
} }
}) })