uniapp实现身份证实名认证(获取身份证信息)

image.png
<!-- 证件识别 -->
<template>
    <view>
        <view class="container">

            <view class="cu-bar bg-white margin-top-xs">
                <view class="action sub-title">
                    <text class="text-xl text-bold text-blue text-shadow">请拍摄并上传您的身份证照片</text>
                    <text class="text-ABC text-blue">Driving license</text>
                </view>
            </view>
            <view class="uploadBox">
                <view style="width: 70%;">
                    <view class="uploadItem">
                        <view class="imgBox imgEx1">
                            <view class="leftTop"></view>
                            <view class="leftTop2"></view>
                            <view class="leftbottom"></view>
                            <view class="leftbottom2"></view>
                            <view class="rightTop"></view>
                            <view class="rightTop2"></view>
                            <view class="rightbottom"></view>
                            <view class="rightbottom2"></view>
                        </view>
                        <image class="imgUrl" :src="src"></image>
                    </view>
                    <view @tap="scan()" class="leftBtn text-white text-lg text-center">拍摄正面</view>
                </view>


            </view>

            <view class="cu-bar bg-white margin-top">
                <view class="action sub-title">
                    <text class="text-xl text-bold text-blue text-shadow">识别内容核对</text>
                    <text class="text-ABC text-blue">distinguish</text>
                </view>
            </view>

            <view class="distinguishBox">
                <view>
                    <text class="text-bold disLabel">姓名:</text>
                    <text>{{names}}</text>
                </view>
                <view>
                    <text class="text-bold disLabel">出生:</text>
                    <text>{{date}}</text>
                </view>
                <view>
                    <text class="text-bold disLabel">性别:</text>
                    <text>{{sex}}</text>
                </view>
                <view>
                    <text class="text-bold disLabel">民族:</text>
                    <text>{{nationality}}</text>
                </view>
                <view>
                    <text class="text-bold disLabel">居住地:</text>
                    <text>{{address}}</text>
                </view>
                <view>
                    <text class="text-bold disLabel">身份证号:</text>
                    <text>{{IdNumbers}}</text>
                </view>


            </view>

            <view class="cu-bar bg-white margin-top">
                <view class="action sub-title">
                    <text class="text-xl text-bold text-blue text-shadow">拍摄要求须知</text>
                    <text class="text-ABC text-blue">requirement</text>
                </view>
            </view>

            <view class="requirement">
                <view>
                    <text class="text-gray">请上传大陆公民持有的本人有效身份证;</text>
                </view>
                <view>
                    <text class="text-gray">拍摄时确保身份证</text>
                    <text class="text-red">边框完整,</text>
                    <text class="text-red">字体清晰,</text>
                    <text class="text-red">亮度均匀;</text>
                </view>

                <view class="errorBox">
                    <view class="item1">
                        <image class="iconImg" src="../../static/discern/ok.png" mode="widthFix"></image>
                    </view>
                    <view class="item2">
                        <image class="iconImg" src="../../static/discern/no.png" mode="widthFix"></image>
                    </view>
                    <view class="item3">
                        <image class="iconImg" src="../../static/discern/no.png" mode="widthFix"></image>
                    </view>
                    <view class="item4">
                        <image class="iconImg" src="../../static/discern/no.png" mode="widthFix"></image>
                    </view>
                </view>
            </view>
            <view class="submitBtn" @click="getIDCards()">提交认证信息</view>
            <view class="submitBtn" @click="getIDCard()">提交认证</view>

        </view>
    </view>
</template>

