vue 使用element

Easter79
• 阅读 722

使用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;
        }
    }
};
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Karen110 Karen110
3年前
一篇文章带你了解JavaScript日期
日期对象允许您使用日期(年、月、日、小时、分钟、秒和毫秒)。一、JavaScript的日期格式一个JavaScript日期可以写为一个字符串:ThuFeb02201909:59:51GMT0800(中国标准时间)或者是一个数字:1486000791164写数字的日期,指定的毫秒数自1970年1月1日00:00:00到现在。1\.显示日期使用
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
4个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Souleigh ✨ Souleigh ✨
3年前
前端性能优化 - 雅虎军规
无论是在工作中,还是在面试中,web前端性能的优化都是很重要的,那么我们进行优化需要从哪些方面入手呢?可以遵循雅虎的前端优化35条军规,这样对于优化有一个比较清晰的方向.35条军规1.尽量减少HTTP请求个数——须权衡2.使用CDN(内容分发网络)3.为文件头指定Expires或CacheControl,使内容具有缓存性。4.避免空的
Stella981 Stella981
3年前
KVM调整cpu和内存
一.修改kvm虚拟机的配置1、virsheditcentos7找到“memory”和“vcpu”标签,将<namecentos7</name<uuid2220a6d1a36a4fbb8523e078b3dfe795</uuid
Easter79 Easter79
3年前
Twitter的分布式自增ID算法snowflake (Java版)
概述分布式系统中,有一些需要使用全局唯一ID的场景,这种时候为了防止ID冲突可以使用36位的UUID,但是UUID有一些缺点,首先他相对比较长,另外UUID一般是无序的。有些时候我们希望能使用一种简单一些的ID,并且希望ID能够按照时间有序生成。而twitter的snowflake解决了这种需求,最初Twitter把存储系统从MySQL迁移
为什么mysql不推荐使用雪花ID作为主键
作者:毛辰飞背景在mysql中设计表的时候,mysql官方推荐不要使用uuid或者不连续不重复的雪花id(long形且唯一),而是推荐连续自增的主键id,官方的推荐是auto_increment,那么为什么不建议采用uuid,使用uuid究
Python进阶者 Python进阶者
10个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这
Easter79
Easter79
Lv1
今生可爱与温柔,每一样都不能少。
文章
2.8k
粉丝
5
获赞
1.2k