From b31e21d30adecb386b8f015c273e7a492c5e6421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=83=E8=82=89=E7=9A=84=E9=A5=BA=E5=AD=90?= <2659004835@qq.com> Date: Sun, 31 Jul 2022 18:46:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=9D=A3=E5=8A=9E=E5=90=8E?= =?UTF-8?q?=E7=9A=84=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pagesA/detail/detail.vue | 12 +++++++----- pagesA/manager/examine-list/examine-list.vue | 3 ++- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/pagesA/detail/detail.vue b/pagesA/detail/detail.vue index d11ebfc..04bb1ee 100644 --- a/pagesA/detail/detail.vue +++ b/pagesA/detail/detail.vue @@ -163,11 +163,13 @@ reexamineEv(){ this.$requst.post('/api/administrator/examine',{id:this.id}).then(res => { if(res.code==0){ - console.log(res,'督办复审'); - // 返回 - uni.navigateBack({ - delta:1 - }) + this.$toolAll.tools.showToast('督办成功'); + setTimeout(()=>{ + // 返回 + uni.navigateBack({ + delta:1 + }) + },500) } else { this.$toolAll.tools.showToast(res.msg); } diff --git a/pagesA/manager/examine-list/examine-list.vue b/pagesA/manager/examine-list/examine-list.vue index 07d16c7..569535f 100644 --- a/pagesA/manager/examine-list/examine-list.vue +++ b/pagesA/manager/examine-list/examine-list.vue @@ -133,7 +133,8 @@ reexamineEv(id){ this.$requst.post('administrator/examine',{id:id}).then(res => { if(res.code==0){ - this.$toolAll.tools.showToast('审核成功'); + this.$toolAll.tools.showToast('督办成功'); + this.getListEv(); } else { this.$toolAll.tools.showToast(res.msg); }