TotalShopChart.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <template>
  2. <div ref="chartsWrapperRef" class="diagrams-chart-container"></div>
  3. </template>
  4. <script>
  5. import echarts from 'echarts'
  6. export default {
  7. props: {
  8. siteData: { type: Object, default: () => {} }
  9. },
  10. data() {
  11. return { instance: null }
  12. },
  13. mounted() {
  14. this.init()
  15. },
  16. watch: {
  17. siteData: {
  18. handler(newData) {
  19. const { communityShopQuantity = 0, businessDistrictShopQuantity = 0, mallShopQuantity = 0, allStoresTotal = 0 } = newData || {}
  20. this.updateData(allStoresTotal, communityShopQuantity, businessDistrictShopQuantity, mallShopQuantity)
  21. },
  22. immediate: true,
  23. deep: true
  24. }
  25. },
  26. methods: {
  27. init() {
  28. this.instance = echarts.init(this.$refs.chartsWrapperRef)
  29. this.instance.setOption({
  30. tooltip: { trigger: 'item' },
  31. legend: { top: 'center', right: '20%', orient: 'vertical' },
  32. label: { show: true }
  33. })
  34. },
  35. updateData(allStoresTotal, communityShopQuantity, businessDistrictShopQuantity, mallShopQuantity) {
  36. if (!this.instance || !this.instance.setOption) {
  37. return
  38. }
  39. this.instance.setOption({
  40. series: [
  41. {
  42. type: 'pie',
  43. radius: ['40%', '70%'],
  44. avoidLabelOverlap: true,
  45. labelLine: { show: true },
  46. center: ['30%', '50%'],
  47. clockwise: false,
  48. label: {
  49. normal: {
  50. position: 'outside',
  51. formatter: '{b}\n{c} ({d}%)'
  52. }
  53. },
  54. data: [
  55. { value: communityShopQuantity, name: '社区店总量', label: { color: '#21CCFF' } },
  56. { value: businessDistrictShopQuantity, name: '商圈商家总量', label: { color: '#249EFF' } },
  57. { value: mallShopQuantity, name: '商城工厂总量', label: { color: '#495FFF' } }
  58. ],
  59. itemStyle: {
  60. emphasis: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' },
  61. normal: {
  62. color: (params) => ['#21CCFF', '#249EFF', '#495FFF'][params.dataIndex],
  63. label: { show: true }
  64. }
  65. }
  66. }
  67. ]
  68. // graphic: [
  69. // {
  70. // type: 'text',
  71. // position: 'center',
  72. // style: {
  73. // text: `总数`,
  74. // textAlign: 'center',
  75. // fill: '#333',
  76. // fontSize: 14
  77. // }
  78. // }
  79. // ]
  80. })
  81. // let model = this.instance.getModel().getSeriesByIndex(0).getData()._itemLayouts;
  82. // console.log('model',model);
  83. },
  84. resize() {
  85. this.instance.resize()
  86. }
  87. }
  88. }
  89. </script>
  90. <style lang="scss" scoped>
  91. .diagrams-chart-container {
  92. position: relative;
  93. width: 100%;
  94. height: 100%;
  95. }
  96. </style>