位置: IT常识 - 正文

vue通知提醒消息(vue 提示)

编辑:rootadmin
vue通知提醒消息

目录

前言

一、Notification

二、Notification引用

           1.全局引用

           2.单独引用

三、参数说明

四、简单案例 

五、项目实战

1、定义全局Notification。

2、Websocket实时接收通知。

3、消息通知


前言

推荐整理分享vue通知提醒消息(vue 提示),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:vue系统通知,vue推送消息,vue 消息通知,vue 提示,vue消息框,vue 消息通知,vue 消息通知,vue 消息通知,内容如对您有帮助,希望把文章链接给更多的朋友!

最近有个项目需求就是在客户端的右上角要实时展示提醒消息,下面来看下简单的实现步骤

一、Notification

这是基于悬浮出现在页面角落,显示全局的通知提醒消息。这个elmennt-ui组件可以实现我们上面的功能。

二、Notification引用1.全局引用vue通知提醒消息(vue 提示)

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://www.jiuchutong.com/zhishi/296046.html 转载请保留说明!

上一篇:JavaWeb简易复习手册(javaweb知识点汇总)

下一篇:GPT-4介绍&api申请(Chatgpt plus)(gpt3 api)

  • 税金及附加如何记账
  • 防伪税控税务端官网
  • 利润的敏感性分析怎么做?
  • 核定征收企业股权转让的个人所得税
  • 小规模纳税人可以开数电专票吗
  • 企业会计制度固定资产保险费
  • 员工单独购买工伤保险可以吗
  • 反结账只能反结上月的账吗
  • 企业所得税的税率
  • 材料验收入库款项尚未支付
  • 报关单金额大于合同金额
  • 小企业固定资产折旧方法
  • 贴标企业
  • 工会筹备金税率
  • 出口没有退税的发票
  • 税务一般纳税人
  • 企业承租经营的承租人取得的所得
  • 企业出租自有厂房超经营吗
  • 建筑业简易征收差额征税的计算案例
  • 会议案例分析题及答案
  • 存款利息天数算头不算尾如何计算
  • 红冲发票地址不一样可以吗
  • 装修预付款怎么做账
  • 新办企业税务办理
  • 即征即退进项税额分摊方法
  • 消费税的附加税和增值税的附加税
  • 商贸公司不开发票还要上税吗
  • window11beat
  • bios设置详细介绍配图
  • 抵押房产的保险能退吗
  • php 字符串 数组
  • 公司帮员工买社保能扣税吗
  • 期间费用计入产后成本吗
  • 租金收入计入收入总额吗
  • 如何计算企业年度人均产值
  • 格里戈里耶奈尔尤伯夫
  • 爱丁堡几点天黑
  • vue+java+mysql
  • php微信公众号开发框架
  • 母公司将子公司的资产负债和当期损益
  • h5项目怎么打包成app
  • 前端作业做一个网站
  • 小程序设计制作
  • 每个月计提折旧的分录
  • linux lab安装
  • mysqli
  • CentOS6.9下mysql 5.7.17安装配置方法图文教程
  • 个税显示退税成功但是没有收到钱
  • 坏账核销会计处理
  • 会计六大类会计科目
  • 汽修厂的发票开的是什么票
  • 业务招待费进项票可以抵扣吗
  • 货款已退回货已收到怎么办
  • 开具劳务发票需要哪些资料?
  • 银行汇票计入什么会计科目
  • 进销存怎么看
  • 出现销项负数
  • 销售暂估业务处理
  • 暂估费用票的账务处理
  • 企业收付实现制还是权责发生制
  • 老板个人借款要纳税吗
  • centos6.5配置ssh
  • windows窗口跑到了侧面
  • win10局域网无法上网
  • cocos2d游戏源码
  • 安卓手机好用的笔记类app
  • opengl矩形
  • JavaScript中的变量名不区分大小写
  • shell脚本 教程
  • hadoop有几个版本
  • python 压缩gz
  • unity怎么弄游戏小地图
  • js中文本框设置的代码
  • js点击代码
  • android客户端与服务器通信
  • python冒泡排序流程图
  • 江苏省内车辆迁入标准
  • 赞美税务干部对联大全集锦
  • 江西国家税务局电子税务局
  • 个人所得税税率怎么算
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设