若依开源1.1.1发布

This commit is contained in:
RuoYi
2018-04-23 00:00:29 +08:00
commit 262ee25d8e
453 changed files with 66923 additions and 0 deletions

View File

@ -0,0 +1,14 @@
$("#form-${classname}-add").validate({
rules:{
xxxx:{
required:true,
},
},
submitHandler:function(form){
add();
}
});
function add() {
_ajax_post("/${moduleName}/${classname}/save", $('#form-${classname}-add').serialize());
}