<script>
    var that;
    const card = uni.requireNativePlugin('DC-CardRecognize');
    export default {
        data() {
            return {
                list: [
                    '隐私说明:请按要求上传真实的证件照片,您所上传的行驶证仅用于平台账户绑定,请放心上传'
                ],
                // ../static/me/zjx_me_bg6.jpg
                imgUrl1: '',
                imgUrl2: '',
                info: "",
                title: 'input',
                focus: false,
                // 姓名
                name: "",
                names: "",
                // 民族
                nationality: "",
                // 地址
                address: "",
                // 身份证号码
                IdNumbers: "",
                IdNumber: "",
                date: "",
                sex: "",
                src: "",
                httpUrl: "https://aip.baidubce.com/rest/2.0/ocr/v1/general?access_token=",
                imageBase64Str: "",
                access_token: "",
                APIKey: "",// 你的APIKey
                SecretKey: ""// 你的SecretKey
            }
        },
        watch: {

        },
        onReady() {
            // 获取屏幕高度
            uni.getSystemInfo({
                success: res => {
                    console.log(res.windowHeight)
                }
            });
        },
        onLoad() {
            that = this;
            //token验证
            this.getAccess_token();
        },
        mounted() {

        },
        methods: {

            getAccess_token() {
                var that = this
                var accessToken = that.cache("accessToken", null, null);
                console.log(accessToken)

                if (!accessToken) {
                    uni.request({
                        method: 'POST',
                        header: {
                            'Content-Type': 'application/x-www-form-urlencoded'
                        },
                        url: "https://aip.baidubce.com/oauth/2.0/token",
                        data: {
                            grant_type: "client_credentials",
                            client_id: that.APIKey,
                            client_secret: that.SecretKey
                        },
                        success: function(res) {
                            console.log(res.data.access_token);
                            //uni.setStorageSync("Baidu",res.data);
                            that.access_token = res.data.access_token;
                            that.cache("accessToken", res.data.access_token, null);
                        }
                    })
                } else {
                    that.access_token = accessToken;
                }

            },
            //缓存,默认有效期28天
            cache: function(key, value, seconds) {
                var timestamp = Date.parse(new Date()) / 1000
                console.log(timestamp + "===" + key)
                if (key && value === null) {
                    //删除缓存
                    //获取缓存
                    var val = uni.getStorageSync(key);
                    var tmp = val.split("|")
                    if (!tmp[1] || timestamp >= tmp[1]) {
                        console.log("key已失效")
                        uni.removeStorageSync(key)
                        return ""
                    } else {
                        console.log("key未失效")
                        return tmp[0]
                    }
                } else if (key && value) {
                    //设置缓存
                    if (!seconds) {
                        var expire = timestamp + (3600 * 24 * 28)
                    } else {
                        var expire = timestamp + seconds
                    }
                    value = value + "|" + expire
                    uni.setStorageSync(key, value);
                } else {
                    console.log("key不能空")
                }
            },

            getIDCards() {


                if (flag) {
                    console.log("==")
                    //百度名片识别接口处理开始
                    uni.showLoading({
                        mask: true,
                        title: "识别中,请等待"
                    });
                    uni.request({
                        url: "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard?access_token=" + that.access_token,
                        method: 'POST',
                        header: {
                            'Content-Type': 'application/x-www-form-urlencoded'
                        },
                        data: {
                            image: that.imageBase64Str,
                            id_card_side: "front"
                        },
                        success: function(res) {
                            console.log(res);
                            var IdCard = res.data.words_result.公民身份号码.words;
                            that.IdNumbers = IdCard
                            var userName = res.data.words_result.姓名.words;
                            that.names = userName

                            that.nationality = res.data.words_result.民族.words;
                            var address = res.data.words_result.住址.words;
                            that.address = address
                            var sex = res.data.words_result.性别.words;
                            that.sex = sex
                            var date = res.data.words_result.出生.words;
                            that.date = date

                        },
                        complete() {
                            uni.hideLoading();
                        }
                    })
                }

            },

            scan() {
                var me = this;
                uni.chooseImage({
                    count: 1,
                    sizeType: ['compressed'],
                    sourceType: ['album', 'camera'],
                    success: function(res) {
                        var tempFilePath = res.tempFilePaths[0];
                        me.tempFile = tempFilePath;
                        plus.io.resolveLocalFileSystemURL(me.tempFile, function(entry) {
                            entry.file(function(file) {
                                var fileReader = new plus.io.FileReader();
                                fileReader.readAsDataURL(file);
                                fileReader.onloadend = function(evt) {
                                    //console.log("=="+evt.target.result);
                                    that.imageBase64Str = evt.target.result.split(",")[1];
                                    that.src = evt.target.result;
                                }
                            })
                        })

                    }
                })
            }
        }
    }
</script>

