appraisal.js
330 Bytes
/**
* 托管申请查询
*/
var Appraisal = function() {
return {
search : function() {
$('#data-grid').datagrid({
url : '/report/fund/appraisal?' + $('#search-form').serialize()
});
},
export : function(){
window.open('/report/fund/exportAppraisal?' + $('#search-form').serialize());
}
};
}();