mirror of
https://gitee.com/layui/layui.git
synced 2025-04-05 17:38:02 +08:00
修复 fixbar 中添加了无效样式问题
This commit is contained in:
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
Block a user