uniapp签名

本项目要实现H5扫描二维码签名,首当其冲的就想到了uniapp签名,并导出图片。代码中我添加了一些注释,如果,有不懂的小伙伴,可以评论区留下一起讨论。

界面效果

签名.png

代码

<template>
    <view class="content">
        <page-head>
            <view slot="title">签字确认</view>
        </page-head>
        <!-- 签字区域 -->
        <canvas style="width: 100vw; height: calc(100vh - 88upx);"
            canvas-id="canvasId"
            @touchstart="touchstart"
            @touchmove.stop.prevent="touchmove"
            id="canvasId"></canvas>
        <!-- 按钮确认 -->
        <cover-view class="cont-btn">
            <cover-view class="clear" hover-class="checkActive" @click="clear">清除</cover-view>
            <cover-view class="sure" hover-class="checkActive" @click="sure">确认</cover-view>
        </cover-view>
    </view>
</template>

<script>
    import {uploadCanvasImage, uploadCanvasImageKs, uploadCanvasImageDw, uploadCanvasImageQt} from '@/api/medical.js'
    
    export default {
        name: 'CanvasHome',
        data() {
            return {
                context: '',
                moveX: '',
                moveY: '',
                windowWidth: 0,
                windowHeight: 0,
                jid: undefined,
                type: undefined,
                name: undefined
            }
        },
        onLoad: function (e) {
            console.log(e)
            // 获取屏幕大小
            let that = this
            uni.getSystemInfo({
                success: function (res) {
                    console.log(res)
                    that.windowWidth = res.windowWidth
                    that.windowHeight = res.windowHeight
                }
            })
        },
        onReady: function (e) {
            console.log(getApp().globalData, e, location)
            // 创建绘图对象
            let context = uni.createCanvasContext('canvasId')
            // 设置线条
            context.lineWidth = 4
            context.setLineCap('round')
            context.setLineJoin('round')
            // 赋值
            this.context = context
            
            // 获取二维码中的员工工号参数
            let hash = location.href.split('?')[1].split('&')
            this.jid = hash[0].split('=')[1]
            this.type = hash[1].split('=')[1]
            this.name = hash[2].split('=')[1]
            console.log(this.jid, this.type, this.name)
        },
        methods: {
            touchstart (e) {
                // 取出x、y的值
                let {x, y} = e.changedTouches[0]
                // 绘制线条起点
                this.context.beginPath()
                this.context.moveTo(x, y)
                // 起点与移动的连接断开
                this.moveX = ''
                this.moveY = ''
            },
            touchmove (e) {
                // 取出x, y的值
                let {x, y} = e.changedTouches[0]
                // 防止线条出现断点
                if (this.moveX && this.moveY) {
                    this.context.moveTo(this.moveX, this.moveY)
                    this.context.lineTo(this.moveX, this.moveY)
                }
                this.context.lineTo(x, y)
                this.moveX = x
                this.moveY = y
                this.context.stroke()
                // ture,保留之前的内容
                this.context.draw(true)
            },
            // 清除
            clear () {
                this.context.draw()
                this.moveX = ''
                this.moveY = ''
            },
            sure () {
                uni.showModal({
                    title: '提示',
                    content: '您确定要提交签字么?',
                    success: (res) => {
                        if (res.confirm) {
                            this.signImage()
                        } else if (res.cancel) {
                            uni.showToast({
                                title: '已取消',
                                duration: 2000,
                                icon: 'none'
                            })
                        }
                    }
                })
            },
            // 导出图片
            signImage () {
                let {windowWidth, windowHeight} = this
                console.log(typeof windowHeight, typeof windowWidth, windowHeight, windowWidth)
                uni.canvasToTempFilePath({
                    x: 0,
                    y: 0,
                    width: windowWidth,
                    height: windowHeight,
                    destWidth: windowWidth,
                    destHeight: windowHeight,
                    canvasId: 'canvasId',
                    fileType: 'jpg',
                    success: (res) => {
                        // 在H5平台下,tempFilePath 为 base64
                        // console.log(res.tempFilePath)
                        this.uploadFile(res.tempFilePath)
                    },
                     fail: (res) => {
                         console.log(res)
                     }
                })
            },
            // 上传文件
            uploadFile(tempFilePaths) {
                const baseURL =  process.env.NODE_ENV === 'production' ? window.httpUrl : process.env.VUE_APP_BASE_API
                uni.showLoading({
                    title: '加载中'
                })
                uni.uploadFile({
                    url: baseURL+`BasicConfiguration?Type=1&&MethodName=Add_Pic&&extension=.jpg`, //仅为示例,非真实的接口地址
                    filePath: tempFilePaths,
                    name: 'file',
                    formData: {
                        'user': 'test'
                    },
                    success: (uploadFileRes) => {
                        let imageUrl = JSON.parse(uploadFileRes.data).msg
                        if (this.type === 'gr') { // 个人
                            this.imagesToGr(imageUrl)
                        } else if (this.type === 'ks') {
                            this.imagesToKs(imageUrl)
                        } else if (this.type === 'dw') {
                            this.imagesToDw(imageUrl)
                        } else if (this.type === 'qt') {
                            this.imagesToQt(imageUrl)
                        }
                        console.log(this.type)
                    },
                    fail: (res) => {
                        console.log(res)
                        uni.hideLoading()
                        uni.showToast({
                             title: res.errMsg,
                             duration: 2000,
                             icon: none,
                        })
                    }
                })
            },
            // 调用上传接口, 将图片给后端, 个人
            imagesToGr (imageUrl) {
                uploadCanvasImage(this.jid, imageUrl).then(() => {
                    uni.hideLoading()
                    uni.showToast({
                         title: '签字成功!',
                         duration: 2000
                    })
                    setTimeout(() => {
                        uni.navigateBack({
                            delta: 1
                        })
                    }, 2000)
                })
            },
            // 调用上传接口, 将图片给后端, 科室
            imagesToKs (imageUrl) {
                uploadCanvasImageKs(this.jid, imageUrl).then(() => {
                    uni.hideLoading()
                    uni.showToast({
                         title: '签字成功!',
                         duration: 2000
                    })
                    setTimeout(() => {
                        uni.navigateBack({
                            delta: 1
                        })
                    }, 2000)
                })
            },
            imagesToDw (imageUrl) { // 党委
                uploadCanvasImageDw(this.jid, imageUrl).then(() => {
                    uni.hideLoading()
                    uni.showToast({
                         title: '签字成功!',
                         duration: 2000
                    })
                    setTimeout(() => {
                        uni.navigateBack({
                            delta: 1
                        })
                    }, 2000)
                })
            },
            imagesToQt (imageUrl) { // 其它
                alert(this.name+'|' +imageUrl + '@')
                uploadCanvasImageQt(this.jid, this.name+'|' +imageUrl + '@').then(() => {
                    uni.hideLoading()
                    uni.showToast({
                         title: '签字成功!',
                         duration: 2000
                    })
                    setTimeout(() => {
                        window.close()
                    }, 2000)
                })
            }
        }
    }
</script>

<style scoped>
    .content{
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 45;
    }
    .cont-btn{
        position: fixed;
        z-index: 2;
        bottom: 0;
        right: 16upx;
        display: flex;
        align-items: center;
    }
    .clear, .sure{
        padding: 16upx 48upx;
        border: 1px solid #eee;
        border-radius: 50upx;
        margin: 24upx 8upx;
        background-color: #fff;
    }
    .clear{
        border-color:$uni-color-error;
        color: $uni-color-error;
    }
    .sure{
        border-color:$uni-color-primary;
        color: $uni-color-primary;
    }
    .checkActive, .clear:hover, .sure:hover{
        opacity: $uni-opacity-disabled;
    }
</style>


说明
签字的时候页面容易滑动,所以,我们需要先新建一个界面,然后,再跳转到签字界面,并且,签字界面需要配置上禁止滚动的属性

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,376评论 6 491
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,126评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,966评论 0 347
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,432评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,519评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,792评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,933评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,701评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,143评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,488评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,626评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,292评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,896评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,742评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,977评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,324评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,494评论 2 348

推荐阅读更多精彩内容