• 电子签名组件Vue


    效果如下:

    前端 + Vue + 电子签名组件

    源码如下:

    <template>
      <div class="signatureBox">
        <div class="canvasBox" ref="canvasHW">
          <div class="closeBox">
            <span>请签名</span>
            <p @click="close">X</p>
          </div>
          <canvas
            @touchstart="touchStart"
            @touchmove="touchMove"
            @touchend="touchEnd"
            ref="canvasF"
            @mousedown="mouseDown"
            @mousemove="mouseMove"
            @mouseup="mouseUp"
          ></canvas>
          <div class="btnBox">
            <button @click="surewrite">确认</button>
            <button @click="overwrite">重置</button>
          </div>
        </div>
      </div>
    </template>
    
    <script>
    // import { Toast } from 'vant';
    export default {
      name: "signature",
      data() {
        return {
          points: [],
          canvasTxt: null,
          startX: 0,
          startY: 0,
          moveY: 0,
          moveX: 0,
          endY: 0,
          endX: 0,
          w: null,
          h: null,
          isDown: false,
          color: "#000",
          linewidth: 3,
          isDraw: false //签名标记
        };
      },
      created() {},
      mounted() {
        let canvas = this.$refs.canvasF;
        canvas.height = this.$refs.canvasHW.offsetHeight - 100;
        canvas.width = this.$refs.canvasHW.offsetWidth - 10;
        this.canvasTxt = canvas.getContext("2d");
        this.canvasTxt.strokeStyle = this.color;
        this.canvasTxt.lineWidth = this.linewidth;
      },
      components: {},
      methods: {
        //电脑设备事件
        mouseDown(ev) {
          ev = ev || event;
          ev.preventDefault();
          let obj = {
            x: ev.offsetX,
            y: ev.offsetY
          };
          this.startX = obj.x;
          this.startY = obj.y;
          this.canvasTxt.beginPath();
          this.points.push(obj);
          this.isDown = true;
        },
        //移动设备事件
        touchStart(ev) {
          ev = ev || event;
          ev.preventDefault();
          if (ev.touches.length == 1) {
            this.isDraw = true; //签名标记
            let obj = {
              x: ev.targetTouches[0].clientX,
              y:
                ev.targetTouches[0].clientY -
                (document.body.offsetHeight * 0.5 +
                  this.$refs.canvasHW.offsetHeight * 0.1)
            }; //y的计算值中:document.body.offsetHeight*0.5代表的是除了整个画板signatureBox剩余的高,this.$refs.canvasHW.offsetHeight*0.1是画板中标题的高
            this.startX = obj.x;
            this.startY = obj.y;
            this.canvasTxt.beginPath();
            this.points.push(obj);
          }
        },
        //电脑设备事件
        mouseMove(ev) {
          ev = ev || event;
          ev.preventDefault();
          if (this.isDown) {
            let obj = {
              x: ev.offsetX,
              y: ev.offsetY
            };
            this.moveY = obj.y;
            this.moveX = obj.x;
            this.canvasTxt.moveTo(this.startX, this.startY);
            this.canvasTxt.lineTo(obj.x, obj.y);
            this.canvasTxt.stroke();
            this.startY = obj.y;
            this.startX = obj.x;
            this.points.push(obj);
          }
        },
        //移动设备事件
        touchMove(ev) {
          ev = ev || event;
          ev.preventDefault();
          if (ev.touches.length == 1) {
            let obj = {
              x: ev.targetTouches[0].clientX,
              y:
                ev.targetTouches[0].clientY -
                (document.body.offsetHeight * 0.5 +
                  this.$refs.canvasHW.offsetHeight * 0.1)
            };
            this.moveY = obj.y;
            this.moveX = obj.x;
            this.canvasTxt.moveTo(this.startX, this.startY);
            this.canvasTxt.lineTo(obj.x, obj.y);
            this.canvasTxt.stroke();
            this.startY = obj.y;
            this.startX = obj.x;
            this.points.push(obj);
          }
        },
        //电脑设备事件
        mouseUp(ev) {
          ev = ev || event;
          ev.preventDefault();
          if (1) {
            let obj = {
              x: ev.offsetX,
              y: ev.offsetY
            };
            this.canvasTxt.closePath();
            this.points.push(obj);
            this.points.push({ x: -1, y: -1 });
            this.isDown = false;
          }
        },
        //移动设备事件
        touchEnd(ev) {
          ev = ev || event;
          ev.preventDefault();
          if (ev.touches.length == 1) {
            let obj = {
              x: ev.targetTouches[0].clientX,
              y:
                ev.targetTouches[0].clientY -
                (document.body.offsetHeight * 0.5 +
                  this.$refs.canvasHW.offsetHeight * 0.1)
            };
            // this.canvasTxt.beginPath();
            // this.canvasTxt.moveTo(this.startX, this.startY);
            // this.canvasTxt.lineTo(obj.x, obj.y);
            // this.canvasTxt.stroke();
            this.canvasTxt.closePath();
            this.points.push(obj);
            this.points.push({ x: -1, y: -1 });
          }
        },
        //重写
        overwrite() {
          this.canvasTxt.clearRect(
            0,
            0,
            this.$refs.canvasF.width,
            this.$refs.canvasF.height
          );
          this.points = [];
          this.isDraw = false; //签名标记
        },
        //关闭
        close() {
          this.canvasTxt.clearRect(
            0,
            0,
            this.$refs.canvasF.width,
            this.$refs.canvasF.height
          );
          this.points = [];
          this.$emit("close", false);
        },
        //确认签名
        surewrite() {
          var imgBase64 = this.$refs.canvasF.toDataURL();
          console.log("保存签名成功" + imgBase64);
          console.log(this.isDraw);
          if (this.isDraw) {
            alert("签名成功!");
            // this.$emit("surewrite",false);
          } else {
            alert("请签名后再确认!");
          }
        }
      }
    };
    </script>
    
    <style type="less" scoped>
    .signatureBox {
      position: fixed;
      bottom: 0px;
      width: 100%;
      height: 50%;
      background: darkgray;
      box-sizing: border-box;
      overflow: hidden;
      z-index: 100;
      /*display: flex;*/
      /*flex-direction: column;*/
    }
    .canvasBox {
      padding: 0px 5px;
      height: 90%;
    }
    canvas {
      border: 1px solid gray;
    }
    .btnBox {
      height: 30px;
      padding: 5px;
      text-align: center;
      line-height: 30px;
    }
    .btnBox button {
      border: 1px solid dodgerblue;
      background: dodgerblue;
      color: #fff;
      border-radius: 4px;
      padding: 2px 30px;
      margin: 0 15px;
      font-size: 14px;
    }
    .closeBox {
      text-align: center;
      height: 10%;
    }
    .closeBox span {
      font-size: 15px;
      float: left;
    }
    .closeBox p {
      font-size: 22px;
      width: 30px;
      height: 30px;
      line-height: 30px;
      border-radius: 30px;
      border: none;
      background: gray;
      color: white;
      float: right;
    }
    @media only screen and (min-width: 730px) {
      .signatureBox {
        position: fixed;
        bottom: 0px;
        width: 100%;
        height: 100%;
        background: darkgray;
        box-sizing: border-box;
        overflow: visible;
      }
    }
    </style> 
    
    • 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
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
  • 相关阅读:
    力扣第332题 重新安排行程 c++ 难
    VSCode相对问题
    基于python的网络爬虫搜索引擎的设计
    Java 泛型中的通配符
    JavaEE-http/https/Tomcat(下)
    基于Springboot外卖系统09:员工信息编辑+员工信息保存
    IDEA 导入 spring 源码
    剪映PC版英文字幕翻译最新方法(中英互译)
    JAVA技术设计模式
    Git教程详细版
  • 原文地址:https://blog.csdn.net/weixin_55846296/article/details/118762137