城阳工作端uniH5前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

210 lines
5.4 KiB

<template>
<view>
<!-- subpages/OCRCard/pages/index/index.wxml -->
<view class="header">
<!-- <image class="header-bg" src="/static/subpages/OCRCard/image/headerBg.png" mode="widthFix" /> -->
<image src="/static/images/back.png" class="back" @tap="back" :style="' top: ' + statusHeight + 'px;width: 50rpx;height: 50rpx;'" mode="" />
<view class="navigation" :style="'height: ' + navigationHeight + 'px; top: ' + statusHeight + 'px;'">身份证识别</view>
</view>
<view class="body">
<image src="/static/images/card.png" mode="" />
<view>
<b>身份识别</b>
是在居民出示身份证原件或图片的场合下通过OCR技术拍摄识别身份证信息
</view>
<ocr-navigator @onSuccess="cardSuccess" certificateType="idCard" :opposite="false" class="ocr">
<button hover-class="color">开始识别</button>
</ocr-navigator>
</view>
</view>
</template>
<script>
// subpages/OCRCard/pages/index/index.js
const app = getApp();
import { getResidentBaseInfo } from '../../../../utils/api';
export default {
components: {},
data() {
return {
statusHeight: '',
navigationHeight: '',
tableData: '',
keyWord: ''
};
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
this.setData({
statusHeight: app.globalData.deviceInfo.statusHeight,
navigationHeight: app.globalData.deviceInfo.navigationHeight
});
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {},
/**
* 生命周期函数--监听页面显示
*/
onShow() {},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {},
methods: {
getTable: async function (type) {
let parm = {
searchKey: this.keyWord,
pageSize: 10,
pageNo: 1
};
let { data, code, msg } = await getResidentBaseInfo(parm);
if (code == 0) {
this.setData({
tableData: this.tableData.concat(data.list)
});
} else {
}
},
cardSuccess: async function (e) {
console.log(e.detail);
this.setData({
keyWord: e.detail.id.text,
tableData: []
});
// 跳转至居民详情页
await this.getTable('card');
if (this.tableData.length != 0) {
uni.navigateTo({
url: `/subpages/searchResult/pages/resiInfo/resiInfo?resiId=${this.tableData[0].resiId}`
});
} else {
uni.showToast({
title: '未查询到该居民,请录入居民信息',
duration: 3000,
icon: 'none',
success: function () {
setTimeout(() => {
uni.navigateTo({
url: `/subpages/addResi/pages/addResi/addResi?type=add&name=${e.detail.name.text}&idCard=${e.detail.id.text}&gender=${e.detail.gender.text}&birth=${e.detail.birth.text}`
});
}, 3000);
}
});
}
},
back() {
uni.navigateBack({
delta: 1
});
}
}
};
</script>
<style>
/* subpages/OCRCard/pages/index/index.wxss */
page {
width: 100%;
min-height: 100vh;
overflow-y: scroll;
background-color: #f7f7f7;
}
.top20 {
margin-top: 20rpx;
}
.header {
width: 100%;
height: 550rpx;
overflow: hidden;
background-image: url('/static/subpages/OCRCard/image/headerBg.png');
background-size: 100% 100%;
}
.blue {
color: #3a80e7;
}
.red {
color: #ff502e;
}
.header .header-bg {
width: 100%;
height: 444rpx;
position: absolute;
height: 100%;
z-index: -997;
}
.header .navigation {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #333333;
font-size: 32rpx;
position: relative;
z-index: 100;
}
.gray {
color: #999;
font-size: 28rpx;
}
.font32 {
font-size: 32rpx;
}
.back {
width: 30rpx;
height: 30rpx;
margin-left: 20rpx;
position: absolute;
margin-top: 20rpx;
border-radius: 0rpx;
z-index: 101;
}
.body {
position: relative;
top: -200rpx;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 70rpx;
align-items: center;
}
button {
height: 84rpx;
line-height: 84rpx;
width: 100% !important;
padding: 0;
text-align: center;
color: #fff;
font-size: 33rpx;
border-radius: 84rpx;
background: linear-gradient(to right, #82b4fd, #3e93fe);
margin: 160rpx 0 0 !important;
}
.ocr {
width: 100%;
}
.color {
color: #fff;
}
</style>