17 lines
280 B
JavaScript
17 lines
280 B
JavaScript
![]() |
$("#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());
|
||
|
}
|