123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- (function(){
-
- /* 设备终端 */
- // 基于准备好的dom,初始化echarts实例
- var echarts_source = echarts.init(document.getElementById('echarts_source'));
- // 指定图表的配置项和数据
- var echarts_source_option = {
- tooltip : {
- trigger: 'item',
- formatter: "{c}"
- },
- legend: {
- left: 'center',
- top:'bottom',
- itemWidth:10,
- itemHeight:10,
- formatter: '{name}',
- itemGap:50,
- textStyle:{
- color: '#000000',
- fontSize:16
- },
- data:data_source.name
- }
- ,
- calculable : true,
- series : [
- {
- type:'pie',
- radius : ['50%', '70%'],//饼图的半径大小
- center: ['50%', '50%'],//饼图的位置
- label:{ //饼图图形上的文本标签
- show:true,
- textStyle : {
- fontWeight : 300 ,
- fontSize : 16 //文字的字体大小
- },
- formatter:'{d}%'
- },
- data:data_source.v_n
- }
- ]
- };
- // 使用刚指定的配置项和数据显示图表。
- echarts_source.setOption(echarts_source_option);
-
- /* 注册渠道 */
- // 基于准备好的dom,初始化echarts实例
- var echarts_reg = echarts.init(document.getElementById('echarts_reg'));
- // 指定图表的配置项和数据
- var echarts_reg_option = {
- tooltip : {
- trigger: 'auto',
- axisPointer : {
- type : 'shadow'
- }
- },
- xAxis : [
- {
- type : 'category',
- data : data_type.name,
- nameTextStyle:{
- color: '#323232',
- padding:[3,0,0,0],
- fontSize:30
- },
- axisTick: {
- alignWithLabel: true
- }
- }
- ],
- yAxis : [
- {
- max:'100',
- type : 'value',
- axisLabel: {
- show: true,
- interval: 'auto',
- color:'#969696',
- formatter: '{value}%'
- }
- }
- ],
- series : [
- {
- type:'bar',
- barWidth: '60%',
- data:data_type.nums_per,
- color: function (params){
- var colorList = data_type.color;
- return colorList[params.dataIndex];
- },
- label: {
- show: true, //开启显示
- position: 'top', //在上方显示
- formatter: '{c}%',
- textStyle: { //数值样式
- color: '#323232',
- fontSize: 16
- }
- }
- }
- ]
- };
- // 使用刚指定的配置项和数据显示图表。
- echarts_reg.setOption(echarts_reg_option);
-
- /* 七天数据 */
- // 基于准备好的dom,初始化echarts实例
- var echarts_week = echarts.init(document.getElementById('echarts_week'));
- // 指定图表的配置项和数据
- var echarts_week_option = {
- legend: {
- left: 'right',
- itemWidth:10,
- itemHeight:10,
- formatter: '{name}',
- itemGap:50,
- textStyle:{
- color: '#000000',
- fontSize:16
- }
- },
- xAxis: {
- type: 'category',
- boundaryGap: false,
- data: data_week.date
- },
- yAxis: {
- type: 'value',
- minInterval:'1'
- },
- tooltip : {
- trigger: 'axis',
- axisPointer: {
- type: 'cross',
- label: {
- backgroundColor: '#6a7985'
- }
- }
- },
- series: [{
- name:'新增视频',
- data: data_week.value,
- type: 'line',
- smooth: true,
- lineStyle:{
- color:'#4da2ff'
- },
- itemStyle: {
- color: '#4da2ff',
- },
- symbolSize:10, //折线点的大小
- areaStyle: {
- color: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 0,
- y2: 1,
- colorStops: [{
- offset: 0, color: '#4da2ff' // 0% 处的颜色
- }, {
- offset: 1, color: '#fff' // 100% 处的颜色
- }],
- global: false // 缺省为 false
- }
- }
- },{
- name:'点赞数',
- data: data_week.likes,
- type: 'line',
- smooth: true,
- lineStyle:{
- color:'#ff7a8b'
- },
- itemStyle: {
- color: '#ff7a8b',
- },
- symbolSize:10, //折线点的大小
- areaStyle: {
- color: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 0,
- y2: 1,
- colorStops: [{
- offset: 0, color: '#ff7a8b' // 0% 处的颜色
- }, {
- offset: 1, color: '#fff' // 100% 处的颜色
- }],
- global: false // 缺省为 false
- }
- }
- },{
- name:'粉丝数',
- data: data_week.fans,
- type: 'line',
- smooth: true,
- lineStyle:{
- color:'#83d688'
- },
- itemStyle: {
- color: '#83d688',
- },
- symbolSize:10, //折线点的大小
- areaStyle: {
- color: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 0,
- y2: 1,
- colorStops: [{
- offset: 0, color: '#83d688' // 0% 处的颜色
- }, {
- offset: 1, color: '#fff' // 100% 处的颜色
- }],
- global: false // 缺省为 false
- }
- }
- }]
- };
- // 使用刚指定的配置项和数据显示图表。
- echarts_week.setOption(echarts_week_option);
- /* 广告数据 */
- // 基于准备好的dom,初始化echarts实例
- var echarts_ad = echarts.init(document.getElementById('echarts_ad'));
- // 指定图表的配置项和数据
- var echarts_ad_option = {
- legend: {
- left: 'right',
- itemWidth:10,
- itemHeight:10,
- formatter: '{name}',
- itemGap:50,
- textStyle:{
- color: '#000000',
- fontSize:16
- },
- data:['广告数量','浏览数量']
- },
- xAxis: {
- type: 'category',
- boundaryGap: false,
- data: data_ad.date
- },
- yAxis: {
- type: 'value',
- minInterval:'1'
- },
- tooltip : {
- trigger: 'axis',
- axisPointer: {
- type: 'cross',
- label: {
- backgroundColor: '#6a7985'
- }
- }
- },
- series: [{
- name:'广告数量',
- data: data_ad.value,
- type: 'line',
- smooth: true,
- symbol:'circle',
- lineStyle:{
- color:'#9e80fc'
- },
- itemStyle: {
- color: '#9e80fc',
- }
- },
- {
- name:'浏览数量',
- data: data_ad.videoviews,
- type: 'line',
- smooth: true,
- symbol:'circle',
- lineStyle:{
- color:'#ff7a8b'
- },
- itemStyle: {
- color: '#ff7a8b',
- }
- }]
- };
- // 使用刚指定的配置项和数据显示图表。
- echarts_ad.setOption(echarts_ad_option);
-
- /* ajax */
- function getData(request_data){
- $.ajax({
- url:'/admin/main/getdata.html',
- type:'POST',
- data:request_data,
- dataType:'json',
- success:function(data){
- var code=data.code;
- var info=data.msg;
- if(code!=1){
- alert(info);
- //parent.location.reload();
- return !1;
- }
-
- var action=request_data.action;
- switch(action){
- case '1':
- /* 基本指标 */
- $(".basic_list li.newusers .basic_list_n span").text(info.newusers);
- $(".basic_list li.launches .basic_list_n span").text(info.launches);
- $(".basic_list li.durations .basic_list_n span").text(info.durations);
- $(".basic_list li.activityusers .basic_list_n span").text(info.activeusers);
- //$(".basic_list li.users_total .basic_list_n span").text(info.nums);
- break;
- case '2':
- /* 七天数据 */
- echarts_week_option.xAxis.data=[];
- echarts_week_option.series[0].data=[];
- echarts_week.setOption(echarts_week_option);
- break;
- case '3':
- /* 广告数据 */
- echarts_ad_option.xAxis.data=info.date;
- echarts_ad_option.series[0].data=info.value;
- echarts_ad_option.series[1].data=info.videoviews;
- echarts_ad.setOption(echarts_ad_option);
- break;
- }
- },
- error:function(){
-
- }
- })
- }
-
- $(".search").click(function(){
- var _this=$(this);
- var start_time=_this.parents('.bd_title').find("input[name=start_time]").val();
- var end_time=_this.parents('.bd_title').find("input[name=end_time]").val();
- var action=_this.parents('.bd_title').find(".action").val();
- var request_data={action:action,start_time:start_time,end_time:end_time};
- getData(request_data);
- })
-
- $(".export").click(function(){
- var _this=$(this);
- var action=_this.parents('.bd_title').find(".action").val();
- var start_time=_this.parents('.bd_title').find("input[name=start_time]").val();
- var end_time=_this.parents('.bd_title').find("input[name=end_time]").val();
- location.href='/admin/main/export.html&action='+action+'&start_time='+start_time+'&end_time='+end_time;
- })
-
- })()
|