let myChart = echarts.init(document.getElementById('Map'));
let option = { }//配置项
myChart.setOption(option);
let vue = this;
window.addEventListener('resize', function() {
if (vue.resizeFlag) {
clearTimeout(vue.resizeFlag);
}
vue.resizeFlag = setTimeout(function() {
myChart.resize();
vue.resizeFlag = null;
}, 200);
});