commonChartsChinaMap.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!--
  2. * @Author: your name
  3. * @Date: 2021-09-23 11:16:14
  4. * @LastEditTime: 2021-09-23 16:51:29
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: \bigDataScreen\src\components\Echarts\commonChartsChinaMap.vue
  8. -->
  9. <template>
  10. <div class="ChartsChinaMap" :id="id"></div>
  11. </template>
  12. <script>
  13. // 饼图初始数据
  14. import ChartsChinaMap from '../mixin/commonChartsChinaMap'
  15. export default {
  16. name: 'ChartsChinaMap',
  17. props: {
  18. // 饼图生成所需id
  19. id: {
  20. type: String,
  21. default: ''
  22. },
  23. // 饼图额外的数据
  24. option: {
  25. type: Object,
  26. default: () => { }
  27. }
  28. },
  29. mixins: [ChartsChinaMap],
  30. data () {
  31. return {
  32. myChart: null, //饼图实例
  33. desc: 300 // 防抖时间
  34. }
  35. },
  36. mounted () {
  37. // 初始数据和额外的配置数据耦合
  38. const objData = _.merge(this.options, this.option)
  39. // 饼图dom
  40. const chartDom = document.getElementById(this.id)
  41. // 饼图初始化
  42. this.myChart = this.$echarts.init(chartDom)
  43. // 生成饼图
  44. this.myChart.setOption(objData)
  45. // 监听页面缩放 防止dom重复渲染
  46. window.addEventListener('resize', _.debounce(this.handle, this.desc))
  47. },
  48. destroyed () {
  49. // 销毁实例和移除监听
  50. this.myChart.dispose();
  51. window.removeEventListener('resize', this.handle);
  52. },
  53. methods: {
  54. /**
  55. * @description: 图形缩放
  56. * @param {*}
  57. * @return {*}
  58. */
  59. handle () {
  60. this.myChart.resize()
  61. }
  62. }
  63. }
  64. </script>
  65. <style lang="less" scoped>
  66. .ChartsChinaMap {
  67. height: 100%;
  68. width: 100%;
  69. position: absolute;
  70. left: 0;
  71. top: 0;
  72. }
  73. </style>