layer 漂亮的弹窗

Posted pxjbk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layer 漂亮的弹窗相关的知识,希望对你有一定的参考价值。

 1 layer.confirm(‘<font color="red">请认真核对账目信息,提交后将不可撤回!!</font>‘, {
 2                                         icon:3,
 3                                         title:"财务确认账目操作",
 4                                         btn: [‘确定‘, ‘取消‘]
 5                                     }, function (index, layero) {
 6                                         //提交后台
 7                                         console.log(‘confirm‘)
 8                                         $.post("/index.php/Admin/ServiceEvent/confirm?access_token="+token,field,function (res) {
 9                                             if(res.code == 1){
10                                                 layer.msg(res.msg, {icon: 1});
11                                                 layui.table.reload(‘LAY-service-index‘); //重载表格
12                                                 layer.close(index); //执行关闭
13                                             }else {
14                                                 layer.alert(res.msg,{icon:2});
15                                             }
16                                         });
17                                         layer.closeAll(‘dialog‘);
18                                     },function () {
19                                         console.log(‘cancel‘)
20                                     }
21                                 );

技术图片

 

 layer.alert(res.msg,{icon:2});

  技术图片

 

 

 

以上是关于layer 漂亮的弹窗的主要内容,如果未能解决你的问题,请参考以下文章

layui弹窗 iframe嵌套页面内的弹窗如何覆盖到父级页面

js漂亮的弹出层

layer弹窗

多功能弹窗控件layer

layui常用弹窗

layui里面的layer模块弹窗,强制居中的方法