Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
liuzhen@situdata.com
/
yunxiao-admin-fe
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
25a88126
authored
2020-10-23 16:50:52 +0800
by
zhen
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
客户信息添加证件类型以及状态映射表
1 parent
ebf11268
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
src/views/monitorDetails.vue
src/views/monitorDetails.vue
View file @
25a8812
...
...
@@ -7,10 +7,14 @@
<div
class=
"item"
>
性别:
{{
custInfoCopy
.
custGender
-
0
===
0
?
'女'
:
'男'
}}
</div>
<div
class=
"item"
>
证件类型:
{{
custInfoCopy
.
custIdType
}}
</div>
<div
class=
"item"
>
证件类型:
{{
custInfoCopy
.
custIdType
-
0
===
1
?
'身份证'
:
'其他'
}}
</div>
<div
class=
"item"
>
证件号:
{{
custInfoCopy
.
custIdNo
}}
</div>
<div
class=
"item"
>
微信昵称:
{{
custInfoCopy
.
custWxName
}}
</div>
<div
class=
"item"
>
状态:
{{
custInfoCopy
.
custStatus
}}
</div>
<div
class=
"item"
>
状态:
{{
transCustStatus
(
custInfoCopy
.
custStatus
)
}}
</div>
<div
class=
"item"
>
年收入:
{{
custInfoCopy
.
custIncome
}}
</div>
<div
class=
"item"
>
地址:
{{
custInfoCopy
.
custAddr
}}
</div>
<div
class=
"item"
>
备注:
{{
custInfoCopy
.
custRemarks
}}
</div>
...
...
@@ -72,6 +76,15 @@ export default {
this
.
handleGetResourceDetail
()
},
methods
:
{
transCustStatus
(
status
)
{
const
numStatus
=
status
-
0
const
map
=
{
0
:
'待交流'
,
1
:
'交流中'
,
2
:
'已承保'
}
return
map
[
numStatus
]
},
handleSubmit
()
{
this
.
$refs
.
form
.
validate
(
valid
=>
{
if
(
valid
)
{
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment