This commit is contained in:
thinkgem
2021-12-30 23:23:54 +08:00
parent 53734b1849
commit 8c1386d71f
2 changed files with 4 additions and 1 deletions

View File

@@ -141,9 +141,11 @@ var layer = {
}, type ? {} : options));
},
msg: function(content, options, end){ //最常用提示层
//最常用提示层
msg: function(content, options, end){
var type = typeof options === 'function', rskin = ready.config.skin;
var skin = (rskin ? rskin + ' ' + rskin + '-msg' : '')||'layui-layer-msg';
options = options || {};
skin = skin + ' ' + (options.positionClass || '');
var anim = doms.anim.length - 1;
if(type) end = options;

View File

@@ -187,3 +187,4 @@ html #layuicss-layer{display: none; position: absolute; width: 1989px;}
padding-top:3px;padding-bottom:10px;}
.layui-layer-btn .layui-layer-btn0{border-color:#367fa9;background-color:#367fa9;}
.layui-layer-btn a {height:auto;padding:0 12px;font-size:13px;background-color:#f4f4f4;}
.layui-layer.toast-top-full-width {min-width: 60%;}