This commit is contained in:
liuye
2022-01-18 11:35:49 +08:00
parent a0b102e138
commit f67e13058d
3 changed files with 12 additions and 4 deletions

View File

@@ -259,7 +259,11 @@ export default {
if (res.code == 0) {
this.$u.toast(status == 1 ? "发布成功" : "保存成功")
// this.$refs["aiBack"].back()
uni.navigateBack()
uni.$emit('updateList')
setTimeout(() => {
uni.navigateBack()
}, 600)
}
})
},

View File

@@ -57,9 +57,13 @@ export default {
this.index = opt.index
this.getData();
uni.$on('updateList', () => {
this.current = 1
this.getData()
})
},
onShow() {
document.title = opt.index == 0 ? "历史会议" : "草稿箱"
document.title = this.index == 0 ? "历史会议" : "草稿箱"
},
methods: {