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
f6af18f2
authored
2020-05-15 13:35:37 +0800
by
simon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修复policy-head-list 多选样式不刷新
1 parent
bbdc2758
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
17 deletions
src/pages/custom-service/components/policy-change-contact.js
src/pages/custom-service/components/policy-change-contact.vue
src/pages/custom-service/components/policy-head-list.js
src/pages/custom-service/components/policy-change-contact.js
View file @
f6af18f
...
...
@@ -317,7 +317,7 @@ export default {
// 获取省份
this
.
provinceList
=
getCnProvinceList
(
this
.
$i18n
.
locale
);
// console.log("this.provinceList:", this.provinceList);
if
(
this
.
dataInit
)
{
return
;
...
...
@@ -337,8 +337,6 @@ export default {
sid
:
true
})
.
then
(
response
=>
{
// this.data = {};
// console.log("response:", response);
this
.
loading
=
false
;
this
.
dataInit
=
true
;
if
(
response
)
{
...
...
@@ -350,16 +348,6 @@ export default {
);
}
}
// if (response) {
// this.loading = false;
// this.dataInit = true;
// this.data.mobile = response.clientMobileNo;
// this.checked1 = "1" == response.clientMobileAcceptMessage;
// this.data.address = response.clientContactAddress;
// this.checked2 = "1" == response.clientAddressAcceptMessage;
// this.data.email = response.clientEmail;
// this.checked3 = "1" == response.clientEmailAcceptMessage;
// }
})
.
catch
(
res
=>
{
if
(
res
.
code
==
"404"
)
{
...
...
@@ -368,7 +356,6 @@ export default {
});
},
handlePolicySelect
(
data
)
{
console
.
log
(
"handlePolicySelect:"
,
data
);
this
.
selectedPolicies
=
data
;
this
.
initData
();
},
...
...
src/pages/custom-service/components/policy-change-contact.vue
View file @
f6af18f
...
...
@@ -5,7 +5,7 @@
<input
type=
"password"
style=
"display: none;"
/>
<auth
@
onLogin=
"userLogin"
@
onLogout=
"userLogout"
:checkProfile=
"true"
ref=
"auth"
:tipModel=
"'m2'"
></auth>
<modal-comp
:visible=
"modalVisiable"
:show-confirm=
"false"
:icon=
"modalIcon"
:content=
"modalContent"
:confirm=
"modalCallback"
:overlay=
"modalCallback"
></modal-comp>
<us-tax-form-upload-comp
:visible=
"usTaxFormUploadCompVisible"
@
close=
"usTaxFormUploadCompVisible = false"
@
submit=
"onUsTaxSubmit"
></us-tax-form-upload-comp>
<us-tax-form-upload-comp
:visible=
"usTaxFormUploadCompVisible"
@
close=
"usTaxFormUploadCompVisible = false"
@
submit=
"onUsTaxSubmit"
></us-tax-form-upload-comp>
<template
v-if=
"showForm"
>
<policy-head-list
:multiSelectable=
"true"
@
onSelect=
"handlePolicySelect"
></policy-head-list>
...
...
@@ -145,7 +145,7 @@
</div>
</div>
</template>
</template>
</div>
</template>
...
...
src/pages/custom-service/components/policy-head-list.js
View file @
f6af18f
...
...
@@ -169,7 +169,7 @@ export default {
item
.
activity
=
false
;
delete
this
.
selectPolicyCodes
[
code
];
}
// this.$set(this, 'myPolicyList', this.myPolicyList
);
this
.
$set
(
this
.
myPolicyList
,
index
,
item
);
let
data
=
[];
for
(
let
key
in
this
.
selectPolicyCodes
)
{
data
.
push
(
this
.
selectPolicyCodes
[
key
]);
...
...
Please
register
or
sign in
to post a comment