Files
order/web/static/js/index/index.js
2019-08-06 15:21:15 +08:00

28 lines
678 B
JavaScript

;
var dashboard_index_ops = {
init:function(){
this.drawChart();
},
drawChart:function(){
charts_ops.setOption();
$.ajax({
url:common_ops.buildUrl("/chart/dashboard"),
dataType:'json',
success:function( res ){
charts_ops.drawLine( $('#member_order'),res.data )
}
});
$.ajax({
url:common_ops.buildUrl("/chart/finance"),
dataType:'json',
success:function( res ){
charts_ops.drawLine( $('#finance'),res.data )
}
});
}
};
$(document).ready( function(){
dashboard_index_ops.init();
});