mirror of https://github.com/layui/layui
修复 fixbar 中添加了无效样式问题
parent
79d90fae43
commit
c636e3fe11
|
@ -64,7 +64,7 @@ layui.define('jquery', function(exports){
|
|||
// 设置 bar 相关属性
|
||||
elemBar.addClass(item.icon).attr({
|
||||
'lay-type': item.type,
|
||||
'style': item.style || ('background-color: '+ options.bgcolor || '')
|
||||
'style': item.style || (options.bgcolor ? 'background-color: '+ options.bgcolor : '')
|
||||
}).html(item.content);
|
||||
|
||||
// bar 点击事件
|
||||
|
|
Loading…
Reference in New Issue