js.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1.  $(window).load(function(){$(".loading").fadeOut()})
  2. $(function () {
  3. // echarts_1();
  4. // echarts_2();
  5. // echarts_3();
  6. // echarts_4();
  7. // echarts_5();
  8. // echarts_6();
  9. // zb1();
  10. // zb2();
  11. // zb3();
  12. // zb4();
  13. // function echarts_3() {
  14. // var myChart = echarts.init(document.getElementById('echart3'));
  15. //
  16. // option = {
  17. // tooltip: {
  18. // trigger: 'axis',
  19. // axisPointer: {
  20. // lineStyle: {
  21. // color: '#dddc6b'
  22. // }
  23. // }
  24. // },
  25. // grid: {
  26. // left: '10',
  27. // top: '20',
  28. // right: '30',
  29. // bottom: '10',
  30. // containLabel: true
  31. // },
  32. //
  33. // xAxis: [{
  34. // type: 'category',
  35. // boundaryGap: false,
  36. // axisLabel: {
  37. // textStyle: {
  38. // color: "rgba(255,255,255,.6)",
  39. // fontSize:16,
  40. // },
  41. // },
  42. // axisLine: {
  43. // lineStyle: {
  44. // color: 'rgba(255,255,255,.1)'
  45. // }
  46. // },
  47. //
  48. // data: ['模拟考1', '模拟考2', '模拟考3', '模拟考4', '模拟考5', '模拟考6', '模拟考7', '模拟考8', '模拟考9', '模拟考10']
  49. //
  50. // }, {
  51. //
  52. // axisPointer: {show: false},
  53. // axisLine: { show: false},
  54. // position: 'bottom',
  55. // offset: 20,
  56. //
  57. // }],
  58. //
  59. // yAxis: [{
  60. // type: 'value',
  61. // axisTick: {show: false},
  62. // axisLine: {
  63. // lineStyle: {
  64. // color: 'rgba(255,255,255,.1)'
  65. // }
  66. // },
  67. // axisLabel: {
  68. // textStyle: {
  69. // color: "rgba(255,255,255,.6)",
  70. // fontSize:16,
  71. // },
  72. // },
  73. //
  74. // splitLine: {
  75. // lineStyle: {
  76. // color: 'rgba(255,255,255,.1)'
  77. // }
  78. // }
  79. // }],
  80. // series: [
  81. // {
  82. // name: '结算率',
  83. // type: 'line',
  84. // smooth: true,
  85. // symbol: 'circle',
  86. // symbolSize: 5,
  87. // showSymbol: false,
  88. // lineStyle: {
  89. //
  90. // normal: {
  91. // color: '#dddc6b',
  92. // width: 4
  93. // }
  94. // },
  95. // areaStyle: {
  96. // normal: {
  97. // color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  98. // offset: 0,
  99. // color: 'rgba(221, 220, 107, 0.4)'
  100. // }, {
  101. // offset: 0.8,
  102. // color: 'rgba(221, 220, 107, 0.1)'
  103. // }], false),
  104. // shadowColor: 'rgba(0, 0, 0, 0.1)',
  105. // }
  106. // },
  107. // itemStyle: {
  108. // normal: {
  109. // color: '#dddc6b',
  110. // borderColor: 'rgba(221, 220, 107, .1)',
  111. // borderWidth: 12
  112. // }
  113. // },
  114. // data: [70, 85, 65, 82, 94, 84,88,92,90,88]
  115. //
  116. // },
  117. //
  118. // ]
  119. //
  120. // };
  121. //
  122. // // 使用刚指定的配置项和数据显示图表。
  123. // myChart.setOption(option);
  124. // window.addEventListener("resize",function(){
  125. // myChart.resize();
  126. // });
  127. // }
  128. })