Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
self-support
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李俊赕
self-support
Commits
5e842947
Commit
5e842947
authored
May 21, 2021
by
linwenqing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "fix:身份证识别"
This reverts commit
a3797fd9
.
parent
f0919a31
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
69 deletions
+38
-69
.env.dev.js
.env.dev.js
+0
-1
.env.prod.js
.env.prod.js
+0
-1
.env.test.js
.env.test.js
+0
-1
file.vue
src/pages/settle/file.vue
+38
-66
No files found.
.env.dev.js
View file @
5e842947
...
...
@@ -10,7 +10,6 @@ const UNI_APP = {
},
qn_base_url
:
'https://qn-static.banshouhui.com/self-support/'
,
qn_asset_url
:
'http://deudn.c.pp.cc/'
,
uc_img_url_pre
:
'http://deudn.c.pp.cc/'
,
argoDebugMode
:
1
}
module
.
exports
=
UNI_APP
;
.env.prod.js
View file @
5e842947
...
...
@@ -9,7 +9,6 @@ const UNI_APP = {
},
qn_base_url
:
'https://qn-static.banshouhui.com/self-support/'
,
qn_asset_url
:
'https://qn-static.banshouhui.com'
,
uc_img_url_pre
:
'https://img2.banshouhui.com/'
,
argoDebugMode
:
0
}
...
...
.env.test.js
View file @
5e842947
...
...
@@ -9,7 +9,6 @@ const UNI_APP = {
},
qn_base_url
:
'https://qn-static.banshouhui.com/self-support/'
,
qn_asset_url
:
'https://qn-static.banshouhui.com'
,
uc_img_url_pre
:
'https://img2.banshouhui.com/'
,
argoDebugMode
:
1
}
module
.
exports
=
UNI_APP
;
src/pages/settle/file.vue
View file @
5e842947
...
...
@@ -89,9 +89,6 @@
import
Settle
from
'@/components/settle/index.vue'
import
base
from
'@/components/upload/index'
;
const
app
=
getApp
()
const
globalUrl
=
process
.
uniEnv
||
{};
const
ucenterApiUrl
=
globalUrl
.
ucenterUrl
.
apiUrl
;
const
uc_img_url_pre
=
globalUrl
.
uc_img_url_pre
;
export
default
{
mixins
:[
base
],
components
:
{
...
...
@@ -187,13 +184,11 @@ export default {
],
submitSuccess
:
false
,
saving
:
false
,
wxToken
:
""
,
}
},
onLoad
(
e
)
{
getApp
().
trackPage
(
'入驻证件信息上传页'
)
this
.
initSettledInfo
()
this
.
getWxToken
()
},
updated
()
{
// 该方法性能消耗大目前不使用
...
...
@@ -264,20 +259,6 @@ export default {
},
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
()
{
let
self
=
this
...
...
@@ -399,53 +380,44 @@ export default {
uni
.
showLoading
({
title
:
'识别中'
})
let
url
=
{
front
:
this
.
fileInfo
.
id_card_front
,
back
:
this
.
fileInfo
.
id_card_back
,
};
let
that
=
this
;
// 文字识别
let
access_token
=
this
.
wxToken
;
let
img_pre
=
uc_img_url_pre
;
let
img_url
=
img_pre
+
url
[
type
]
//"tmp/X8XIAJvSt7jp29a97371a466eecab48e7a7c35d92861.jpg";
console
.
log
(
access_token
);
console
.
log
(
img_url
);
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"
)
{
that
.
fileInfo
.
id_card_name
=
""
;
that
.
fileInfo
.
id_card_number
=
""
;
that
.
frontErrorMsg
=
res
.
message
||
"识别失败,请重新上传"
}
else
{
that
.
fileInfo
.
id_card_back_check
=
false
;
that
.
backErrorMsg
=
res
.
message
||
"识别失败,请重新上传"
}
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
?
"识别失败,请重新上传"
:
''
}
}
})
let
request
=
{
front
:
this
.
$u
.
api
.
checkSettleIDCardFront
,
back
:
this
.
$u
.
api
.
checkSettleIDCardBack
,
};
let
url
=
{
front
:
this
.
fileInfo
.
id_card_front
,
back
:
this
.
fileInfo
.
id_card_back
,
};
const
params
=
{
[
"id_card_"
+
type
]:
url
[
type
],
id
:
this
.
fileInfo
.
id
||
0
,
}
const
res
=
await
request
[
type
](
params
);
if
(
res
.
code
!==
200
)
{
if
(
type
===
"front"
)
{
this
.
fileInfo
.
id_card_name
=
""
;
this
.
fileInfo
.
id_card_number
=
""
;
this
.
frontErrorMsg
=
res
.
message
||
"识别失败,请重新上传"
}
else
{
this
.
fileInfo
.
id_card_back_check
=
false
;
this
.
backErrorMsg
=
res
.
message
||
"识别失败,请重新上传"
}
return
}
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
()
{
let
formFlag
=
true
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment