rebate.js
315 Bytes
/**
* 返佣查询
*/
var rebate = function() {
return {
search : function() {
$('#data-grid').datagrid({
url : '/report/fund/rebate?' + $('#search-form').serialize()
});
},
export : function(){
window.open('/report/fund/exportRebate?' + $('#search-form').serialize());
}
};
}();