使用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.js 是一个目前比较流行的前端框架,在业界也算很有名气,今天这里为大家罗列一下基于Vue的后端管理的框架。使用这些框架你会发现它包括了我们常用的路由,状态,交互等等,这篇文章主要介绍element和Vue Admin。
除了Document类型,我们Web编程中最常用的类型就是Element类型啦.Element 类型用于表现XML或HTML元素,提供了对元素标签名,子节点,特性的访问
在选择element-ui组件做开发的时候,发现直接使用@keyup.enter的形式监听不到回车事件,原因是element-ui自身封装了一层input标签,把原有的事件隐藏了。解决方法是:在enter后面加上.native
一般在后端管理项目中,都会涉及菜单管理。菜单都是树形结构的数据,我们在使用ElementUI的时候,发现并没提供相应的树形表格组件,所以需要自己来实现。下面就简单讲解下element-ui中table树形表格的实现代码
做管理平台的项目,用到了element-ui,需要通过监听el-table滚动的位置来获取最新的数据,那么怎么样监听el-table的滚动呢?我们默认的技术栈是 vue+element-ui
通过tree树形控件的default-checked-keys属性来设置默认选中的节点,Tree树形控件通过后台接口获取到数组数据,还需要再次遍历,将它再遍历为数组,这样我们才可以调用
使用ElementUi搭建框架的时候,大家应该都有考虑过怎么做全局验证,毕竟复制粘贴什么的是最烦了,一般验证规则,主要是是否必填,不为空,以及参数类型的验证。
Element UI的Message消息提示是点击一次触发一次的。在开发的时候经常会作为一些校验提示,但是公司的测试人员在进行测试时会一直点,然后就会出现如下图的情况。虽然客户使用的时候一般来说不会出现这种情况
如果程序报错Duplicate keys detected: tab-xxx. This may cause an update error.八成是key重复了,首先检查一下v-for循环的key是否有问题;在<el-tab-pane>尽量不使用v-show控制标签的显示
在使用vue版本的ElementUI中的table功能的时候还是遇到了一些问题,可以说饿了么团队在这个UI框架的文档撰写已经非常不错了,不过还是有一些方法乍一看让人摸不着头脑,有些table的常用功能示例代码提供的不是非常详细
内容以共享、参考、研究为目的,不存在任何商业目的。其版权属原作者所有,如有侵权或违规,请与小编联系!情况属实本人将予以删除!