123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!--
- * @Author: your name
- * @Date: 2021-09-23 11:16:14
- * @LastEditTime: 2021-09-23 16:51:29
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: \bigDataScreen\src\components\Echarts\commonChartsChinaMap.vue
- -->
- <template>
- <div class="ChartsChinaMap" :id="id"></div>
- </template>
- <script>
- // 饼图初始数据
- import ChartsChinaMap from '../mixin/commonChartsChinaMap'
- export default {
- name: 'ChartsChinaMap',
- props: {
- // 饼图生成所需id
- id: {
- type: String,
- default: ''
- },
- // 饼图额外的数据
- option: {
- type: Object,
- default: () => { }
- }
- },
- mixins: [ChartsChinaMap],
- data () {
- return {
- myChart: null, //饼图实例
- desc: 300 // 防抖时间
- }
- },
- mounted () {
- // 初始数据和额外的配置数据耦合
- const objData = _.merge(this.options, this.option)
- // 饼图dom
- const chartDom = document.getElementById(this.id)
- // 饼图初始化
- this.myChart = this.$echarts.init(chartDom)
- // 生成饼图
- this.myChart.setOption(objData)
- // 监听页面缩放 防止dom重复渲染
- window.addEventListener('resize', _.debounce(this.handle, this.desc))
- },
- destroyed () {
- // 销毁实例和移除监听
- this.myChart.dispose();
- window.removeEventListener('resize', this.handle);
- },
- methods: {
- /**
- * @description: 图形缩放
- * @param {*}
- * @return {*}
- */
- handle () {
- this.myChart.resize()
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .ChartsChinaMap {
- height: 100%;
- width: 100%;
- position: absolute;
- left: 0;
- top: 0;
- }
- </style>
|