F-loat / mpvue-echarts

📈 适用于 mpvue 的 echarts 组件
337 stars 91 forks source link

应用官方echarts.js Touch事件报错 #4

Closed EngMJ closed 6 years ago

EngMJ commented 6 years ago
   ...,
   touchStart(e) {
      if (chart && e.mp.touches.length > 0) {
        const touch = e.mp.touches[0];
        // 此处将zr属性改为_zr, 否则为undefined
        chart._zr.handler.dispatch('mousedown', {
          zrX: touch.x,
          zrY: touch.y,
        });
        chart._zr.handler.dispatch('mousemove', {
          zrX: touch.x,
          zrY: touch.y,
        });
      }
    },
    ....

不知道是不是个例,希望作者可以看一下. 谢谢!

F-loat commented 6 years ago

抱歉,之前没看到,报错信息可以贴一下,明天我复查下

F-loat commented 6 years ago

应该修复了已经,请更新下版本