时间:2021-05-26
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自定义按钮并实现关闭功能及如何处理多个通知,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在vue项目中,我们可以自定义组件,像element-ui一样使用Vue.use()方法来使用,具体实现方法:1.首先新建一个Cmponent.vue文件//C
在登入页面,我们往往需要通过输入验证码才能进行登入,那我们下面就详讲一下在vue项目中如何配合element-ui实现这个功能第一步:自定义一个生产随机验证码的
在vue2.0中引用element-ui组件库element-ui是由饿了么团队开发的一套基于Vue2.0的桌面端组件库。官网:http://element.e
前言随着我们vue3.0的出现,我们的ui组件库也有了一些变化,像我们的旧版的element-ui已经不能在vue3.0中使用了,如果要使用element的话需
element-ui图片(查看大图),可通过previewSrcList开启预览大图的功能。写在element-ui表格中,使用作用域插槽循环图片1.此处的di