echarts3.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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.dstatistics()
  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. legend: {
  57. right: 0,
  58. top: 20,
  59. height: 600,
  60. itemWidth: 10,
  61. itemHeight: 10,
  62. itemGap: 10,
  63. textStyle: {
  64. fontSize: 18
  65. },
  66. orient: 'vertical',
  67. data: info.value.one.nameList
  68. },
  69. calculable: true,
  70. series: [
  71. {
  72. name: '企业行业数据分析',
  73. color: ['#62c98d', '#2f89cf', '#4cb9cf', '#53b666', '#62c98d', '#205acf', '#c9c862', '#c98b62', '#c962b9', '#7562c9', '#c96262', '#c25775', '#00b7be'],
  74. type: 'pie',
  75. radius: [30, 100],
  76. center: ['25%', '50%'],
  77. roseType: 'radius',
  78. label: {
  79. normal: {
  80. show: true
  81. },
  82. emphasis: {
  83. show: true
  84. }
  85. },
  86. lableLine: {
  87. normal: {
  88. show: true
  89. },
  90. emphasis: {
  91. show: true
  92. }
  93. },
  94. data: info.value.one.list
  95. }
  96. ]
  97. }
  98. myChart1.setOption(option1)
  99. window.addEventListener('resize', function () {
  100. myChart1.resize()
  101. })
  102. }
  103. function echarts2View() {
  104. var myChart2 = echarts.init(echarts2.value)
  105. var option2 = {
  106. tooltip: {
  107. trigger: 'axis',
  108. axisPointer: {
  109. type: 'shadow'
  110. },
  111. formatter: function (param) {
  112. return param[0].seriesName + ':' + param[0].data + '%<br />' + param[1].seriesName + ':' + param[1].data + '%'
  113. }
  114. },
  115. grid: {
  116. top: 50,
  117. left: 44,
  118. right: 44,
  119. bottom: 30
  120. },
  121. legend: {
  122. right: '0',
  123. textStyle: {
  124. color: '#FFFFFF'
  125. },
  126. color: ['#ffcc00', '#28f2e6']
  127. },
  128. xAxis: [
  129. {
  130. type: 'category',
  131. data: info.value.two.nameList,
  132. axisLabel: {
  133. show: true,
  134. textStyle: {
  135. color: '#7FC5F5'
  136. },
  137. interval: 0
  138. },
  139. axisLine: {
  140. lineStyle: {
  141. color: 'rgba(127,197,245,0.1)',
  142. width: 1 //这里是为了突出显示加上的
  143. }
  144. },
  145. triggerEvent: true
  146. }
  147. ],
  148. yAxis: {
  149. // y轴
  150. type: 'value',
  151. splitNumber: 5, // 横线数
  152. axisLabel: {
  153. show: true,
  154. formatter: '{value}',
  155. color: '#7FC5F5'
  156. },
  157. splitLine: {
  158. // 网格线
  159. show: true,
  160. lineStyle: {
  161. color: 'rgba(127,197,245,0.1)',
  162. width: 1
  163. }
  164. }
  165. },
  166. series: [
  167. {
  168. data: info.value.two.list,
  169. type: 'bar',
  170. barWidth: '40%',
  171. label: {
  172. normal: {
  173. show: true,
  174. position: 'top',
  175. fontSize: 18
  176. }
  177. },
  178. itemStyle: {
  179. normal: {
  180. label: {
  181. show: true,
  182. position: 'top',
  183. textStyle: {
  184. color: '#FFFFFF'
  185. }
  186. },
  187. color: echarts.graphic.LinearGradient(0, 0, 0, 1, [
  188. { offset: 0, color: '#28f2e6' },
  189. { offset: 0.5, color: 'rgba(40,242,230,0.1)' },
  190. { offset: 1, color: 'rgba(255,255,255,0)' }
  191. ])
  192. }
  193. }
  194. }
  195. ]
  196. }
  197. option2 && myChart2.setOption(option2)
  198. window.addEventListener('resize', function () {
  199. myChart2.resize()
  200. })
  201. }
  202. </script>