layui-弹窗回显
1 if(JSON.parse(data).code == 0){ 2 layer.msg('提交成功', { 3 icon: 1, 4 time: 1000 //2秒关闭(如果不配置,默认是3秒) 5 }, function(){ 6 window.location.href=setter.host +"/Login?"; 7 }); 8 }else{ 9 layer.alert(JSON.parse(data).msg) 10 }
1 if(JSON.parse(data).code == 0){ 2 layer.msg('提交成功', { 3 icon: 1, 4 time: 1000 //2秒关闭(如果不配置,默认是3秒) 5 }, function(){ 6 window.location.href=setter.host +"/Login?"; 7 }); 8 }else{ 9 layer.alert(JSON.parse(data).msg) 10 }