From acbf61af5c8df158ace42b0c3b84cca25e9b1ff0 Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 14 Dec 2021 11:46:12 +0800 Subject: [PATCH 1/3] BUG 25498 --- src/apps/AppInterview/interviewDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/AppInterview/interviewDetail.vue b/src/apps/AppInterview/interviewDetail.vue index c0591b67..71648209 100644 --- a/src/apps/AppInterview/interviewDetail.vue +++ b/src/apps/AppInterview/interviewDetail.vue @@ -67,7 +67,7 @@ export default { }).then(res => { if (res?.code == 0) { this.$u.toast("提交成功!") - this.root.goto({query: {}}) + uni.navigateBack({}) } }) } From 54cd5b1140a5e43cc77fa9ff49fdfae07526cf50 Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 14 Dec 2021 13:48:52 +0800 Subject: [PATCH 2/3] 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) } }) } From ba4e88422561301eb239be59966ef225188b1a2d Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 14 Dec 2021 13:50:38 +0800 Subject: [PATCH 3/3] BUG 25501 --- src/apps/AppInterview/AppInterview.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/apps/AppInterview/AppInterview.vue b/src/apps/AppInterview/AppInterview.vue index bc8e7eb8..ea10b502 100644 --- a/src/apps/AppInterview/AppInterview.vue +++ b/src/apps/AppInterview/AppInterview.vue @@ -18,7 +18,7 @@
{{ e.createTime }}
@@ -75,6 +75,7 @@ export default { goDetail(id, readonly) { let query = {id} readonly && (query.detail = 1) + this.$refs[`aiCard${index}`][0].handleClose() uni.navigateTo({url: `./interviewDetail?${qs.stringify(query)}`}) }, gotoAdd() {