|
@@ -1,6 +1,11 @@
|
|
|
<template>
|
|
|
<div class="navbar">
|
|
|
- <hamburger id="hamburger-container" :is-active="sidebar.opened" class="hamburger-container" @toggleClick="toggleSideBar" />
|
|
|
+ <hamburger
|
|
|
+ id="hamburger-container"
|
|
|
+ :is-active="sidebar.opened"
|
|
|
+ class="hamburger-container"
|
|
|
+ @toggleClick="toggleSideBar"
|
|
|
+ />
|
|
|
|
|
|
<breadcrumb id="breadcrumb-container" class="breadcrumb-container" />
|
|
|
|
|
@@ -142,13 +147,13 @@ export default {
|
|
|
statsTime: 0,
|
|
|
endTime: 0,
|
|
|
checked: false,
|
|
|
- lastNotice: null,
|
|
|
+ lastNotice: null, //最后一次提示时间
|
|
|
parmValue: {
|
|
|
type: "",
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
},
|
|
|
- activeMsg: null,
|
|
|
+ activeMsg: null, //消息展示对象
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -161,42 +166,41 @@ export default {
|
|
|
} else {
|
|
|
this.lastNotice = null;
|
|
|
}
|
|
|
+ console.log(this.lastNotice);
|
|
|
this.loading = true;
|
|
|
- const res = await asyncRequest.list(this.parmValue);
|
|
|
- if (
|
|
|
- res &&
|
|
|
- res.code === 0 &&
|
|
|
- res.data &&
|
|
|
- res.data.list &&
|
|
|
- res.data.list.length > 0
|
|
|
- ) {
|
|
|
- this.activeMsg = res.data.list[0];
|
|
|
- this.isShow = true;
|
|
|
- if (this.lastNotice + "" !== "null") {
|
|
|
- if (this.activeMsg.addtime === this.lastNotice.addtime) {
|
|
|
- if (this.lastNotice.type === "1") {
|
|
|
- this.checked = true;
|
|
|
+ const { code, data } = await asyncRequest.list(this.parmValue);
|
|
|
+ if (code === 0) {
|
|
|
+ const { list, count } = data;
|
|
|
+ if (count !== 0) {
|
|
|
+ this.activeMsg = list[0];
|
|
|
+ this.isShow = true;
|
|
|
+ if (this.lastNotice + "" !== "null") {
|
|
|
+ const { type, addtime, sys_type } = this.activeMsg;
|
|
|
+ if (
|
|
|
+ addtime === this.lastNotice.addtime &&
|
|
|
+ sys_type === this.lastNotice.sys_type
|
|
|
+ ) {
|
|
|
+ if (type === "1") {
|
|
|
+ this.checked = true;
|
|
|
+ } else {
|
|
|
+ this.checked = false;
|
|
|
+ }
|
|
|
} else {
|
|
|
this.checked = false;
|
|
|
}
|
|
|
} else {
|
|
|
+ this.page_set_notice();
|
|
|
this.checked = false;
|
|
|
}
|
|
|
+ if (type === 1) {
|
|
|
+ this.typeShow();
|
|
|
+ } else {
|
|
|
+ this.showModel = true;
|
|
|
+ }
|
|
|
} else {
|
|
|
- let model = {
|
|
|
- type: this.checked ? "1" : "0",
|
|
|
- addtime: this.activeMsg.addtime,
|
|
|
- };
|
|
|
- setNotice(JSON.stringify(model));
|
|
|
- this.checked = false;
|
|
|
- }
|
|
|
- if (type === 1) {
|
|
|
- this.typeShow();
|
|
|
- } else {
|
|
|
- this.showModel = true;
|
|
|
+ this.$message.warning("暂无信息推送!");
|
|
|
}
|
|
|
-
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
+ } else if (code >= 100 && code <= 104) {
|
|
|
await this.logout();
|
|
|
} else {
|
|
|
this.activeMsg = null;
|
|
@@ -237,12 +241,18 @@ export default {
|
|
|
this.$router.push(`/login?redirect=${this.$route.fullPath}`);
|
|
|
},
|
|
|
submit() {
|
|
|
+ this.page_set_notice();
|
|
|
+ this.showModel = false;
|
|
|
+ },
|
|
|
+ //保存提交结果
|
|
|
+ page_set_notice() {
|
|
|
+ const { sys_type, addtime } = this.activeMsg;
|
|
|
let model = {
|
|
|
type: this.checked ? "1" : "0",
|
|
|
- addtime: this.activeMsg.addtime,
|
|
|
+ sys_type: sys_type,
|
|
|
+ addtime: addtime,
|
|
|
};
|
|
|
setNotice(JSON.stringify(model));
|
|
|
- this.showModel = false;
|
|
|
},
|
|
|
},
|
|
|
};
|
|
@@ -297,8 +307,8 @@ export default {
|
|
|
|
|
|
.breadcrumb-container {
|
|
|
float: left;
|
|
|
- width: 500px;
|
|
|
- //min-width: calc(1200px - 200px - 150px);
|
|
|
+ width: 500px;
|
|
|
+ //min-width: calc(1200px - 200px - 150px);
|
|
|
}
|
|
|
|
|
|
.errLog-container {
|