Commit a3797fd9 authored by linwenqing's avatar linwenqing

fix:身份证识别

parent 7067f8d3
...@@ -10,6 +10,7 @@ const UNI_APP = { ...@@ -10,6 +10,7 @@ const UNI_APP = {
}, },
qn_base_url: 'https://qn-static.banshouhui.com/self-support/', qn_base_url: 'https://qn-static.banshouhui.com/self-support/',
qn_asset_url: 'http://deudn.c.pp.cc/', qn_asset_url: 'http://deudn.c.pp.cc/',
uc_img_url_pre: 'http://deudn.c.pp.cc/',
argoDebugMode: 1 argoDebugMode: 1
} }
module.exports = UNI_APP; module.exports = UNI_APP;
...@@ -9,6 +9,7 @@ const UNI_APP = { ...@@ -9,6 +9,7 @@ const UNI_APP = {
}, },
qn_base_url: 'https://qn-static.banshouhui.com/self-support/', qn_base_url: 'https://qn-static.banshouhui.com/self-support/',
qn_asset_url: 'https://qn-static.banshouhui.com', qn_asset_url: 'https://qn-static.banshouhui.com',
uc_img_url_pre: 'https://img2.banshouhui.com/',
argoDebugMode: 0 argoDebugMode: 0
} }
......
...@@ -9,6 +9,7 @@ const UNI_APP = { ...@@ -9,6 +9,7 @@ const UNI_APP = {
}, },
qn_base_url: 'https://qn-static.banshouhui.com/self-support/', qn_base_url: 'https://qn-static.banshouhui.com/self-support/',
qn_asset_url: 'https://qn-static.banshouhui.com', qn_asset_url: 'https://qn-static.banshouhui.com',
uc_img_url_pre: 'https://img2.banshouhui.com/',
argoDebugMode: 1 argoDebugMode: 1
} }
module.exports = UNI_APP; module.exports = UNI_APP;
...@@ -89,6 +89,9 @@ ...@@ -89,6 +89,9 @@
import Settle from '@/components/settle/index.vue' import Settle from '@/components/settle/index.vue'
import base from '@/components/upload/index'; import base from '@/components/upload/index';
const app = getApp() const app = getApp()
const globalUrl = process.uniEnv || {};
const ucenterApiUrl = globalUrl.ucenterUrl.apiUrl;
const uc_img_url_pre = globalUrl.uc_img_url_pre;
export default { export default {
mixins:[base], mixins:[base],
components: { components: {
...@@ -184,11 +187,13 @@ export default { ...@@ -184,11 +187,13 @@ export default {
], ],
submitSuccess: false, submitSuccess: false,
saving: false, saving: false,
wxToken: "",
} }
}, },
onLoad(e) { onLoad(e) {
getApp().trackPage('入驻证件信息上传页') getApp().trackPage('入驻证件信息上传页')
this.initSettledInfo() this.initSettledInfo()
this.getWxToken()
}, },
updated() { updated() {
// 该方法性能消耗大目前不使用 // 该方法性能消耗大目前不使用
...@@ -259,6 +264,20 @@ export default { ...@@ -259,6 +264,20 @@ export default {
}, },
methods: { methods: {
async getWxToken() {
let that = this;
wx.request({
url: ucenterApiUrl + "/v1/settled/wx-token",
method: 'GET',
header: {
'Authorization': that.vuex_token
},
success(res) {
that.wxToken = res.data.access_token;
console.log(that.wxToken);
}
})
},
// 初始化入驻信息 // 初始化入驻信息
async initSettledInfo() { async initSettledInfo() {
let self = this let self = this
...@@ -380,44 +399,53 @@ export default { ...@@ -380,44 +399,53 @@ export default {
uni.showLoading({ uni.showLoading({
title: '识别中' title: '识别中'
}) })
let request = {
front: this.$u.api.checkSettleIDCardFront,
back: this.$u.api.checkSettleIDCardBack,
};
let url = { let url = {
front: this.fileInfo.id_card_front, front: this.fileInfo.id_card_front,
back: this.fileInfo.id_card_back, back: this.fileInfo.id_card_back,
}; };
let that = this;
const params = { // 文字识别
["id_card_" + type]: url[type], let access_token = this.wxToken;
id: this.fileInfo.id || 0, let img_pre = uc_img_url_pre;
} let img_url = img_pre + url[type] //"tmp/X8XIAJvSt7jp29a97371a466eecab48e7a7c35d92861.jpg";
console.log(access_token);
const res = await request[type](params); console.log(img_url);
if (res.code !== 200) { img_url = encodeURI(img_url);
let post_url = 'https://api.weixin.qq.com/cv/ocr/idcard?type=MODE&img_url='+img_url+'&access_token=' + access_token;
//url识别图片
wx.request({
url: post_url,
header: {
'Content-Type': 'application/x-www-form-urlencoded'
},
method: 'POST',
success(res) {
uni.hideLoading()
let info = res.data;
if(info.errcode != 0){
if (type === "front") { if (type === "front") {
this.fileInfo.id_card_name = ""; that.fileInfo.id_card_name = "";
this.fileInfo.id_card_number = ""; that.fileInfo.id_card_number = "";
this.frontErrorMsg = res.message || "识别失败,请重新上传" that.frontErrorMsg = res.message || "识别失败,请重新上传"
} else { } else {
this.fileInfo.id_card_back_check = false; that.fileInfo.id_card_back_check = false;
this.backErrorMsg = res.message || "识别失败,请重新上传" that.backErrorMsg = res.message || "识别失败,请重新上传"
} }
return return
} } else if (type === "front") {
uni.hideLoading() that.fileInfo.id_card_name =
if (type === "front") { info.name || "";
this.fileInfo.id_card_name = that.fileInfo.id_card_number =
res.data.id_card_name || ""; info.id || "";
this.fileInfo.id_card_number = that.frontErrorMsg = (!that.fileInfo.id_card_name || !that.fileInfo.id_card_number) ? "识别失败,请重新上传" : ''
res.data.id_card_number || "";
this.frontErrorMsg = (!this.fileInfo.id_card_name || !this.fileInfo.id_card_number) ? "识别失败,请重新上传" : ''
} else { } else {
this.fileInfo.id_card_expire = res.data.id_card_expire || ""; that.fileInfo.id_card_expire = info.valid_date || "";
this.fileInfo.id_card_back_check = true; that.fileInfo.id_card_back_check = true;
this.backErrorMsg = !this.fileInfo.id_card_expire ? "识别失败,请重新上传" : '' that.backErrorMsg = !that.fileInfo.id_card_expire ? "识别失败,请重新上传" : ''
} }
}
})
}, },
checkFileInfo() { checkFileInfo() {
let formFlag = true; let formFlag = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment