python学习
This commit is contained in:
28
web/static/js/index/index.js
Normal file
28
web/static/js/index/index.js
Normal file
@@ -0,0 +1,28 @@
|
||||
;
|
||||
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();
|
||||
});
|
||||
Reference in New Issue
Block a user