layer修复几个小问题

pull/1135/head
sunxb 2022-09-19 10:45:23 +08:00
parent 22a9b7d0b5
commit 4d8339ac89
1 changed files with 5 additions and 3 deletions

View File

@ -1062,10 +1062,12 @@ layer.restore = function(index){
layero.find('.layui-layer-max').removeClass('layui-layer-maxmin');
layero.find('.layui-layer-min').show();
layero.attr('type') === 'page' && layero.find(doms[4]).show();
layero.attr('minLeft', '');
ready.rescollbar(index);
//恢复遮罩
shadeo.show();
ready.events.resize[index]();
};
//全屏
@ -1090,8 +1092,8 @@ layer.full = function(index){
layer.style(index, {
top: isfix ? 0 : win.scrollTop(),
left: isfix ? 0 : win.scrollLeft(),
width: win.width(),
height: win.height()
width: '100%',
height: '100%'
}, true);
layero.find('.layui-layer-min').hide();
}, 100);
@ -1560,4 +1562,4 @@ window.layui && layui.define ? (
}()
);
}(window);
}(window);