参考:
https://fly.layui.com/jie/45029/
实际解决,比参考多一步。
[#zeyu#]
layer.open({
type: 2,
title:op_title,
skin: 'layui-layer-rim', //加上边框
area: ['60%', '70%'], //宽高
fix: false, //不固定
maxmin: true,
content:url,
end:function(){
},
full: function(dom) {
$(dom).find('.layui-layer-content').css('height','100%');
$(dom).find('iframe[name^="layui-layer-iframe"]').css('height','95%');
}
});
[/#zeyu#]