Commit ccfc0d66 authored by linwenqing's avatar linwenqing

Merge branch 'dev-fix' into dev

parents 6f1f9c2d 5e842947
...@@ -10,7 +10,6 @@ const UNI_APP = { ...@@ -10,7 +10,6 @@ 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,7 +9,6 @@ const UNI_APP = { ...@@ -9,7 +9,6 @@ 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,7 +9,6 @@ const UNI_APP = { ...@@ -9,7 +9,6 @@ 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,9 +89,6 @@ ...@@ -89,9 +89,6 @@
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: {
...@@ -187,13 +184,11 @@ export default { ...@@ -187,13 +184,11 @@ 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() {
// 该方法性能消耗大目前不使用 // 该方法性能消耗大目前不使用
...@@ -264,20 +259,6 @@ export default { ...@@ -264,20 +259,6 @@ 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
...@@ -399,53 +380,44 @@ export default { ...@@ -399,53 +380,44 @@ 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 = {
let access_token = this.wxToken; ["id_card_" + type]: url[type],
let img_pre = uc_img_url_pre; id: this.fileInfo.id || 0,
let img_url = img_pre + url[type] //"tmp/X8XIAJvSt7jp29a97371a466eecab48e7a7c35d92861.jpg"; }
console.log(access_token);
console.log(img_url); const res = await request[type](params);
img_url = encodeURI(img_url); if (res.code !== 200) {
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") {
that.fileInfo.id_card_name = ""; this.fileInfo.id_card_name = "";
that.fileInfo.id_card_number = ""; this.fileInfo.id_card_number = "";
that.frontErrorMsg = res.message || "识别失败,请重新上传" this.frontErrorMsg = res.message || "识别失败,请重新上传"
} else { } else {
that.fileInfo.id_card_back_check = false; this.fileInfo.id_card_back_check = false;
that.backErrorMsg = res.message || "识别失败,请重新上传" this.backErrorMsg = res.message || "识别失败,请重新上传"
} }
return return
} else if (type === "front") {
that.fileInfo.id_card_name =
info.name || "";
that.fileInfo.id_card_number =
info.id || "";
that.frontErrorMsg = (!that.fileInfo.id_card_name || !that.fileInfo.id_card_number) ? "识别失败,请重新上传" : ''
} else {
that.fileInfo.id_card_expire = info.valid_date || "";
that.fileInfo.id_card_back_check = true;
that.backErrorMsg = !that.fileInfo.id_card_expire ? "识别失败,请重新上传" : ''
} }
uni.hideLoading()
if (type === "front") {
this.fileInfo.id_card_name =
res.data.id_card_name || "";
this.fileInfo.id_card_number =
res.data.id_card_number || "";
this.frontErrorMsg = (!this.fileInfo.id_card_name || !this.fileInfo.id_card_number) ? "识别失败,请重新上传" : ''
} else {
this.fileInfo.id_card_expire = res.data.id_card_expire || "";
this.fileInfo.id_card_back_check = true;
this.backErrorMsg = !this.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