22 lines
338 B
JavaScript
22 lines
338 B
JavaScript
$("#form-post-add").validate({
|
|
rules:{
|
|
postCode:{
|
|
required:true,
|
|
},
|
|
postName:{
|
|
required:true,
|
|
},
|
|
postSort:{
|
|
required:true,
|
|
digits:true
|
|
},
|
|
},
|
|
submitHandler:function(form){
|
|
add();
|
|
}
|
|
});
|
|
|
|
/** 岗位管理-新增岗位 */
|
|
function add() {
|
|
_ajax_save(ctx + "system/post/save", $("#form-post-add").serialize());
|
|
} |