处理系统主页消息提醒模块弹窗中的样式问题

This commit is contained in:
任珮宇 2023-10-08 14:45:49 +08:00
parent ae1a1c393a
commit 7454b9fbf9

View File

@ -6,7 +6,8 @@
:arrowPointAtCenter="true"
overlayClassName="header-notice-wrapper"
@visibleChange="handleHoverChange"
:overlayStyle="{ width: '300px', top: '50px' }">
:overlayStyle="{ width: '300px', top: '50px' }"
>
<template slot="content">
<a-spin :spinning="loadding">
<a-tabs>
@ -31,12 +32,16 @@
<a-list>
<a-list-item :key="index" v-for="(record, index) in announcement1">
<div style="margin-left: 5%; width: 80%">
<p><a @click="showAnnouncement(record)">{{ record.titile }}</a></p>
<p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTime }} 发布</p>
<p>
<a @click="showAnnouncement(record)">{{ record.titile }}</a>
</p>
<p style="color: #c9f6f6; margin-bottom: 0px">{{ record.createTime }} 发布</p>
</div>
<div style="text-align: right">
<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 === 'M'" color="orange"
>重要消息</a-tag
>
<a-tag @click="showAnnouncement(record)" v-if="record.priority === 'H'" color="red">紧急消息</a-tag>
</div>
</a-list-item>
@ -49,12 +54,16 @@
<a-list>
<a-list-item :key="index" v-for="(record, index) in announcement2">
<div style="margin-left: 5%; width: 80%">
<p><a @click="showAnnouncement(record)">{{ record.titile }}</a></p>
<p style="color: rgba(0,0,0,.45);margin-bottom: 0px">{{ record.createTime }} 发布</p>
<p>
<a @click="showAnnouncement(record)">{{ record.titile }}</a>
</p>
<p style="color: #c9f6f6; margin-bottom: 0px">{{ record.createTime }} 发布</p>
</div>
<div style="text-align: right">
<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 === 'M'" color="orange"
>重要消息</a-tag
>
<a-tag @click="showAnnouncement(record)" v-if="record.priority === 'H'" color="red">紧急消息</a-tag>
</div>
</a-list-item>
@ -68,7 +77,7 @@
</template>
<span @click="fetchNotice" class="header-notice">
<a-badge :count="msgTotal">
<img src="@/assets/images/header/notice.png" alt="">
<img src="@/assets/images/header/notice.png" alt="" />
</a-badge>
</span>
<show-announcement ref="ShowAnnouncement" @ok="modalFormOk"></show-announcement>
@ -85,7 +94,7 @@
import { ACCESS_TOKEN } from '@/store/mutation-types'
export default {
name: "HeaderNotice",
name: 'HeaderNotice',
components: {
DynamicNotice,
ShowAnnouncement,
@ -94,17 +103,17 @@
return {
loadding: false,
url: {
listCementByUser:"/sys/annountCement/listByUser",
editCementSend:"/sys/sysAnnouncementSend/editByAnntIdAndUserId",
queryById:"/sys/annountCement/queryById",
listCementByUser: '/sys/annountCement/listByUser',
editCementSend: '/sys/sysAnnouncementSend/editByAnntIdAndUserId',
queryById: '/sys/annountCement/queryById',
},
hovered: false,
announcement1: [],
announcement2: [],
msg1Count:"0",
msg2Count:"0",
msg1Title:"通知(0)",
msg2Title:"",
msg1Count: '0',
msg2Count: '0',
msg1Title: '通知(0)',
msg2Title: '',
stopTimer: false,
websock: null,
lockReconnect: false,
@ -112,31 +121,32 @@
wsConnectErrorTime: 1,
heartCheck: null,
formData: {},
openPath:''
openPath: '',
}
},
computed: {
msgTotal() {
return parseInt(this.msg1Count)+parseInt(this.msg2Count);
}
return parseInt(this.msg1Count) + parseInt(this.msg2Count)
},
},
mounted() {
this.loadData();
this.loadData()
//this.timerFun();
this.initWebSocket();
this.initWebSocket()
// this.heartCheckFun();
},
destroyed: function () { //
this.websocketOnclose();
destroyed: function () {
//
this.websocketOnclose()
},
methods: {
timerFun() {
this.stopTimer = false;
this.stopTimer = false
let myTimer = setInterval(() => {
//
if (this.stopTimer == true) {
clearInterval(myTimer);
return;
clearInterval(myTimer)
return
}
this.loadData()
}, 6000)
@ -144,23 +154,25 @@
loadData() {
try {
//
getAction(this.url.listCementByUser).then((res) => {
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 + ")";
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((error) => {
console.log('系统消息通知异常', error) //permissionName is undefined
this.stopTimer = true
console.log('清理timer')
})
} catch (err) {
this.stopTimer = true;
console.log("通知异常",err);
this.stopTimer = true
console.log('通知异常', err)
}
},
fetchNotice() {
@ -176,168 +188,171 @@
showAnnouncement(record) {
putAction(this.url.editCementSend, { anntId: record.id }).then((res) => {
if (res.success) {
this.loadData();
this.loadData()
}
});
this.hovered = false;
})
this.hovered = false
if (record.openType === 'component') {
this.openPath = record.openPage;
this.formData = {id:record.busId};
this.$refs.showDynamNotice.detail(record.openPage);
this.openPath = record.openPage
this.formData = { id: record.busId }
this.$refs.showDynamNotice.detail(record.openPage)
} else {
this.$refs.ShowAnnouncement.detail(record);
this.$refs.ShowAnnouncement.detail(record)
}
},
toMyAnnouncement() {
this.$router.push({
path: '/isps/userAnnouncement'
});
},
modalFormOk(){
path: '/isps/userAnnouncement',
})
},
modalFormOk() {},
handleHoverChange(visible) {
this.hovered = visible;
this.hovered = visible
},
initWebSocket: function () {
// WebSocketwshttpwsshttps
var userId = store.getters.userInfo.id;
var url = window._CONFIG['domianURL'].replace("https://","wss://").replace("http://","ws://")+"/websocket/"+userId;
var userId = store.getters.userInfo.id
var url =
window._CONFIG['domianURL'].replace('https://', 'wss://').replace('http://', 'ws://') + '/websocket/' + userId
//console.log(url);
//update-begin-author:taoyan date:2022-4-22 for: v2.4.6 websocket #3278
let token = Vue.ls.get(ACCESS_TOKEN)
this.websock = new WebSocket(url, [token]);
this.websock = new WebSocket(url, [token])
//update-end-author:taoyan date:2022-4-22 for: v2.4.6 websocket #3278
this.websock.onopen = this.websocketOnopen;
this.websock.onerror = this.websocketOnerror;
this.websock.onmessage = this.websocketOnmessage;
this.websock.onclose = this.websocketOnclose;
this.websock.onopen = this.websocketOnopen
this.websock.onerror = this.websocketOnerror
this.websock.onmessage = this.websocketOnmessage
this.websock.onclose = this.websocketOnclose
},
websocketOnopen: function () {
console.log("WebSocket连接成功");
console.log('WebSocket连接成功')
//
//this.heartCheck.reset().start();
},
websocketOnerror: function (e) {
console.log("WebSocket连接发生错误第%s次",this.wsConnectErrorTime);
console.log('WebSocket连接发生错误第%s次', this.wsConnectErrorTime)
this.wsConnectErrorTime = this.wsConnectErrorTime + 1;
this.wsConnectErrorTime = this.wsConnectErrorTime + 1
if (this.wsConnectErrorTime > 5) {
console.log("WebSocket连接错误超过5次就不再重新连了");
console.log('WebSocket连接错误超过5次就不再重新连了')
this.lockReconnect = true
return;
return
}
this.reconnect();
this.reconnect()
},
websocketOnmessage: function (e) {
console.log("-----接收消息-------",e.data);
var data = eval("(" + e.data + ")"); //
console.log('-----接收消息-------', e.data)
var data = eval('(' + e.data + ')') //
this.voiceBroadcast(data.msgTxt)
if(data.cmd == "topic"){
if (data.cmd == 'topic') {
//
this.loadData();
}else if(data.cmd == "user"){
this.loadData()
} else if (data.cmd == 'user') {
//
this.loadData();
this.loadData()
}
//
//this.heartCheck.reset().start();
},
websocketOnclose: function (e) {
console.log("connection closed (" + e + ")");
console.log('connection closed (' + e + ')')
if (e) {
console.log("connection closed (" + e.code + ")");
console.log('connection closed (' + e.code + ')')
}
this.reconnect();
this.reconnect()
},
websocketSend(text) { //
websocketSend(text) {
//
try {
this.websock.send(text);
this.websock.send(text)
} catch (err) {
console.log("send failed (" + err.code + ")");
console.log('send failed (' + err.code + ')')
}
},
//
voiceBroadcast(text) {
var url = "http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&text=" + encodeURI(text); // baidu
var voiceContent = new Audio(url);
voiceContent.src = url;
voiceContent.play();
var url = 'http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&text=' + encodeURI(text) // baidu
var voiceContent = new Audio(url)
voiceContent.src = url
voiceContent.play()
},
openNotification(data) {
var text = data.msgTxt;
const key = `open${Date.now()}`;
var text = data.msgTxt
const key = `open${Date.now()}`
this.$notification.open({
message: '消息提醒',
placement: 'bottomRight',
description: text,
key,
btn: (h) => {
return h('a-button', {
return h(
'a-button',
{
props: {
type: 'primary',
size: 'small',
},
on: {
click: () => this.showDetail(key,data)
}
}, '查看详情')
click: () => this.showDetail(key, data),
},
});
},
'查看详情'
)
},
})
},
reconnect() {
var that = this;
if(that.lockReconnect) return;
that.lockReconnect = true;
var that = this
if (that.lockReconnect) return
that.lockReconnect = true
//
setTimeout(function () {
console.info("尝试重连...");
that.initWebSocket();
that.lockReconnect = false;
}, 20000);
console.info('尝试重连...')
that.initWebSocket()
that.lockReconnect = false
}, 20000)
},
heartCheckFun() {
var that = this;
var that = this
//,20s
that.heartCheck = {
timeout: 20000,
timeoutObj: null,
serverTimeoutObj: null,
reset: function () {
clearTimeout(this.timeoutObj);
clearTimeout(this.timeoutObj)
//clearTimeout(this.serverTimeoutObj);
return this;
return this
},
start: function () {
var self = this;
var self = this
this.timeoutObj = setTimeout(function () {
//
//onmessage
that.websocketSend("HeartBeat");
console.info("客户端发送心跳");
that.websocketSend('HeartBeat')
console.info('客户端发送心跳')
//self.serverTimeoutObj = setTimeout(function(){//
// that.websock.close();//onclosereconnectws.close().reconnect onclose
//}, self.timeout)
}, this.timeout)
}
},
}
},
showDetail(key, data) {
this.$notification.close(key);
var id = data.msgId;
this.$notification.close(key)
var id = data.msgId
getAction(this.url.queryById, { id: id }).then((res) => {
if (res.success) {
var record = res.result;
this.showAnnouncement(record);
var record = res.result
this.showAnnouncement(record)
}
})
},
}
},
}
</script>