• 原生微信小程序实现手写签名功能


    项目中有遇到在小程序上实现手动签名功能,今天给大家分享下代码
    wxml 文件代码如下,catchtouchmove属性一定要加上,否则移动起来连笔非常不流畅

    
      
        请在下面的白框中签名
        签名既承诺所填信息完全属实
        
          
          
        
      
      
        重置
        提交
      
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    wxss代码

    .content {
      width: 100vw;
      height: 100vh;
    }
    
    .canvasBox {
      margin-top: 10px;
      background-color: #fff;
      width: 100%;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    .title {
      font-size: 32rpx;
      padding: 0 24rpx;
    }
    .title::before {
      content: '*';
      color: red;
    }
    .tips {
      width: 100%;
      color: red;
      padding: 20px;
      box-sizing: border-box;
    }
    .sign-canvas-view {
      box-sizing: border-box;
      border: 2rpx solid grey;
      margin: 0 24rpx;
    }
    
    .submitBtn {
      width: 100%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin-top: 30px;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41

    js代码

    import appConfig from "../../../utils/globalConfig.js";
    const {
        payAfterTreatmentSignUp
      } = require("../../../utils/api.js")
    const globalConfig = require('../../../utils/globalConfig.js');
    Page({
      data:{
          signPath:[],
          cardNo:'',
          preX:'',
          preY:'',
          apiUrl:appConfig.getLocalConfig().apiUrl,
      },
      onLoad(options){
        this.setData({
          cardNo:options.cardNo
        })
        wx.createSelectorQuery().select('#myCanvas').fields({node: true,size: true}).exec(this.init.bind(this))
      },
      init(data){
        console.log(data);
        const width = data[0].width;
        const height=data[0].height;
        const canvas = data[0].node;
        const ctx = canvas.getContext('2d');
        const dpr = wx.getSystemInfoSync().pixelRatio
    
        canvas.width = width * dpr
        canvas.height =  height * dpr
        ctx.scale(dpr,dpr)
    
        this._dpr = dpr
        this._ctx = ctx
        this._canvas = canvas
      },
      touchStart(e){
          console.log(e)
          const { _ctx:ctx } = this
          const { clientX:x ,clientY:y } = e.touches[0]
          ctx.beginPath()
          // ctx.moveTo(x-e.target.offsetLeft, y-e.target.offsetTop)
          ctx.moveTo(x-e.target.offsetLeft, y-e.target.offsetTop)
          this.setData({
            preX:x-e.target.offsetLeft,
            preY:y-e.target.offsetTop,
        })
      },    
      touchMove(e){
          const { _ctx:ctx } = this
          const { clientX:x ,clientY:y } = e.touches[0]
          this.data.signPath.push([x,y])
          this.setData({
              signPath:this.data.signPath
          })
          let preX = this.data.preX
          let preY = this.data.preY
          let curX = x-e.target.offsetLeft
          let curY = y-e.target.offsetTop
          let deltaX = Math.abs(preX - curX)
          let deltaY = Math.abs(preY - curY)
          if (deltaX >= 3 || deltaY >= 3) {
            // 前后两点中心点
            let centerX = (preX + curX) / 2
            let centerY = (preY + curY) / 2
      
            //这里以前一点作为控制点,中心点作为终点,起始点为上一次的中点,很流畅啊!
            ctx.quadraticCurveTo(preX, preY, centerX, centerY);
            ctx.stroke();
            this.setData({
              preX:curX,
              preY:curY,
          })
          }
          // ctx.lineTo(x-e.target.offsetLeft, y-e.target.offsetTop)
          // ctx.lineTo(x, y)
          // ctx.stroke()
      
      },
      //重绘
      reset(){
          const { _ctx:ctx,_canvas:canvas } = this
    
          this.setData({
              signPath:[]
          })
          ctx.clearRect(0, 0, canvas.width, canvas.height)
      },
      //提交签名图片
      sure(){
          
          if(this.data.signPath.length <= 0){
              wx.showToast({
                title: '签名不能为空',
                icon:'none'
              })
              return 
          }
    
          //导出图片
          this.outImage()
      },
      sureSignature(){
        if(this.data.signPath.length <= 0){
            wx.showToast({
              title: '签名不能为空',
              icon:'none'
            })
            return 
        }
      },
      outImage(){
          const { _canvas:canvas,_dpr:dpr } = this
          var image = canvas.toDataURL("image/png"); // 得到生成后的签名base64位  url 地址
          payAfterTreatmentSignUp({
            cardNo:this.data.cardNo,
            signBase64:image
          },globalConfig.getLocalConfig().zyUrl).then(res=>{
              console.log(res);
              wx.showToast({
                title: '签约成功',
              })
              setTimeout(()=>{
                wx.navigateBack({
                    delta: 1
                  })
              },2000)
    
          })
      }
    })
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130

    效果如下
    在这里插入图片描述

  • 相关阅读:
    案例分享:同为科技与军工项目合作
    ELK日志平台搭建
    Kudu-1.16编译中下载Gradle依赖失败的解决办法
    Struts2的表单标签
    Java集合(复习)
    每日三题 11.22
    linux内核中list的实现
    冒泡排序给cpu干懵了 哈哈 还有希尔排序 算法补充(学习笔记)
    CGO 初步认知和基本数据类型转换
    MovieLens:一个常用的电影推荐系统领域的数据集
  • 原文地址:https://blog.csdn.net/marryMe_MrsYu/article/details/127958646