Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mongo-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
ui
mongo-ui
Commits
f5352547
Commit
f5352547
authored
Aug 18, 2020
by
郭志伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 定寿险数据调整
parent
55650228
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
LIDetail.vue
src/views/Goods/Detail/LIDetail.vue
+2
-1
index.vue
src/views/Policy/Add/index.vue
+13
-2
No files found.
src/views/Goods/Detail/LIDetail.vue
View file @
f5352547
...
@@ -214,7 +214,8 @@ export default {
...
@@ -214,7 +214,8 @@ export default {
"
policyFormData
"
,
"
policyFormData
"
,
JSON
.
stringify
(
Object
.
assign
(
this
.
formData
,
{
productNo
:
this
.
goodId
}))
JSON
.
stringify
(
Object
.
assign
(
this
.
formData
,
{
productNo
:
this
.
goodId
}))
);
);
this
.
$router
.
push
(
"
/policy/add
"
);
const
{
queryId
}
=
this
.
$route
;
this
.
$router
.
push
({
path
:
"
/policy/add
"
,
query
:
{
queryId
}
});
},
},
async
getDetail
()
{
async
getDetail
()
{
this
.
goodId
=
this
.
$route
.
query
.
id
;
this
.
goodId
=
this
.
$route
.
query
.
id
;
...
...
src/views/Policy/Add/index.vue
View file @
f5352547
...
@@ -524,7 +524,8 @@ export default {
...
@@ -524,7 +524,8 @@ export default {
},
},
relationChange
(
relation
=
this
.
formData
.
insuredUserInfo
.
relation
)
{
relationChange
(
relation
=
this
.
formData
.
insuredUserInfo
.
relation
)
{
this
.
formData
.
insuredUserInfo
=
{
this
.
formData
.
insuredUserInfo
=
{
relation
relation
,
longTerm
:
"
1
"
};
};
this
.
familyList
.
forEach
(
item
=>
{
this
.
familyList
.
forEach
(
item
=>
{
const
{
relation
,
nameMask
:
name
,
idNoMask
:
idNo
,
userInfoSecId
}
=
item
;
const
{
relation
,
nameMask
:
name
,
idNoMask
:
idNo
,
userInfoSecId
}
=
item
;
...
@@ -552,7 +553,17 @@ export default {
...
@@ -552,7 +553,17 @@ export default {
}
}
this
.
formData
.
insuredUserInfo
=
{
this
.
formData
.
insuredUserInfo
=
{
...
this
.
formData
.
insuredUserInfo
,
...
this
.
formData
.
insuredUserInfo
,
...{
name
,
idNo
,
userInfoSecId
,
socialSecurity
:
socialSecurity
?
"
1
"
:
"
0
"
}
...{
name
,
idNo
,
userInfoSecId
,
socialSecurity
:
typeof
socialSecurity
===
undefined
||
socialSecurity
===
""
?
""
:
socialSecurity
?
"
1
"
:
"
0
"
}
};
};
this
.
$forceUpdate
();
this
.
$forceUpdate
();
},
},
...
...
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