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

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