Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
1280e47b
authored
2024-03-18 10:42:45 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:身份核验
1 parent
c0efa606
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
4 deletions
src/api/sqr.js
src/api/xxba.js
src/views/workflow/components/dialog/addQlr.vue
src/api/sqr.js
0 → 100644
View file @
1280e47
/*
* @Description: 申请人权利人等人员相关接口
* @Autor: renchao
* @LastEditTime: 2024-03-18 10:38:14
*/
import
request
from
'@/utils/request'
;
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
/**
* @description: 身份核验
* @param {*} data
* @author: renchao
*/
export
function
sfhy
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/sqr/sfhy'
,
method
:
'post'
,
data
})
}
\ No newline at end of file
src/api/xxba.js
View file @
1280e47
/*
* @Description: 信息备案
* @Autor:
* @LastEditTime: 202
3-09-11 11:25:22
* @LastEditTime: 202
4-03-18 10:36:40
*/
import
request
from
'@/utils/request'
...
...
src/views/workflow/components/dialog/addQlr.vue
View file @
1280e47
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-03-1
1 15:18:56
* @LastEditTime: 2024-03-1
8 10:40:05
-->
<
template
>
<dialogBox
...
...
@@ -30,6 +30,7 @@
<el-form-item
label=
"身份证读卡器"
style=
"margin-top:-10px;margin-bottom:0"
>
<el-button
type=
"text"
icon=
"el-icon-tickets"
:disabled=
"!showButton"
@
click=
"readClick"
>
读取
</el-button>
<el-button
type=
"primary"
v-if=
"isBz"
@
click=
"handleFilings"
>
信息备案
</el-button>
<el-button
type=
"primary"
@
click=
"handleVerification"
>
身份核验
</el-button>
</el-form-item>
<el-row>
<el-col
:span=
"8"
>
...
...
@@ -346,6 +347,7 @@
</template>
<
script
>
import
{
mapGetters
}
from
"vuex"
;
import
{
sfhy
}
from
"@/api/sqr.js"
;
import
store
from
'@/store/index.js'
import
{
getUuid
}
from
"@/utils/operation.js"
import
{
replace
}
from
"@/api/company.js"
...
...
@@ -428,7 +430,7 @@
}
},
mounted
()
{
sendThis
(
this
)
;
sendThis
(
this
)
},
watch
:
{
value
(
val
)
{
...
...
@@ -440,13 +442,22 @@
},
details
:
{
handler
:
function
(
val
,
oldVal
)
{
this
.
ruleForm
=
_
.
cloneDeep
(
val
)
;
this
.
ruleForm
=
_
.
cloneDeep
(
val
)
},
deep
:
true
}
},
methods
:
{
/**
* @description: 身份核验
* @author: renchao
*/
handleVerification
()
{
sfhy
(
this
.
ruleForm
).
then
(
res
=>
{
console
.
log
(
res
,
22222222222222222
);
})
},
/**
* @description: 证件种类选择
* @param {*} val
* @author: renchao
...
...
Please
register
or
sign in
to post a comment