From 54cd5b1140a5e43cc77fa9ff49fdfae07526cf50 Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 14 Dec 2021 13:48:52 +0800 Subject: [PATCH] BUG 25500 --- src/apps/AppInterview/interviewDetail.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/apps/AppInterview/interviewDetail.vue b/src/apps/AppInterview/interviewDetail.vue index 71648209..677dbefa 100644 --- a/src/apps/AppInterview/interviewDetail.vue +++ b/src/apps/AppInterview/interviewDetail.vue @@ -67,7 +67,9 @@ export default { }).then(res => { if (res?.code == 0) { this.$u.toast("提交成功!") - uni.navigateBack({}) + setTimeout(() => { + uni.navigateBack({}) + }, 1000) } }) }