若依开源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,17 @@
$("#form-dict-add").validate({
rules:{
dictLabel:{
required:true,
},
dictValue:{
required:true,
},
},
submitHandler:function(form){
add();
}
});
function add() {
_ajax_save("/system/dict/data/save", $("#form-dict-add").serialize());
}