Files
order/web/static/js/finance/index.js
2019-08-06 14:17:42 +08:00

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();
});