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
b0efc604
authored
2020-02-27 15:06:16 +0800
by
joe
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
遗留问题
1 parent
626d5fb3
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
5 deletions
src/common/lang/tc.js
src/common/lang/zh.js
src/components/clarms/clarms-plugins-material.js
src/pages/custom-service/components/policy-head-list.vue
src/pages/infomation-improve/infomation-improve.js
src/common/lang/tc.js
View file @
b0efc60
...
...
@@ -260,7 +260,7 @@ module.exports = {
passwordReset
:
{
oldPwd
:
"舊密碼"
,
oldPwdPlaceholde
:
"請輸入舊密碼"
,
cidExpire
:
"長時間未操作,為了您賬戶的安全,請
重新開始
"
,
cidExpire
:
"長時間未操作,為了您賬戶的安全,請
登入後再操作
"
,
type1
:
{
title
:
"密碼找回"
,
t1
:
"用戶輸入信息"
,
...
...
@@ -352,7 +352,7 @@ module.exports = {
e6
:
"您填寫的證件號碼有誤"
,
e7
:
"您填寫的信息有誤,請核實後重新提交"
,
},
noPolicy
:
"對不起,您輸入的
資料
與本公司的紀錄不符,請重新輸入。如需幫助可"
,
noPolicy
:
"對不起,您輸入的
數據
與本公司的紀錄不符,請重新輸入。如需幫助可"
,
customService
:
"聯繫客服"
,
},
index
:
{
...
...
src/common/lang/zh.js
View file @
b0efc60
...
...
@@ -261,7 +261,7 @@ module.exports = {
passwordReset
:
{
oldPwd
:
"旧密码"
,
oldPwdPlaceholde
:
"请输入旧密码"
,
cidExpire
:
"长时间未操作,为了您的账户安全,请
重新开始
"
,
cidExpire
:
"长时间未操作,为了您的账户安全,请
登入后再操作
"
,
type1
:
{
title
:
"密码找回"
,
t1
:
"用户输入信息"
,
...
...
src/components/clarms/clarms-plugins-material.js
View file @
b0efc60
...
...
@@ -148,6 +148,7 @@ export default {
sessionStorage
.
removeItem
(
"clarmTypeSelect"
);
let
clarmDataFormStr
=
sessionStorage
.
getItem
(
"clarmDataForm"
);
sessionStorage
.
removeItem
(
"clarmDataForm"
);
let
aggressStr
=
sessionStorage
.
getItem
(
"clarmAggressStr"
);
if
(
clarmDataFormStr
)
{
...
...
@@ -168,6 +169,10 @@ export default {
}
}
if
(
aggressStr
&&
aggressStr
==
"true"
)
{
this
.
agress
=
true
;
}
this
.
data
.
policyDateLegal
=
this
.
checkPolicyDateLegal
();
if
(
this
.
data
.
policyDateLegal
)
{
this
.
policyIllegal
=
false
;
...
...
@@ -180,6 +185,7 @@ export default {
cacheData
()
{
sessionStorage
.
setItem
(
"clarmTypeSelect"
,
JSON
.
stringify
(
this
.
typeSelected
));
sessionStorage
.
setItem
(
"clarmDataForm"
,
JSON
.
stringify
(
this
.
data
));
sessionStorage
.
setItem
(
"clarmAggressStr"
,
this
.
agress
?
"true"
:
"false"
);
this
.
$refs
[
'HT41'
]
&&
this
.
$refs
[
'HT41'
].
cacheData
();
this
.
$refs
[
'HT26'
]
&&
this
.
$refs
[
'HT26'
].
cacheData
();
...
...
@@ -190,6 +196,7 @@ export default {
clearCache
()
{
sessionStorage
.
removeItem
(
"clarmTypeSelect"
);
sessionStorage
.
removeItem
(
"clarmDataForm"
);
sessionStorage
.
removeItem
(
"clarmAggressStr"
);
this
.
$refs
[
'HT41'
]
&&
this
.
$refs
[
'HT41'
].
clearCache
();
this
.
$refs
[
'HT26'
]
&&
this
.
$refs
[
'HT26'
].
clearCache
();
...
...
src/pages/custom-service/components/policy-head-list.vue
View file @
b0efc60
...
...
@@ -33,7 +33,7 @@
</
template
>
<span
class=
"sp"
:class=
"{ac: selectPolicyCode == item.policyCode}"
>
{{item.policyCode}}
</span>
<
template
v-if=
"model == 'download'"
>
<div
class=
"download"
@
mouseover=
"onShowTipsOverHandler($event,item,index)"
@
mouseout=
"onShowTipsOutHandler($event,item,index)"
>
<div
class=
"download"
@
mouseover=
"onShowTipsOverHandler($event,item,index)"
@
mouseout=
"onShowTipsOutHandler($event,item,index)"
@
click=
"downloadPolicy(item)"
>
<div
class=
"download-tips"
>
<div
class=
"cont"
>
{{
$t
(
'customService.insuranceQuery.downloadClick'
)
}}
</div>
</div>
...
...
src/pages/infomation-improve/infomation-improve.js
View file @
b0efc60
...
...
@@ -188,7 +188,7 @@ export default {
}
}).
catch
(
err
=>
{
this
.
loading
=
false
;
this
.
errorModel
=
2
;
this
.
errorModel
=
3
;
});
},
...
...
Please
register
or
sign in
to post a comment