<style lang="scss" scoped>
    .container {
        height: 100%;
    }

    .uploadBox {
        padding: 15rpx 20rpx 40rpx;
        background-color: #FFFFFF;
        display: flex;
        justify-content: center;
        // justify-content: space-between;

        .leftBtn {
            width: 100%;
            height: 75rpx;
            line-height: 75rpx;
            background-color: #007aec;
            border-radius: 0 0 12rpx 12rpx;
        }

        .uploadItem {
            width: 100%;
            height: 320rpx;
            background-color: #f1f7ff;
            border-radius: 15rpx;
            padding: 30rpx;
            position: relative;

            .imgUrl {
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0;
                top: 0;
            }

            .imgBox {
                width: 100%;
                height: 100%;
                position: relative;
            }

            .imgEx1 {
                background: url(../../static/discern/ex1.png);
                background-size: 82%;
                background-repeat: no-repeat;
                background-position: center;
            }

            .imgEx2 {
                background: url(../../static/discern/ex2.png);
                background-size: 82%;
                background-repeat: no-repeat;
                background-position: center;
            }

            .leftTop {
                height: 28rpx;
                width: 4rpx;
                background-color: #007aec;
                position: absolute;
                left: 0;
            }

            .leftTop2 {
                height: 4rpx;
                width: 28rpx;
                background-color: #007aec;
                position: absolute;
                top: 0;
            }

            .leftbottom {
                height: 28rpx;
                width: 4rpx;
                background-color: #007aec;
                position: absolute;
                bottom: 0;
            }

            .leftbottom2 {
                height: 4rpx;
                width: 28rpx;
                background-color: #007aec;
                position: absolute;
                bottom: 0;
            }

            .rightTop {
                height: 28rpx;
                width: 4rpx;
                background-color: #007aec;
                position: absolute;
                right: 0;
            }

            .rightTop2 {
                height: 4rpx;
                width: 28rpx;
                background-color: #007aec;
                position: absolute;
                right: 0;
                top: 0;
            }

            .rightbottom {
                height: 28rpx;
                width: 4rpx;
                background-color: #007aec;
                position: absolute;
                right: 0;
                bottom: 0;
            }

            .rightbottom2 {
                height: 4rpx;
                width: 28rpx;
                background-color: #007aec;
                position: absolute;
                right: 0;
                bottom: 0;
            }
        }
    }

    .distinguishBox {
        padding: 5rpx 30rpx 20rpx;
        background: white;

        view {
            margin-bottom: 20rpx;
        }
    }

    .disLabel {
        text-align-last: justify;
        text-align: justify;
        text-justify: distribute-all-lines;
        min-width: 142rpx;
        display: inline-block;
        margin-right: 5rpx;
    }

    .requirement {
        padding: 10rpx 30rpx 26rpx;
        background: white;

        view {
            margin-bottom: 10rpx;
        }

        .errorBox {
            display: flex;
            justify-content: space-between;
            margin-top: 30rpx;

            view {
                width: 23%;
                height: 100rpx;
            }

            .item1 {
                background-image: url(../../static/discern/yes.png);
                background-repeat: no-repeat;
                background-size: 100%;
                position: relative;
            }

            .item2 {
                background-image: url(../../static/discern/error1.png);
                background-repeat: no-repeat;
                background-size: 100%;
                position: relative;
            }

            .item3 {
                background-image: url(../../static/discern/error2.png);
                background-repeat: no-repeat;
                background-size: 100%;
                position: relative;
            }

            .item4 {
                background-image: url(../../static/discern/error3.png);
                background-repeat: no-repeat;
                background-size: 100%;
                position: relative;
            }

            .iconImg {
                width: 60rpx;
                position: absolute;
                bottom: -10px;
                left: 50%;
                margin-left: -30rpx;
            }
        }
    }

    .submitBtn {
        width: 90%;
        height: 90rpx;
        background: #007aec;
        line-height: 90rpx;
        margin: 50rpx auto;
        text-align: center;
        font-size: 34rpx;
        color: #fff;
        border-radius: 12rpx;
    }
</style>

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

推荐阅读更多精彩内容

  • 表情是什么,我认为表情就是表现出来的情绪。表情可以传达很多信息。高兴了当然就笑了,难过就哭了。两者是相互影响密不可...
    Persistenc_6aea阅读 124,708评论 2 7
  • 16宿命:用概率思维提高你的胜算 以前的我是风险厌恶者,不喜欢去冒险,但是人生放弃了冒险,也就放弃了无数的可能。 ...
    yichen大刀阅读 6,042评论 0 4