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() {
diff --git a/src/apps/AppInterview/interviewDetail.vue b/src/apps/AppInterview/interviewDetail.vue
index c0591b67..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("提交成功!")
- this.root.goto({query: {}})
+ setTimeout(() => {
+ uni.navigateBack({})
+ }, 1000)
}
})
}