收藏
回答

小程序手写签名,用企业微信打开小程序,操作无效?

  //鼠标移动(在canvas内部)【线条】
  canvasMove(e) {
    if (this.data.canvasMoveUse || true) {
      //console.log('canvasMove')
      const {
        x,
        y
      } = e.touches[0];
      let canvasX = x;
      let canvasY = y;
      this.data.context.lineTo(canvasX, canvasY)
      this.data.context.stroke()
      this.data.isSignature = true
    }
  },

wx.createSelectorQuery()
回答关注问题邀请回答
收藏

1 个回答

  • hello world
    hello world
    03-27

    小程序的canvas画图功能,微信有bug,目前尚未修复

    03-27
    有用
    回复
登录 后发表内容