var myChart = echarts.init(document.getElementById('test'));
var i = myChart.getDataURL({
type:'png',
backgroundColor:'white'
// 导出的图片分辨率比例,默认为 1。
//pixelRatio: number,
});
var $a = document.createElement('a');
$a.setAttribute("href", i);
$a.setAttribute("download","test.png");
$a.click();