echarts2.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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(null)
  39. const echarts2 = ref(null)
  40. onMounted(async () => {
  41. await search()
  42. await echarts1View()
  43. await echarts2View()
  44. })
  45. const search = async () => {
  46. let res = await utilStore.sstatistics()
  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. axisLabel: {
  116. show: true,
  117. textStyle: {
  118. color: '#7FC5F5'
  119. },
  120. fontSize: 18,
  121. interval: 0
  122. },
  123. axisLine: {
  124. lineStyle: {
  125. color: 'rgba(127,197,245,0.5)',
  126. width: 1 //这里是为了突出显示加上的
  127. }
  128. },
  129. triggerEvent: true
  130. }
  131. ],
  132. yAxis: {
  133. // y轴
  134. type: 'value',
  135. splitNumber: 5, // 横线数
  136. axisLabel: {
  137. show: true,
  138. formatter: '{value}',
  139. fontSize: 18,
  140. color: '#7FC5F5'
  141. },
  142. splitLine: {
  143. // 网格线
  144. show: true,
  145. lineStyle: {
  146. color: 'rgba(127,197,245,0.5)',
  147. width: 1
  148. }
  149. }
  150. },
  151. series: [
  152. {
  153. data: info.value.two.list,
  154. type: 'bar',
  155. barWidth: '40%',
  156. label: {
  157. normal: {
  158. show: true,
  159. position: 'top',
  160. fontSize: 18
  161. }
  162. },
  163. itemStyle: {
  164. normal: {
  165. label: {
  166. show: true,
  167. position: 'top',
  168. textStyle: {
  169. color: '#FFFFFF'
  170. }
  171. },
  172. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  173. { offset: 0, color: '#28f2e6' },
  174. { offset: 0.5, color: 'rgba(40,242,230,0.8)' },
  175. { offset: 1, color: 'rgba(255,255,255,0.5)' }
  176. ])
  177. }
  178. }
  179. }
  180. ]
  181. }
  182. option2 && myChart2.setOption(option2)
  183. window.addEventListener('resize', function () {
  184. myChart2.resize()
  185. })
  186. }
  187. </script>