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