diff --git a/src/project/saas/AppCooperationPropaganda/detail.vue b/src/project/saas/AppCooperationPropaganda/detail.vue index d0cd9e14..100242b4 100644 --- a/src/project/saas/AppCooperationPropaganda/detail.vue +++ b/src/project/saas/AppCooperationPropaganda/detail.vue @@ -146,14 +146,14 @@ export default { // 拒绝 refuseBtn() { this.pass = 0 - this.$confirm('确定要审核拒绝该数据?').then(() => { + this.$confirm('确认审核拒绝该任务?').then(() => { this.examine() }) }, // 通过 passBtn() { this.pass = 1 - this.$confirm('确定审核通过该数据?').then(() => { + this.$confirm('确认审核通过该任务?').then(() => { this.examine() }) }, @@ -166,7 +166,11 @@ export default { } }).then(res => { if(res?.code == 0) { - this.$u.toast('审批成功') + if(this.pass == 0) { + this.$u.toast('任务已拒绝') + } else if(this.pass == 1) { + this.$u.toast('任务审核通过') + } this.getDetail() } }).catch(()=> {