欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-12-21 10:00:12
使用element-ui中的Notification,只有一个message属性是有很大的操作空间,其余的都是写死的,无法进行扩展,达不到想要的效果。所以只能在message上下功夫。 在element-ui官方文档中可以看到Notification中的message属性是可以处理VNode的所以我 ......

使用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;
        }
    }
};