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-26 16:44:40 +08:00
|
|
|
|
<el-dropdown-item v-for="(item,index) in noticeData.slice(0,5)" :key="index">
|
|
|
|
|
<el-link :underline="false" @click="clickNote(item)" :style="index==0?'': 'margin-top :10px'">{{item.noticeTitle}}</el-link>
|
|
|
|
|
<el-link :underline="false" style="color:#AAAAAA">{{parseTime(item.sendTime, '{y}-{m}-{d} {h}:{i}:{s}')}}</el-link>
|
2024-04-24 13:16:34 +08:00
|
|
|
|
</el-dropdown-item>
|
2024-04-26 16:44:40 +08:00
|
|
|
|
<el-link :underline="false" @click="moreNote('1')" style="margin-top :10px" type="primary">更多消息</el-link>
|
2024-04-24 13:16:34 +08:00
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="系统公告" name="second">
|
2024-04-26 16:44:40 +08:00
|
|
|
|
<el-dropdown-item v-for="(item,index) in sysLog.slice(0,5)" :key="index">
|
|
|
|
|
<el-link :underline="false" @click="clickNote(item)" :style="index==0?'': 'margin-top :10px'">{{item.noticeTitle}}</el-link>
|
|
|
|
|
<el-link :underline="false" style="color:#AAAAAA">{{parseTime(item.sendTime, '{y}-{m}-{d} {h}:{i}:{s}')}}</el-link>
|
2024-04-24 13:16:34 +08:00
|
|
|
|
</el-dropdown-item>
|
2024-04-26 16:44:40 +08:00
|
|
|
|
<el-link :underline="false" @click="moreNote('2')" style="margin-top :10px" type="primary">更多消息</el-link>
|
2024-04-25 13:24:18 +08:00
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="业务通知" name="third">
|
2024-04-26 16:44:40 +08:00
|
|
|
|
<el-dropdown-item v-for="(item,index) in businessData.slice(0,5)" :key="index">
|
|
|
|
|
<el-link :underline="false" @click="clickNote(item)" :style="index==0?'': 'margin-top :10px'">{{item.noticeTitle}}</el-link>
|
|
|
|
|
<el-link :underline="false" style="color:#AAAAAA">{{parseTime(item.sendTime, '{y}-{m}-{d} {h}:{i}:{s}')}}</el-link>
|
2024-04-25 13:24:18 +08:00
|
|
|
|
</el-dropdown-item>
|
2024-04-26 16:44:40 +08:00
|
|
|
|
<el-link :underline="false" @click="moreNote('3')" style="margin-top :10px" 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-26 16:44:40 +08:00
|
|
|
|
|
|
|
|
|
<el-dialog class="noteMore" :title="noteMoreTitle" :visible.sync="noteMoreVisible" width="780px" append-to-body>
|
|
|
|
|
<div class="block">
|
2024-04-28 09:53:41 +08:00
|
|
|
|
<el-form :model="form" ref="queryForm" size="small" :inline="true" label-width="80px">
|
|
|
|
|
<el-form-item label="消息时间">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="dateRange"
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
type="daterange"
|
|
|
|
|
range-separator="-"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
2024-04-26 16:44:40 +08:00
|
|
|
|
<el-timeline>
|
|
|
|
|
<el-timeline-item :timestamp="item.date" placement="top" v-for="(item,index) in noteMore" :key="index">
|
|
|
|
|
<el-card v-for="(item,index) in item.data" :key="index" :style="index==0?'': 'margin-top :10px'">
|
|
|
|
|
<h3>{{item.noticeTitle}}</h3>
|
2024-04-28 09:53:41 +08:00
|
|
|
|
<span>{{item.sendUser}} 提交于 {{parseTime(item.sendTime, '{y}-{m}-{d} {h}:{i}:{s}')}}</span>
|
|
|
|
|
<el-button class="mb5" size="mini" :style="item.isRead==0?'float :right;background-color :#ffba00;border-color: #ffba00;': 'float :right;background-color :#c0c4cc;border-color: #c0c4cc;'" type="info">{{item.isRead=='1'?'已读':'未读'}}</el-button>
|
2024-04-26 16:44:40 +08:00
|
|
|
|
<div style="width:100%;height:1px;margin:0px auto;padding:0px;overflow:hidden;background-color: #c0c4ccab"></div>
|
2024-04-29 20:30:42 +08:00
|
|
|
|
<el-link :underline="false" @click="clickMoreNote(item)" style="color:#46a6ff;margin-top :10px">查看详情</el-link>
|
2024-04-26 16:44:40 +08:00
|
|
|
|
</el-card>
|
|
|
|
|
</el-timeline-item>
|
|
|
|
|
</el-timeline>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
2024-04-24 13:16:34 +08:00
|
|
|
|
</el-dropdown>
|
|
|
|
|
</template>
|
2024-04-26 16:44:40 +08:00
|
|
|
|
<style>
|
|
|
|
|
/* 弹窗设置 */
|
|
|
|
|
.noteMore .el-dialog__body {
|
|
|
|
|
padding: 10px 10px;
|
|
|
|
|
color: #606266;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
overflow-y: auto; /* 自动显示垂直滚动条 */
|
|
|
|
|
height: 600px;
|
|
|
|
|
max-height: 680px; /* 设置最大高度,根据需要调整 */
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2024-04-24 13:16:34 +08:00
|
|
|
|
<script>
|
2024-04-26 16:44:40 +08:00
|
|
|
|
import { navbarNoticelist, navbarNoticeMorelist } 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-26 16:44:40 +08:00
|
|
|
|
|
|
|
|
|
// 消息-更多数据
|
|
|
|
|
noteMore: [],
|
|
|
|
|
|
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-26 16:44:40 +08:00
|
|
|
|
|
|
|
|
|
noteMoreTitle: '',
|
|
|
|
|
noteMoreVisible: false,
|
2024-04-25 13:24:18 +08:00
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
2024-04-26 16:44:40 +08:00
|
|
|
|
//查询参数
|
2024-04-28 09:53:41 +08:00
|
|
|
|
queryParams:{},
|
|
|
|
|
|
|
|
|
|
// 日期范围
|
|
|
|
|
dateRange: [],
|
2024-04-24 13:16:34 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
// 初始化WebSocket
|
2024-06-17 12:49:35 +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: {
|
2024-04-26 11:04:05 +08:00
|
|
|
|
/**获取消息数据*/
|
2024-04-24 13:16:34 +08:00
|
|
|
|
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-26 16:44:40 +08:00
|
|
|
|
this.noticeData = res[1]?res[1]:[];
|
2024-04-24 14:50:22 +08:00
|
|
|
|
|
2024-04-26 16:44:40 +08:00
|
|
|
|
this.sysLog = res[2]?res[2]:[];
|
2024-04-24 13:16:34 +08:00
|
|
|
|
|
2024-04-26 16:44:40 +08:00
|
|
|
|
this.businessData = res[3]?res[3]:[];
|
2024-04-25 13:24:18 +08:00
|
|
|
|
|
|
|
|
|
this.noteTotal = this.noticeData.length+this.sysLog.length+this.businessData.length;
|
2024-04-24 13:16:34 +08:00
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleClick(tab, event) {
|
|
|
|
|
},
|
2024-04-26 11:04:05 +08:00
|
|
|
|
/**获取消息详情*/
|
2024-04-24 13:16:34 +08:00
|
|
|
|
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-26 11:04:05 +08:00
|
|
|
|
this.getList()
|
2024-04-25 13:24:18 +08:00
|
|
|
|
});
|
2024-04-24 13:16:34 +08:00
|
|
|
|
},
|
2024-04-26 16:44:40 +08:00
|
|
|
|
/** 显示更多消息 */
|
|
|
|
|
moreNote(noticeType){
|
2024-04-28 09:53:41 +08:00
|
|
|
|
this.noteMore = [];
|
2024-04-26 16:44:40 +08:00
|
|
|
|
this.queryParams.noticeType = noticeType;
|
2024-04-28 09:53:41 +08:00
|
|
|
|
navbarNoticeMorelist(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
2024-04-26 16:44:40 +08:00
|
|
|
|
console.log(response)
|
|
|
|
|
this.noteMoreTitle = noticeType=='1'?"系统通知消息":noticeType=='2'?"系统公告消息":"业务通知消息";
|
|
|
|
|
this.noteMoreVisible = true
|
|
|
|
|
this.noteMore = response
|
|
|
|
|
});
|
|
|
|
|
},
|
2024-04-28 09:53:41 +08:00
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.moreNote(this.queryParams.noticeType)
|
|
|
|
|
},
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.dateRange = [];
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
|
|
|
|
/**获取更多消息中详情*/
|
|
|
|
|
clickMoreNote(data) {
|
|
|
|
|
getNavbarNotice(data.noticeId).then(response => {
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
this.noteTitle = "消息详情"
|
|
|
|
|
this.noteVisible = true
|
|
|
|
|
this.moreNote(data.noticeType)
|
|
|
|
|
this.getList()
|
|
|
|
|
});
|
|
|
|
|
},
|
2024-04-26 16:44:40 +08:00
|
|
|
|
|
2024-04-24 13:16:34 +08:00
|
|
|
|
initWebSocket() {
|
2024-04-26 13:35:44 +08:00
|
|
|
|
var userName = this.$store.state.user.name;
|
2024-04-24 13:16:34 +08:00
|
|
|
|
// WebSocket与普通的请求所用协议有所不同,ws等同于http,wss等同于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端点地址
|
2024-04-29 15:10:48 +08:00
|
|
|
|
let url = webSocketApiUrl + '/websocket/message/ruoyi/'+userName;
|
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
|
2024-04-29 15:10:48 +08:00
|
|
|
|
|
|
|
|
|
console.log('WebSocket 连接地址:'+host)
|
2024-04-24 13:16:34 +08:00
|
|
|
|
},
|
|
|
|
|
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',
|
2024-04-29 15:10:48 +08:00
|
|
|
|
duration: 5000,
|
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>
|