vue 使用element-ui中的Notification自定义按钮并实现关闭功能及如何处理多个通知


Posted in Javascript onAugust 17, 2019

vue 使用element-ui中的Notification自定义按钮并实现关闭功能及如何处理多个通知

使用element-ui中的Notification,只有一个message属性是有很大的操作空间,其余的都是写死的,无法进行扩展,达不到想要的效果。所以只能在message上下功夫。

在element-ui官方文档中可以看到Notification中的message属性是可以处理VNode的所以我们可以使用VNode来达到我们需要的效果。

如何关闭通知呢?

当创建通知的时候,会返回该通知的实例,通过该实例的close方法可以将通知关闭。

那么当有多个通知显示在屏幕上时,如何关闭特定弹窗的呢?

创建一个字典,字典的key是message的Id,value是显示该消息的通知的实例。从而可以关闭特定的通知。代码如下。

import mainTable from './mixin/mainTable';
import systemMenu from './template/system-menu';
import headerRow from './template/header';
export default {
  name: 'xxxxx',
  data() {
    return {
      //使用messageId作为弹窗的key,用来获取弹窗的实例,以对对应弹窗进行操作
      notifications: {}
    };
  },
  mounted() {
    this.$messageWebsocket.websocketApi.initWebSocket(this.$store.state.login.userInfo.userInfo.id, this.openMessageTips);
  },
  methods: {
    //关闭单个通知
    closeNotification(id, operateCode, message){
      this.notifications[message.messageId].close();
      delete this.notifications[message.messageId];
    },
    //关闭所有通知
    closeAllNotification(){
      let _this = this;
      for (let key in _this.notifications) {
        _this.notifications[key].close();
        delete _this.notifications[key];
      }
    },
    //打开一个新的通知
    openMessageTips(message){
      let _this = this;
      this.closeAllNotification();
      let notify = this.$notify({
        title: '三高协诊消息',
        position: 'bottom-right',
        showClose: false,
        dangerouslyUseHTMLString: true,
        message: this.$createElement('div', null,
          [
            this.$createElement('div', null, [this.$createElement('span', null, message.content)]),
            this.$createElement('div', null,
              [
                this.$createElement(
                  'button',
                  {
                    style: {
                      padding: '10px 18px',
                      margin: '10px 12px 0px 2px',
                      textAlign: 'center',
                      textDecoration: 'none',
                      display: 'inline-block',
                      webkitTransitionDuration: '0.4s',
                      transitionDuration: '0.4s',
                      cursor: 'pointer',
                      backgroundColor: 'white',
                      color: 'black',
                      border: '2px solid #e7e7e7',
                    },
                    on: {
                      mouseout: function(e){
                        e.target.style.backgroundColor = 'white';
                      },
                      mouseover: function(e){
                        e.target.style.backgroundColor = '#e7e7e7'
                      },
                      click: _this.closeNotification.bind(_this, 1, 1, message)
                    }
                  },
                  "查看"
                ),
                this.$createElement(
                  'button',
                  {
                    style: {
                      padding: '10px 18px',
                      margin: '10px 2px 0px 12px',
                      textAlign: 'center',
                      textDecoration: 'none',
                      display: 'inline-block',
                      webkitTransitionDuration: '0.4s',
                      transitionDuration: '0.4s',
                      cursor: 'pointer',
                      backgroundColor: 'white',
                      color: 'black',
                      border: '2px solid #e7e7e7',
                    },
                    on: {
                      //鼠标移出的回调
                      mouseout: function(e){
                        e.target.style.backgroundColor = 'white';
                      },
                      //鼠标移入的回调
                      mouseover: function(e){
                        e.target.style.backgroundColor = '#e7e7e7'
                      },
                      click: _this.closeNotification.bind(_this, 1, 2, message)
                    }
                  },
                  "稍后提醒(五分钟后)"
                )
              ]
            )
          ]
        ),
        duration: 0,
      });
      //将messageId和通知实例放入字典中
      this.notifications[message.messageId] = notify;
    }
  }
};

总结

以上所述是小编给大家介绍的vue 使用element-ui中的Notification自定义按钮并实现关闭功能及如何处理多个通知,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

