//@ sourceMappingURL=layui-1.10.2.min.map layui.use('form',function(){var form=layui.form;form.on('submit(formMess)',function(data){layer.confirm('确认提交?',{btn:['确认','取消']},function(index,layero){$.ajax({url:'/liuyan.php',method:'post',data:data.field,dataType:'JSON',success:function(res){if(res==1){layer.close(index);layer.msg('您的信息提交成功');$('.layui-form')[0].reset()}else if(res==2){layer.close(index);layer.msg('您的操作过于频繁,请稍后!!')}else if(res==3){layer.close(index);layer.msg('服务器正在维护,请稍后!!')}}})},function(index){});return false});form.verify({phone:function(value,item){if(!(/^1[3456789]\d{9}$/.test(value))){return"手机号码有误,请重填"}}})});