vue通知提醒消息举例详解
作者:混世大魔王955 发布时间:2024-05-10 14:17:03
标签:vue,通知,提醒
前言
最近有个项目需求就是在客户端的右上角要实时展示提醒消息,下面来看下简单的实现步骤
一、Notification
这是基于悬浮出现在页面角落,显示全局的通知提醒消息。这个elmennt-ui组件可以实现我们上面的功能。
二、Notification引用
1.全局引用
element 为 Vue.prototype
添加了全局方法 $notify
。因此在 vue instance 中可以采用本页面中的方式调用 Notification。
2.单独引用
import { Notification } from 'element-ui';
此时调用方法为 Notification(options)
。我们也为每个 type 定义了各自的方法,如 Notification.success(options)
。并且可以调用 Notification.closeAll()
手动关闭所有实例。
三、参数说明
四、简单案例
右上角就会弹出我们写的html代码段是不是特别简单
<template>
<el-button
plain
@click="open">
使用 HTML 片段
</el-button>
</template>
<script>
export default {
methods: {
open() {
this.$notify({
title: 'HTML 片段',
dangerouslyUseHTMLString: true,
message: '<strong>这是 <i>HTML</i> 片段</strong>'
});
}
}
}
</script>
五、项目实战
这里大概说一下我的流程,我这里需要建立Websocket连接,服务器实时推送信息给客户端在右上角展示,这里需要用到Websocket以及本章学的通知。Websocket在前一章有讲。案例仅供参考。
1、定义全局Notification。
/* 全局Notification */
Vue.prototype.$baseNotify = (message, title, type, position) => {
Notification({
title: title,
message: message,
position: position || 'top-right',
type: type || 'success',
duration: messageDuration,
})
}
2、Websocket实时接收通知。
initWebSocket() {
const token = getAccessToken()
const wsurl = `${this.troubelUrl}?code=trouble&token=${token}`
this.twebsock = new WebSocket(wsurl)
this.twebsock.onmessage = this.websocketonmessage
this.twebsock.onopen = this.websocketonopen
this.twebsock.onerror = this.websocketonerror
this.twebsock.onclose = this.websocketclose
},
websocketonopen() {
//webscoket定时心跳
this.troubleTimer = setInterval(() => {
let pageUrl = window.location.hash
if (pageUrl !== '' && pageUrl !== '#/login') {
this.websocketsend('heartbeat')
}
}, 50000)
console.log('数据发送...')
},
websocketonerror(e) {
//连接建立失败重连
setTimeout(() => {
this.initWebSocket()
}, 10000)
console.log('故障连接出错~')
},
websocketonmessage(evt) {
var monitorData = evt.data
monitorData = JSON.parse(monitorData)
this.switchOther(this.troublePush, monitorData)
},
//根据数据判断进行弹框(紧急呼叫,长时间关人)
switchOther(switchValue, monitorData) {
if (switchValue === true || switchValue === 'true') {
this.handleOpen(monitorData)
}
},
websocketsend(data) {
this.twebsock.send(data)
},
websocketclose(e) {
if (this.twebsock == null) {
return
}
this.twebsock.close()
this.twebsock = null
clearInterval(this.troubleTimer)
console.log('故障推送关闭~')
},
3、消息通知
//monitorItem取的前面Websocket返回回来的值
handleOpen(monitorItem) {
this.openDialogflase = true
const h = this.$createElement
let notify = this.$notify({
title: monitorItem.troubleType,
message: h('p', null, [
h(
'span',
{
style: {
display: 'inline-block',
margin: '0 0 10px 0',
},
},
`${monitorItem.projectName}-${monitorItem.useCode}`
),
h(
'p',
{
style: {
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
margin: '0 0 5px 0',
},
},
[
h('span', null, monitorItem.duration),
h(
'span',
{
style: {
color: '#efefef',
},
},
monitorItem.fromType
),
]
),
h('p', null, monitorItem.address),
h(
'button',
{
style: {
padding: '5px 20px',
fontSize: '14px',
borderRadius: '4px',
color: '#fff',
background: '#ff575a',
border: 'none',
margin: '10px 10px 0 0',
display: 'inline-block',
},
on: {
click: this.clickBtn.bind(this, monitorItem),
},
},
'查看详情'
),
h(
'button',
{
style: {
padding: '5px 20px',
fontSize: '14px',
borderRadius: '4px',
color: '#fff',
background: '#ff575a',
border: 'none',
margin: '10px 10px 0 0',
display: 'inline-block',
},
on: {
click: this.handleShi.bind(this, monitorItem),
},
},
'双向视频'
),
h(
'button',
{
style: {
padding: '5px 20px',
fontSize: '14px',
borderRadius: '4px',
color: '#fff',
background: '#ff575a',
border: 'none',
margin: '10px 0 0 0',
display: 'inline-block',
},
on: {
click: this.handleQuXiao.bind(this, monitorItem),
},
},
'取消'
),
]),
duration: 0,
showClose: false,
})
//将通知实例放入
this.notifications[monitorItem.orderKey] = notify
this.handleAudio()
},
//关闭当前故障弹框
handleQuXiao(monitorItem) {
this.openDialogflase = false
this.notifications[monitorItem.orderKey].close()
delete this.notifications[monitorItem.orderKey]
},
//关闭所有弹窗
closeAll() {
let vue = this
for (let key in vue.notifications) {
vue.notifications[key].close()
delete vue.notifications[key]
}
},
来源:https://blog.csdn.net/weixin_55853065/article/details/127360779
0
投稿
猜你喜欢
- 问题你有一个数据序列,想利用一些规则从中提取出需要的值或者是缩短序列解决方案最简单的过滤序列元素的方法就是使用列表推导。比如:>>
- 时间戳的问题我们的微博应用的一个忽略了很久的问题就是日间和日期的显示。直到现在,我们在我们的User和Post对象中使用Pyth
- 第一: MySQL的安装下载MySQL软件,修改安装路径之后安装数据库MySQL5.7.18第一步:数据库MySQL
- 1、MySQL 5.6.32 64位安装包下载在官网http://dev.mysql.com/downloads/mysql/5.6.htm
- 本文实例讲述了python实现的多线程端口扫描功能。分享给大家供大家参考,具体如下:下面的程序给出了对给定的ip主机进行多线程扫描的Pyth
- 面向对象设计与面向对象编程的关系 面向对象设计(OOD)不会特别要求面向对象编程语言。事实上,OOD 可以由纯结构化语言来实现,比
- 问题描述:30 个人在一条船上,超载,需要 15 人下船。于是人们排成一队,排队的位置即为他们的编号。报数,从 1 开始,数到 9 的人下船
- SQL查询输出,根据表内某字段为准,输出不重复记录,或删除掉重复的记录,保留所需要的记录。今儿见一朋友在蓝色里问起(查询不重复记录~),想想
- 本文实例讲述了PHP判断是否微信访问的方法。分享给大家供大家参考,具体如下:在开发中有时需要禁止或者仅允许微信浏览器进行访问,则此时就需要对
- 按照某一列排序d = {'A': [3, 6, 6, 7, 9], 'B': [2, 5, 8, 0, 0]
- extend()方法追加序列内容到列表。语法以下是extend()方法的语法:list.extend(seq)参数 &
- 本文实例为大家分享了js实现选项卡效果的具体代码,供大家参考,具体内容如下<!DOCTYPE html><html>
- 前言这部分已经折腾我两天了,还是没有头绪,可能还会折腾更久,最后在第三天上午解决问题,在一个不起眼的地方被坑了,jQuery加载的问题。会者
- 客户的一台服务器出现Raid故障,经过我们的努力,数据基本恢复成功,但是其中的一个SQL Server日志文件(扩展名LDF)损坏严重,基本
- 最近的答题赢钱很火爆,我也参与了几次,有些题目确实很难答,但是10秒钟的时间根本不够百度的,所以写了个辅助挂,这样可以出现题目时自动百度,这
- 今天给vscode配置git的时候,差点没把我送走,我在配置git项目的时候会,看了一个博客文章的教学,其中配置路径的方法如下1. 在git
- 模块 定义计算机在开发过程中,代码越写越多,也就越难以维护,所以为了编写可维护的代码,我们会把函数进行分组,放在不同的文件里。在python
- 前言本文通过示例给大家介绍了python嵌套字典比较值,取值,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。示例代码#取值
- 路由路由可以定义在工程的目录下(看你的需求),也可以定义在各个应用中来保存应用的路由,用主路文件urls中使用include()包含各个应用
- 读取和存储dict()与.json格式文件读取.json格式文件并将数据保存到字典中数据文件:hg.json{"商家名称"