|
1
2
3
4
5
6
7
8
|
<template>
<a-popover
trigger="click"
placement="bottomRight"
:autoAdjustOverflow="true"
:arrowPointAtCenter="true"
overlayClassName="header-notice-wrapper"
@visibleChange="handleHoverChange"
|
|
9
|
:overlayStyle="{ width: '350px', top: '50px' }">
|
|
10
|
<template slot="content">
|
|
11
|
<a-spin :spinning="loading">
|
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<a-tabs>
<a-tab-pane :tab="msg1Title" key="1">
<!--<a-list>
<a-list-item>
<a-list-item-meta title="你收到了 14 份新周报" description="一年前">
<a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png"/>
</a-list-item-meta>
</a-list-item>
<a-list-item>
<a-list-item-meta title="你推荐的 IT大牛 已通过第三轮面试" description="一年前">
<a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/OKJXDXrmkNshAMvwtvhu.png"/>
</a-list-item-meta>
</a-list-item>
<a-list-item>
<a-list-item-meta title="这种模板可以区分多种通知类型" description="一年前">
<a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/kISTdvpyTAhtGxpovNWd.png"/>
</a-list-item-meta>
</a-list-item>
</a-list>-->
<a-list>
<a-list-item :key="index" v-for="(record, index) in announcement1">
|
|
33
34
35
36
37
38
39
|
<div style="margin-left: 5%;width: 100%">
<p>
<a-tag @click="showAnnouncement(record)" v-if="record.priority === 'L'" color="blue">一般消息</a-tag>
<a-tag @click="showAnnouncement(record)" v-if="record.priority === 'M'" color="orange">重要消息</a-tag>
<a-tag @click="showAnnouncement(record)" v-if="record.priority === 'H'" color="red">紧急消息</a-tag>
<a @click="showAnnouncement(record)">{{ record.title }}</a>
</p>
|
|
40
41
42
43
44
|
<p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTime }} 发布</p>
</div>
<div style="text-align: right">
</div>
</a-list-item>
|
|
45
46
|
<div style="margin-top: 5px;text-align: center; display: flex; justify-content: space-between;">
<a-button @click="readAll()" type="dashed" block style="margin-right: 12px;">全部标注已读</a-button>
|
|
47
48
49
50
51
52
53
|
<a-button @click="toMyAnnouncement()" type="dashed" block>查看更多</a-button>
</div>
</a-list>
</a-tab-pane>
<a-tab-pane :tab="msg2Title" key="2">
<a-list>
<a-list-item :key="index" v-for="(record, index) in announcement2">
|
|
54
55
56
57
58
59
60
|
<div style="margin-left: 5%;width: 100%">
<p>
<a-tag @click="showAnnouncement(record)" v-if="record.priority === 'L'" color="blue">一般消息</a-tag>
<a-tag @click="showAnnouncement(record)" v-if="record.priority === 'M'" color="orange">重要消息</a-tag>
<a-tag @click="showAnnouncement(record)" v-if="record.priority === 'H'" color="red">紧急消息</a-tag>
<a @click="showAnnouncement(record)">{{ record.title }}</a>
</p>
|
|
61
62
63
|
<p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTime }} 发布</p>
</div>
</a-list-item>
|
|
64
65
|
<div style="margin-top: 5px;text-align: center; display: flex; justify-content: space-between;">
<a-button @click="readAll()" type="dashed" block style="margin-right: 12px;">全部标注已读</a-button>
|
|
66
67
68
69
70
71
72
73
74
|
<a-button @click="toMyAnnouncement()" type="dashed" block>查看更多</a-button>
</div>
</a-list>
</a-tab-pane>
</a-tabs>
</a-spin>
</template>
<span @click="fetchNotice" class="header-notice">
<a-badge :count="msgTotal">
|
|
75
|
<a-icon style="font-size: 16px; padding: 4px" type="bell"/>
|
|
76
77
78
79
80
81
82
83
|
</a-badge>
</span>
<show-announcement ref="ShowAnnouncement" @ok="modalFormOk"></show-announcement>
<dynamic-notice ref="showDynamNotice" :path="openPath" :formData="formData"/>
</a-popover>
</template>
<script>
|
|
84
|
|
|
85
86
87
88
|
import {getAction, putAction} from '@/api/manage'
import ShowAnnouncement from './ShowAnnouncement'
import store from '@/store/'
import DynamicNotice from './DynamicNotice'
|
|
89
|
|
|
90
91
92
93
94
95
96
97
|
export default {
name: "HeaderNotice",
components: {
DynamicNotice,
ShowAnnouncement,
},
data() {
return {
|
|
98
|
loading: false,
|
|
99
|
url: {
|
|
100
|
listCementByUser: "/sys/announcementCement/listByUser",
|
|
101
|
editCementSend: "/sys/sysAnnouncementSend/editByAnntIdAndUserId",
|
|
102
103
|
queryById: "/sys/announcementCement/queryById",
readAllMsg: "sys/sysAnnouncementSend/readAll",
|
|
104
105
106
107
108
109
110
111
112
|
},
hovered: false,
announcement1: [],
announcement2: [],
msg1Count: "0",
msg2Count: "0",
msg1Title: "通知(0)",
msg2Title: "",
stopTimer: false,
|
|
113
|
webSocket: null,
|
|
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
lockReconnect: false,
heartCheck: null,
formData: {},
openPath: ''
}
},
computed: {
msgTotal() {
return parseInt(this.msg1Count) + parseInt(this.msg2Count);
}
},
mounted() {
this.loadData();
this.initWebSocket();
},
destroyed: function () { // 离开页面生命周期函数
this.websocketOnclose();
},
methods: {
timerFun() {
this.stopTimer = false;
let myTimer = setInterval(() => {
// 停止定时器
|
|
137
|
if (this.stopTimer === true) {
|
|
138
139
140
141
142
|
clearInterval(myTimer);
return;
}
this.loadData()
}, 6000)
|
|
143
|
},
|
|
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
loadData() {
try {
// 获取系统消息
getAction(this.url.listCementByUser).then((res) => {
if (res.success) {
this.announcement1 = res.result.anntMsgList;
this.msg1Count = res.result.anntMsgTotal;
this.msg1Title = "通知(" + res.result.anntMsgTotal + ")";
this.announcement2 = res.result.sysMsgList;
this.msg2Count = res.result.sysMsgTotal;
this.msg2Title = "系统消息(" + res.result.sysMsgTotal + ")";
}
}).catch(error => {
console.log("系统消息通知异常", error);//这行打印permissionName is undefined
this.stopTimer = true;
console.log("清理timer");
});
} catch (err) {
this.stopTimer = true;
|
|
163
164
|
}
},
|
|
165
|
fetchNotice() {
|
|
166
167
|
if (this.loading) {
this.loading = false
|
|
168
|
return
|
|
169
|
}
|
|
170
|
// this.loadding = true
|
|
171
|
setTimeout(() => {
|
|
172
|
this.loading = false
|
|
173
|
}, 200)
|
|
174
|
},
|
|
175
176
177
178
179
180
181
182
183
184
185
|
showAnnouncement(record) {
putAction(this.url.editCementSend, {anntId: record.id}).then((res) => {
if (res.success) {
this.loadData();
}
});
this.hovered = false;
if (record.openType === 'component') {
this.openPath = record.openPage;
this.formData = {id: record.busId};
this.$refs.showDynamNotice.detail(record.openPage);
|
|
186
|
} else if (record.title == '入库单回传') {
|
|
187
188
189
|
this.$router.push({
path: '/system/receipt/ReceiptHeaderList'
});
|
|
190
|
} else if (record.title == '出库单回传') {
|
|
191
192
193
|
this.$router.push({
path: '/system/shipment/ShipmentHeaderList'
});
|
|
194
|
} else {
|
|
195
196
|
this.$refs.ShowAnnouncement.detail(record);
}
|
|
197
|
},
|
|
198
199
200
201
202
|
toMyAnnouncement() {
this.$router.push({
path: '/isps/userAnnouncement'
});
},
|
|
203
204
205
206
207
208
209
210
211
|
readAll() {
let that = this;
putAction(that.url.readAllMsg).then((res) => {
if (res.success) {
// that.$message.success(res.message);
that.loadData();
}
});
},
|
|
212
213
214
215
|
modalFormOk() {
},
handleHoverChange(visible) {
this.hovered = visible;
|
|
216
|
},
|
|
217
218
|
initWebSocket: function () {
// WebSocket与普通的请求所用协议有所不同,ws等同于http,wss等同于https
|
|
219
220
221
222
223
224
225
|
let userId = store.getters.userInfo.id;
let url = window._CONFIG['domianURL'].replace("https://", "wss://").replace("http://", "ws://") + "/websocket/" + userId;
this.webSocket = new WebSocket(url);
this.webSocket.onopen = this.websocketOnopen;
this.webSocket.onerror = this.websocketOnerror;
this.webSocket.onmessage = this.websocketOnmessage;
this.webSocket.onclose = this.websocketOnclose;
|
|
226
227
|
},
websocketOnopen: function () {
|
|
228
|
console.log("WebSocket连接成功");
|
|
229
230
231
232
233
234
235
236
237
|
//心跳检测重置
//this.heartCheck.reset().start();
},
websocketOnerror: function (e) {
console.log("WebSocket连接发生错误");
this.reconnect();
},
websocketOnmessage: function (e) {
console.log("-----接收消息-------", e.data);
|
|
238
|
let data = eval("(" + e.data + ")"); //解析对象
|
|
239
|
this.openNotification(data)
|
|
240
|
if (data.cmd === "topic") {
|
|
241
242
|
//系统通知
this.loadData();
|
|
243
|
} else if (data.cmd === "user") {
|
|
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
|
//用户消息
this.loadData();
}
//心跳检测重置
//this.heartCheck.reset().start();
},
websocketOnclose: function (e) {
console.log("connection closed (" + e + ")");
if (e) {
console.log("connection closed (" + e.code + ")");
}
this.reconnect();
},
websocketSend(text) { // 数据发送
try {
|
|
259
|
this.webSocket.send(text);
|
|
260
261
262
263
264
|
} catch (err) {
console.log("send failed (" + err.code + ")");
}
},
openNotification(data) {
|
|
265
|
let text = data.msgTxt;
|
|
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
const key = `open${Date.now()}`;
this.$notification.open({
message: '消息提醒',
placement: 'bottomRight',
description: text,
key,
btn: (h) => {
return h('a-button', {
props: {
type: 'primary',
size: 'small',
},
on: {
click: () => this.showDetail(key, data)
}
}, '查看详情')
},
});
},
reconnect() {
|
|
286
|
let that = this;
|
|
287
288
289
290
291
292
293
294
295
296
|
if (that.lockReconnect) return;
that.lockReconnect = true;
//没连接上会一直重连,设置延迟避免请求过多
setTimeout(function () {
console.info("尝试重连...");
that.initWebSocket();
that.lockReconnect = false;
}, 5000);
},
heartCheckFun() {
|
|
297
|
let that = this;
|
|
298
299
300
301
302
303
304
305
306
307
308
|
//心跳检测,每20s心跳一次
that.heartCheck = {
timeout: 20000,
timeoutObj: null,
serverTimeoutObj: null,
reset: function () {
clearTimeout(this.timeoutObj);
//clearTimeout(this.serverTimeoutObj);
return this;
},
start: function () {
|
|
309
|
let self = this;
|
|
310
311
312
313
314
315
|
this.timeoutObj = setTimeout(function () {
//这里发送一个心跳,后端收到后,返回一个心跳消息,
//onmessage拿到返回的心跳就说明连接正常
that.websocketSend("HeartBeat");
console.info("客户端发送心跳");
//self.serverTimeoutObj = setTimeout(function(){//如果超过一定时间还没重置,说明后端主动断开了
|
|
316
|
// that.webSocket.close();//如果onclose会执行reconnect,我们执行ws.close()就行了.如果直接执行reconnect 会触发onclose导致重连两次
|
|
317
318
|
//}, self.timeout)
}, this.timeout)
|
|
319
|
}
|
|
320
321
322
323
|
}
},
showDetail(key, data) {
this.$notification.close(key);
|
|
324
|
let id = data.msgId;
|
|
325
326
|
getAction(this.url.queryById, {id: id}).then((res) => {
if (res.success) {
|
|
327
|
let record = res.result;
|
|
328
329
330
331
|
this.showAnnouncement(record);
}
})
},
|
|
332
|
}
|
|
333
|
}
|
|
334
335
336
|
</script>
<style lang="css">
|
|
337
338
339
|
.header-notice-wrapper {
top: 50px !important;
}
|
|
340
341
|
</style>
<style lang="less" scoped>
|
|
342
343
344
|
.header-notice {
display: inline-block;
transition: all 0.3s;
|
|
345
|
|
|
346
347
|
span {
vertical-align: initial;
|
|
348
|
}
|
|
349
|
}
|
|
350
|
</style>
|