echarts1.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <template>
  2. <div class="echarts">
  3. <div class="left">
  4. <div ref="echarts1" class="echarts1"></div>
  5. </div>
  6. <div class="right">
  7. <div ref="echarts2" class="echarts2"></div>
  8. </div>
  9. </div>
  10. </template>
  11. <style scoped lang="scss">
  12. .echarts {
  13. width: 100%;
  14. display: flex;
  15. justify-content: space-around;
  16. .left {
  17. width: 50%;
  18. .echarts1 {
  19. height: 600px;
  20. width: 100%;
  21. }
  22. }
  23. .right {
  24. width: 50%;
  25. .echarts2 {
  26. height: 600px;
  27. width: 100%;
  28. }
  29. }
  30. }
  31. </style>
  32. <script setup>
  33. import * as echarts from 'echarts'
  34. // 接口
  35. import { UtilStore } from '@/store/api/util'
  36. const utilStore = UtilStore()
  37. const info = ref({})
  38. const echarts1 = ref()
  39. const echarts2 = ref()
  40. onMounted(async () => {
  41. await search()
  42. await echarts1View()
  43. await echarts2View()
  44. })
  45. const search = async () => {
  46. let res = await utilStore.cstatistics()
  47. if (res.errcode == '0') info.value = res.data
  48. }
  49. function echarts1View() {
  50. const myChart1 = echarts.init(echarts1.value)
  51. const option1 = {
  52. tooltip: {
  53. trigger: 'item',
  54. formatter: '{b} : {c} ({d}%)'
  55. },
  56. calculable: true,
  57. series: [
  58. {
  59. name: '企业行业数据分析',
  60. color: ['#62c98d', '#2f89cf', '#4cb9cf', '#53b666', '#62c98d', '#205acf', '#c9c862', '#c98b62', '#c962b9', '#7562c9', '#c96262', '#c25775', '#00b7be'],
  61. type: 'pie',
  62. radius: ['40%', '70%'],
  63. center: ['40%', '50%'],
  64. label: {
  65. normal: {
  66. show: true
  67. },
  68. emphasis: {
  69. show: true
  70. }
  71. },
  72. lableLine: {
  73. normal: {
  74. show: true
  75. },
  76. emphasis: {
  77. show: true
  78. }
  79. },
  80. data: info.value.one.list
  81. }
  82. ]
  83. }
  84. myChart1.setOption(option1)
  85. window.addEventListener('resize', function () {
  86. myChart1.resize()
  87. })
  88. }
  89. function echarts2View() {
  90. var myChart2 = echarts.init(echarts2.value)
  91. var option2 = {
  92. tooltip: {
  93. trigger: 'axis',
  94. axisPointer: {
  95. type: 'shadow'
  96. }
  97. },
  98. grid: {
  99. top: 50,
  100. left: 44,
  101. right: 44,
  102. bottom: 30
  103. },
  104. legend: {
  105. right: '0',
  106. textStyle: {
  107. color: '#FFFFFF'
  108. },
  109. color: ['#ffcc00', '#28f2e6']
  110. },
  111. xAxis: [
  112. {
  113. type: 'category',
  114. data: info.value.two.nameList,
  115. // X轴线 标签修改
  116. textStyle: {
  117. fontSize: 18
  118. },
  119. axisLabel: {
  120. show: true,
  121. textStyle: {
  122. color: '#7FC5F5'
  123. },
  124. interval: 0
  125. },
  126. axisLine: {
  127. lineStyle: {
  128. color: 'rgba(127,197,245,0.1)',
  129. width: 1 //这里是为了突出显示加上的
  130. }
  131. },
  132. triggerEvent: true
  133. }
  134. ],
  135. yAxis: {
  136. // y轴
  137. type: 'value',
  138. splitNumber: 5, // 横线数
  139. // y轴线 标签修改
  140. textStyle: {
  141. fontSize: 18
  142. },
  143. axisLabel: {
  144. show: true,
  145. formatter: '{value}',
  146. color: '#7FC5F5'
  147. },
  148. splitLine: {
  149. // 网格线
  150. show: true,
  151. lineStyle: {
  152. color: 'rgba(127,197,245,0.1)',
  153. width: 1
  154. }
  155. }
  156. },
  157. series: [
  158. {
  159. data: info.value.two.list,
  160. type: 'bar',
  161. barWidth: '40%',
  162. label: {
  163. normal: {
  164. show: true,
  165. position: 'top',
  166. fontSize: 18
  167. }
  168. },
  169. itemStyle: {
  170. normal: {
  171. label: {
  172. show: true,
  173. position: 'top',
  174. textStyle: {
  175. color: '#FFFFFF'
  176. }
  177. },
  178. color: echarts.graphic.LinearGradient(0, 0, 0, 1, [
  179. { offset: 0, color: '#28f2e6' },
  180. { offset: 0.5, color: 'rgba(40,242,230,0.8)' },
  181. { offset: 1, color: 'rgba(255,255,255,0.5)' }
  182. ])
  183. }
  184. }
  185. }
  186. ]
  187. }
  188. option2 && myChart2.setOption(option2)
  189. window.addEventListener('resize', function () {
  190. myChart2.resize()
  191. })
  192. }
  193. </script>