Javascript 相关文章推荐
csdn 博客中实现运行代码功能实现
Aug 29 Javascript
js几个验证函数代码
Mar 25 Javascript
使用JS进行目录上传(相当于批量上传)
Dec 05 Javascript
javascript修改表格背景色实例代码分享
Dec 10 Javascript
使用原生JS实现弹出层特效
Dec 22 Javascript
浅谈javascript中的constructor
Jun 08 Javascript
基于bootstrop常用类总结(推荐)
Sep 11 Javascript
原生js实现简单的焦点图效果实例
Dec 14 Javascript
vue 设置proxyTable参数进行代理跨域
Apr 09 Javascript
js实现京东秒杀倒计时功能
Jan 21 Javascript
layer弹出层扩展主题的方法
Sep 11 Javascript
详解Vue的ref特性的使用
Jan 24 Javascript
微信小程序开发之map地图组件定位并手动修改位置偏差
Aug 17 #Javascript
微信小程序移动拖拽视图-movable-view实例详解
Aug 17 #Javascript
微信小程序框架的页面布局代码
Aug 17 #Javascript
vue实现滑动到底部加载更多效果
Oct 27 #Javascript
vue实现页面滚动到底部刷新
Aug 16 #Javascript
vue-mugen-scroll组件实现pc端滚动刷新
Aug 16 #Javascript
JavaScript的查询机制LHS和RHS解析
Aug 16 #Javascript
You might like
ADODB的数据库封包程序库
2006/12/31 PHP
laravel 如何实现引入自己的函数或类库
2019/10/15 PHP
JS实现清除指定cookies的方法
2014/09/20 Javascript
jquery实现的缩略图预览滑块实例
2015/06/25 Javascript
JavaScript学习笔记(三):JavaScript也有入口Main函数
2015/09/12 Javascript
js时间查询插件使用详解
2017/04/07 Javascript
Node.js操作redis实现添加查询功能
2017/05/25 Javascript
JQuery EasyUI的一些常用组件
2017/07/12 jQuery
使用Vue开发动态刷新Echarts组件的教程详解
2018/03/22 Javascript
Chart.js 轻量级HTML5图表绘制工具库(知识整理)
2018/05/22 Javascript
JavaScript基础之静态方法和实例方法分析
2018/12/26 Javascript
Openlayers实现测量功能
2020/09/25 Javascript
[03:17]DOTA2英雄基础教程 剧毒术士
2013/12/12 DOTA
[04:04]显微镜下的DOTA2第六期——电影级别的华丽团战
2014/06/20 DOTA
python之模拟鼠标键盘动作具体实现
2013/12/30 Python
正确理解python中的关键字“with”与上下文管理器
2017/04/21 Python
元组列表字典(莫烦python基础)
2019/04/03 Python
pytorch 共享参数的示例
2019/08/17 Python
Python3 A*寻路算法实现方式
2019/12/24 Python
python实现百度OCR图片识别过程解析
2020/01/17 Python
pygame实现飞机大战
2020/03/11 Python
python3代码中实现加法重载的实例
2020/12/03 Python
Python3.9.0 a1安装pygame出错解决全过程(小结)
2021/02/02 Python
深入理解HTML5定时器requestAnimationFrame的使用
2018/12/12 HTML / CSS
英国复古服装和球衣购买网站:3Retro Football
2018/07/09 全球购物
Mybag美国/加拿大:英国奢华包包和名牌手袋网站
2020/02/16 全球购物
Yahoo-PHP面试题2
2014/12/06 面试题
应征英语教师求职信
2013/11/27 职场文书
内容编辑个人求职信
2013/12/10 职场文书
机械个人求职信范文
2014/01/24 职场文书
2014国培学习感言
2014/03/05 职场文书
公共场所禁烟标语
2014/06/25 职场文书
2015年仓管员工作总结
2015/04/21 职场文书
幼儿园托班开学寄语(2015秋季)
2015/05/27 职场文书
晚会开场白和结束语
2015/05/29 职场文书
汽车销售合同文本
2019/08/08 职场文书