layui 关闭open弹出框 自动刷新table表格页面的方法
layui 关闭open弹出框 自动刷新table表格页面的方法:
//弹出框
layer.open({
type: 2,
shadeClose: true,
shade: 0.3,
maxmin: true,
area: ['80%', '95%'],
title: '',
content: '',
end: function() {
//刷新页面,
location.reload();
},
});


