Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
dev
/
pingan-life-index-pro
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
78e78433
authored
2020-02-16 11:14:32 +0800
by
joe
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
部分内容修改
1 parent
9f9a9aef
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
3 deletions
src/components/clarms/clarms-plugins-material.js
src/components/clarms/clarms-plugins-material.vue
src/components/clarms/clarms-plugins-verifyform.js
src/components/clarms/clarms-plugins-material.js
View file @
78e7843
import
{
mapState
}
from
"vuex"
;
import
api
from
'@/api/api'
import
{
httpGet
,
...
...
@@ -87,6 +88,9 @@ export default {
ClarmsUpload
},
computed
:
{
...
mapState
({
userInfo
:
state
=>
state
.
userInfo
}),
lan
()
{
return
this
.
$i18n
.
locale
;
},
...
...
@@ -125,6 +129,12 @@ export default {
// console.log("b10:",b10);
return
b1
||
b2
||
b3
||
b4
||
b5
||
b6
||
b7
||
b8
||
b9
||
b10
;
},
isLogin
()
{
if
(
this
.
userInfo
&&
this
.
userInfo
.
name
)
{
return
true
;
}
return
false
;
}
},
methods
:
{
...
...
src/components/clarms/clarms-plugins-material.vue
View file @
78e7843
...
...
@@ -137,7 +137,7 @@
</div>
</
template
>
</div>
<
template
v-if=
"
(data.HT41 && data.HT41.length > 0) && (data.HT26 && data.HT26.length > 0)
"
>
<
template
v-if=
"
data.contactDate
"
>
<hr
class=
"hr2"
v-if=
"data.amount > 0"
>
<div
class=
"bottom-tip orange mt20"
>
{{
$t
(
'clarms.step2.label17'
)
}}
</div>
<div
class=
"bottom-tip gray mt10"
>
{{
$t
(
'clarms.step2.tip1'
)
}}
</div>
...
...
src/components/clarms/clarms-plugins-verifyform.js
View file @
78e7843
...
...
@@ -29,7 +29,7 @@ export default {
data
:
{
// firstName: "玛丽",
// lastName: "何",
// birthDate: "1
999-07-15
",
// birthDate: "1
5-07-1999
",
// idNo: "H4099030",
// idType: "40"
...
...
@@ -95,8 +95,9 @@ export default {
return
;
}
this
.
loading
=
true
;
let
param
=
this
.
data
;
let
param
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
data
))
;
param
.
birthDate
=
ddMMyyyy2yyyyMMdd
(
param
.
birthDate
);
console
.
log
(
param
);
httpPost
({
url
:
api
.
getCidByVerify
,
data
:
param
}).
then
(
res
=>
{
if
(
res
)
{
let
cid
=
res
;
...
...
Please
register
or
sign in
to post a comment