16 lines
325 B
JavaScript
16 lines
325 B
JavaScript
;
|
|
var finance_index_ops = {
|
|
init:function(){
|
|
this.eventBind();
|
|
},
|
|
eventBind:function(){
|
|
var that = this;
|
|
$(".wrap_search select[name=status]").change( function(){
|
|
$(".wrap_search").submit();
|
|
});
|
|
}
|
|
};
|
|
|
|
$(document).ready( function(){
|
|
finance_index_ops.init();
|
|
}); |