瀏覽代碼

【小昆山官网】我的消息 - 没有未读消息不显示提示

master
王饶冀 3 年之前
父節點
當前提交
e7bebfb12d

+ 1
- 0
digital-park-web/digital-park/src/views/my-related/business/Business.vue 查看文件

@@ -281,6 +281,7 @@ export default {
let { resultData } = data;
this.myMsgList = resultData.list;
this.notRead = resultData.total - data.readCount;
this.notRead = this.notRead < 0 ? 0 : this.notRead;
}else if(res.data.status == 102){
this.$router.push('/login')
}else {

+ 1
- 0
digital-park-web/digital-park/src/views/my-related/mseeage/Message.vue 查看文件

@@ -154,6 +154,7 @@ export default {
);
this.queryParams.total = resultData.total;
this.notRead = resultData.total - data.readCount;
this.notRead = this.notRead < 0 ? 0 : this.notRead;
} else if (res.data.status == 102) {
this.$router.push("/login");
} else {

Loading…
取消
儲存