From ed8da3617db5332f51c85115b2cb543cf0f6f27a Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Tue, 9 Aug 2022 16:07:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=B9=E6=A1=86=E6=8F=90=E7=A4=BA=E6=96=87?= =?UTF-8?q?=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/saas/AppCooperationPropaganda/detail.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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(()=> {