This commit is contained in:
yanran200730
2021-12-09 11:46:29 +08:00
parent accc0d93f1
commit 946984907b
2 changed files with 9 additions and 5 deletions

View File

@@ -135,7 +135,6 @@ export default {
},
created() {
this.$loading()
document.title = "通知公告";
this.$dict.load("announcementStatus");
},
@@ -153,8 +152,11 @@ export default {
this.showList = false;
}
this.current = 1;
this.$loading()
this.injectJWeixin(['sendChatMessage']).then(() => {
this.getList();
}).catch(() => {
this.$hideLoading()
})
},
emitReachBottom() {
@@ -258,6 +260,8 @@ export default {
this.dataList = this.current > 1 ? [...this.dataList, ...res.data.records] : res.data.records
}
this.$hideLoading()
}).catch(() => {
this.$hideLoading()
})
},