若依开源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,21 @@
$("#form-post-add").validate({
rules:{
postCode:{
required:true,
},
postName:{
required:true,
},
postSort:{
required:true,
},
},
submitHandler:function(form){
add();
}
});
/** 岗位管理-新增岗位 */
function add() {
_ajax_save("/system/post/save", $("#form-post-add").serialize());
}