admin_index.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  1. (function(){
  2. /* 设备终端 */
  3. // 基于准备好的dom,初始化echarts实例
  4. var echarts_source = echarts.init(document.getElementById('echarts_source'));
  5. // 指定图表的配置项和数据
  6. var echarts_source_option = {
  7. tooltip : {
  8. trigger: 'item',
  9. formatter: "{c}"
  10. },
  11. legend: {
  12. left: 'center',
  13. top:'bottom',
  14. itemWidth:10,
  15. itemHeight:10,
  16. formatter: '{name}',
  17. itemGap:50,
  18. textStyle:{
  19. color: '#000000',
  20. fontSize:16
  21. },
  22. data:data_source.name
  23. }
  24. ,
  25. calculable : true,
  26. series : [
  27. {
  28. type:'pie',
  29. radius : ['50%', '70%'],//饼图的半径大小
  30. center: ['50%', '50%'],//饼图的位置
  31. label:{ //饼图图形上的文本标签
  32. show:true,
  33. textStyle : {
  34. fontWeight : 300 ,
  35. fontSize : 16 //文字的字体大小
  36. },
  37. formatter:'{d}%'
  38. },
  39. data:data_source.v_n
  40. }
  41. ]
  42. };
  43. // 使用刚指定的配置项和数据显示图表。
  44. echarts_source.setOption(echarts_source_option);
  45. /* 注册渠道 */
  46. // 基于准备好的dom,初始化echarts实例
  47. var echarts_reg = echarts.init(document.getElementById('echarts_reg'));
  48. // 指定图表的配置项和数据
  49. var echarts_reg_option = {
  50. tooltip : {
  51. trigger: 'auto',
  52. axisPointer : {
  53. type : 'shadow'
  54. }
  55. },
  56. xAxis : [
  57. {
  58. type : 'category',
  59. data : data_type.name,
  60. nameTextStyle:{
  61. color: '#323232',
  62. padding:[3,0,0,0],
  63. fontSize:30
  64. },
  65. axisTick: {
  66. alignWithLabel: true
  67. }
  68. }
  69. ],
  70. yAxis : [
  71. {
  72. max:'100',
  73. type : 'value',
  74. axisLabel: {
  75. show: true,
  76. interval: 'auto',
  77. color:'#969696',
  78. formatter: '{value}%'
  79. }
  80. }
  81. ],
  82. series : [
  83. {
  84. type:'bar',
  85. barWidth: '60%',
  86. data:data_type.nums_per,
  87. color: function (params){
  88. var colorList = data_type.color;
  89. return colorList[params.dataIndex];
  90. },
  91. label: {
  92. show: true, //开启显示
  93. position: 'top', //在上方显示
  94. formatter: '{c}%',
  95. textStyle: { //数值样式
  96. color: '#323232',
  97. fontSize: 16
  98. }
  99. }
  100. }
  101. ]
  102. };
  103. // 使用刚指定的配置项和数据显示图表。
  104. echarts_reg.setOption(echarts_reg_option);
  105. /* 七天数据 */
  106. // 基于准备好的dom,初始化echarts实例
  107. var echarts_week = echarts.init(document.getElementById('echarts_week'));
  108. // 指定图表的配置项和数据
  109. var echarts_week_option = {
  110. legend: {
  111. left: 'right',
  112. itemWidth:10,
  113. itemHeight:10,
  114. formatter: '{name}',
  115. itemGap:50,
  116. textStyle:{
  117. color: '#000000',
  118. fontSize:16
  119. }
  120. },
  121. xAxis: {
  122. type: 'category',
  123. boundaryGap: false,
  124. data: data_week.date
  125. },
  126. yAxis: {
  127. type: 'value',
  128. minInterval:'1'
  129. },
  130. tooltip : {
  131. trigger: 'axis',
  132. axisPointer: {
  133. type: 'cross',
  134. label: {
  135. backgroundColor: '#6a7985'
  136. }
  137. }
  138. },
  139. series: [{
  140. name:'新增视频',
  141. data: data_week.value,
  142. type: 'line',
  143. smooth: true,
  144. lineStyle:{
  145. color:'#4da2ff'
  146. },
  147. itemStyle: {
  148. color: '#4da2ff',
  149. },
  150. symbolSize:10, //折线点的大小
  151. areaStyle: {
  152. color: {
  153. type: 'linear',
  154. x: 0,
  155. y: 0,
  156. x2: 0,
  157. y2: 1,
  158. colorStops: [{
  159. offset: 0, color: '#4da2ff' // 0% 处的颜色
  160. }, {
  161. offset: 1, color: '#fff' // 100% 处的颜色
  162. }],
  163. global: false // 缺省为 false
  164. }
  165. }
  166. },{
  167. name:'点赞数',
  168. data: data_week.likes,
  169. type: 'line',
  170. smooth: true,
  171. lineStyle:{
  172. color:'#ff7a8b'
  173. },
  174. itemStyle: {
  175. color: '#ff7a8b',
  176. },
  177. symbolSize:10, //折线点的大小
  178. areaStyle: {
  179. color: {
  180. type: 'linear',
  181. x: 0,
  182. y: 0,
  183. x2: 0,
  184. y2: 1,
  185. colorStops: [{
  186. offset: 0, color: '#ff7a8b' // 0% 处的颜色
  187. }, {
  188. offset: 1, color: '#fff' // 100% 处的颜色
  189. }],
  190. global: false // 缺省为 false
  191. }
  192. }
  193. },{
  194. name:'粉丝数',
  195. data: data_week.fans,
  196. type: 'line',
  197. smooth: true,
  198. lineStyle:{
  199. color:'#83d688'
  200. },
  201. itemStyle: {
  202. color: '#83d688',
  203. },
  204. symbolSize:10, //折线点的大小
  205. areaStyle: {
  206. color: {
  207. type: 'linear',
  208. x: 0,
  209. y: 0,
  210. x2: 0,
  211. y2: 1,
  212. colorStops: [{
  213. offset: 0, color: '#83d688' // 0% 处的颜色
  214. }, {
  215. offset: 1, color: '#fff' // 100% 处的颜色
  216. }],
  217. global: false // 缺省为 false
  218. }
  219. }
  220. }]
  221. };
  222. // 使用刚指定的配置项和数据显示图表。
  223. echarts_week.setOption(echarts_week_option);
  224. /* 广告数据 */
  225. // 基于准备好的dom,初始化echarts实例
  226. var echarts_ad = echarts.init(document.getElementById('echarts_ad'));
  227. // 指定图表的配置项和数据
  228. var echarts_ad_option = {
  229. legend: {
  230. left: 'right',
  231. itemWidth:10,
  232. itemHeight:10,
  233. formatter: '{name}',
  234. itemGap:50,
  235. textStyle:{
  236. color: '#000000',
  237. fontSize:16
  238. },
  239. data:['广告数量','浏览数量']
  240. },
  241. xAxis: {
  242. type: 'category',
  243. boundaryGap: false,
  244. data: data_ad.date
  245. },
  246. yAxis: {
  247. type: 'value',
  248. minInterval:'1'
  249. },
  250. tooltip : {
  251. trigger: 'axis',
  252. axisPointer: {
  253. type: 'cross',
  254. label: {
  255. backgroundColor: '#6a7985'
  256. }
  257. }
  258. },
  259. series: [{
  260. name:'广告数量',
  261. data: data_ad.value,
  262. type: 'line',
  263. smooth: true,
  264. symbol:'circle',
  265. lineStyle:{
  266. color:'#9e80fc'
  267. },
  268. itemStyle: {
  269. color: '#9e80fc',
  270. }
  271. },
  272. {
  273. name:'浏览数量',
  274. data: data_ad.videoviews,
  275. type: 'line',
  276. smooth: true,
  277. symbol:'circle',
  278. lineStyle:{
  279. color:'#ff7a8b'
  280. },
  281. itemStyle: {
  282. color: '#ff7a8b',
  283. }
  284. }]
  285. };
  286. // 使用刚指定的配置项和数据显示图表。
  287. echarts_ad.setOption(echarts_ad_option);
  288. /* ajax */
  289. function getData(request_data){
  290. $.ajax({
  291. url:'/admin/main/getdata.html',
  292. type:'POST',
  293. data:request_data,
  294. dataType:'json',
  295. success:function(data){
  296. var code=data.code;
  297. var info=data.msg;
  298. if(code!=1){
  299. alert(info);
  300. //parent.location.reload();
  301. return !1;
  302. }
  303. var action=request_data.action;
  304. switch(action){
  305. case '1':
  306. /* 基本指标 */
  307. $(".basic_list li.newusers .basic_list_n span").text(info.newusers);
  308. $(".basic_list li.launches .basic_list_n span").text(info.launches);
  309. $(".basic_list li.durations .basic_list_n span").text(info.durations);
  310. $(".basic_list li.activityusers .basic_list_n span").text(info.activeusers);
  311. //$(".basic_list li.users_total .basic_list_n span").text(info.nums);
  312. break;
  313. case '2':
  314. /* 七天数据 */
  315. echarts_week_option.xAxis.data=[];
  316. echarts_week_option.series[0].data=[];
  317. echarts_week.setOption(echarts_week_option);
  318. break;
  319. case '3':
  320. /* 广告数据 */
  321. echarts_ad_option.xAxis.data=info.date;
  322. echarts_ad_option.series[0].data=info.value;
  323. echarts_ad_option.series[1].data=info.videoviews;
  324. echarts_ad.setOption(echarts_ad_option);
  325. break;
  326. }
  327. },
  328. error:function(){
  329. }
  330. })
  331. }
  332. $(".search").click(function(){
  333. var _this=$(this);
  334. var start_time=_this.parents('.bd_title').find("input[name=start_time]").val();
  335. var end_time=_this.parents('.bd_title').find("input[name=end_time]").val();
  336. var action=_this.parents('.bd_title').find(".action").val();
  337. var request_data={action:action,start_time:start_time,end_time:end_time};
  338. getData(request_data);
  339. })
  340. $(".export").click(function(){
  341. var _this=$(this);
  342. var action=_this.parents('.bd_title').find(".action").val();
  343. var start_time=_this.parents('.bd_title').find("input[name=start_time]").val();
  344. var end_time=_this.parents('.bd_title').find("input[name=end_time]").val();
  345. location.href='/admin/main/export.html&action='+action+'&start_time='+start_time+'&end_time='+end_time;
  346. })
  347. })()