模板 聊天列表页-chat https://www.easybui.com/app/154.html
使用bui.alert()弹层后,聊天气泡的小三角在遮罩和对话框之上,
解决办法是把遮罩和对话框的zindex提高,源码如下:
var eles = document.querySelectorAll("div.bui-router-main > div > div.bui-mask");
if(eles){
eles[eles.length-1].style.zIndex=990;
}
var ele = document.querySelector("div.bui-alert ")
if(ele){
ele.style.zIndex=991;
}
感谢分享,这个还可以直接修改 chat 这个组件,
通过修改里面的 style 样式.chat-panel .chat-content z-index低于100 也可以解决。
```
.chat-panel .chat-content {
position:relative;
z-index: 90;
}
```