JNBusiness/ruoyi-ui/src/layout/components/NavbarNotice.vue

238 lines
7.7 KiB
Vue
Raw Normal View History

2024-04-24 13:16:34 +08:00
<template>
<!--1通知 2公告-->
<el-dropdown>
<span class="el-dropdown-link">
<svg-icon icon-class="message" slot="reference" />
2024-04-25 13:24:18 +08:00
<el-badge :value="noteTotal" v-if="noteTotal>0"></el-badge>
2024-04-24 13:16:34 +08:00
</span>
<el-dropdown-menu slot="dropdown">
<el-tabs v-model="activeName" @tab-click="handleClick" style="width:100%">
<el-tab-pane label="系统通知" name="first">
2024-04-24 14:50:22 +08:00
<el-dropdown-item v-for="(item,index) in noticeData" :key="index">
2024-04-24 13:16:34 +08:00
<el-link :underline="false" @click="clickNote(item)" :style="index==0?'': 'margin-top :15px'">{{item.noticeTitle}}</el-link>
</el-dropdown-item>
2024-04-25 13:24:18 +08:00
<!--
2024-04-24 13:16:34 +08:00
<el-link :underline="false" style="margin-top :15px" v-if="noticeData.length>5" type="primary">更多消息</el-link>
2024-04-25 13:24:18 +08:00
-->
2024-04-24 13:16:34 +08:00
</el-tab-pane>
<el-tab-pane label="系统公告" name="second">
<el-dropdown-item v-for="(item,index) in sysLog" :key="index">
<el-link :underline="false" @click="clickNote(item)" :style="index==0?'': 'margin-top :15px'">{{item.noticeTitle}}</el-link>
</el-dropdown-item>
2024-04-25 13:24:18 +08:00
<!--
2024-04-24 13:16:34 +08:00
<el-link v-if="sysLog.length>5" type="primary">更多消息</el-link>
2024-04-25 13:24:18 +08:00
-->
</el-tab-pane>
<el-tab-pane label="业务通知" name="third">
<el-dropdown-item v-for="(item,index) in businessData" :key="index">
<el-link :underline="false" @click="clickNote(item)" :style="index==0?'': 'margin-top :15px'">{{item.noticeTitle}}</el-link>
</el-dropdown-item>
<!--
<el-link :underline="false" style="margin-top :15px" v-if="noticeData.length>5" type="primary">更多消息</el-link>
-->
2024-04-24 13:16:34 +08:00
</el-tab-pane>
</el-tabs>
</el-dropdown-menu>
2024-04-25 13:24:18 +08:00
<el-dialog :title="noteTitle" :visible.sync="noteVisible" width="780px" append-to-body>
<el-form ref="form" :model="form" label-width="80px">
<el-row>
<el-col :span="12">
<el-form-item label="标题" prop="noticeTitle">
<el-input v-model="form.noticeTitle" :disabled="true"/>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="类型" prop="noticeType">
<el-select v-model="form.noticeType" :disabled="true">
<el-option
v-for="dict in dict.type.sys_notice_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="内容">
<editor v-model="form.noticeContent" :min-height="192"/>
</el-form-item>
</el-col>
</el-row>
</el-form>
</el-dialog>
2024-04-24 13:16:34 +08:00
</el-dropdown>
</template>
<script>
2024-04-24 16:54:52 +08:00
import { navbarNoticelist } from '@/api/system/notice';
2024-04-25 13:24:18 +08:00
import { getNavbarNotice} from "@/api/system/notice";
2024-04-24 13:16:34 +08:00
export default {
name: 'NavbarNotice',
2024-04-25 13:24:18 +08:00
dicts: ['sys_notice_type'],
2024-04-24 13:16:34 +08:00
data() {
return {
activeName: 'first',
noteTotal: '',
// 公告
sysLog: [],
// 通知
noticeData: [],
2024-04-25 13:24:18 +08:00
// 业务消息
businessData: [],
2024-04-24 13:16:34 +08:00
websock: null,
lockReconnect: false,
2024-04-25 13:24:18 +08:00
//弹窗设置
noteTitle: '',
2024-04-24 13:16:34 +08:00
noteVisible: false,
2024-04-25 13:24:18 +08:00
// 表单参数
form: {},
2024-04-24 13:16:34 +08:00
}
},
mounted() {
// 初始化WebSocket
2024-04-24 16:54:52 +08:00
this.initWebSocket();
2024-04-24 13:16:34 +08:00
},
2024-04-25 13:24:18 +08:00
created(){
this.getList();
},
2024-04-24 13:16:34 +08:00
destroyed: function() { // 离开页面生命周期函数
2024-04-24 16:54:52 +08:00
this.websocketOnclose();
2024-04-24 13:16:34 +08:00
},
methods: {
getList() {
2024-04-24 14:50:22 +08:00
this.noticeData = [];
this.sysLog = [];
2024-04-24 13:16:34 +08:00
navbarNoticelist(this.queryParams).then(res => {
2024-04-24 14:50:22 +08:00
var noticeData = res[1]?res[1]:[];
this.noticeData = noticeData.slice(0,5);
var sysLog = res[2]?res[2]:[];
this.sysLog = sysLog.slice(0,5);
2024-04-24 13:16:34 +08:00
2024-04-25 13:24:18 +08:00
var businessData = res[3]?res[3]:[];
this.businessData = businessData.slice(0,5);
this.noteTotal = this.noticeData.length+this.sysLog.length+this.businessData.length;
2024-04-24 13:16:34 +08:00
})
},
handleClick(tab, event) {
},
clickNote(data) {
2024-04-25 13:24:18 +08:00
getNavbarNotice(data.noticeId).then(response => {
this.form = response.data;
this.noteTitle = "消息详情"
this.noteVisible = true
});
2024-04-24 13:16:34 +08:00
},
initWebSocket() {
2024-04-24 16:54:52 +08:00
var userId = this.$store.state.user.id;
2024-04-24 13:16:34 +08:00
// WebSocket与普通的请求所用协议有所不同ws等同于httpwss等同于https
2024-04-25 13:24:18 +08:00
// 当前浏览器Location对象
const nowLocation = window.location;
// 协议 => http、https
const protocol = nowLocation.protocol;
// hostName => ip
const hostName = nowLocation.hostname;
// host => ip:port
const host = nowLocation.host;
// websocket api 地址
// 这个判断就是根据当前项目环境 自动确定使用 ws 还是 wss 的路由地址
//const websocket_pattern = (hostName == '域名') ? 'wss-websocket-api' : 'websocket-api';
const websocket_pattern = 'websocket-api';
// websocket 请求地址前缀
//const webSocketApiUrl = ((protocol.startsWith('https')) ? 'wss://' : 'ws://') + host + '/' + websocket_pattern;
const webSocketApiUrl = 'ws://' + host + '/' + websocket_pattern;
// 当前WebSocket的请求地址前缀,
// /websocket/template-push/ 就是我后端配置的websocket端点地址
let url = webSocketApiUrl + '/websocket/message/'+userId;
2024-04-24 13:16:34 +08:00
this.websock = new WebSocket(url)
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连接成功')
},
websocketOnerror: function(e) {
console.log('WebSocket连接发生错误第%s次', this.wsConnectErrorTime)
this.wsConnectErrorTime = this.wsConnectErrorTime + 1
if (this.wsConnectErrorTime > 5) {
console.log('WebSocket连接错误超过5次就不再重新连了')
this.lockReconnect = true
return
}
this.reconnect()
},
websocketOnmessage: function(e) {
console.log('-----接收消息-------', e.data)
2024-04-24 16:54:52 +08:00
this.getList();
2024-04-25 16:39:40 +08:00
this.$notify({
2024-04-24 16:54:52 +08:00
title: '消息',
2024-04-25 16:39:40 +08:00
type: 'warning',
duration: 2000,
2024-04-25 13:24:18 +08:00
dangerouslyUseHTMLString: true,
2024-04-24 16:54:52 +08:00
message: JSON.parse(e.data).noticeTitle
2024-04-25 16:39:40 +08:00
});
2024-04-24 13:16:34 +08:00
},
websocketOnclose: function(e) {
console.log('connection closed (' + e + ')')
if (e) {
console.log('connection closed (' + e.code + ')')
}
this.reconnect()
},
reconnect() {
var that = this
if (that.lockReconnect) return
that.lockReconnect = true
//没连接上会一直重连,设置延迟避免请求过多
setTimeout(function() {
console.info('尝试重连...')
that.initWebSocket()
that.lockReconnect = false
}, 2000)
}
}
}
</script>
<style lang="scss" scoped>
.text-overflow {
width: 160px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
margin: 2px 0;
}
::v-deep .el-badge {
top: -7px;
}
::v-deep .el-badge__content.is-dot {
position: relative;
width: 11px;
height: 11px;
}
.el-tab-pane{
width:300px
}
.el-dropdown-menu{
2024-04-25 13:24:18 +08:00
width:300px
2024-04-24 13:16:34 +08:00
}
::v-deep .el-dropdown-menu {
top: 28px;
}
::v-deep .el-tabs {
padding: 12px;
width: 188px;
}
</style>